Skip to content

fix: use exact-key for MemoryLocationHash instead of u64 to defend ha…#517

Open
phuocthanhdo wants to merge 1 commit into
mainfrom
fix/memory-location-collision-exact-key
Open

fix: use exact-key for MemoryLocationHash instead of u64 to defend ha…#517
phuocthanhdo wants to merge 1 commit into
mainfrom
fix/memory-location-collision-exact-key

Conversation

@phuocthanhdo

Copy link
Copy Markdown
Contributor

…sh collision

@phuocthanhdo phuocthanhdo requested review from a team as code owners June 8, 2026 06:48

@claude claude Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Claude Code Review

This repository is configured for manual code reviews. Comment @claude review to trigger a review and subscribe this PR to future pushes, or @claude review once for a one-time review.

Tip: disable this comment in your organization's Code Review settings.

@phuocthanhdo

Copy link
Copy Markdown
Contributor Author

benchmark

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request replaces the u64 type alias for MemoryLocationHash with a dedicated struct containing both the precomputed u64 hash and the underlying MemoryLocation. This prevents hash collisions (aliasing) by implementing custom PartialEq and Hash traits that compare the full location on hash hits while preserving the fast u64 path for distinct locations. Corresponding updates are made to MemoryLocation (deriving Copy), hash_deterministic, get_rewards signatures, and the initial from_hash value in vm.rs. There are no review comments, so no additional feedback is provided.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Gigagas benchmark for commit 4519033

Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 46.95s
     Running benches/gigagas.rs (target/release/deps/gigagas-ea758e574c06cbc1)
