-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathout.txt
2015 lines (2013 loc) · 111 KB
/
out.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Compiling 1 files with 0.8.17
Solc 0.8.17 finished in 775.23ms
Compiler run successful
Running 1 test for test/RBT.t.sol:RedBlackTest
[32m[PASS][0m test() (gas: 1965276091)
Logs:
setup 1000 1000
============= inserting 1000 elements (BPB,RB) =============
gas used for inserting 1th item 52094 67357 +29%
gas used for inserting 2th item 70680 69187 -2%
gas used for inserting 3th item 70695 49295 -30%
gas used for inserting 4th item 93147 52934 -43%
gas used for inserting 5th item 117299 58704 -49%
gas used for inserting 6th item 93723 54436 -41%
gas used for inserting 7th item 115554 57823 -49%
gas used for inserting 8th item 137991 60715 -56%
gas used for inserting 9th item 71178 51539 -27%
gas used for inserting 10th item 71175 51543 -27%
gas used for inserting 11th item 71193 51549 -27%
gas used for inserting 12th item 71178 51542 -27%
gas used for inserting 13th item 115554 57824 -49%
gas used for inserting 14th item 116202 58093 -50%
gas used for inserting 15th item 115540 57820 -49%
gas used for inserting 16th item 93971 55569 -40%
gas used for inserting 17th item 137294 61195 -55%
gas used for inserting 18th item 71424 52668 -26%
gas used for inserting 19th item 115559 57829 -49%
gas used for inserting 20th item 93982 55570 -40%
gas used for inserting 21th item 137307 61195 -55%
gas used for inserting 22th item 93981 55574 -40%
gas used for inserting 23th item 71447 52678 -26%
gas used for inserting 24th item 71446 52680 -26%
gas used for inserting 25th item 115795 58947 -49%
gas used for inserting 26th item 71434 52671 -26%
gas used for inserting 27th item 116797 59610 -48%
gas used for inserting 28th item 116792 59608 -48%
gas used for inserting 29th item 94249 56707 -39%
gas used for inserting 30th item 137546 62327 -54%
gas used for inserting 31th item 94245 56712 -39%
gas used for inserting 32th item 71678 53805 -24%
gas used for inserting 33th item 116059 60103 -48%
gas used for inserting 34th item 71685 53799 -24%
gas used for inserting 35th item 139231 63235 -54%
gas used for inserting 36th item 137298 61195 -55%
gas used for inserting 37th item 137550 62329 -54%
gas used for inserting 38th item 118905 63344 -46%
gas used for inserting 39th item 71452 52688 -26%
gas used for inserting 40th item 71698 53807 -24%
gas used for inserting 41th item 94248 56719 -39%
gas used for inserting 42th item 71684 53808 -24%
gas used for inserting 43th item 71452 52692 -26%
gas used for inserting 44th item 116062 60110 -48%
gas used for inserting 45th item 94499 57836 -38%
gas used for inserting 46th item 116297 61209 -47%
gas used for inserting 47th item 71685 53812 -24%
gas used for inserting 48th item 117047 60744 -48%
gas used for inserting 49th item 71933 54937 -23%
gas used for inserting 50th item 71702 53812 -24%
gas used for inserting 51th item 115812 58978 -49%
gas used for inserting 52th item 119141 64462 -45%
gas used for inserting 53th item 116317 61218 -47%
gas used for inserting 54th item 94241 56715 -39%
gas used for inserting 55th item 71952 54947 -23%
gas used for inserting 56th item 71953 54947 -23%
gas used for inserting 57th item 71956 54945 -23%
gas used for inserting 58th item 71689 53818 -24%
gas used for inserting 59th item 117034 60743 -48%
gas used for inserting 60th item 119163 64479 -45%
gas used for inserting 61th item 141682 67368 -52%
gas used for inserting 62th item 116069 60120 -48%
gas used for inserting 63th item 137557 62346 -54%
gas used for inserting 64th item 71706 53829 -24%
gas used for inserting 65th item 137803 63457 -53%
gas used for inserting 66th item 94486 57845 -38%
gas used for inserting 67th item 94500 57845 -38%
gas used for inserting 68th item 94513 57851 -38%
gas used for inserting 69th item 137574 62345 -54%
gas used for inserting 70th item 71938 54952 -23%
gas used for inserting 71th item 71964 54950 -23%
gas used for inserting 72th item 71955 54949 -23%
gas used for inserting 73th item 71960 54955 -23%
gas used for inserting 74th item 71958 54958 -23%
gas used for inserting 75th item 116305 61228 -47%
gas used for inserting 76th item 137559 62339 -54%
gas used for inserting 77th item 71964 54944 -23%
gas used for inserting 78th item 116321 61238 -47%
gas used for inserting 79th item 137807 63470 -53%
gas used for inserting 80th item 94509 57859 -38%
gas used for inserting 81th item 71948 54952 -23%
gas used for inserting 82th item 94515 57851 -38%
gas used for inserting 83th item 94510 57859 -38%
gas used for inserting 84th item 116321 61243 -47%
gas used for inserting 85th item 139863 64787 -53%
gas used for inserting 86th item 71947 54958 -23%
gas used for inserting 87th item 71947 54959 -23%
gas used for inserting 88th item 71964 54965 -23%
gas used for inserting 89th item 116314 61231 -47%
gas used for inserting 90th item 117300 61887 -47%
gas used for inserting 91th item 116327 61261 -47%
gas used for inserting 92th item 119139 64478 -45%
gas used for inserting 93th item 94750 58986 -37%
gas used for inserting 94th item 116326 61247 -47%
gas used for inserting 95th item 116329 61263 -47%
gas used for inserting 96th item 71953 54961 -23%
gas used for inserting 97th item 117298 61887 -47%
gas used for inserting 98th item 117308 61893 -47%
gas used for inserting 99th item 94746 58975 -37%
gas used for inserting 100th item 137817 63476 -53%
gas used for inserting 101th item 71956 54962 -23%
gas used for inserting 102th item 72199 56092 -22%
gas used for inserting 103th item 72217 56099 -22%
gas used for inserting 104th item 138065 64589 -53%
gas used for inserting 105th item 71956 54966 -23%
gas used for inserting 106th item 119160 64494 -45%
gas used for inserting 107th item 94755 58986 -37%
gas used for inserting 108th item 72221 56099 -22%
gas used for inserting 109th item 94526 57862 -38%
gas used for inserting 110th item 72224 56098 -22%
gas used for inserting 111th item 94771 59005 -37%
gas used for inserting 112th item 119184 64505 -45%
gas used for inserting 113th item 116580 62384 -46%
gas used for inserting 114th item 119414 65622 -45%
gas used for inserting 115th item 116567 62375 -46%
gas used for inserting 116th item 71965 54968 -23%
gas used for inserting 117th item 121183 68194 -43%
gas used for inserting 118th item 137830 63496 -53%
gas used for inserting 119th item 71966 54969 -23%
gas used for inserting 120th item 139873 64802 -53%
gas used for inserting 121th item 94757 58998 -37%
gas used for inserting 122th item 72207 56103 -22%
gas used for inserting 123th item 117310 61899 -47%
gas used for inserting 124th item 71979 54984 -23%
gas used for inserting 125th item 72225 56111 -22%
gas used for inserting 126th item 72209 56105 -22%
gas used for inserting 127th item 117318 61903 -47%
gas used for inserting 128th item 71979 54988 -23%
gas used for inserting 129th item 71968 54976 -23%
gas used for inserting 130th item 94778 59008 -37%
gas used for inserting 131th item 72230 56095 -22%
gas used for inserting 132th item 72227 56116 -22%
gas used for inserting 133th item 71970 54978 -23%
gas used for inserting 134th item 71975 54975 -23%
gas used for inserting 135th item 116591 62410 -46%
gas used for inserting 136th item 117315 61881 -47%
gas used for inserting 137th item 138095 64631 -53%
gas used for inserting 138th item 116588 62399 -46%
gas used for inserting 139th item 137851 63505 -53%
gas used for inserting 140th item 162325 68451 -57%
gas used for inserting 141th item 72219 56091 -22%
gas used for inserting 142th item 71968 54989 -23%
gas used for inserting 143th item 119441 65650 -45%
gas used for inserting 144th item 72222 56108 -22%
gas used for inserting 145th item 94785 59023 -37%
gas used for inserting 146th item 72223 56091 -22%
gas used for inserting 147th item 71978 54983 -23%
gas used for inserting 148th item 72218 56116 -22%
gas used for inserting 149th item 117581 63047 -46%
gas used for inserting 150th item 119426 65640 -45%
gas used for inserting 151th item 116583 62392 -46%
gas used for inserting 152th item 140137 65947 -52%
gas used for inserting 153th item 94792 59023 -37%
gas used for inserting 154th item 72226 56114 -22%
gas used for inserting 155th item 94778 59016 -37%
gas used for inserting 156th item 116599 62422 -46%
gas used for inserting 157th item 116604 62399 -46%
gas used for inserting 158th item 94776 59012 -37%
gas used for inserting 159th item 71981 54992 -23%
gas used for inserting 160th item 72227 56119 -22%
gas used for inserting 161th item 140128 65949 -52%
gas used for inserting 162th item 71994 55004 -23%
gas used for inserting 163th item 95020 60125 -36%
gas used for inserting 164th item 116842 63541 -45%
gas used for inserting 165th item 116594 62394 -46%
gas used for inserting 166th item 117567 63046 -46%
gas used for inserting 167th item 72247 56128 -22%
gas used for inserting 168th item 94776 59002 -37%
gas used for inserting 169th item 116342 61278 -47%
gas used for inserting 170th item 138094 64636 -53%
gas used for inserting 171th item 138339 65767 -52%
gas used for inserting 172th item 116595 62399 -46%
gas used for inserting 173th item 138358 65753 -52%
gas used for inserting 174th item 72248 56133 -22%
gas used for inserting 175th item 119682 66779 -44%
gas used for inserting 176th item 138097 64642 -53%
gas used for inserting 177th item 95033 60153 -36%
gas used for inserting 178th item 119422 65644 -45%
gas used for inserting 179th item 72248 56138 -22%
gas used for inserting 180th item 72483 57253 -21%
gas used for inserting 181th item 72247 56141 -22%
gas used for inserting 182th item 116599 62404 -46%
gas used for inserting 183th item 95042 60165 -36%
gas used for inserting 184th item 72494 57269 -21%
gas used for inserting 185th item 72498 57265 -21%
gas used for inserting 186th item 95052 60166 -36%
gas used for inserting 187th item 117595 63060 -46%
gas used for inserting 188th item 138352 65783 -52%
gas used for inserting 189th item 72239 56134 -22%
gas used for inserting 190th item 116617 62436 -46%
gas used for inserting 191th item 116860 63548 -45%
gas used for inserting 192th item 121446 69350 -42%
gas used for inserting 193th item 121471 69368 -42%
gas used for inserting 194th item 138100 64652 -53%
gas used for inserting 195th item 138105 64642 -53%
gas used for inserting 196th item 116370 61315 -47%
gas used for inserting 197th item 116616 62424 -46%
gas used for inserting 198th item 95034 60163 -36%
gas used for inserting 199th item 72245 56137 -22%
gas used for inserting 200th item 117592 63045 -46%
gas used for inserting 201th item 72246 56138 -22%
gas used for inserting 202th item 72505 57274 -21%
gas used for inserting 203th item 95053 60180 -36%
gas used for inserting 204th item 138126 64662 -53%
gas used for inserting 205th item 72016 54998 -23%
gas used for inserting 206th item 94797 59044 -37%
gas used for inserting 207th item 140146 65966 -52%
gas used for inserting 208th item 117614 63077 -46%
gas used for inserting 209th item 121482 69376 -42%
gas used for inserting 210th item 144026 72246 -49%
gas used for inserting 211th item 72492 57273 -20%
gas used for inserting 212th item 95058 60176 -36%
gas used for inserting 213th item 72512 57278 -21%
gas used for inserting 214th item 138357 65802 -52%
gas used for inserting 215th item 72510 57281 -21%
gas used for inserting 216th item 72494 57275 -20%
gas used for inserting 217th item 72495 57275 -20%
gas used for inserting 218th item 138115 64664 -53%
gas used for inserting 219th item 121471 69373 -42%
gas used for inserting 220th item 138137 64666 -53%
gas used for inserting 221th item 95062 60188 -36%
gas used for inserting 222th item 72514 57284 -21%
gas used for inserting 223th item 138134 64672 -53%
gas used for inserting 224th item 116877 63579 -45%
gas used for inserting 225th item 95055 60176 -36%
gas used for inserting 226th item 72268 56162 -22%
gas used for inserting 227th item 72503 57250 -21%
gas used for inserting 228th item 162968 70020 -57%
gas used for inserting 229th item 72501 57280 -20%
gas used for inserting 230th item 116385 61332 -47%
gas used for inserting 231th item 116628 62445 -46%
gas used for inserting 232th item 72258 56127 -22%
gas used for inserting 233th item 119689 66804 -44%
gas used for inserting 234th item 138372 65793 -52%
gas used for inserting 235th item 138387 65802 -52%
gas used for inserting 236th item 117618 63091 -46%
gas used for inserting 237th item 72519 57265 -21%
gas used for inserting 238th item 121250 68263 -43%
gas used for inserting 239th item 95068 60190 -36%
gas used for inserting 240th item 95072 60195 -36%
gas used for inserting 241th item 72277 56166 -22%
gas used for inserting 242th item 95062 60157 -36%
gas used for inserting 243th item 138388 65808 -52%
gas used for inserting 244th item 72508 57287 -20%
gas used for inserting 245th item 116883 63592 -45%
gas used for inserting 246th item 121253 68271 -43%
gas used for inserting 247th item 72522 57300 -20%
gas used for inserting 248th item 138126 64676 -53%
gas used for inserting 249th item 72508 57292 -20%
gas used for inserting 250th item 121501 69398 -42%
gas used for inserting 251th item 119713 66819 -44%
gas used for inserting 252th item 72511 57292 -20%
gas used for inserting 253th item 95062 60187 -36%
gas used for inserting 254th item 72528 57299 -20%
gas used for inserting 255th item 138375 65805 -52%
gas used for inserting 256th item 72512 57294 -20%
gas used for inserting 257th item 72265 56171 -22%
gas used for inserting 258th item 121504 69412 -42%
gas used for inserting 259th item 116636 62433 -46%
gas used for inserting 260th item 72529 57304 -20%
gas used for inserting 261th item 72533 57301 -21%
gas used for inserting 262th item 116888 63603 -45%
gas used for inserting 263th item 119469 65703 -45%
gas used for inserting 264th item 72527 57280 -21%
gas used for inserting 265th item 138396 65821 -52%
gas used for inserting 266th item 162983 70032 -57%
gas used for inserting 267th item 117636 63110 -46%
gas used for inserting 268th item 140412 67121 -52%
gas used for inserting 269th item 72516 57272 -21%
gas used for inserting 270th item 138155 64694 -53%
gas used for inserting 271th item 95085 60212 -36%
gas used for inserting 272th item 72767 58426 -19%
gas used for inserting 273th item 116897 63605 -45%
gas used for inserting 274th item 140413 67094 -52%
gas used for inserting 275th item 72522 57302 -20%
gas used for inserting 276th item 121493 69408 -42%
gas used for inserting 277th item 72273 56181 -22%
gas used for inserting 278th item 72519 57308 -20%
gas used for inserting 279th item 72537 57314 -20%
gas used for inserting 280th item 72524 57304 -20%
gas used for inserting 281th item 72536 57317 -20%
gas used for inserting 282th item 72538 57315 -20%
gas used for inserting 283th item 72789 58438 -19%
gas used for inserting 284th item 119736 66834 -44%
gas used for inserting 285th item 72293 56191 -22%
gas used for inserting 286th item 117868 64236 -45%
gas used for inserting 287th item 138403 65834 -52%
gas used for inserting 288th item 72299 56188 -22%
gas used for inserting 289th item 72297 56191 -22%
gas used for inserting 290th item 117645 63114 -46%
gas used for inserting 291th item 72527 57279 -21%
gas used for inserting 292th item 117144 64747 -44%
gas used for inserting 293th item 72541 57323 -20%
gas used for inserting 294th item 116662 62469 -46%
gas used for inserting 295th item 138397 65825 -52%
gas used for inserting 296th item 119961 67929 -43%
gas used for inserting 297th item 138398 65839 -52%
gas used for inserting 298th item 72545 57324 -20%
gas used for inserting 299th item 95082 60218 -36%
gas used for inserting 300th item 72533 57314 -20%
gas used for inserting 301th item 95343 61319 -35%
gas used for inserting 302th item 72533 57316 -20%
gas used for inserting 303th item 116660 62481 -46%
gas used for inserting 304th item 72546 57328 -20%
gas used for inserting 305th item 117873 64241 -45%
gas used for inserting 306th item 138392 65801 -52%
gas used for inserting 307th item 95100 60230 -36%
gas used for inserting 308th item 72532 57323 -20%
gas used for inserting 309th item 72306 56201 -22%
gas used for inserting 310th item 72533 57324 -20%
gas used for inserting 311th item 116909 63609 -45%
gas used for inserting 312th item 72532 57327 -20%
gas used for inserting 313th item 140451 67155 -52%
gas used for inserting 314th item 121528 69432 -42%
gas used for inserting 315th item 116905 63618 -45%
gas used for inserting 316th item 72292 56199 -22%
gas used for inserting 317th item 138403 65852 -52%
gas used for inserting 318th item 72784 58452 -19%
gas used for inserting 319th item 72552 57336 -20%
gas used for inserting 320th item 138418 65850 -52%
gas used for inserting 321th item 95338 61354 -35%
gas used for inserting 322th item 117897 64256 -45%
gas used for inserting 323th item 119730 66809 -44%
gas used for inserting 324th item 72558 57335 -20%
gas used for inserting 325th item 72541 57329 -20%
gas used for inserting 326th item 95105 60235 -36%
gas used for inserting 327th item 138407 65840 -52%
gas used for inserting 328th item 95355 61321 -35%
gas used for inserting 329th item 116904 63608 -45%
gas used for inserting 330th item 116915 63622 -45%
gas used for inserting 331th item 117166 64761 -44%
gas used for inserting 332th item 72561 57339 -20%
gas used for inserting 333th item 121780 70532 -42%
gas used for inserting 334th item 72540 57339 -20%
gas used for inserting 335th item 138426 65855 -52%
gas used for inserting 336th item 117888 64255 -45%
gas used for inserting 337th item 117153 64739 -44%
gas used for inserting 338th item 72803 58437 -19%
gas used for inserting 339th item 72543 57341 -20%
gas used for inserting 340th item 72549 57335 -20%
gas used for inserting 341th item 95361 61372 -35%
gas used for inserting 342th item 116926 63621 -45%
gas used for inserting 343th item 72547 57340 -20%
gas used for inserting 344th item 117158 64740 -44%
gas used for inserting 345th item 140447 67165 -52%
gas used for inserting 346th item 72565 57348 -20%
gas used for inserting 347th item 117166 64759 -44%
gas used for inserting 348th item 95123 60245 -36%
gas used for inserting 349th item 95345 61365 -35%
gas used for inserting 350th item 117897 64267 -45%
gas used for inserting 351th item 117912 64276 -45%
gas used for inserting 352th item 72569 57349 -20%
gas used for inserting 353th item 117895 64263 -45%
gas used for inserting 354th item 95365 61380 -35%
gas used for inserting 355th item 137928 63566 -53%
gas used for inserting 356th item 72804 58468 -19%
gas used for inserting 357th item 117920 64282 -45%
gas used for inserting 358th item 117178 64756 -44%
gas used for inserting 359th item 120002 68002 -43%
gas used for inserting 360th item 138173 64693 -53%
gas used for inserting 361th item 72573 57354 -20%
gas used for inserting 362th item 72552 57353 -20%
gas used for inserting 363th item 138417 65863 -52%
gas used for inserting 364th item 72557 57349 -20%
gas used for inserting 365th item 165100 73752 -55%
gas used for inserting 366th item 72806 58475 -19%
gas used for inserting 367th item 72560 57349 -20%
gas used for inserting 368th item 72315 56224 -22%
gas used for inserting 369th item 119516 65754 -44%
gas used for inserting 370th item 121774 70526 -42%
gas used for inserting 371th item 72823 58486 -19%
gas used for inserting 372th item 117187 64760 -44%
gas used for inserting 373th item 138673 67006 -51%
gas used for inserting 374th item 116921 63633 -45%
gas used for inserting 375th item 121545 69465 -42%
gas used for inserting 376th item 72314 56232 -22%
gas used for inserting 377th item 72577 57365 -20%
gas used for inserting 378th item 116937 63645 -45%
gas used for inserting 379th item 116934 63649 -45%
gas used for inserting 380th item 95370 61391 -35%
gas used for inserting 381th item 72335 56239 -22%
gas used for inserting 382th item 95116 60261 -36%
gas used for inserting 383th item 72580 57367 -20%
gas used for inserting 384th item 117914 64281 -45%
gas used for inserting 385th item 117920 64284 -45%
gas used for inserting 386th item 72810 58489 -19%
gas used for inserting 387th item 72829 58451 -19%
gas used for inserting 388th item 95362 61392 -35%
gas used for inserting 389th item 116945 63646 -45%
gas used for inserting 390th item 138684 67011 -51%
gas used for inserting 391th item 72579 57376 -20%
gas used for inserting 392th item 72830 58454 -19%
gas used for inserting 393th item 138685 67012 -51%
gas used for inserting 394th item 95366 61393 -35%
gas used for inserting 395th item 72572 57364 -20%
gas used for inserting 396th item 72573 57364 -20%
gas used for inserting 397th item 72817 58449 -19%
gas used for inserting 398th item 95363 61392 -35%
gas used for inserting 399th item 72817 58494 -19%
gas used for inserting 400th item 138682 67009 -51%
gas used for inserting 401th item 117198 64776 -44%
gas used for inserting 402th item 144333 73439 -49%
gas used for inserting 403th item 116935 63646 -45%
gas used for inserting 404th item 138701 67017 -51%
gas used for inserting 405th item 117198 64780 -44%
gas used for inserting 406th item 72592 57377 -20%
gas used for inserting 407th item 138454 65895 -52%
gas used for inserting 408th item 72827 58492 -19%
gas used for inserting 409th item 72591 57381 -20%
gas used for inserting 410th item 185496 73750 -60%
gas used for inserting 411th item 165130 73820 -55%
gas used for inserting 412th item 72598 57376 -20%
gas used for inserting 413th item 117928 64294 -45%
gas used for inserting 414th item 72593 57383 -20%
gas used for inserting 415th item 72580 57374 -20%
gas used for inserting 416th item 138447 65887 -52%
gas used for inserting 417th item 117203 64786 -44%
gas used for inserting 418th item 138445 65891 -52%
gas used for inserting 419th item 72825 58458 -19%
gas used for inserting 420th item 116962 63676 -45%
gas used for inserting 421th item 120032 68038 -43%
gas used for inserting 422th item 138448 65887 -52%
gas used for inserting 423th item 121570 69490 -42%
gas used for inserting 424th item 116941 63613 -45%
gas used for inserting 425th item 72597 57389 -20%
gas used for inserting 426th item 95384 61405 -35%
gas used for inserting 427th item 95392 61413 -35%
gas used for inserting 428th item 120052 68047 -43%
gas used for inserting 429th item 95644 62496 -34%
gas used for inserting 430th item 72847 58516 -19%
gas used for inserting 431th item 120019 68030 -43%
gas used for inserting 432th item 72848 58516 -19%
gas used for inserting 433th item 138453 65909 -52%
gas used for inserting 434th item 117197 64737 -44%
gas used for inserting 435th item 95131 60287 -36%
gas used for inserting 436th item 72827 58519 -19%
gas used for inserting 437th item 116713 62551 -46%
gas used for inserting 438th item 121816 70624 -42%
gas used for inserting 439th item 138697 67027 -51%
gas used for inserting 440th item 72588 57389 -20%
gas used for inserting 441th item 117949 64323 -45%
gas used for inserting 442th item 72850 58524 -19%
gas used for inserting 443th item 121827 70620 -42%
gas used for inserting 444th item 72853 58523 -19%
gas used for inserting 445th item 163278 71236 -56%
gas used for inserting 446th item 163298 71248 -56%
gas used for inserting 447th item 72608 57399 -20%
gas used for inserting 448th item 95404 61429 -35%
gas used for inserting 449th item 138706 67044 -51%
gas used for inserting 450th item 95388 61415 -35%
gas used for inserting 451th item 95392 61371 -35%
gas used for inserting 452th item 72844 58517 -19%
gas used for inserting 453th item 72592 57397 -20%
gas used for inserting 454th item 140735 68342 -51%
gas used for inserting 455th item 95160 60299 -36%
gas used for inserting 456th item 72612 57353 -21%
gas used for inserting 457th item 118191 65444 -44%
gas used for inserting 458th item 138231 64793 -53%
gas used for inserting 459th item 117200 64805 -44%
gas used for inserting 460th item 117217 64813 -44%
gas used for inserting 461th item 72845 58473 -19%
gas used for inserting 462th item 95150 60293 -36%
gas used for inserting 463th item 117222 64809 -44%
gas used for inserting 464th item 138466 65926 -52%
gas used for inserting 465th item 72864 58532 -19%
gas used for inserting 466th item 73110 59607 -18%
gas used for inserting 467th item 138975 68173 -50%
gas used for inserting 468th item 95403 61425 -35%
gas used for inserting 469th item 138464 65916 -52%
gas used for inserting 470th item 95399 61424 -35%
gas used for inserting 471th item 138732 67048 -51%
gas used for inserting 472th item 72862 58540 -19%
gas used for inserting 473th item 72848 58531 -19%
gas used for inserting 474th item 116972 63699 -45%
gas used for inserting 475th item 117226 64835 -44%
gas used for inserting 476th item 72861 58545 -19%
gas used for inserting 477th item 116985 63706 -45%
gas used for inserting 478th item 72848 58536 -19%
gas used for inserting 479th item 72374 56291 -22%
gas used for inserting 480th item 72618 57420 -20%
gas used for inserting 481th item 72867 58544 -19%
gas used for inserting 482th item 138716 67064 -51%
gas used for inserting 483th item 72608 57357 -21%
gas used for inserting 484th item 72602 57416 -20%
gas used for inserting 485th item 95645 62563 -34%
gas used for inserting 486th item 72873 58542 -19%
gas used for inserting 487th item 72854 58539 -19%
gas used for inserting 488th item 138716 67000 -51%
gas used for inserting 489th item 95429 61442 -35%
gas used for inserting 490th item 72855 58541 -19%
gas used for inserting 491th item 73119 59673 -18%
gas used for inserting 492th item 72625 57424 -20%
gas used for inserting 493th item 72616 57356 -21%
gas used for inserting 494th item 138969 68195 -50%
gas used for inserting 495th item 138736 67066 -51%
gas used for inserting 496th item 72860 58541 -19%
gas used for inserting 497th item 72873 58552 -19%
gas used for inserting 498th item 116977 63637 -45%
gas used for inserting 499th item 117968 64349 -45%
gas used for inserting 500th item 117972 64346 -45%
gas used for inserting 501th item 118227 65480 -44%
gas used for inserting 502th item 121851 70655 -42%
gas used for inserting 503th item 73125 59678 -18%
gas used for inserting 504th item 121824 70634 -42%
gas used for inserting 505th item 72874 58558 -19%
gas used for inserting 506th item 120049 68077 -43%
gas used for inserting 507th item 163325 71277 -56%
gas used for inserting 508th item 95416 61450 -35%
gas used for inserting 509th item 72876 58561 -19%
gas used for inserting 510th item 72881 58556 -19%
gas used for inserting 511th item 72867 58548 -19%
gas used for inserting 512th item 117236 64842 -44%
gas used for inserting 513th item 73112 59677 -18%
gas used for inserting 514th item 95419 61444 -35%
gas used for inserting 515th item 72884 58502 -19%
gas used for inserting 516th item 95419 61454 -35%
gas used for inserting 517th item 73112 59681 -18%
gas used for inserting 518th item 72882 58563 -19%
gas used for inserting 519th item 140771 68390 -51%
gas used for inserting 520th item 95172 60268 -36%
gas used for inserting 521th item 138736 67080 -51%
gas used for inserting 522th item 95424 61455 -35%
gas used for inserting 523th item 138737 67068 -51%
gas used for inserting 524th item 73134 59688 -18%
gas used for inserting 525th item 72884 58510 -19%
gas used for inserting 526th item 120326 69213 -42%
gas used for inserting 527th item 117005 63714 -45%
gas used for inserting 528th item 95195 60340 -36%
gas used for inserting 529th item 72886 58569 -19%
gas used for inserting 530th item 72887 58511 -19%
gas used for inserting 531th item 72885 58571 -19%
gas used for inserting 532th item 122084 71772 -41%
gas used for inserting 533th item 95197 60343 -36%
gas used for inserting 534th item 117240 64834 -44%
gas used for inserting 535th item 72893 58568 -19%
gas used for inserting 536th item 119818 66955 -44%
gas used for inserting 537th item 72646 57445 -20%
gas used for inserting 538th item 72629 57440 -20%
gas used for inserting 539th item 118238 65497 -44%
gas used for inserting 540th item 117258 64845 -44%
gas used for inserting 541th item 138501 65962 -52%
gas used for inserting 542th item 73123 59693 -18%
gas used for inserting 543th item 142631 70998 -50%
gas used for inserting 544th item 72646 57451 -20%
gas used for inserting 545th item 138499 65954 -52%
gas used for inserting 546th item 72899 58571 -19%
gas used for inserting 547th item 117007 63672 -45%
gas used for inserting 548th item 138494 65959 -52%
gas used for inserting 549th item 117012 63728 -45%
gas used for inserting 550th item 118225 65497 -44%
gas used for inserting 551th item 72651 57452 -20%
gas used for inserting 552th item 95440 61421 -35%
gas used for inserting 553th item 72896 58581 -19%
gas used for inserting 554th item 138747 67087 -51%
gas used for inserting 555th item 120094 68100 -43%
gas used for inserting 556th item 138749 67083 -51%
gas used for inserting 557th item 72651 57397 -20%
gas used for inserting 558th item 117244 64853 -44%
gas used for inserting 559th item 72640 57448 -20%
gas used for inserting 560th item 142628 71011 -50%
gas used for inserting 561th item 121630 69555 -42%
gas used for inserting 562th item 72889 58513 -19%
gas used for inserting 563th item 95207 60360 -36%
gas used for inserting 564th item 138997 68218 -50%
gas used for inserting 565th item 95686 62596 -34%
gas used for inserting 566th item 117988 64376 -45%
gas used for inserting 567th item 138755 67092 -51%
gas used for inserting 568th item 140782 68401 -51%
gas used for inserting 569th item 72413 56335 -22%
gas used for inserting 570th item 120340 69241 -42%
gas used for inserting 571th item 72895 58576 -19%
gas used for inserting 572th item 120340 69234 -42%
gas used for inserting 573th item 72892 58581 -19%
gas used for inserting 574th item 72657 57468 -20%
gas used for inserting 575th item 121852 70672 -42%
gas used for inserting 576th item 95206 60365 -36%
gas used for inserting 577th item 138763 67093 -51%
gas used for inserting 578th item 142645 71016 -50%
gas used for inserting 579th item 73140 59648 -18%
gas used for inserting 580th item 121885 70689 -42%
gas used for inserting 581th item 73149 59726 -18%
gas used for inserting 582th item 138752 67104 -51%
gas used for inserting 583th item 72661 57472 -20%
gas used for inserting 584th item 116772 62566 -46%
gas used for inserting 585th item 72667 57468 -20%
gas used for inserting 586th item 95447 61490 -35%
gas used for inserting 587th item 117263 64885 -44%
gas used for inserting 588th item 117276 64889 -44%
gas used for inserting 589th item 72898 58526 -19%
gas used for inserting 590th item 73159 59724 -18%
gas used for inserting 591th item 72653 57465 -20%
gas used for inserting 592th item 95695 62612 -34%
gas used for inserting 593th item 72900 58591 -19%
gas used for inserting 594th item 95459 61437 -35%
gas used for inserting 595th item 117024 63759 -45%
gas used for inserting 596th item 72895 58599 -19%
gas used for inserting 597th item 73168 59722 -18%
gas used for inserting 598th item 72654 57470 -20%
gas used for inserting 599th item 72904 58592 -19%
gas used for inserting 600th item 73165 59728 -18%
gas used for inserting 601th item 117279 64881 -44%
gas used for inserting 602th item 118262 65531 -44%
gas used for inserting 603th item 138778 67124 -51%
gas used for inserting 604th item 138770 67110 -51%
gas used for inserting 605th item 95466 61512 -35%
gas used for inserting 606th item 72922 58604 -19%
gas used for inserting 607th item 138764 67115 -51%
gas used for inserting 608th item 72919 58609 -19%
gas used for inserting 609th item 95469 61505 -35%
gas used for inserting 610th item 95707 62625 -34%
gas used for inserting 611th item 72909 58533 -19%
gas used for inserting 612th item 118255 65524 -44%
gas used for inserting 613th item 72904 58606 -19%
gas used for inserting 614th item 118266 65530 -44%
gas used for inserting 615th item 138764 67123 -51%
gas used for inserting 616th item 95453 61438 -35%
gas used for inserting 617th item 117532 66033 -43%
gas used for inserting 618th item 95229 60382 -36%
gas used for inserting 619th item 95702 62630 -34%
gas used for inserting 620th item 121875 70699 -41%
gas used for inserting 621th item 140829 68375 -51%
gas used for inserting 622th item 95469 61503 -35%
gas used for inserting 623th item 117288 64892 -44%
gas used for inserting 624th item 72681 57490 -20%
gas used for inserting 625th item 138777 67136 -51%
gas used for inserting 626th item 95726 62577 -34%
gas used for inserting 627th item 138790 67135 -51%
gas used for inserting 628th item 138536 65995 -52%
gas used for inserting 629th item 140812 68435 -51%
gas used for inserting 630th item 117044 63789 -45%
gas used for inserting 631th item 95707 62636 -34%
gas used for inserting 632th item 73166 59734 -18%
gas used for inserting 633th item 72672 57484 -20%
gas used for inserting 634th item 138780 67128 -51%
gas used for inserting 635th item 95470 61513 -35%
gas used for inserting 636th item 144691 74750 -48%
gas used for inserting 637th item 138537 65998 -52%
gas used for inserting 638th item 95728 62653 -34%
gas used for inserting 639th item 117530 66014 -43%
gas used for inserting 640th item 72915 58620 -19%
gas used for inserting 641th item 72938 58621 -19%
gas used for inserting 642th item 95723 62654 -34%
gas used for inserting 643th item 95482 61455 -35%
gas used for inserting 644th item 138782 67132 -51%
gas used for inserting 645th item 95722 62642 -34%
gas used for inserting 646th item 95714 62644 -34%
gas used for inserting 647th item 72933 58632 -19%
gas used for inserting 648th item 117541 65983 -43%
gas used for inserting 649th item 118031 64418 -45%
gas used for inserting 650th item 95715 62646 -34%
gas used for inserting 651th item 95491 61530 -35%
gas used for inserting 652th item 72939 58631 -19%
gas used for inserting 653th item 138544 65952 -52%
gas used for inserting 654th item 121912 70735 -41%
gas used for inserting 655th item 95728 62660 -34%
gas used for inserting 656th item 72447 56382 -22%
gas used for inserting 657th item 73185 59761 -18%
gas used for inserting 658th item 140828 68384 -51%
gas used for inserting 659th item 73169 59756 -18%
gas used for inserting 660th item 138545 66015 -52%
gas used for inserting 661th item 139031 68271 -50%
gas used for inserting 662th item 138550 66026 -52%
gas used for inserting 663th item 117059 63788 -45%
gas used for inserting 664th item 117296 64899 -44%
gas used for inserting 665th item 72944 58637 -19%
gas used for inserting 666th item 118043 64437 -45%
gas used for inserting 667th item 95739 62661 -34%
gas used for inserting 668th item 117290 64909 -44%
gas used for inserting 669th item 73188 59769 -18%
gas used for inserting 670th item 72929 58634 -19%
gas used for inserting 671th item 72945 58642 -19%
gas used for inserting 672th item 120401 69297 -42%
gas used for inserting 673th item 122170 71876 -41%
gas used for inserting 674th item 139036 68277 -50%
gas used for inserting 675th item 120125 68086 -43%
gas used for inserting 676th item 73180 59760 -18%
gas used for inserting 677th item 117308 64923 -44%
gas used for inserting 678th item 117544 66036 -43%
gas used for inserting 679th item 72941 58630 -19%
gas used for inserting 680th item 138806 67085 -51%
gas used for inserting 681th item 95488 61530 -35%
gas used for inserting 682th item 138801 67165 -51%
gas used for inserting 683th item 72703 57523 -20%
gas used for inserting 684th item 118302 65574 -44%
gas used for inserting 685th item 117560 65976 -43%
gas used for inserting 686th item 95728 62667 -34%
gas used for inserting 687th item 72936 58643 -19%
gas used for inserting 688th item 186187 75394 -59%
gas used for inserting 689th item 95502 61546 -35%
gas used for inserting 690th item 73201 59701 -18%
gas used for inserting 691th item 72711 57522 -20%
gas used for inserting 692th item 139066 68292 -50%
gas used for inserting 693th item 72697 57515 -20%
gas used for inserting 694th item 117314 64950 -44%
gas used for inserting 695th item 122169 71869 -41%
gas used for inserting 696th item 73190 59769 -18%
gas used for inserting 697th item 72953 58658 -19%
gas used for inserting 698th item 73204 59780 -18%
gas used for inserting 699th item 95518 61548 -35%
gas used for inserting 700th item 120149 68172 -43%
gas used for inserting 701th item 117078 63802 -45%
gas used for inserting 702th item 138806 67162 -51%
gas used for inserting 703th item 95500 61546 -35%
gas used for inserting 704th item 117325 64949 -44%
gas used for inserting 705th item 95740 62673 -34%
gas used for inserting 706th item 118285 65574 -44%
gas used for inserting 707th item 117564 65991 -43%
gas used for inserting 708th item 121690 69635 -42%
gas used for inserting 709th item 139057 68289 -50%
gas used for inserting 710th item 138812 67167 -51%
gas used for inserting 711th item 72946 58655 -19%
gas used for inserting 712th item 138811 67093 -51%
gas used for inserting 713th item 72953 58649 -19%
gas used for inserting 714th item 118315 65590 -44%
gas used for inserting 715th item 95505 61553 -35%
gas used for inserting 716th item 138814 67183 -51%
gas used for inserting 717th item 118295 65497 -44%
gas used for inserting 718th item 73195 59784 -18%
gas used for inserting 719th item 117074 63824 -45%
gas used for inserting 720th item 72967 58666 -19%
gas used for inserting 721th item 72970 58663 -19%
gas used for inserting 722th item 73214 59715 -18%
gas used for inserting 723th item 122186 71889 -41%
gas used for inserting 724th item 73209 59799 -18%
gas used for inserting 725th item 118072 64463 -45%
gas used for inserting 726th item 140874 68495 -51%
gas used for inserting 727th item 72959 58657 -19%
gas used for inserting 728th item 96007 63822 -33%
gas used for inserting 729th item 73215 59797 -18%
gas used for inserting 730th item 72712 57535 -20%
gas used for inserting 731th item 72976 58667 -19%
gas used for inserting 732th item 73218 59797 -18%
gas used for inserting 733th item 117327 64956 -44%
gas used for inserting 734th item 73205 59789 -18%
gas used for inserting 735th item 72727 57547 -20%
gas used for inserting 736th item 72958 58666 -19%
gas used for inserting 737th item 117341 64945 -44%
gas used for inserting 738th item 72713 57541 -20%
gas used for inserting 739th item 73206 59714 -18%
gas used for inserting 740th item 121951 70785 -41%
gas used for inserting 741th item 73220 59804 -18%
gas used for inserting 742th item 95281 60452 -36%
gas used for inserting 743th item 72974 58679 -19%
gas used for inserting 744th item 73212 59712 -18%
gas used for inserting 745th item 72976 58680 -19%
gas used for inserting 746th item 72963 58670 -19%
gas used for inserting 747th item 138581 66060 -52%
gas used for inserting 748th item 138827 67200 -51%
gas used for inserting 749th item 118070 64392 -45%
gas used for inserting 750th item 72735 57553 -20%
gas used for inserting 751th item 117581 66091 -43%
gas used for inserting 752th item 117592 66080 -43%
gas used for inserting 753th item 138586 66061 -52%
gas used for inserting 754th item 72964 58596 -19%
gas used for inserting 755th item 95513 61574 -35%
gas used for inserting 756th item 72967 58676 -19%
gas used for inserting 757th item 72721 57550 -20%
gas used for inserting 758th item 117587 66109 -43%
gas used for inserting 759th item 120162 68216 -43%
gas used for inserting 760th item 121937 70777 -41%
gas used for inserting 761th item 117343 64966 -44%
gas used for inserting 762th item 138837 67203 -51%
gas used for inserting 763th item 117586 66097 -43%
gas used for inserting 764th item 72987 58686 -19%
gas used for inserting 765th item 95772 62719 -34%
gas used for inserting 766th item 117831 67227 -42%
gas used for inserting 767th item 72986 58690 -19%
gas used for inserting 768th item 117592 66112 -43%
gas used for inserting 769th item 120416 69342 -42%
gas used for inserting 770th item 117593 66113 -43%
gas used for inserting 771th item 73221 59725 -18%
gas used for inserting 772th item 72973 58684 -19%
gas used for inserting 773th item 95544 61591 -35%
gas used for inserting 774th item 120416 69348 -42%
gas used for inserting 775th item 140868 68507 -51%
gas used for inserting 776th item 139106 68246 -50%
gas used for inserting 777th item 72990 58695 -19%
gas used for inserting 778th item 118080 64489 -45%
gas used for inserting 779th item 139083 68328 -50%
gas used for inserting 780th item 117338 64965 -44%
gas used for inserting 781th item 117099 63773 -45%
gas used for inserting 782th item 118322 65614 -44%
gas used for inserting 783th item 73224 59816 -18%
gas used for inserting 784th item 73242 59822 -18%
gas used for inserting 785th item 95527 61588 -35%
gas used for inserting 786th item 72750 57487 -20%
gas used for inserting 787th item 117357 64975 -44%
gas used for inserting 788th item 73228 59816 -18%
gas used for inserting 789th item 95546 61603 -35%
gas used for inserting 790th item 72977 58698 -19%
gas used for inserting 791th item 142990 72248 -49%
gas used for inserting 792th item 118591 66758 -43%
gas used for inserting 793th item 122189 71909 -41%
gas used for inserting 794th item 72996 58705 -19%
gas used for inserting 795th item 72502 56456 -22%
gas used for inserting 796th item 138857 67215 -51%
gas used for inserting 797th item 138846 67227 -51%
gas used for inserting 798th item 73002 58703 -19%
gas used for inserting 799th item 117343 64977 -44%
gas used for inserting 800th item 73248 59831 -18%
gas used for inserting 801th item 138850 67214 -51%
gas used for inserting 802th item 72990 58695 -19%
gas used for inserting 803th item 143003 72175 -49%
gas used for inserting 804th item 73010 58700 -19%
gas used for inserting 805th item 73250 59833 -18%
gas used for inserting 806th item 138858 67223 -51%
gas used for inserting 807th item 117599 66101 -43%
gas used for inserting 808th item 72990 58614 -19%
gas used for inserting 809th item 72991 58701 -19%
gas used for inserting 810th item 139101 68356 -50%
gas used for inserting 811th item 138854 67219 -51%
gas used for inserting 812th item 117602 66126 -43%
gas used for inserting 813th item 72992 58617 -19%
gas used for inserting 814th item 118351 65639 -44%
gas used for inserting 815th item 138851 67225 -51%
gas used for inserting 816th item 118589 66766 -43%
gas used for inserting 817th item 95791 62733 -34%
gas used for inserting 818th item 73005 58631 -19%
gas used for inserting 819th item 72747 57583 -20%
gas used for inserting 820th item 144773 74847 -48%
gas used for inserting 821th item 73256 59842 -18%
gas used for inserting 822th item 138629 66104 -52%
gas used for inserting 823th item 120433 69359 -42%
gas used for inserting 824th item 72995 58711 -19%
gas used for inserting 825th item 117617 66141 -43%
gas used for inserting 826th item 95808 62748 -34%
gas used for inserting 827th item 95806 62750 -34%
gas used for inserting 828th item 72770 57591 -20%
gas used for inserting 829th item 117615 66130 -43%
gas used for inserting 830th item 72997 58714 -19%
gas used for inserting 831th item 95553 61612 -35%
gas used for inserting 832th item 122215 71938 -41%
gas used for inserting 833th item 73013 58724 -19%
gas used for inserting 834th item 72753 57590 -20%
gas used for inserting 835th item 165565 75085 -54%
gas used for inserting 836th item 73261 59851 -18%
gas used for inserting 837th item 73243 59847 -18%
gas used for inserting 838th item 73012 58730 -19%
gas used for inserting 839th item 73247 59845 -18%
gas used for inserting 840th item 73264 59762 -18%
gas used for inserting 841th item 118369 65654 -44%
gas used for inserting 842th item 72998 58724 -19%
gas used for inserting 843th item 117129 63884 -45%
gas used for inserting 844th item 73016 58731 -19%
gas used for inserting 845th item 139360 69411 -50%
gas used for inserting 846th item 139116 68374 -50%
gas used for inserting 847th item 139118 68373 -50%
gas used for inserting 848th item 95800 62753 -34%
gas used for inserting 849th item 117370 64997 -44%
gas used for inserting 850th item 73249 59762 -18%
gas used for inserting 851th item 140898 68540 -51%
gas used for inserting 852th item 95803 62753 -34%
gas used for inserting 853th item 73249 59856 -18%
gas used for inserting 854th item 117124 63875 -45%
gas used for inserting 855th item 139115 68366 -50%
gas used for inserting 856th item 139135 68374 -50%
gas used for inserting 857th item 95813 62763 -34%
gas used for inserting 858th item 72763 57603 -20%
gas used for inserting 859th item 139130 68372 -50%
gas used for inserting 860th item 122231 71952 -41%
gas used for inserting 861th item 72781 57610 -20%
gas used for inserting 862th item 117631 66143 -43%
gas used for inserting 863th item 138635 66127 -52%
gas used for inserting 864th item 95570 61641 -35%
gas used for inserting 865th item 117636 66141 -43%
gas used for inserting 866th item 139119 68373 -50%
gas used for inserting 867th item 117385 64931 -44%
gas used for inserting 868th item 73026 58744 -19%
gas used for inserting 869th item 73031 58740 -19%
gas used for inserting 870th item 73025 58746 -19%
gas used for inserting 871th item 120471 69399 -42%
gas used for inserting 872th item 117387 64932 -44%
gas used for inserting 873th item 118380 65672 -44%
gas used for inserting 874th item 73013 58739 -19%
gas used for inserting 875th item 144780 74866 -48%
gas used for inserting 876th item 138885 67248 -51%
gas used for inserting 877th item 95815 62663 -34%
gas used for inserting 878th item 73278 59873 -18%
gas used for inserting 879th item 73258 59871 -18%
gas used for inserting 880th item 138903 67256 -51%
gas used for inserting 881th item 117380 65017 -44%
gas used for inserting 882th item 73267 59771 -18%
gas used for inserting 883th item 118613 66797 -43%
gas used for inserting 884th item 186265 75490 -59%
gas used for inserting 885th item 95588 61650 -35%
gas used for inserting 886th item 118373 65669 -44%
gas used for inserting 887th item 72792 57624 -20%
gas used for inserting 888th item 139133 68380 -50%
gas used for inserting 889th item 117398 65047 -44%
gas used for inserting 890th item 95828 62779 -34%
gas used for inserting 891th item 118375 65671 -44%
gas used for inserting 892th item 117632 66147 -43%
gas used for inserting 893th item 73284 59881 -18%
gas used for inserting 894th item 95577 61647 -35%
gas used for inserting 895th item 95827 62769 -34%
gas used for inserting 896th item 73277 59868 -18%
gas used for inserting 897th item 73267 59879 -18%
gas used for inserting 898th item 117649 66177 -43%
gas used for inserting 899th item 95594 61562 -35%
gas used for inserting 900th item 118370 65668 -44%
gas used for inserting 901th item 73036 58764 -19%
gas used for inserting 902th item 73275 59875 -18%
gas used for inserting 903th item 95817 62779 -34%
gas used for inserting 904th item 117641 66053 -43%
gas used for inserting 905th item 72797 57635 -20%
gas used for inserting 906th item 73043 58762 -19%
gas used for inserting 907th item 117392 65029 -44%
gas used for inserting 908th item 139142 68406 -50%
gas used for inserting 909th item 95831 62682 -34%
gas used for inserting 910th item 120228 68273 -43%
gas used for inserting 911th item 73294 59888 -18%
gas used for inserting 912th item 95584 61656 -35%
gas used for inserting 913th item 73027 58761 -19%
gas used for inserting 914th item 163730 72517 -55%
gas used for inserting 915th item 72789 57629 -20%
gas used for inserting 916th item 139145 68397 -50%
gas used for inserting 917th item 122497 73111 -40%
gas used for inserting 918th item 139146 68411 -50%
gas used for inserting 919th item 138915 67281 -51%
gas used for inserting 920th item 117640 66165 -43%
gas used for inserting 921th item 73037 58759 -19%
gas used for inserting 922th item 73034 58763 -19%
gas used for inserting 923th item 143047 72314 -49%
gas used for inserting 924th item 138899 67279 -51%
gas used for inserting 925th item 72804 57646 -20%
gas used for inserting 926th item 120259 68294 -43%
gas used for inserting 927th item 73045 58756 -19%
gas used for inserting 928th item 95854 62797 -34%
gas used for inserting 929th item 73299 59899 -18%
gas used for inserting 930th item 139150 68418 -50%
gas used for inserting 931th item 139153 68317 -50%
gas used for inserting 932th item 73040 58766 -19%
gas used for inserting 933th item 117662 66179 -43%
gas used for inserting 934th item 117652 66190 -43%
gas used for inserting 935th item 163727 72613 -55%
gas used for inserting 936th item 73045 58665 -19%
gas used for inserting 937th item 73060 58773 -19%
gas used for inserting 938th item 73307 59900 -18%
gas used for inserting 939th item 117651 66171 -43%
gas used for inserting 940th item 122280 72001 -41%
gas used for inserting 941th item 95842 62697 -34%
gas used for inserting 942th item 73061 58777 -19%
gas used for inserting 943th item 139152 68416 -50%
gas used for inserting 944th item 118632 66819 -43%
gas used for inserting 945th item 120725 70544 -41%
gas used for inserting 946th item 120504 69325 -42%
gas used for inserting 947th item 95857 62803 -34%
gas used for inserting 948th item 143065 72334 -49%
gas used for inserting 949th item 117181 63948 -45%
gas used for inserting 950th item 117661 66196 -43%
gas used for inserting 951th item 118411 65714 -44%
gas used for inserting 952th item 73295 59901 -18%
gas used for inserting 953th item 138914 67291 -51%
gas used for inserting 954th item 139160 68417 -50%
gas used for inserting 955th item 95846 62806 -34%
gas used for inserting 956th item 73554 61041 -17%
gas used for inserting 957th item 73067 58785 -19%
gas used for inserting 958th item 118409 65706 -44%
gas used for inserting 959th item 73067 58787 -19%
gas used for inserting 960th item 122027 70890 -41%
gas used for inserting 961th item 73065 58791 -19%
gas used for inserting 962th item 95622 61688 -35%
gas used for inserting 963th item 73296 59808 -18%
gas used for inserting 964th item 73051 58785 -19%
gas used for inserting 965th item 73310 59921 -18%
gas used for inserting 966th item 139406 69551 -50%
gas used for inserting 967th item 73315 59919 -18%
gas used for inserting 968th item 138918 67194 -51%
gas used for inserting 969th item 73316 59920 -18%
gas used for inserting 970th item 117681 66193 -43%
gas used for inserting 971th item 73323 59915 -18%
gas used for inserting 972th item 122302 72016 -41%
gas used for inserting 973th item 163750 72531 -55%
gas used for inserting 974th item 73320 59920 -18%
gas used for inserting 975th item 73060 58786 -19%
gas used for inserting 976th item 73074 58796 -19%
gas used for inserting 977th item 95630 61694 -35%
gas used for inserting 978th item 138924 67196 -51%
gas used for inserting 979th item 141197 69732 -50%
gas used for inserting 980th item 118667 66848 -43%
gas used for inserting 981th item 73058 58794 -19%
gas used for inserting 982th item 122295 72037 -41%
gas used for inserting 983th item 73075 58801 -19%
gas used for inserting 984th item 73322 59927 -18%
gas used for inserting 985th item 118658 66854 -43%
gas used for inserting 986th item 117922 67340 -42%
gas used for inserting 987th item 139189 68442 -50%
gas used for inserting 988th item 118429 65722 -44%
gas used for inserting 989th item 120498 69449 -42%
gas used for inserting 990th item 73063 58797 -19%
gas used for inserting 991th item 138934 67319 -51%