Gnuplot not found, using plotters backend
Benchmarking Independent Raw Transfers/Sequential
Benchmarking Independent Raw Transfers/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.7s, or reduce sample count to 80.
Benchmarking Independent Raw Transfers/Sequential: Collecting 100 samples in estimated 5.6510 s (100 iterations)
Benchmarking Independent Raw Transfers/Sequential: Analyzing
Independent Raw Transfers/Sequential
                        time:   [56.685 ms 56.799 ms 56.913 ms]
                        change: [+0.8688% +1.1016% +1.3500%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Independent Raw Transfers/Parallel
Benchmarking Independent Raw Transfers/Parallel: Warming up for 3.0000 s
Benchmarking Independent Raw Transfers/Parallel: Collecting 100 samples in estimated 9.3130 s (200 iterations)
Benchmarking Independent Raw Transfers/Parallel: Analyzing
Independent Raw Transfers/Parallel
                        time:   [47.784 ms 48.290 ms 48.801 ms]
                        change: [+2.4306% +3.8754% +5.3530%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Independent ERC20/Sequential
Benchmarking Independent ERC20/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 16.4s, or reduce sample count to 30.
Benchmarking Independent ERC20/Sequential: Collecting 100 samples in estimated 16.351 s (100 iterations)
Benchmarking Independent ERC20/Sequential: Analyzing
Independent ERC20/Sequential
                        time:   [166.15 ms 166.47 ms 166.80 ms]
                        change: [−0.9270% −0.6003% −0.2972%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Independent ERC20/Parallel
Benchmarking Independent ERC20/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.8s, or reduce sample count to 80.
Benchmarking Independent ERC20/Parallel: Collecting 100 samples in estimated 5.7535 s (100 iterations)
Benchmarking Independent ERC20/Parallel: Analyzing
Independent ERC20/Parallel
                        time:   [56.567 ms 57.194 ms 57.812 ms]
                        change: [+4.8801% +6.6737% +8.4976%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Independent Uniswap/Sequential
Benchmarking Independent Uniswap/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 45.9s, or reduce sample count to 10.
Benchmarking Independent Uniswap/Sequential: Collecting 100 samples in estimated 45.934 s (100 iterations)
Benchmarking Independent Uniswap/Sequential: Analyzing
Independent Uniswap/Sequential
                        time:   [475.56 ms 476.26 ms 476.91 ms]
                        change: [+1.4349% +1.6100% +1.7798%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low severe
  5 (5.00%) low mild
Benchmarking Independent Uniswap/Parallel
Benchmarking Independent Uniswap/Parallel: Warming up for 3.0000 s
Benchmarking Independent Uniswap/Parallel: Collecting 100 samples in estimated 5.2155 s (200 iterations)
Benchmarking Independent Uniswap/Parallel: Analyzing
Independent Uniswap/Parallel
                        time:   [26.187 ms 26.235 ms 26.283 ms]
                        change: [+4.5737% +4.8289% +5.0748%] (p = 0.00 < 0.05)
                        Performance has regressed.

@riselabs-benchmark

Copy link
Copy Markdown

✅ Mainnet benchmark for commit 4519033
Report:
Baseline main:

Average: x1.95
Max: x3.96
Min: x0.68

This pr:

Average: x1.99
Max: x3.95
Min: x0.67
Detail
   Compiling tikv-jemalloc-sys v0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7
   Compiling tikv-jemallocator v0.6.1
   Compiling pevm v0.1.0 (/home/rise-bot/pevm/crates/pevm)
    Finished `bench` profile [optimized] target(s) in 53.60s
     Running benches/mainnet.rs (target/release/deps/mainnet-0cdb557e505eb72a)
Gnuplot not found, using plotters backend
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Collecting 100 samples in estimated 5.1994 s (1000 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Sequential: Analyzing
Block 12459406(201 txs, 14994849 gas)/Sequential
                        time:   [5.1432 ms 5.1514 ms 5.1596 ms]
                        change: [+8.3567% +8.5077% +8.7205%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Collecting 100 samples in estimated 5.2344 s (1400 iterations)
Benchmarking Block 12459406(201 txs, 14994849 gas)/Parallel: Analyzing
Block 12459406(201 txs, 14994849 gas)/Parallel
                        time:   [3.7513 ms 3.8280 ms 3.9052 ms]
                        change: [+1.0305% +3.7799% +6.6164%] (p = 0.01 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Collecting 100 samples in estimated 5.2972 s (300 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Sequential: Analyzing
Block 12965000(259 txs, 30025257 gas)/Sequential
                        time:   [17.633 ms 17.643 ms 17.654 ms]
                        change: [+3.4958% +3.6813% +3.8643%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Collecting 100 samples in estimated 5.0110 s (1100 iterations)
Benchmarking Block 12965000(259 txs, 30025257 gas)/Parallel: Analyzing
Block 12965000(259 txs, 30025257 gas)/Parallel
                        time:   [4.5503 ms 4.5715 ms 4.5929 ms]
                        change: [+3.1063% +3.8342% +4.5504%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Collecting 100 samples in estimated 5.4493 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Sequential: Analyzing
Block 2641321(83 txs, 1917429 gas)/Sequential
                        time:   [135.33 µs 135.38 µs 135.43 µs]
                        change: [−0.1575% −0.0664% +0.0242%] (p = 0.16 > 0.05)
                        No change in performance detected.
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Collecting 100 samples in estimated 5.4515 s (40k iterations)
Benchmarking Block 2641321(83 txs, 1917429 gas)/Parallel: Analyzing
Block 2641321(83 txs, 1917429 gas)/Parallel
                        time:   [135.41 µs 135.46 µs 135.51 µs]
                        change: [−0.0164% +0.0753% +0.1618%] (p = 0.10 > 0.05)
                        No change in performance detected.

Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Collecting 100 samples in estimated 5.1861 s (500 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Sequential: Analyzing
Block 19716145(341 txs, 29995804 gas)/Sequential
                        time:   [10.340 ms 10.355 ms 10.370 ms]
                        change: [+8.2901% +8.5128% +8.7452%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Collecting 100 samples in estimated 5.3241 s (1200 iterations)
Benchmarking Block 19716145(341 txs, 29995804 gas)/Parallel: Analyzing
Block 19716145(341 txs, 29995804 gas)/Parallel
                        time:   [4.4505 ms 4.4593 ms 4.4684 ms]
                        change: [+4.7977% +5.0754% +5.3518%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Collecting 100 samples in estimated 5.5000 s (1000 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Sequential: Analyzing
Block 14029313(724 txs, 30074554 gas)/Sequential
                        time:   [5.4205 ms 5.4313 ms 5.4419 ms]
                        change: [+12.515% +12.761% +13.017%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Collecting 100 samples in estimated 8.2452 s (5050 iterations)
Benchmarking Block 14029313(724 txs, 30074554 gas)/Parallel: Analyzing
Block 14029313(724 txs, 30074554 gas)/Parallel
                        time:   [1.6420 ms 1.6504 ms 1.6591 ms]
                        change: [+6.0145% +6.6505% +7.2769%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Collecting 100 samples in estimated 8.3957 s (5050 iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Sequential: Analyzing
Block 5283152(150 txs, 7979463 gas)/Sequential
                        time:   [1.6546 ms 1.6574 ms 1.6600 ms]
                        change: [+2.5379% +2.7518% +2.9531%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Collecting 100 samples in estimated 5.2229 s (10k iterations)
Benchmarking Block 5283152(150 txs, 7979463 gas)/Parallel: Analyzing
Block 5283152(150 txs, 7979463 gas)/Parallel
                        time:   [521.84 µs 523.75 µs 525.71 µs]
                        change: [+4.7852% +5.3024% +5.8253%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low mild
  3 (3.00%) high mild

Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Collecting 100 samples in estimated 5.5972 s (700 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Sequential: Analyzing
Block 18988207(186 txs, 12398324 gas)/Sequential
                        time:   [8.0090 ms 8.0133 ms 8.0177 ms]
                        change: [+4.2822% +4.3815% +4.4834%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Collecting 100 samples in estimated 5.0753 s (1100 iterations)
Benchmarking Block 18988207(186 txs, 12398324 gas)/Parallel: Analyzing
Block 18988207(186 txs, 12398324 gas)/Parallel
                        time:   [4.6112 ms 4.6132 ms 4.6151 ms]
                        change: [+1.2607% +1.3184% +1.3747%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Collecting 100 samples in estimated 5.2347 s (600 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Sequential: Analyzing
Block 14383540(722 txs, 30059751 gas)/Sequential
                        time:   [8.7132 ms 8.7245 ms 8.7354 ms]
                        change: [+7.4138% +7.6348% +7.8361%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Collecting 100 samples in estimated 5.0077 s (1500 iterations)
Benchmarking Block 14383540(722 txs, 30059751 gas)/Parallel: Analyzing
Block 14383540(722 txs, 30059751 gas)/Parallel
                        time:   [3.3195 ms 3.3339 ms 3.3484 ms]
                        change: [+6.2044% +6.8155% +7.3889%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Collecting 100 samples in estimated 6.2223 s (400 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Sequential: Analyzing
Block 19606599(367 txs, 29981684 gas)/Sequential
                        time:   [15.570 ms 15.580 ms 15.590 ms]
                        change: [+4.4815% +4.6418% +4.8010%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Collecting 100 samples in estimated 5.1734 s (900 iterations)
Benchmarking Block 19606599(367 txs, 29981684 gas)/Parallel: Analyzing
Block 19606599(367 txs, 29981684 gas)/Parallel
                        time:   [5.7343 ms 5.7482 ms 5.7620 ms]
                        change: [+4.0020% +4.3055% +4.6131%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Collecting 100 samples in estimated 5.0424 s (2300 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Sequential: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Sequential
                        time:   [2.1526 ms 2.1695 ms 2.1859 ms]
                        change: [+15.347% +16.226% +17.120%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Collecting 100 samples in estimated 5.1210 s (2400 iterations)
Benchmarking Block 13287210(1414 txs, 29990789 gas)/Parallel: Analyzing
Block 13287210(1414 txs, 29990789 gas)/Parallel
                        time:   [2.1564 ms 2.1643 ms 2.1721 ms]
                        change: [+6.0549% +6.4846% +6.9266%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 306.5s, or reduce sample count to 10.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Collecting 100 samples in estimated 306.49 s (100 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Sequential: Analyzing
Block 19807137(712 txs, 29981386 gas)/Sequential
                        time:   [13.680 ms 13.692 ms 13.705 ms]
                        change: [+3.3190% +3.4735% +3.6280%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Collecting 100 samples in estimated 5.2359 s (800 iterations)
Benchmarking Block 19807137(712 txs, 29981386 gas)/Parallel: Analyzing
Block 19807137(712 txs, 29981386 gas)/Parallel
                        time:   [6.5296 ms 6.5363 ms 6.5428 ms]
                        change: [+3.0306% +3.1708% +3.2986%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Collecting 100 samples in estimated 7.6758 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Sequential: Analyzing
Block 12520364(660 txs, 14989902 gas)/Sequential
                        time:   [1.4965 ms 1.5023 ms 1.5087 ms]
                        change: [+5.9287% +6.4336% +6.9565%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.6s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Collecting 100 samples in estimated 6.6231 s (5050 iterations)
Benchmarking Block 12520364(660 txs, 14989902 gas)/Parallel: Analyzing
Block 12520364(660 txs, 14989902 gas)/Parallel
                        time:   [1.3094 ms 1.3129 ms 1.3166 ms]
                        change: [+6.1475% +6.4516% +6.7555%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  3 (3.00%) high mild

Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Collecting 100 samples in estimated 5.0318 s (1500 iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Sequential: Analyzing
Block 7279999(122 txs, 7998886 gas)/Sequential
                        time:   [3.3393 ms 3.3429 ms 3.3463 ms]
                        change: [+2.9475% +3.0697% +3.1769%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Collecting 100 samples in estimated 8.5361 s (10k iterations)
Benchmarking Block 7279999(122 txs, 7998886 gas)/Parallel: Analyzing
Block 7279999(122 txs, 7998886 gas)/Parallel
                        time:   [844.61 µs 845.91 µs 847.28 µs]
                        change: [+2.8726% +3.0725% +3.2703%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Collecting 100 samples in estimated 5.2617 s (900 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Sequential: Analyzing
Block 18085863(178 txs, 17007666 gas)/Sequential
                        time:   [5.8295 ms 5.8361 ms 5.8424 ms]
                        change: [+5.9240% +6.0543% +6.1930%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Collecting 100 samples in estimated 5.2544 s (1600 iterations)
Benchmarking Block 18085863(178 txs, 17007666 gas)/Parallel: Analyzing
Block 18085863(178 txs, 17007666 gas)/Parallel
                        time:   [3.2857 ms 3.2974 ms 3.3088 ms]
                        change: [+3.0044% +3.5068% +3.9988%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Collecting 100 samples in estimated 9.7364 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Sequential: Analyzing
Block 15537394(80 txs, 29983006 gas)/Sequential
                        time:   [1.9421 ms 1.9464 ms 1.9512 ms]
                        change: [+3.7767% +4.0089% +4.2939%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Collecting 100 samples in estimated 7.4723 s (5050 iterations)
Benchmarking Block 15537394(80 txs, 29983006 gas)/Parallel: Analyzing
Block 15537394(80 txs, 29983006 gas)/Parallel
                        time:   [1.4801 ms 1.4814 ms 1.4827 ms]
                        change: [+2.2274% +2.3526% +2.4971%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  3 (3.00%) low mild
  3 (3.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Collecting 100 samples in estimated 5.3879 s (800 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Sequential: Analyzing
Block 11743952(206 txs, 11955916 gas)/Sequential
                        time:   [6.6962 ms 6.7064 ms 6.7159 ms]
                        change: [+4.5649% +4.7324% +4.8813%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  1 (1.00%) low severe
  5 (5.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Collecting 100 samples in estimated 5.1364 s (700 iterations)
Benchmarking Block 11743952(206 txs, 11955916 gas)/Parallel: Analyzing
Block 11743952(206 txs, 11955916 gas)/Parallel
                        time:   [7.3172 ms 7.3247 ms 7.3323 ms]
                        change: [+3.5625% +3.6884% +3.8228%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Collecting 100 samples in estimated 5.8849 s (500 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Sequential: Analyzing
Block 19444337(417 txs, 29999800 gas)/Sequential
                        time:   [11.767 ms 11.781 ms 11.794 ms]
                        change: [+6.7797% +7.0651% +7.3689%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low severe
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Collecting 100 samples in estimated 5.1245 s (1300 iterations)
Benchmarking Block 19444337(417 txs, 29999800 gas)/Parallel: Analyzing
Block 19444337(417 txs, 29999800 gas)/Parallel
                        time:   [3.9440 ms 3.9544 ms 3.9647 ms]
                        change: [+6.7278% +7.1075% +7.4650%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Collecting 100 samples in estimated 5.0998 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Sequential: Analyzing
Block 1150000(9 txs, 649041 gas)/Sequential
                        time:   [59.530 µs 59.550 µs 59.568 µs]
                        change: [−0.0906% −0.0561% −0.0216%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Collecting 100 samples in estimated 5.1054 s (86k iterations)
Benchmarking Block 1150000(9 txs, 649041 gas)/Parallel: Analyzing
Block 1150000(9 txs, 649041 gas)/Parallel
                        time:   [59.570 µs 59.590 µs 59.608 µs]
                        change: [+0.0062% +0.0436% +0.0806%] (p = 0.03 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Collecting 100 samples in estimated 5.1407 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Sequential: Analyzing
Block 19426587(37 txs, 2633933 gas)/Sequential
                        time:   [2.4425 ms 2.4433 ms 2.4442 ms]
                        change: [+0.2807% +0.3836% +0.4843%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Collecting 100 samples in estimated 5.1420 s (2100 iterations)
Benchmarking Block 19426587(37 txs, 2633933 gas)/Parallel: Analyzing
Block 19426587(37 txs, 2633933 gas)/Parallel
                        time:   [2.4471 ms 2.4479 ms 2.4488 ms]
                        change: [+0.3746% +0.4745% +0.5729%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Collecting 100 samples in estimated 7.6086 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Sequential: Analyzing
Block 11814555(579 txs, 12494001 gas)/Sequential
                        time:   [757.80 µs 758.85 µs 759.90 µs]
                        change: [+3.4347% +3.6164% +3.7796%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Collecting 100 samples in estimated 8.9735 s (10k iterations)
Benchmarking Block 11814555(579 txs, 12494001 gas)/Parallel: Analyzing
Block 11814555(579 txs, 12494001 gas)/Parallel
                        time:   [888.17 µs 891.14 µs 894.10 µs]
                        change: [+6.6266% +7.1056% +7.5567%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Collecting 100 samples in estimated 5.6931 s (800 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Sequential: Analyzing
Block 14334629(819 txs, 30135754 gas)/Sequential
                        time:   [7.1062 ms 7.1167 ms 7.1270 ms]
                        change: [+10.727% +10.950% +11.173%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Collecting 100 samples in estimated 5.1139 s (2200 iterations)
Benchmarking Block 14334629(819 txs, 30135754 gas)/Parallel: Analyzing
Block 14334629(819 txs, 30135754 gas)/Parallel
                        time:   [2.3384 ms 2.3464 ms 2.3543 ms]
                        change: [+8.5402% +8.9877% +9.4017%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Collecting 100 samples in estimated 6.2220 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Sequential: Analyzing
Block 19934116(58 txs, 3365857 gas)/Sequential
                        time:   [1.2284 ms 1.2295 ms 1.2306 ms]
                        change: [+1.5702% +1.6735% +1.7789%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Collecting 100 samples in estimated 6.2382 s (5050 iterations)
Benchmarking Block 19934116(58 txs, 3365857 gas)/Parallel: Analyzing
Block 19934116(58 txs, 3365857 gas)/Parallel
                        time:   [1.2279 ms 1.2290 ms 1.2301 ms]
                        change: [+1.5129% +1.6168% +1.7324%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Collecting 100 samples in estimated 5.2428 s (900 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Sequential: Analyzing
Block 19933612(130 txs, 11236414 gas)/Sequential
                        time:   [5.8082 ms 5.8153 ms 5.8223 ms]
                        change: [+7.3718% +7.5132% +7.6565%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Collecting 100 samples in estimated 7.8981 s (5050 iterations)
Benchmarking Block 19933612(130 txs, 11236414 gas)/Parallel: Analyzing
Block 19933612(130 txs, 11236414 gas)/Parallel
                        time:   [1.5597 ms 1.5625 ms 1.5654 ms]
                        change: [+3.2155% +3.5954% +3.9570%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  2 (2.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.8s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Collecting 100 samples in estimated 6.8101 s (5050 iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Sequential: Analyzing
Block 8038679(237 txs, 7993635 gas)/Sequential
                        time:   [1.3581 ms 1.3610 ms 1.3639 ms]
                        change: [+4.3597% +4.5858% +4.8470%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Collecting 100 samples in estimated 7.3066 s (10k iterations)
Benchmarking Block 8038679(237 txs, 7993635 gas)/Parallel: Analyzing
Block 8038679(237 txs, 7993635 gas)/Parallel
                        time:   [720.55 µs 722.38 µs 724.31 µs]
                        change: [+4.8529% +5.1493% +5.4774%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 930196(18 txs, 378000 gas)/Sequential
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Collecting 100 samples in estimated 5.0209 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Sequential: Analyzing
Block 930196(18 txs, 378000 gas)/Sequential
                        time:   [23.243 µs 23.248 µs 23.252 µs]
                        change: [−0.2367% −0.1338% −0.0296%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Found 7 outliers among 100 measurements (7.00%)
  5 (5.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Collecting 100 samples in estimated 5.0183 s (217k iterations)
Benchmarking Block 930196(18 txs, 378000 gas)/Parallel: Analyzing
Block 930196(18 txs, 378000 gas)/Parallel
                        time:   [23.261 µs 23.266 µs 23.271 µs]
                        change: [−0.2948% −0.1923% −0.0882%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.7s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Collecting 100 samples in estimated 8.6929 s (5050 iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Sequential: Analyzing
Block 4864590(195 txs, 7985890 gas)/Sequential
                        time:   [1.7314 ms 1.7344 ms 1.7372 ms]
                        change: [+5.9926% +6.1893% +6.3731%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  3 (3.00%) low mild
  3 (3.00%) high mild
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Collecting 100 samples in estimated 5.6047 s (10k iterations)
Benchmarking Block 4864590(195 txs, 7985890 gas)/Parallel: Analyzing
Block 4864590(195 txs, 7985890 gas)/Parallel
                        time:   [548.96 µs 550.65 µs 552.58 µs]
                        change: [+5.0813% +5.4426% +5.8444%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Collecting 100 samples in estimated 5.1244 s (600 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Sequential: Analyzing
Block 16257471(98 txs, 20267875 gas)/Sequential
                        time:   [8.5032 ms 8.5075 ms 8.5119 ms]
                        change: [+3.6800% +3.7555% +3.8315%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Collecting 100 samples in estimated 5.5492 s (1000 iterations)
Benchmarking Block 16257471(98 txs, 20267875 gas)/Parallel: Analyzing
Block 16257471(98 txs, 20267875 gas)/Parallel
                        time:   [5.5442 ms 5.5472 ms 5.5501 ms]
                        change: [+3.0584% +3.1274% +3.1952%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Collecting 100 samples in estimated 5.5043 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Sequential: Analyzing
Block 6196166(108 txs, 7975867 gas)/Sequential
                        time:   [545.15 µs 545.32 µs 545.48 µs]
                        change: [+0.0620% +0.1304% +0.1986%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Collecting 100 samples in estimated 6.8890 s (10k iterations)
Benchmarking Block 6196166(108 txs, 7975867 gas)/Parallel: Analyzing
Block 6196166(108 txs, 7975867 gas)/Parallel
                        time:   [688.59 µs 691.17 µs 693.99 µs]
                        change: [+7.0394% +7.4972% +7.9580%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Collecting 100 samples in estimated 5.0260 s (2000 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Sequential: Analyzing
Block 11114732(100 txs, 12450745 gas)/Sequential
                        time:   [2.5015 ms 2.5075 ms 2.5131 ms]
                        change: [+7.2972% +7.5640% +7.8246%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) low mild
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Collecting 100 samples in estimated 5.2734 s (1800 iterations)
Benchmarking Block 11114732(100 txs, 12450745 gas)/Parallel: Analyzing
Block 11114732(100 txs, 12450745 gas)/Parallel
                        time:   [2.9221 ms 2.9277 ms 2.9332 ms]
                        change: [+8.2258% +8.4529% +8.6763%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild

Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Collecting 100 samples in estimated 5.0385 s (600 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Sequential: Analyzing
Block 17666333(961 txs, 29983414 gas)/Sequential
                        time:   [8.3728 ms 8.3810 ms 8.3894 ms]
                        change: [+8.5060% +8.6748% +8.8357%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Collecting 100 samples in estimated 5.2873 s (1400 iterations)
Benchmarking Block 17666333(961 txs, 29983414 gas)/Parallel: Analyzing
Block 17666333(961 txs, 29983414 gas)/Parallel
                        time:   [3.7700 ms 3.7804 ms 3.7907 ms]
                        change: [+7.9764% +8.3505% +8.6939%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Collecting 100 samples in estimated 6.5353 s (5050 iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Sequential: Analyzing
Block 5526571(143 txs, 7988261 gas)/Sequential
                        time:   [1.3079 ms 1.3108 ms 1.3136 ms]
                        change: [+4.6035% +4.8271% +5.0482%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Collecting 100 samples in estimated 7.2523 s (10k iterations)
Benchmarking Block 5526571(143 txs, 7988261 gas)/Parallel: Analyzing
Block 5526571(143 txs, 7988261 gas)/Parallel
                        time:   [721.69 µs 723.60 µs 725.48 µs]
                        change: [+3.6960% +3.9756% +4.2648%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Collecting 100 samples in estimated 5.5737 s (20k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Sequential: Analyzing
Block 3356896(176 txs, 4033966 gas)/Sequential
                        time:   [275.86 µs 276.02 µs 276.17 µs]
                        change: [+1.2274% +1.3294% +1.4344%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 11 outliers among 100 measurements (11.00%)
  5 (5.00%) low mild
  5 (5.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Collecting 100 samples in estimated 5.2259 s (15k iterations)
Benchmarking Block 3356896(176 txs, 4033966 gas)/Parallel: Analyzing
Block 3356896(176 txs, 4033966 gas)/Parallel
                        time:   [348.98 µs 350.51 µs 352.06 µs]
                        change: [+7.3005% +7.9530% +8.5969%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Collecting 100 samples in estimated 5.3065 s (1400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Sequential: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Sequential
                        time:   [3.7571 ms 3.7670 ms 3.7767 ms]
                        change: [+15.948% +16.246% +16.576%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Collecting 100 samples in estimated 5.1137 s (2400 iterations)
Benchmarking Block 15274915(1226 txs, 29928443 gas)/Parallel: Analyzing
Block 15274915(1226 txs, 29928443 gas)/Parallel
                        time:   [2.1489 ms 2.1589 ms 2.1688 ms]
                        change: [+9.2125% +9.6784% +10.175%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Collecting 100 samples in estimated 6.2618 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Sequential: Analyzing
Block 19923400(24 txs, 1624049 gas)/Sequential
                        time:   [412.65 µs 412.82 µs 412.99 µs]
                        change: [+0.0348% +0.1071% +0.1832%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Collecting 100 samples in estimated 6.2700 s (15k iterations)
Benchmarking Block 19923400(24 txs, 1624049 gas)/Parallel: Analyzing
Block 19923400(24 txs, 1624049 gas)/Parallel
                        time:   [412.95 µs 413.12 µs 413.29 µs]
                        change: [−0.2060% −0.1314% −0.0624%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) high mild

Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Collecting 100 samples in estimated 5.7455 s (20k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Sequential: Analyzing
Block 2179522(222 txs, 4698004 gas)/Sequential
                        time:   [286.08 µs 286.25 µs 286.41 µs]
                        change: [+0.8476% +0.9855% +1.1190%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Collecting 100 samples in estimated 6.4659 s (15k iterations)
Benchmarking Block 2179522(222 txs, 4698004 gas)/Parallel: Analyzing
Block 2179522(222 txs, 4698004 gas)/Parallel
                        time:   [424.24 µs 426.60 µs 429.02 µs]
                        change: [+1.2953% +2.6843% +4.0649%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 6 outliers among 100 measurements (6.00%)
  1 (1.00%) low mild
  4 (4.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19910734(0 txs, 0 gas)/Sequential
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Collecting 100 samples in estimated 5.0000 s (5.2M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Sequential: Analyzing
Block 19910734(0 txs, 0 gas)/Sequential
                        time:   [959.13 ns 962.34 ns 965.69 ns]
                        change: [−1.4721% −1.0686% −0.6854%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Collecting 100 samples in estimated 5.0022 s (5.2M iterations)
Benchmarking Block 19910734(0 txs, 0 gas)/Parallel: Analyzing
Block 19910734(0 txs, 0 gas)/Parallel
                        time:   [961.26 ns 964.63 ns 968.13 ns]
                        change: [−1.0785% −0.6935% −0.2780%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Collecting 100 samples in estimated 5.3187 s (900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Sequential: Analyzing
Block 19932810(270 txs, 18643597 gas)/Sequential
                        time:   [5.9152 ms 5.9223 ms 5.9294 ms]
                        change: [+11.815% +12.009% +12.208%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Collecting 100 samples in estimated 5.2393 s (1900 iterations)
Benchmarking Block 19932810(270 txs, 18643597 gas)/Parallel: Analyzing
Block 19932810(270 txs, 18643597 gas)/Parallel
                        time:   [2.7482 ms 2.7539 ms 2.7597 ms]
                        change: [+4.7067% +4.9679% +5.2228%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Collecting 100 samples in estimated 5.4897 s (800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Sequential: Analyzing
Block 19737292(195 txs, 29999921 gas)/Sequential
                        time:   [6.8441 ms 6.8510 ms 6.8579 ms]
                        change: [+7.3428% +7.4850% +7.6192%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Collecting 100 samples in estimated 5.2053 s (1800 iterations)
Benchmarking Block 19737292(195 txs, 29999921 gas)/Parallel: Analyzing
Block 19737292(195 txs, 29999921 gas)/Parallel
                        time:   [2.8851 ms 2.8889 ms 2.8927 ms]
                        change: [+7.9019% +8.0793% +8.2564%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Collecting 100 samples in estimated 5.3751 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Sequential: Analyzing
Block 116525(83 txs, 2625335 gas)/Sequential
                        time:   [133.49 µs 133.52 µs 133.55 µs]
                        change: [−0.0102% +0.0769% +0.1635%] (p = 0.08 > 0.05)
                        No change in performance detected.
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Collecting 100 samples in estimated 5.3815 s (40k iterations)
Benchmarking Block 116525(83 txs, 2625335 gas)/Parallel: Analyzing
Block 116525(83 txs, 2625335 gas)/Parallel
                        time:   [133.74 µs 133.78 µs 133.83 µs]
                        change: [+0.0943% +0.1816% +0.2717%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Collecting 100 samples in estimated 5.2914 s (1600 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Sequential: Analyzing
Block 7280000(118 txs, 7992790 gas)/Sequential
                        time:   [3.2821 ms 3.2859 ms 3.2897 ms]
                        change: [+4.7153% +4.8397% +4.9415%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Collecting 100 samples in estimated 9.3685 s (5050 iterations)
Benchmarking Block 7280000(118 txs, 7992790 gas)/Parallel: Analyzing
Block 7280000(118 txs, 7992790 gas)/Parallel
                        time:   [1.8453 ms 1.8468 ms 1.8483 ms]
                        change: [+2.8081% +2.9260% +3.0452%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Collecting 100 samples in estimated 5.0740 s (500 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Sequential: Analyzing
Block 14545870(456 txs, 29925884 gas)/Sequential
                        time:   [10.159 ms 10.167 ms 10.176 ms]
                        change: [+7.0096% +7.2044% +7.3867%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Collecting 100 samples in estimated 5.2692 s (1600 iterations)
Benchmarking Block 14545870(456 txs, 29925884 gas)/Parallel: Analyzing
Block 14545870(456 txs, 29925884 gas)/Parallel
                        time:   [3.2980 ms 3.3078 ms 3.3177 ms]
                        change: [+7.4999% +7.9130% +8.3345%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Collecting 100 samples in estimated 5.2778 s (1900 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Sequential: Analyzing
Block 9069000(56 txs, 8762935 gas)/Sequential
                        time:   [2.7627 ms 2.7657 ms 2.7686 ms]
                        change: [+1.7030% +1.8111% +1.9161%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  4 (4.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 8.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Collecting 100 samples in estimated 8.5033 s (5050 iterations)
Benchmarking Block 9069000(56 txs, 8762935 gas)/Parallel: Analyzing
Block 9069000(56 txs, 8762935 gas)/Parallel
                        time:   [1.6840 ms 1.6874 ms 1.6918 ms]
                        change: [+1.9930% +2.2041% +2.4157%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Collecting 100 samples in estimated 5.2944 s (1600 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Sequential: Analyzing
Block 12243999(205 txs, 12444977 gas)/Sequential
                        time:   [3.2926 ms 3.3009 ms 3.3090 ms]
                        change: [+7.8897% +8.1407% +8.4257%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.5s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Collecting 100 samples in estimated 6.5188 s (5050 iterations)
Benchmarking Block 12243999(205 txs, 12444977 gas)/Parallel: Analyzing
Block 12243999(205 txs, 12444977 gas)/Parallel
                        time:   [1.2937 ms 1.2965 ms 1.2991 ms]
                        change: [+4.2333% +4.5061% +4.7758%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Collecting 100 samples in estimated 9.9331 s (10k iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Sequential: Analyzing
Block 12300570(687 txs, 14934316 gas)/Sequential
                        time:   [981.80 µs 984.51 µs 987.14 µs]
                        change: [+4.3585% +4.6568% +5.0018%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.0s, enable flat sampling, or reduce sample count to 70.
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Collecting 100 samples in estimated 5.0116 s (5050 iterations)
Benchmarking Block 12300570(687 txs, 14934316 gas)/Parallel: Analyzing
Block 12300570(687 txs, 14934316 gas)/Parallel
                        time:   [997.26 µs 999.76 µs 1.0022 ms]
                        change: [+5.6442% +6.0132% +6.3826%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild

Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Collecting 100 samples in estimated 5.0554 s (2000 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Sequential: Analyzing
Block 19929064(103 txs, 7743849 gas)/Sequential
                        time:   [2.5327 ms 2.5373 ms 2.5418 ms]
                        change: [+5.0617% +5.2295% +5.4246%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  4 (4.00%) low mild
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Collecting 100 samples in estimated 7.1938 s (5050 iterations)
Benchmarking Block 19929064(103 txs, 7743849 gas)/Parallel: Analyzing
Block 19929064(103 txs, 7743849 gas)/Parallel
                        time:   [1.4308 ms 1.4336 ms 1.4365 ms]
                        change: [+3.8927% +4.1743% +4.4695%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high severe

Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Collecting 100 samples in estimated 5.2238 s (1500 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Sequential: Analyzing
Block 10760440(202 txs, 12466618 gas)/Sequential
                        time:   [3.4901 ms 3.4954 ms 3.5007 ms]
                        change: [+8.2756% +8.4462% +8.6096%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.4s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Collecting 100 samples in estimated 7.4151 s (5050 iterations)
Benchmarking Block 10760440(202 txs, 12466618 gas)/Parallel: Analyzing
Block 10760440(202 txs, 12466618 gas)/Parallel
                        time:   [1.4625 ms 1.4660 ms 1.4697 ms]
                        change: [+4.3326% +4.6771% +5.0343%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Collecting 100 samples in estimated 5.6503 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Sequential: Analyzing
Block 1796867(49 txs, 3917663 gas)/Sequential
                        time:   [160.76 µs 160.84 µs 160.91 µs]
                        change: [−0.1150% −0.0304% +0.0486%] (p = 0.47 > 0.05)
                        No change in performance detected.
Found 15 outliers among 100 measurements (15.00%)
  15 (15.00%) high mild
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Collecting 100 samples in estimated 5.6521 s (35k iterations)
Benchmarking Block 1796867(49 txs, 3917663 gas)/Parallel: Analyzing
Block 1796867(49 txs, 3917663 gas)/Parallel
                        time:   [160.87 µs 160.94 µs 161.00 µs]
                        change: [−0.0114% +0.0721% +0.1528%] (p = 0.09 > 0.05)
                        No change in performance detected.
Found 6 outliers among 100 measurements (6.00%)
  6 (6.00%) high mild

Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Collecting 100 samples in estimated 5.1652 s (1900 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Sequential: Analyzing
Block 17034869(93 txs, 8450250 gas)/Sequential
                        time:   [2.6943 ms 2.6998 ms 2.7052 ms]
                        change: [+5.1035% +5.3311% +5.5538%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 5.6s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Collecting 100 samples in estimated 5.6478 s (5050 iterations)
Benchmarking Block 17034869(93 txs, 8450250 gas)/Parallel: Analyzing
Block 17034869(93 txs, 8450250 gas)/Parallel
                        time:   [1.1182 ms 1.1213 ms 1.1245 ms]
                        change: [+3.3218% +3.8789% +4.4207%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  1 (1.00%) high severe

Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Collecting 100 samples in estimated 5.4896 s (700 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Sequential: Analyzing
Block 17034870(184 txs, 29999074 gas)/Sequential
                        time:   [7.8506 ms 7.8575 ms 7.8641 ms]
                        change: [+7.0508% +7.1869% +7.3144%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Collecting 100 samples in estimated 5.1545 s (1500 iterations)
Benchmarking Block 17034870(184 txs, 29999074 gas)/Parallel: Analyzing
Block 17034870(184 txs, 29999074 gas)/Parallel
                        time:   [3.4412 ms 3.4483 ms 3.4553 ms]
                        change: [+4.3619% +4.6680% +4.9604%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Collecting 100 samples in estimated 5.0036 s (2500 iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Sequential: Analyzing
Block 15752489(132 txs, 8242594 gas)/Sequential
                        time:   [1.9906 ms 1.9946 ms 1.9986 ms]
                        change: [+5.7595% +5.9836% +6.2100%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Collecting 100 samples in estimated 9.7301 s (10k iterations)
Benchmarking Block 15752489(132 txs, 8242594 gas)/Parallel: Analyzing
Block 15752489(132 txs, 8242594 gas)/Parallel
                        time:   [962.20 µs 964.77 µs 967.25 µs]
                        change: [+4.2333% +4.6006% +4.9671%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low severe
  3 (3.00%) low mild

Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Collecting 100 samples in estimated 5.5659 s (900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Sequential: Analyzing
Block 19426586(127 txs, 15757891 gas)/Sequential
                        time:   [6.1651 ms 6.1703 ms 6.1753 ms]
                        change: [+6.6710% +6.7644% +6.8734%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Collecting 100 samples in estimated 5.0177 s (1900 iterations)
Benchmarking Block 19426586(127 txs, 15757891 gas)/Parallel: Analyzing
Block 19426586(127 txs, 15757891 gas)/Parallel
                        time:   [2.6372 ms 2.6403 ms 2.6434 ms]
                        change: [+2.7689% +2.9407% +3.1086%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.5s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Collecting 100 samples in estimated 9.5000 s (5050 iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Sequential: Analyzing
Block 8889776(330 txs, 9996021 gas)/Sequential
                        time:   [1.8716 ms 1.8755 ms 1.8793 ms]
                        change: [+4.3039% +4.5078% +4.7331%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Collecting 100 samples in estimated 9.2595 s (10k iterations)
Benchmarking Block 8889776(330 txs, 9996021 gas)/Parallel: Analyzing
Block 8889776(330 txs, 9996021 gas)/Parallel
                        time:   [925.43 µs 930.04 µs 935.29 µs]
                        change: [+7.0215% +7.6411% +8.2500%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Collecting 100 samples in estimated 5.0852 s (1000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Sequential: Analyzing
Block 19932148(227 txs, 14378808 gas)/Sequential
                        time:   [5.0503 ms 5.0592 ms 5.0676 ms]
                        change: [+7.7639% +7.9595% +8.1489%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Collecting 100 samples in estimated 5.1297 s (2000 iterations)
Benchmarking Block 19932148(227 txs, 14378808 gas)/Parallel: Analyzing
Block 19932148(227 txs, 14378808 gas)/Parallel
                        time:   [2.5596 ms 2.5653 ms 2.5710 ms]
                        change: [+3.8575% +4.1441% +4.4202%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Collecting 100 samples in estimated 5.8522 s (500 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Sequential: Analyzing
Block 19498855(241 txs, 29919049 gas)/Sequential
                        time:   [11.689 ms 11.696 ms 11.704 ms]
                        change: [+4.3524% +4.5262% +4.6929%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Collecting 100 samples in estimated 5.4315 s (1100 iterations)
Benchmarking Block 19498855(241 txs, 29919049 gas)/Parallel: Analyzing
Block 19498855(241 txs, 29919049 gas)/Parallel
                        time:   [4.9377 ms 4.9416 ms 4.9454 ms]
                        change: [+2.3348% +2.4292% +2.5282%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Collecting 100 samples in estimated 5.0414 s (1000 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Sequential: Analyzing
Block 12244000(133 txs, 12450737 gas)/Sequential
                        time:   [5.0063 ms 5.0151 ms 5.0233 ms]
                        change: [+6.0029% +6.2096% +6.3826%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  4 (4.00%) low mild
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Collecting 100 samples in estimated 5.3320 s (1500 iterations)
Benchmarking Block 12244000(133 txs, 12450737 gas)/Parallel: Analyzing
Block 12244000(133 txs, 12450737 gas)/Parallel
                        time:   [3.5534 ms 3.5573 ms 3.5611 ms]
                        change: [+4.5880% +4.7088% +4.8383%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Collecting 100 samples in estimated 5.2970 s (1200 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Sequential: Analyzing
Block 19917570(116 txs, 12889065 gas)/Sequential
                        time:   [4.4283 ms 4.4349 ms 4.4411 ms]
                        change: [+8.2398% +8.4071% +8.5618%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 7 outliers among 100 measurements (7.00%)
  2 (2.00%) low severe
  4 (4.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.9s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Collecting 100 samples in estimated 7.9363 s (5050 iterations)
Benchmarking Block 19917570(116 txs, 12889065 gas)/Parallel: Analyzing
Block 19917570(116 txs, 12889065 gas)/Parallel
                        time:   [1.5675 ms 1.5715 ms 1.5754 ms]
                        change: [+2.6355% +3.0128% +3.4115%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
  2 (2.00%) high severe

Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Collecting 100 samples in estimated 5.3593 s (700 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Sequential: Analyzing
Block 12964999(145 txs, 15026712 gas)/Sequential
                        time:   [7.6009 ms 7.6118 ms 7.6216 ms]
                        change: [+7.1006% +7.2716% +7.4386%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  2 (2.00%) low severe
  3 (3.00%) low mild
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Collecting 100 samples in estimated 5.2448 s (1300 iterations)
Benchmarking Block 12964999(145 txs, 15026712 gas)/Parallel: Analyzing
Block 12964999(145 txs, 15026712 gas)/Parallel
                        time:   [4.0147 ms 4.0263 ms 4.0378 ms]
                        change: [+4.5725% +4.9904% +5.4361%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Collecting 100 samples in estimated 5.1060 s (2500 iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Sequential: Analyzing
Block 12522062(177 txs, 15028295 gas)/Sequential
                        time:   [2.0553 ms 2.0594 ms 2.0634 ms]
                        change: [+4.6956% +4.9204% +5.1194%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Collecting 100 samples in estimated 9.7422 s (10k iterations)
Benchmarking Block 12522062(177 txs, 15028295 gas)/Parallel: Analyzing
Block 12522062(177 txs, 15028295 gas)/Parallel
                        time:   [972.97 µs 975.52 µs 978.24 µs]
                        change: [+4.5757% +4.9835% +5.3851%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild

Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Collecting 100 samples in estimated 6.2230 s (15k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Sequential: Analyzing
Block 5891667(380 txs, 7980153 gas)/Sequential
                        time:   [408.90 µs 409.25 µs 409.63 µs]
                        change: [+0.8506% +1.0036% +1.1448%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Collecting 100 samples in estimated 5.3207 s (10k iterations)
Benchmarking Block 5891667(380 txs, 7980153 gas)/Parallel: Analyzing
Block 5891667(380 txs, 7980153 gas)/Parallel
                        time:   [526.28 µs 528.27 µs 530.19 µs]
                        change: [+5.2941% +5.7281% +6.2100%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Collecting 100 samples in estimated 7.5933 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Sequential: Analyzing
Block 15537393(1 txs, 29991429 gas)/Sequential
                        time:   [1.5072 ms 1.5085 ms 1.5098 ms]
                        change: [+1.7656% +1.8619% +1.9745%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.6s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Collecting 100 samples in estimated 7.6025 s (5050 iterations)
Benchmarking Block 15537393(1 txs, 29991429 gas)/Parallel: Analyzing
Block 15537393(1 txs, 29991429 gas)/Parallel
                        time:   [1.5005 ms 1.5017 ms 1.5029 ms]
                        change: [+1.3993% +1.4792% +1.5612%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Collecting 100 samples in estimated 5.0371 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Sequential: Analyzing
Block 2674998(16 txs, 1915348 gas)/Sequential
                        time:   [83.322 µs 83.339 µs 83.354 µs]
                        change: [−0.0958% −0.0550% −0.0158%] (p = 0.01 < 0.05)
                        Change within noise threshold.
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Collecting 100 samples in estimated 5.0400 s (61k iterations)
Benchmarking Block 2674998(16 txs, 1915348 gas)/Parallel: Analyzing
Block 2674998(16 txs, 1915348 gas)/Parallel
                        time:   [83.350 µs 83.367 µs 83.383 µs]
                        change: [−0.0875% −0.0476% −0.0075%] (p = 0.02 < 0.05)
                        Change within noise threshold.

Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.1s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Collecting 100 samples in estimated 7.1306 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Sequential: Analyzing
Block 2462997(9 txs, 484186 gas)/Sequential
                        time:   [1.4110 ms 1.4159 ms 1.4203 ms]
                        change: [+0.9809% +1.2537% +1.5103%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Collecting 100 samples in estimated 7.1707 s (5050 iterations)
Benchmarking Block 2462997(9 txs, 484186 gas)/Parallel: Analyzing
Block 2462997(9 txs, 484186 gas)/Parallel
                        time:   [1.4077 ms 1.4106 ms 1.4136 ms]
                        change: [+1.5315% +1.7296% +1.9387%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild

Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Collecting 100 samples in estimated 5.6070 s (900 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Sequential: Analyzing
Block 15199017(866 txs, 30028395 gas)/Sequential
                        time:   [6.2672 ms 6.2805 ms 6.2931 ms]
                        change: [+11.981% +12.256% +12.512%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Collecting 100 samples in estimated 5.1874 s (2400 iterations)
Benchmarking Block 15199017(866 txs, 30028395 gas)/Parallel: Analyzing
Block 15199017(866 txs, 30028395 gas)/Parallel
                        time:   [2.1328 ms 2.1408 ms 2.1490 ms]
                        change: [+8.6665% +9.0810% +9.5326%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 46147(1 txs, 21000 gas)/Sequential
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Collecting 100 samples in estimated 5.0103 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Sequential: Analyzing
Block 46147(1 txs, 21000 gas)/Sequential
                        time:   [2.5312 µs 2.5349 µs 2.5389 µs]
                        change: [−0.0344% +0.1208% +0.2586%] (p = 0.12 > 0.05)
                        No change in performance detected.
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Collecting 100 samples in estimated 5.0012 s (2.0M iterations)
Benchmarking Block 46147(1 txs, 21000 gas)/Parallel: Analyzing
Block 46147(1 txs, 21000 gas)/Parallel
                        time:   [2.5356 µs 2.5391 µs 2.5429 µs]
                        change: [+0.0620% +0.2141% +0.3578%] (p = 0.01 < 0.05)
                        Change within noise threshold.

Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Collecting 100 samples in estimated 5.5345 s (900 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Sequential: Analyzing
Block 16146267(473 txs, 19204593 gas)/Sequential
                        time:   [6.1621 ms 6.1684 ms 6.1746 ms]
                        change: [+7.3365% +7.4769% +7.6118%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Collecting 100 samples in estimated 5.2037 s (2200 iterations)
Benchmarking Block 16146267(473 txs, 19204593 gas)/Parallel: Analyzing
Block 16146267(473 txs, 19204593 gas)/Parallel
                        time:   [2.3571 ms 2.3620 ms 2.3670 ms]
                        change: [+5.9907% +6.3271% +6.6464%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Collecting 100 samples in estimated 5.6026 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Sequential: Analyzing
Block 19933122(45 txs, 2056821 gas)/Sequential
                        time:   [369.32 µs 369.46 µs 369.60 µs]
                        change: [+1.4432% +1.5112% +1.5751%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high severe
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Collecting 100 samples in estimated 5.6105 s (15k iterations)
Benchmarking Block 19933122(45 txs, 2056821 gas)/Parallel: Analyzing
Block 19933122(45 txs, 2056821 gas)/Parallel
                        time:   [370.00 µs 370.29 µs 370.66 µs]
                        change: [+1.7695% +1.8294% +1.9055%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) low mild
  2 (2.00%) high severe

Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Collecting 100 samples in estimated 5.6981 s (500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Sequential: Analyzing
Block 19505152(417 txs, 29999872 gas)/Sequential
                        time:   [11.455 ms 11.466 ms 11.477 ms]
                        change: [+9.8278% +10.085% +10.340%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Collecting 100 samples in estimated 5.3544 s (1500 iterations)
Benchmarking Block 19505152(417 txs, 29999872 gas)/Parallel: Analyzing
Block 19505152(417 txs, 29999872 gas)/Parallel
                        time:   [3.5363 ms 3.5442 ms 3.5522 ms]
                        change: [+6.2749% +6.5423% +6.8341%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Collecting 100 samples in estimated 5.3048 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Sequential: Analyzing
Block 2675000(15 txs, 1312529 gas)/Sequential
                        time:   [65.818 µs 65.834 µs 65.848 µs]
                        change: [−0.0248% +0.0180% +0.0583%] (p = 0.40 > 0.05)
                        No change in performance detected.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Collecting 100 samples in estimated 5.3044 s (81k iterations)
Benchmarking Block 2675000(15 txs, 1312529 gas)/Parallel: Analyzing
Block 2675000(15 txs, 1312529 gas)/Parallel
                        time:   [65.829 µs 65.845 µs 65.858 µs]
                        change: [−0.0611% −0.0181% +0.0240%] (p = 0.41 > 0.05)
                        No change in performance detected.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Collecting 100 samples in estimated 5.1720 s (1100 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Sequential: Analyzing
Block 19638737(381 txs, 15932416 gas)/Sequential
                        time:   [4.6477 ms 4.6552 ms 4.6626 ms]
                        change: [+9.4982% +9.6970% +9.8552%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  5 (5.00%) low mild
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Collecting 100 samples in estimated 5.0040 s (2200 iterations)
Benchmarking Block 19638737(381 txs, 15932416 gas)/Parallel: Analyzing
Block 19638737(381 txs, 15932416 gas)/Parallel
                        time:   [2.2614 ms 2.2661 ms 2.2708 ms]
                        change: [+6.4753% +6.7387% +7.0193%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Collecting 100 samples in estimated 5.1427 s (600 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Sequential: Analyzing
Block 19932703(143 txs, 10421765 gas)/Sequential
                        time:   [8.5521 ms 8.5574 ms 8.5627 ms]
                        change: [+3.5589% +3.6332% +3.7062%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Collecting 100 samples in estimated 5.2917 s (900 iterations)
Benchmarking Block 19932703(143 txs, 10421765 gas)/Parallel: Analyzing
Block 19932703(143 txs, 10421765 gas)/Parallel
                        time:   [5.8705 ms 5.8737 ms 5.8768 ms]
                        change: [+0.9562% +1.0295% +1.1014%] (p = 0.00 < 0.05)
                        Change within noise threshold.

Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Collecting 100 samples in estimated 5.5126 s (1000 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Sequential: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Sequential
                        time:   [5.5033 ms 5.5178 ms 5.5319 ms]
                        change: [+9.4664% +9.7730% +10.099%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Collecting 100 samples in estimated 5.1924 s (2300 iterations)
Benchmarking Block 13217637(1100 txs, 29985362 gas)/Parallel: Analyzing
Block 13217637(1100 txs, 29985362 gas)/Parallel
                        time:   [2.2660 ms 2.2738 ms 2.2815 ms]
                        change: [+8.6523% +9.0807% +9.4778%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Collecting 100 samples in estimated 5.5113 s (700 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Sequential: Analyzing
Block 18426253(147 txs, 18889343 gas)/Sequential
                        time:   [7.8338 ms 7.8387 ms 7.8436 ms]
                        change: [+3.7952% +3.8911% +3.9847%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Collecting 100 samples in estimated 5.3263 s (1100 iterations)
Benchmarking Block 18426253(147 txs, 18889343 gas)/Parallel: Analyzing
Block 18426253(147 txs, 18889343 gas)/Parallel
                        time:   [4.8383 ms 4.8408 ms 4.8435 ms]
                        change: [+1.0053% +1.0759% +1.1439%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high mild

Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Collecting 100 samples in estimated 5.4527 s (10k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Sequential: Analyzing
Block 4330482(237 txs, 6669817 gas)/Sequential
                        time:   [544.81 µs 545.35 µs 545.87 µs]
                        change: [+0.9440% +1.0550% +1.1628%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Collecting 100 samples in estimated 6.0794 s (15k iterations)
Benchmarking Block 4330482(237 txs, 6669817 gas)/Parallel: Analyzing
Block 4330482(237 txs, 6669817 gas)/Parallel
                        time:   [403.10 µs 404.86 µs 406.63 µs]
                        change: [+6.9245% +7.5891% +8.2366%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  3 (3.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Collecting 100 samples in estimated 5.3065 s (800 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Sequential: Analyzing
Block 15538827(823 txs, 29981465 gas)/Sequential
                        time:   [6.6461 ms 6.6547 ms 6.6632 ms]
                        change: [+11.352% +11.542% +11.708%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Collecting 100 samples in estimated 5.2426 s (2000 iterations)
Benchmarking Block 15538827(823 txs, 29981465 gas)/Parallel: Analyzing
Block 15538827(823 txs, 29981465 gas)/Parallel
                        time:   [2.5805 ms 2.5906 ms 2.6007 ms]
                        change: [+9.7467% +10.286% +10.831%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  1 (1.00%) low mild
  1 (1.00%) high mild

Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 6.2s, enable flat sampling, or reduce sample count to 60.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Collecting 100 samples in estimated 6.2153 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Sequential: Analyzing
Block 4370000(97 txs, 6609719 gas)/Sequential
                        time:   [1.2315 ms 1.2322 ms 1.2328 ms]
                        change: [+0.9619% +1.0227% +1.0856%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) high mild
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 7.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Collecting 100 samples in estimated 7.1604 s (5050 iterations)
Benchmarking Block 4370000(97 txs, 6609719 gas)/Parallel: Analyzing
Block 4370000(97 txs, 6609719 gas)/Parallel
                        time:   [1.4136 ms 1.4168 ms 1.4200 ms]
                        change: [+3.6071% +3.9426% +4.3295%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 5 outliers among 100 measurements (5.00%)
  1 (1.00%) low severe
  1 (1.00%) low mild
  2 (2.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Collecting 100 samples in estimated 5.4938 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Sequential: Analyzing
Block 2688148(4 txs, 2725844 gas)/Sequential
                        time:   [108.85 µs 108.89 µs 108.92 µs]
                        change: [−0.4034% −0.3509% −0.2998%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Collecting 100 samples in estimated 5.4952 s (50k iterations)
Benchmarking Block 2688148(4 txs, 2725844 gas)/Parallel: Analyzing
Block 2688148(4 txs, 2725844 gas)/Parallel
                        time:   [108.92 µs 108.95 µs 108.97 µs]
                        change: [−0.4016% −0.3478% −0.2941%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Collecting 100 samples in estimated 5.3355 s (500 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Sequential: Analyzing
Block 19860366(430 txs, 29969358 gas)/Sequential
                        time:   [10.605 ms 10.619 ms 10.632 ms]
                        change: [+7.2623% +7.4948% +7.7302%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Collecting 100 samples in estimated 5.0209 s (1200 iterations)
Benchmarking Block 19860366(430 txs, 29969358 gas)/Parallel: Analyzing
Block 19860366(430 txs, 29969358 gas)/Parallel
                        time:   [4.1799 ms 4.1905 ms 4.2010 ms]
                        change: [+4.9786% +5.3178% +5.6598%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Collecting 100 samples in estimated 8.0336 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Sequential: Analyzing
Block 6137495(60 txs, 7994690 gas)/Sequential
                        time:   [795.67 µs 796.03 µs 796.37 µs]
                        change: [+0.5203% +0.5743% +0.6224%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Collecting 100 samples in estimated 5.1621 s (10k iterations)
Benchmarking Block 6137495(60 txs, 7994690 gas)/Parallel: Analyzing
Block 6137495(60 txs, 7994690 gas)/Parallel
                        time:   [512.14 µs 513.46 µs 514.90 µs]
                        change: [+5.4515% +5.7836% +6.1231%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild

Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Collecting 100 samples in estimated 6.2832 s (10k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Sequential: Analyzing
Block 4369999(22 txs, 6630311 gas)/Sequential
                        time:   [622.33 µs 622.58 µs 622.82 µs]
                        change: [+0.0265% +0.0747% +0.1202%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Collecting 100 samples in estimated 6.3086 s (15k iterations)
Benchmarking Block 4369999(22 txs, 6630311 gas)/Parallel: Analyzing
Block 4369999(22 txs, 6630311 gas)/Parallel
                        time:   [417.49 µs 418.05 µs 418.61 µs]
                        change: [+7.1086% +7.3507% +7.6394%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) high severe

Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Collecting 100 samples in estimated 5.0560 s (1700 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Sequential: Analyzing
Block 12047794(232 txs, 12486404 gas)/Sequential
                        time:   [2.9324 ms 2.9419 ms 2.9510 ms]
                        change: [+7.6514% +7.9746% +8.3091%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Collecting 100 samples in estimated 5.2915 s (1600 iterations)
Benchmarking Block 12047794(232 txs, 12486404 gas)/Parallel: Analyzing
Block 12047794(232 txs, 12486404 gas)/Parallel
                        time:   [3.2529 ms 3.2631 ms 3.2730 ms]
                        change: [+6.7451% +7.0806% +7.4233%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Collecting 100 samples in estimated 5.1054 s (2000 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Sequential: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Sequential
                        time:   [2.6179 ms 2.6365 ms 2.6549 ms]
                        change: [+10.194% +10.984% +11.722%] (p = 0.00 < 0.05)
                        Performance has regressed.
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Collecting 100 samples in estimated 5.1121 s (2200 iterations)
Benchmarking Block 14396881(1346 txs, 30020813 gas)/Parallel: Analyzing
Block 14396881(1346 txs, 30020813 gas)/Parallel
                        time:   [2.3261 ms 2.3341 ms 2.3423 ms]
                        change: [+9.0442% +9.4502% +9.8756%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Collecting 100 samples in estimated 5.1869 s (400 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Sequential: Analyzing
Block 19469101(469 txs, 26398517 gas)/Sequential
                        time:   [12.955 ms 12.966 ms 12.976 ms]
                        change: [+5.2346% +5.4570% +5.6701%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  2 (2.00%) high mild
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Collecting 100 samples in estimated 5.3014 s (800 iterations)
Benchmarking Block 19469101(469 txs, 26398517 gas)/Parallel: Analyzing
Block 19469101(469 txs, 26398517 gas)/Parallel
                        time:   [6.6274 ms 6.6341 ms 6.6407 ms]
                        change: [+4.9383% +5.0888% +5.2465%] (p = 0.00 < 0.05)
                        Performance has regressed.

Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Collecting 100 samples in estimated 5.2154 s (1800 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Sequential: Analyzing
Block 12159808(180 txs, 12478883 gas)/Sequential
                        time:   [2.9360 ms 2.9437 ms 2.9512 ms]
                        change: [+7.9268% +8.2301% +8.5244%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 2 outliers among 100 measurements (2.00%)
  2 (2.00%) low mild
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Collecting 100 samples in estimated 5.1677 s (1500 iterations)
Benchmarking Block 12159808(180 txs, 12478883 gas)/Parallel: Analyzing
Block 12159808(180 txs, 12478883 gas)/Parallel
                        time:   [3.4297 ms 3.4389 ms 3.4480 ms]
                        change: [+6.9010% +7.2125% +7.5494%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 1 outliers among 100 measurements (1.00%)
  1 (1.00%) low mild

Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Collecting 100 samples in estimated 5.0467 s (1700 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Sequential: Analyzing
Block 19933597(154 txs, 12788678 gas)/Sequential
                        time:   [2.9237 ms 2.9326 ms 2.9413 ms]
                        change: [+4.8432% +5.1228% +5.4081%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) low mild
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Warming up for 3.0000 s

Warning: Unable to complete 100 samples in 5.0s. You may wish to increase target time to 9.2s, enable flat sampling, or reduce sample count to 50.
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Collecting 100 samples in estimated 9.2307 s (5050 iterations)
Benchmarking Block 19933597(154 txs, 12788678 gas)/Parallel: Analyzing
Block 19933597(154 txs, 12788678 gas)/Parallel
                        time:   [1.8286 ms 1.8307 ms 1.8329 ms]
                        change: [+3.0111% +3.2547% +3.4922%] (p = 0.00 < 0.05)
                        Performance has regressed.
Found 4 outliers among 100 measurements (4.00%)
  2 (2.00%) low mild
  1 (1.00%) high mild
  1 (1.00%) high severe

Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Warming up for 3.0000 s
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Collecting 100 samples in estimated 5.5039 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Sequential: Analyzing
Block 9068998(3 txs, 3575534 gas)/Sequential
                        time:   [544.72 µs 544.80 µs 544.87 µs]
                        change: [+0.0505% +0.0857% +0.1221%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  3 (3.00%) high mild
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Warming up for 3.0000 s
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Collecting 100 samples in estimated 5.5048 s (10k iterations)
Benchmarking Block 9068998(3 txs, 3575534 gas)/Parallel: Analyzing
Block 9068998(3 txs, 3575534 gas)/Parallel
                        time:   [544.81 µs 544.88 µs 544.95 µs]
                        change: [+0.0314% +0.0791% +0.1222%] (p = 0.00 < 0.05)
                        Change within noise threshold.
Found 3 outliers among 100 measurements (3.00%)
  1 (1.00%) high mild
  2 (2.00%) high severe

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant