-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoutv2.txt
2015 lines (2013 loc) · 111 KB
/
outv2.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 765.12ms
Compiler run successful
Running 1 test for test/RBT.t.sol:RedBlackTest
[32m[PASS][0m test() (gas: 1184669997)
Logs:
setup 1000 1000
============= inserting 1000 elements (BPB,RB) =============
gas used for inserting 1th item 52100 45583 -12%
gas used for inserting 2th item 70701 27535 -61%
gas used for inserting 3th item 70686 27524 -61%
gas used for inserting 4th item 93143 31129 -66%
gas used for inserting 5th item 117296 36834 -68%
gas used for inserting 6th item 70950 28673 -59%
gas used for inserting 7th item 70936 28666 -59%
gas used for inserting 8th item 93744 32648 -65%
gas used for inserting 9th item 71182 29805 -58%
gas used for inserting 10th item 139784 41333 -70%
gas used for inserting 11th item 116183 36242 -68%
gas used for inserting 12th item 115561 36001 -68%
gas used for inserting 13th item 71197 29813 -58%
gas used for inserting 14th item 71449 30949 -56%
gas used for inserting 15th item 93984 33786 -64%
gas used for inserting 16th item 116780 37761 -67%
gas used for inserting 17th item 71699 32087 -55%
gas used for inserting 18th item 137298 39299 -71%
gas used for inserting 19th item 94227 34924 -62%
gas used for inserting 20th item 137053 38175 -72%
gas used for inserting 21th item 71203 29818 -58%
gas used for inserting 22th item 116056 38267 -67%
gas used for inserting 23th item 71451 30956 -56%
gas used for inserting 24th item 118889 41444 -65%
gas used for inserting 25th item 71453 30956 -56%
gas used for inserting 26th item 116060 38265 -67%
gas used for inserting 27th item 93982 33792 -64%
gas used for inserting 28th item 115808 37136 -67%
gas used for inserting 29th item 115561 36000 -68%
gas used for inserting 30th item 120652 43936 -63%
gas used for inserting 31th item 71685 32090 -55%
gas used for inserting 32th item 162848 46471 -71%
gas used for inserting 33th item 94252 34942 -62%
gas used for inserting 34th item 71683 32095 -55%
gas used for inserting 35th item 137553 40450 -70%
gas used for inserting 36th item 116062 38272 -67%
gas used for inserting 37th item 115803 37125 -67%
gas used for inserting 38th item 139263 41388 -70%
gas used for inserting 39th item 71441 30958 -56%
gas used for inserting 40th item 115819 37127 -67%
gas used for inserting 41th item 71690 32095 -55%
gas used for inserting 42th item 137802 41599 -69%
gas used for inserting 43th item 71695 32092 -55%
gas used for inserting 44th item 71702 32108 -55%
gas used for inserting 45th item 137309 39306 -71%
gas used for inserting 46th item 71694 32096 -55%
gas used for inserting 47th item 71939 33236 -53%
gas used for inserting 48th item 117055 38924 -66%
gas used for inserting 49th item 137576 40457 -70%
gas used for inserting 50th item 94260 34951 -62%
gas used for inserting 51th item 94240 34940 -62%
gas used for inserting 52th item 71942 33237 -53%
gas used for inserting 53th item 120919 45095 -62%
gas used for inserting 54th item 137575 40463 -70%
gas used for inserting 55th item 120935 45125 -62%
gas used for inserting 56th item 94514 36086 -61%
gas used for inserting 57th item 94260 34949 -62%
gas used for inserting 58th item 71958 33250 -53%
gas used for inserting 59th item 116074 38299 -67%
gas used for inserting 60th item 116324 39417 -66%
gas used for inserting 61th item 71942 33245 -53%
gas used for inserting 62th item 117050 38917 -66%
gas used for inserting 63th item 94511 36095 -61%
gas used for inserting 64th item 137815 41606 -69%
gas used for inserting 65th item 71961 33253 -53%
gas used for inserting 66th item 71967 33248 -53%
gas used for inserting 67th item 143464 47935 -66%
gas used for inserting 68th item 71699 32111 -55%
gas used for inserting 69th item 139843 42910 -69%
gas used for inserting 70th item 71946 33250 -53%
gas used for inserting 71th item 94504 36087 -61%
gas used for inserting 72th item 71961 33249 -53%
gas used for inserting 73th item 116325 39427 -66%
gas used for inserting 74th item 116324 39447 -66%
gas used for inserting 75th item 116331 39442 -66%
gas used for inserting 76th item 71967 33257 -53%
gas used for inserting 77th item 94516 36084 -61%
gas used for inserting 78th item 139846 42907 -69%
gas used for inserting 79th item 71722 32121 -55%
gas used for inserting 80th item 116078 38299 -67%
gas used for inserting 81th item 94744 37232 -60%
gas used for inserting 82th item 137834 41614 -69%
gas used for inserting 83th item 94747 37230 -60%
gas used for inserting 84th item 72216 34399 -52%
gas used for inserting 85th item 71969 33264 -53%
gas used for inserting 86th item 137816 41609 -69%
gas used for inserting 87th item 71959 33253 -53%
gas used for inserting 88th item 94767 37246 -60%
gas used for inserting 89th item 137577 40483 -70%
gas used for inserting 90th item 138079 42761 -69%
gas used for inserting 91th item 71954 33261 -53%
gas used for inserting 92th item 71711 32121 -55%
gas used for inserting 93th item 120936 45123 -62%
gas used for inserting 94th item 71973 33256 -53%
gas used for inserting 95th item 116334 39440 -66%
gas used for inserting 96th item 71976 33267 -53%
gas used for inserting 97th item 71961 33260 -53%
gas used for inserting 98th item 137829 41624 -69%
gas used for inserting 99th item 138085 42750 -69%
gas used for inserting 100th item 116585 40595 -65%
gas used for inserting 101th item 71960 33264 -53%
gas used for inserting 102th item 71963 33262 -53%
gas used for inserting 103th item 117307 40084 -65%
gas used for inserting 104th item 137582 40465 -70%
gas used for inserting 105th item 94762 37236 -60%
gas used for inserting 106th item 72232 34404 -52%
gas used for inserting 107th item 72209 34405 -52%
gas used for inserting 108th item 71981 33273 -53%
gas used for inserting 109th item 72231 34394 -52%
gas used for inserting 110th item 116343 39444 -66%
gas used for inserting 111th item 94533 36118 -61%
gas used for inserting 112th item 117329 40092 -65%
gas used for inserting 113th item 138086 42765 -69%
gas used for inserting 114th item 138095 42767 -69%
gas used for inserting 115th item 71733 32144 -55%
gas used for inserting 116th item 94522 36111 -61%
gas used for inserting 117th item 94763 37246 -60%
gas used for inserting 118th item 119408 43748 -63%
gas used for inserting 119th item 141957 46594 -67%
gas used for inserting 120th item 71725 32134 -55%
gas used for inserting 121th item 71969 33275 -53%
gas used for inserting 122th item 162330 46537 -71%
gas used for inserting 123th item 116345 39454 -66%
gas used for inserting 124th item 117563 41231 -64%
gas used for inserting 125th item 138088 42774 -69%
gas used for inserting 126th item 95033 38384 -59%
gas used for inserting 127th item 72216 34417 -52%
gas used for inserting 128th item 137840 41628 -69%
gas used for inserting 129th item 72483 35558 -50%
gas used for inserting 130th item 140129 44080 -68%
gas used for inserting 131th item 138330 43888 -68%
gas used for inserting 132th item 138103 42776 -69%
gas used for inserting 133th item 94775 37257 -60%
gas used for inserting 134th item 121201 46277 -61%
gas used for inserting 135th item 71970 33286 -53%
gas used for inserting 136th item 116350 39462 -66%
gas used for inserting 137th item 117571 41235 -64%
gas used for inserting 138th item 117578 41237 -64%
gas used for inserting 139th item 72243 34424 -52%
gas used for inserting 140th item 72469 35560 -50%
gas used for inserting 141th item 95017 38381 -59%
gas used for inserting 142th item 72224 34423 -52%
gas used for inserting 143th item 116606 40596 -65%
gas used for inserting 144th item 94770 37264 -60%
gas used for inserting 145th item 94788 37271 -60%
gas used for inserting 146th item 71979 33287 -53%
gas used for inserting 147th item 94543 36133 -61%
gas used for inserting 148th item 166529 53090 -68%
gas used for inserting 149th item 138106 42788 -69%
gas used for inserting 150th item 116588 40597 -65%
gas used for inserting 151th item 72247 34431 -52%
gas used for inserting 152th item 117329 40107 -65%
gas used for inserting 153th item 138102 42786 -69%
gas used for inserting 154th item 72495 35570 -50%
gas used for inserting 155th item 72246 34436 -52%
gas used for inserting 156th item 116606 40608 -65%
gas used for inserting 157th item 72245 34438 -52%
gas used for inserting 158th item 94795 37256 -60%
gas used for inserting 159th item 71989 33290 -53%
gas used for inserting 160th item 121207 46304 -61%
gas used for inserting 161th item 94799 37282 -60%
gas used for inserting 162th item 137868 41654 -69%
gas used for inserting 163th item 94789 37251 -60%
gas used for inserting 164th item 72249 34441 -52%
gas used for inserting 165th item 72002 33305 -53%
gas used for inserting 166th item 116365 39474 -66%
gas used for inserting 167th item 119447 43804 -63%
gas used for inserting 168th item 138097 42768 -69%
gas used for inserting 169th item 72241 34431 -52%
gas used for inserting 170th item 138098 42789 -69%
gas used for inserting 171th item 116613 40614 -65%
gas used for inserting 172th item 72501 35580 -50%
gas used for inserting 173th item 72239 34416 -52%
gas used for inserting 174th item 72250 34449 -52%
gas used for inserting 175th item 94804 37282 -60%
gas used for inserting 176th item 72241 34437 -52%
gas used for inserting 177th item 72253 34449 -52%
gas used for inserting 178th item 72242 34438 -52%
gas used for inserting 179th item 116352 39476 -66%
gas used for inserting 180th item 138104 42792 -69%
gas used for inserting 181th item 138119 42805 -69%
gas used for inserting 182th item 138358 43940 -68%
gas used for inserting 183th item 121235 46315 -61%
gas used for inserting 184th item 138106 42794 -69%
gas used for inserting 185th item 119447 43803 -63%
gas used for inserting 186th item 95042 38416 -59%
gas used for inserting 187th item 72244 34444 -52%
gas used for inserting 188th item 117589 41264 -64%
gas used for inserting 189th item 95059 38433 -59%
gas used for inserting 190th item 119696 44921 -62%
gas used for inserting 191th item 138112 42811 -69%
gas used for inserting 192th item 72243 34450 -52%
gas used for inserting 193th item 72508 35593 -50%
gas used for inserting 194th item 119436 43800 -63%
gas used for inserting 195th item 119715 44920 -62%
gas used for inserting 196th item 116867 41768 -64%
gas used for inserting 197th item 138113 42798 -69%
gas used for inserting 198th item 72244 34454 -52%
gas used for inserting 199th item 138361 43954 -68%
gas used for inserting 200th item 144023 50266 -65%
gas used for inserting 201th item 117615 41282 -64%
gas used for inserting 202th item 140168 44123 -68%
gas used for inserting 203th item 72510 35600 -50%
gas used for inserting 204th item 95045 38429 -59%
gas used for inserting 205th item 117611 41257 -64%
gas used for inserting 206th item 138364 43944 -68%
gas used for inserting 207th item 95044 38433 -59%
gas used for inserting 208th item 72253 34455 -52%
gas used for inserting 209th item 138367 43957 -68%
gas used for inserting 210th item 121497 47461 -60%
gas used for inserting 211th item 95050 38431 -59%
gas used for inserting 212th item 72499 35597 -50%
gas used for inserting 213th item 138136 42818 -69%
gas used for inserting 214th item 72518 35602 -50%
gas used for inserting 215th item 116631 40637 -65%
gas used for inserting 216th item 72504 35595 -50%
gas used for inserting 217th item 72501 35599 -50%
gas used for inserting 218th item 138116 42816 -68%
gas used for inserting 219th item 72272 34469 -52%
gas used for inserting 220th item 72521 35605 -50%
gas used for inserting 221th item 117613 41286 -64%
gas used for inserting 222th item 138373 43937 -68%
gas used for inserting 223th item 116634 40660 -65%
gas used for inserting 224th item 72508 35599 -50%
gas used for inserting 225th item 116882 41780 -64%
gas used for inserting 226th item 72509 35600 -50%
gas used for inserting 227th item 162961 48081 -70%
gas used for inserting 228th item 95062 38443 -59%
gas used for inserting 229th item 138127 42818 -69%
gas used for inserting 230th item 116882 41785 -64%
gas used for inserting 231th item 72262 34467 -52%
gas used for inserting 232th item 72523 35587 -50%
gas used for inserting 233th item 121478 47467 -60%
gas used for inserting 234th item 119700 44948 -62%
gas used for inserting 235th item 72275 34481 -52%
gas used for inserting 236th item 162971 48114 -70%
gas used for inserting 237th item 138376 43933 -68%
gas used for inserting 238th item 138126 42824 -68%
gas used for inserting 239th item 117630 41301 -64%
gas used for inserting 240th item 72529 35615 -50%
gas used for inserting 241th item 117869 42432 -64%
gas used for inserting 242th item 72530 35617 -50%
gas used for inserting 243th item 95077 38464 -59%
gas used for inserting 244th item 137883 41688 -69%
gas used for inserting 245th item 72268 34474 -52%
gas used for inserting 246th item 72514 35613 -50%
gas used for inserting 247th item 72530 35622 -50%
gas used for inserting 248th item 95061 38454 -59%
gas used for inserting 249th item 72268 34478 -52%
gas used for inserting 250th item 95079 38460 -59%
gas used for inserting 251th item 117629 41298 -64%
gas used for inserting 252th item 95070 38457 -59%
gas used for inserting 253th item 72520 35614 -50%
gas used for inserting 254th item 72536 35592 -50%
gas used for inserting 255th item 72522 35613 -50%
gas used for inserting 256th item 72516 35620 -50%
gas used for inserting 257th item 117869 42441 -63%
gas used for inserting 258th item 94830 37333 -60%
gas used for inserting 259th item 140424 45243 -67%
gas used for inserting 260th item 72785 36762 -49%
gas used for inserting 261th item 138403 43979 -68%
gas used for inserting 262th item 72517 35625 -50%
gas used for inserting 263th item 72520 35623 -50%
gas used for inserting 264th item 72522 35592 -50%
gas used for inserting 265th item 138391 43972 -68%
gas used for inserting 266th item 116886 41791 -64%
gas used for inserting 267th item 95332 39608 -58%
gas used for inserting 268th item 117615 41305 -64%
gas used for inserting 269th item 72295 34462 -52%
gas used for inserting 270th item 72276 34489 -52%
gas used for inserting 271th item 72529 35622 -50%
gas used for inserting 272th item 95334 39610 -58%
gas used for inserting 273th item 138392 43992 -68%
gas used for inserting 274th item 72539 35637 -50%
gas used for inserting 275th item 138635 45117 -67%
gas used for inserting 276th item 119984 46136 -61%
gas used for inserting 277th item 144052 50332 -65%
gas used for inserting 278th item 140420 45287 -67%
gas used for inserting 279th item 72301 34496 -52%
gas used for inserting 280th item 72528 35630 -50%
gas used for inserting 281th item 138162 42855 -68%
gas used for inserting 282th item 138640 45118 -67%
gas used for inserting 283th item 116660 40672 -65%
gas used for inserting 284th item 138409 43994 -68%
gas used for inserting 285th item 72051 33367 -53%
gas used for inserting 286th item 138399 43951 -68%
gas used for inserting 287th item 138413 43993 -68%
gas used for inserting 288th item 116651 40662 -65%
gas used for inserting 289th item 72038 33361 -53%
gas used for inserting 290th item 117902 42461 -63%
gas used for inserting 291th item 72539 35597 -50%
gas used for inserting 292th item 72533 35637 -50%
gas used for inserting 293th item 72536 35635 -50%
gas used for inserting 294th item 95093 38488 -59%
gas used for inserting 295th item 72537 35636 -50%
gas used for inserting 296th item 117142 42913 -63%
gas used for inserting 297th item 95086 38475 -59%
gas used for inserting 298th item 72799 36784 -49%
gas used for inserting 299th item 72306 34510 -52%
gas used for inserting 300th item 116652 40672 -65%
gas used for inserting 301th item 72558 35609 -50%
gas used for inserting 302th item 95353 39627 -58%
gas used for inserting 303th item 95084 38483 -59%
gas used for inserting 304th item 138655 45141 -67%
gas used for inserting 305th item 138648 45132 -67%
gas used for inserting 306th item 72543 35640 -50%
gas used for inserting 307th item 72542 35642 -50%
gas used for inserting 308th item 95101 38493 -59%
gas used for inserting 309th item 116902 41815 -64%
gas used for inserting 310th item 121765 48640 -60%
gas used for inserting 311th item 117642 41325 -64%
gas used for inserting 312th item 95338 39621 -58%
gas used for inserting 313th item 138658 45134 -67%
gas used for inserting 314th item 72560 35654 -50%
gas used for inserting 315th item 117905 42473 -63%
gas used for inserting 316th item 138414 43997 -68%
gas used for inserting 317th item 95357 39637 -58%
gas used for inserting 318th item 116924 41788 -64%
gas used for inserting 319th item 72791 36788 -49%
gas used for inserting 320th item 72308 34527 -52%
gas used for inserting 321th item 117907 42477 -63%
gas used for inserting 322th item 95113 38494 -59%
gas used for inserting 323th item 72794 36752 -49%
gas used for inserting 324th item 116679 40691 -65%
gas used for inserting 325th item 72295 34521 -52%
gas used for inserting 326th item 138427 44016 -68%
gas used for inserting 327th item 95112 38507 -59%
gas used for inserting 328th item 138664 45117 -67%
gas used for inserting 329th item 138658 45144 -67%
gas used for inserting 330th item 94849 37358 -60%
gas used for inserting 331th item 72812 36801 -49%
gas used for inserting 332th item 119745 45002 -62%
gas used for inserting 333th item 185466 51730 -72%
gas used for inserting 334th item 72798 36795 -49%
gas used for inserting 335th item 72555 35654 -50%
gas used for inserting 336th item 95126 38502 -59%
gas used for inserting 337th item 138668 45159 -67%
gas used for inserting 338th item 138412 44015 -68%
gas used for inserting 339th item 72309 34521 -52%
gas used for inserting 340th item 116936 41850 -64%
gas used for inserting 341th item 120008 46146 -61%
gas used for inserting 342th item 121534 47520 -60%
gas used for inserting 343th item 72322 34534 -52%
gas used for inserting 344th item 144332 51511 -64%
gas used for inserting 345th item 138175 42878 -68%
gas used for inserting 346th item 72571 35672 -50%
gas used for inserting 347th item 116930 41845 -64%
gas used for inserting 348th item 116672 40697 -65%
gas used for inserting 349th item 72555 35668 -50%
gas used for inserting 350th item 95126 38476 -59%
gas used for inserting 351th item 119751 45015 -62%
gas used for inserting 352th item 121780 48667 -60%
gas used for inserting 353th item 72822 36811 -49%
gas used for inserting 354th item 72578 35672 -50%
gas used for inserting 355th item 120016 46120 -61%
gas used for inserting 356th item 95374 39657 -58%
gas used for inserting 357th item 117901 42486 -63%
gas used for inserting 358th item 72810 36805 -49%
gas used for inserting 359th item 95379 39654 -58%
gas used for inserting 360th item 121521 47483 -60%
gas used for inserting 361th item 72575 35682 -50%
gas used for inserting 362th item 72823 36819 -49%
gas used for inserting 363th item 116692 40713 -65%
gas used for inserting 364th item 118166 43633 -63%
gas used for inserting 365th item 95132 38482 -59%
gas used for inserting 366th item 144339 51525 -64%
gas used for inserting 367th item 95126 38530 -59%
gas used for inserting 368th item 138429 44043 -68%
gas used for inserting 369th item 119771 45034 -62%
gas used for inserting 370th item 117189 43009 -63%
gas used for inserting 371th item 140704 46466 -66%
gas used for inserting 372th item 72338 34545 -52%
gas used for inserting 373th item 73061 37952 -48%
gas used for inserting 374th item 117188 42997 -63%
gas used for inserting 375th item 116947 41872 -64%
gas used for inserting 376th item 72568 35680 -50%
gas used for inserting 377th item 116699 40738 -65%
gas used for inserting 378th item 140458 45342 -67%
gas used for inserting 379th item 95632 40804 -57%
gas used for inserting 380th item 121535 47535 -60%
gas used for inserting 381th item 72835 36825 -49%
gas used for inserting 382th item 72819 36776 -49%
gas used for inserting 383th item 72813 36825 -49%
gas used for inserting 384th item 72571 35684 -50%
gas used for inserting 385th item 120015 46165 -61%
gas used for inserting 386th item 72835 36829 -49%
gas used for inserting 387th item 138681 45132 -67%
gas used for inserting 388th item 121802 48683 -60%
gas used for inserting 389th item 72821 36823 -49%
gas used for inserting 390th item 121791 48684 -60%
gas used for inserting 391th item 95386 39677 -58%
gas used for inserting 392th item 72575 35644 -50%
gas used for inserting 393th item 138441 44040 -68%
gas used for inserting 394th item 95393 39672 -58%
gas used for inserting 395th item 72597 35692 -50%
gas used for inserting 396th item 72827 36824 -49%
gas used for inserting 397th item 95130 38488 -59%
gas used for inserting 398th item 116942 41857 -64%
gas used for inserting 399th item 138443 44044 -68%
gas used for inserting 400th item 72830 36824 -49%
gas used for inserting 401th item 116955 41888 -64%
gas used for inserting 402th item 117926 42510 -63%
gas used for inserting 403th item 72330 34559 -52%
gas used for inserting 404th item 121569 47566 -60%
gas used for inserting 405th item 72845 36837 -49%
gas used for inserting 406th item 72844 36839 -49%
gas used for inserting 407th item 72846 36838 -49%
gas used for inserting 408th item 72831 36830 -49%
gas used for inserting 409th item 117927 42516 -63%
gas used for inserting 410th item 138448 44062 -68%
gas used for inserting 411th item 117210 43008 -63%
gas used for inserting 412th item 72581 35700 -50%
gas used for inserting 413th item 117211 43009 -63%
gas used for inserting 414th item 138709 45153 -67%
gas used for inserting 415th item 95379 39683 -58%
gas used for inserting 416th item 72583 35702 -50%
gas used for inserting 417th item 73094 37983 -48%
gas used for inserting 418th item 72844 36850 -49%
gas used for inserting 419th item 116705 40707 -65%
gas used for inserting 420th item 72600 35712 -50%
gas used for inserting 421th item 140734 46497 -66%
gas used for inserting 422th item 117211 43017 -63%
gas used for inserting 423th item 72837 36838 -49%
gas used for inserting 424th item 72590 35656 -50%
gas used for inserting 425th item 117932 42517 -63%
gas used for inserting 426th item 94891 37405 -60%
gas used for inserting 427th item 117196 43014 -63%
gas used for inserting 428th item 72852 36851 -49%
gas used for inserting 429th item 72588 35662 -50%
gas used for inserting 430th item 73088 37978 -48%
gas used for inserting 431th item 72839 36844 -49%
gas used for inserting 432th item 140486 45363 -67%
gas used for inserting 433th item 138720 45205 -67%
gas used for inserting 434th item 72853 36856 -49%
gas used for inserting 435th item 72612 35714 -50%
gas used for inserting 436th item 95142 38556 -59%
gas used for inserting 437th item 72841 36847 -49%
gas used for inserting 438th item 95146 38553 -59%
gas used for inserting 439th item 117458 44172 -62%
gas used for inserting 440th item 118206 43672 -63%
gas used for inserting 441th item 72852 36864 -49%
gas used for inserting 442th item 73110 37990 -48%
gas used for inserting 443th item 163308 49361 -69%
gas used for inserting 444th item 120046 46213 -61%
gas used for inserting 445th item 95411 39702 -58%
gas used for inserting 446th item 72597 35667 -50%
gas used for inserting 447th item 72595 35719 -50%
gas used for inserting 448th item 116959 41887 -64%
gas used for inserting 449th item 72846 36854 -49%
gas used for inserting 450th item 138960 46342 -66%
gas used for inserting 451th item 72858 36817 -49%
gas used for inserting 452th item 95643 40838 -57%
gas used for inserting 453th item 72356 34579 -52%
gas used for inserting 454th item 138714 45221 -67%
gas used for inserting 455th item 138467 44072 -68%
gas used for inserting 456th item 138709 45165 -67%
gas used for inserting 457th item 116970 41908 -64%
gas used for inserting 458th item 117225 43055 -63%
gas used for inserting 459th item 138467 44076 -68%
gas used for inserting 460th item 72620 35729 -50%
gas used for inserting 461th item 120059 46174 -61%
gas used for inserting 462th item 138471 44071 -68%
gas used for inserting 463th item 72865 36870 -49%
gas used for inserting 464th item 73098 38000 -48%
gas used for inserting 465th item 119815 45079 -62%
gas used for inserting 466th item 72620 35734 -50%
gas used for inserting 467th item 72612 35720 -50%
gas used for inserting 468th item 121850 48732 -60%
gas used for inserting 469th item 138736 45224 -67%
gas used for inserting 470th item 116985 41905 -64%
gas used for inserting 471th item 72857 36863 -49%
gas used for inserting 472th item 138967 46369 -66%
gas used for inserting 473th item 117217 43035 -63%
gas used for inserting 474th item 72610 35729 -50%
gas used for inserting 475th item 95401 39709 -58%
gas used for inserting 476th item 72877 36871 -49%
gas used for inserting 477th item 138717 45223 -67%
gas used for inserting 478th item 122078 49814 -59%
gas used for inserting 479th item 72626 35741 -50%
gas used for inserting 480th item 138723 45224 -67%
gas used for inserting 481th item 72862 36868 -49%
gas used for inserting 482th item 121843 48729 -60%
gas used for inserting 483th item 118222 43644 -63%
gas used for inserting 484th item 95661 40849 -57%
gas used for inserting 485th item 73113 38004 -48%
gas used for inserting 486th item 140502 45390 -67%
gas used for inserting 487th item 118214 43693 -63%
gas used for inserting 488th item 116987 41867 -64%
gas used for inserting 489th item 73109 38012 -48%
gas used for inserting 490th item 73107 38015 -48%
gas used for inserting 491th item 95665 40852 -57%
gas used for inserting 492th item 117969 42551 -63%
gas used for inserting 493th item 95408 39664 -58%
gas used for inserting 494th item 122087 49886 -59%
gas used for inserting 495th item 95433 39726 -58%
gas used for inserting 496th item 72868 36875 -49%
gas used for inserting 497th item 72868 36876 -49%
gas used for inserting 498th item 73132 38020 -48%
gas used for inserting 499th item 72867 36879 -49%
gas used for inserting 500th item 73111 38020 -47%
gas used for inserting 501th item 138980 46370 -66%
gas used for inserting 502th item 95425 39718 -58%
gas used for inserting 503th item 72635 35754 -50%
gas used for inserting 504th item 72871 36880 -49%
gas used for inserting 505th item 72625 35742 -50%
gas used for inserting 506th item 165171 51909 -68%
gas used for inserting 507th item 122087 49880 -59%
gas used for inserting 508th item 72890 36888 -49%
gas used for inserting 509th item 95422 39728 -58%
gas used for inserting 510th item 72870 36831 -49%
gas used for inserting 511th item 72886 36894 -49%
gas used for inserting 512th item 117000 41928 -64%
gas used for inserting 513th item 72889 36893 -49%
gas used for inserting 514th item 120057 46236 -61%
gas used for inserting 515th item 138493 44059 -68%
gas used for inserting 516th item 73124 38022 -48%
gas used for inserting 517th item 120079 46239 -61%
gas used for inserting 518th item 117236 43059 -63%
gas used for inserting 519th item 95674 40869 -57%
gas used for inserting 520th item 72874 36835 -49%
gas used for inserting 521th item 72632 35750 -50%
gas used for inserting 522th item 140797 46560 -66%
gas used for inserting 523th item 72892 36899 -49%
gas used for inserting 524th item 117981 42576 -63%
gas used for inserting 525th item 95197 38549 -59%
gas used for inserting 526th item 117239 43063 -63%
gas used for inserting 527th item 72892 36903 -49%
gas used for inserting 528th item 72650 35762 -50%
gas used for inserting 529th item 72900 36897 -49%
gas used for inserting 530th item 117972 42575 -63%
gas used for inserting 531th item 72880 36895 -49%
gas used for inserting 532th item 138997 46395 -66%
gas used for inserting 533th item 95689 40890 -57%
gas used for inserting 534th item 117259 43073 -63%
gas used for inserting 535th item 72878 36902 -49%
gas used for inserting 536th item 72640 35756 -50%
gas used for inserting 537th item 95679 40873 -57%
gas used for inserting 538th item 73144 38046 -47%
gas used for inserting 539th item 95685 40877 -57%
gas used for inserting 540th item 118239 43724 -63%
gas used for inserting 541th item 138501 44118 -68%
gas used for inserting 542th item 95449 39695 -58%
gas used for inserting 543th item 95455 39749 -58%
gas used for inserting 544th item 117982 42586 -63%
gas used for inserting 545th item 72402 34641 -52%
gas used for inserting 546th item 72886 36903 -49%
gas used for inserting 547th item 72891 36840 -49%
gas used for inserting 548th item 73150 38049 -47%
gas used for inserting 549th item 120083 46250 -61%
gas used for inserting 550th item 72907 36910 -49%
gas used for inserting 551th item 72901 36916 -49%
gas used for inserting 552th item 139003 46347 -66%
gas used for inserting 553th item 72645 35767 -50%
gas used for inserting 554th item 117507 44229 -62%
gas used for inserting 555th item 138775 45264 -67%
gas used for inserting 556th item 117499 44215 -62%
gas used for inserting 557th item 138508 44078 -68%
gas used for inserting 558th item 72658 35782 -50%
gas used for inserting 559th item 140791 46561 -66%
gas used for inserting 560th item 144414 51613 -64%
gas used for inserting 561th item 72908 36919 -49%
gas used for inserting 562th item 72647 35774 -50%
gas used for inserting 563th item 72912 36916 -49%
gas used for inserting 564th item 139007 46401 -66%
gas used for inserting 565th item 122138 49931 -59%
gas used for inserting 566th item 73143 38049 -47%
gas used for inserting 567th item 72397 34645 -52%
gas used for inserting 568th item 144651 52748 -63%
gas used for inserting 569th item 163360 49426 -69%
gas used for inserting 570th item 117510 44241 -62%
gas used for inserting 571th item 95459 39771 -58%
gas used for inserting 572th item 138265 42999 -68%
gas used for inserting 573th item 120091 46264 -61%
gas used for inserting 574th item 95451 39697 -58%
gas used for inserting 575th item 138778 45280 -67%
gas used for inserting 576th item 139007 46412 -66%
gas used for inserting 577th item 72422 34652 -52%
gas used for inserting 578th item 139008 46409 -66%
gas used for inserting 579th item 122137 49875 -59%
gas used for inserting 580th item 139029 46417 -66%
gas used for inserting 581th item 72917 36928 -49%
gas used for inserting 582th item 95197 38628 -59%
gas used for inserting 583th item 120349 47415 -60%
gas used for inserting 584th item 95709 40846 -57%
gas used for inserting 585th item 139011 46413 -66%
gas used for inserting 586th item 117276 43105 -63%
gas used for inserting 587th item 121882 48788 -59%
gas used for inserting 588th item 139015 46415 -66%
gas used for inserting 589th item 72906 36860 -49%
gas used for inserting 590th item 72904 36926 -49%
gas used for inserting 591th item 189787 58456 -69%
gas used for inserting 592th item 142894 50248 -64%
gas used for inserting 593th item 72923 36933 -49%
gas used for inserting 594th item 139020 46429 -66%
gas used for inserting 595th item 95696 40909 -57%
gas used for inserting 596th item 138792 45285 -67%
gas used for inserting 597th item 72909 36928 -49%
gas used for inserting 598th item 117037 41989 -64%
gas used for inserting 599th item 72912 36926 -49%
gas used for inserting 600th item 120120 46283 -61%
gas used for inserting 601th item 117272 43100 -63%
gas used for inserting 602th item 121878 48783 -59%
gas used for inserting 603th item 117290 43124 -63%
gas used for inserting 604th item 117532 44249 -62%
gas used for inserting 605th item 72925 36942 -49%
gas used for inserting 606th item 139036 46369 -66%
gas used for inserting 607th item 121890 48798 -59%
gas used for inserting 608th item 72925 36945 -49%
gas used for inserting 609th item 95475 39782 -58%
gas used for inserting 610th item 72912 36937 -49%
gas used for inserting 611th item 122135 49880 -59%
gas used for inserting 612th item 139028 46425 -66%
gas used for inserting 613th item 118273 43758 -63%
gas used for inserting 614th item 72930 36946 -49%
gas used for inserting 615th item 142919 50268 -64%
gas used for inserting 616th item 144703 52733 -63%
gas used for inserting 617th item 72684 35811 -50%
gas used for inserting 618th item 95729 40921 -57%
gas used for inserting 619th item 72918 36939 -49%
gas used for inserting 620th item 72930 36952 -49%
gas used for inserting 621th item 73167 38009 -48%
gas used for inserting 622th item 119852 45158 -62%
gas used for inserting 623th item 138775 45300 -67%
gas used for inserting 624th item 118270 43764 -62%
gas used for inserting 625th item 117289 43129 -63%
gas used for inserting 626th item 117282 43113 -63%
gas used for inserting 627th item 142919 50280 -64%
gas used for inserting 628th item 138786 45311 -67%
gas used for inserting 629th item 144462 51659 -64%
gas used for inserting 630th item 72688 35819 -50%
gas used for inserting 631th item 139054 46439 -66%
gas used for inserting 632th item 72922 36948 -49%
gas used for inserting 633th item 72445 34680 -52%
gas used for inserting 634th item 95472 39785 -58%
gas used for inserting 635th item 117534 44253 -62%
gas used for inserting 636th item 95224 38651 -59%
gas used for inserting 637th item 73172 38086 -47%
gas used for inserting 638th item 72922 36884 -49%
gas used for inserting 639th item 72692 35823 -50%
gas used for inserting 640th item 186158 53425 -71%
gas used for inserting 641th item 72938 36963 -49%
gas used for inserting 642th item 138789 45304 -67%
gas used for inserting 643th item 117299 43067 -63%
gas used for inserting 644th item 138296 43031 -68%
gas used for inserting 645th item 140822 46609 -66%
gas used for inserting 646th item 95718 40935 -57%
gas used for inserting 647th item 138563 44178 -68%
gas used for inserting 648th item 120123 46242 -61%
gas used for inserting 649th item 73171 38098 -47%
gas used for inserting 650th item 138797 45307 -67%
gas used for inserting 651th item 117306 43153 -63%
gas used for inserting 652th item 72686 35819 -50%
gas used for inserting 653th item 117304 43068 -63%
gas used for inserting 654th item 95250 38665 -59%
gas used for inserting 655th item 117308 43154 -63%
gas used for inserting 656th item 72688 35820 -50%
gas used for inserting 657th item 95732 40931 -57%
gas used for inserting 658th item 73177 38101 -47%
gas used for inserting 659th item 72944 36974 -49%
gas used for inserting 660th item 118293 43789 -62%
gas used for inserting 661th item 72932 36965 -49%
gas used for inserting 662th item 72703 35834 -50%
gas used for inserting 663th item 72954 36968 -49%
gas used for inserting 664th item 73196 38110 -47%
gas used for inserting 665th item 118273 43783 -62%
gas used for inserting 666th item 72950 36974 -49%
gas used for inserting 667th item 72951 36974 -49%
gas used for inserting 668th item 95755 40949 -57%
gas used for inserting 669th item 117559 44283 -62%
gas used for inserting 670th item 72935 36898 -49%
gas used for inserting 671th item 73447 39250 -46%
gas used for inserting 672th item 72694 35829 -50%
gas used for inserting 673th item 139066 46467 -66%
gas used for inserting 674th item 138559 44196 -68%
gas used for inserting 675th item 120374 47379 -60%
gas used for inserting 676th item 118300 43797 -62%
gas used for inserting 677th item 72942 36969 -49%
gas used for inserting 678th item 72695 35833 -50%
gas used for inserting 679th item 72945 36968 -49%
gas used for inserting 680th item 73188 38037 -48%
gas used for inserting 681th item 95751 40957 -57%
gas used for inserting 682th item 120148 46323 -61%
gas used for inserting 683th item 117064 42024 -64%
gas used for inserting 684th item 117565 44290 -62%
gas used for inserting 685th item 117321 43096 -63%
gas used for inserting 686th item 117555 44280 -62%
gas used for inserting 687th item 73192 38113 -47%
gas used for inserting 688th item 95752 40963 -57%
gas used for inserting 689th item 139072 46475 -66%
gas used for inserting 690th item 120373 47467 -60%
gas used for inserting 691th item 72950 36974 -49%
gas used for inserting 692th item 95512 39823 -58%
gas used for inserting 693th item 72947 36979 -49%
gas used for inserting 694th item 72968 36982 -49%
gas used for inserting 695th item 72717 35850 -50%
gas used for inserting 696th item 118050 42667 -63%
gas used for inserting 697th item 138581 44206 -68%
gas used for inserting 698th item 95765 40967 -57%
gas used for inserting 699th item 72969 36986 -49%
gas used for inserting 700th item 72961 36995 -49%
gas used for inserting 701th item 139060 46475 -66%
gas used for inserting 702th item 118061 42601 -63%
gas used for inserting 703th item 73197 38122 -47%
gas used for inserting 704th item 141087 47784 -66%
gas used for inserting 705th item 138809 45343 -67%
gas used for inserting 706th item 117320 43150 -63%
gas used for inserting 707th item 138816 45278 -67%
gas used for inserting 708th item 73197 38127 -47%
gas used for inserting 709th item 117580 44299 -62%
gas used for inserting 710th item 121697 47718 -60%
gas used for inserting 711th item 95763 40973 -57%
gas used for inserting 712th item 163669 50557 -69%
gas used for inserting 713th item 72713 35847 -50%
gas used for inserting 714th item 73196 38134 -47%
gas used for inserting 715th item 73467 39271 -46%
gas used for inserting 716th item 73208 38123 -47%
gas used for inserting 717th item 72961 36911 -49%
gas used for inserting 718th item 117585 44302 -62%
gas used for inserting 719th item 95776 40975 -57%
gas used for inserting 720th item 72714 35854 -50%
gas used for inserting 721th item 140879 46662 -66%
gas used for inserting 722th item 117070 42030 -64%
gas used for inserting 723th item 139067 46485 -66%
gas used for inserting 724th item 141106 47791 -66%
gas used for inserting 725th item 73223 38140 -47%
gas used for inserting 726th item 72958 36999 -49%
gas used for inserting 727th item 73226 38139 -47%
gas used for inserting 728th item 138830 45347 -67%
gas used for inserting 729th item 117094 42035 -64%
gas used for inserting 730th item 73204 38141 -47%
gas used for inserting 731th item 144490 51700 -64%
gas used for inserting 732th item 139076 46484 -66%
gas used for inserting 733th item 117586 44333 -62%
gas used for inserting 734th item 95773 40913 -57%
gas used for inserting 735th item 117092 42043 -64%
gas used for inserting 736th item 72979 37010 -49%
gas used for inserting 737th item 73230 38144 -47%
gas used for inserting 738th item 138848 45361 -67%
gas used for inserting 739th item 120174 46279 -61%
gas used for inserting 740th item 72970 37000 -49%
gas used for inserting 741th item 120423 47495 -60%
gas used for inserting 742th item 73459 39280 -46%
gas used for inserting 743th item 72978 37017 -49%
gas used for inserting 744th item 117099 41983 -64%
gas used for inserting 745th item 117599 44314 -62%
gas used for inserting 746th item 73219 38140 -47%
gas used for inserting 747th item 117334 43173 -63%
gas used for inserting 748th item 117336 43172 -63%
gas used for inserting 749th item 73233 38072 -48%
gas used for inserting 750th item 73233 38153 -47%
gas used for inserting 751th item 140869 46669 -66%
gas used for inserting 752th item 72743 35877 -50%
gas used for inserting 753th item 72739 35882 -50%
gas used for inserting 754th item 118562 44961 -62%
gas used for inserting 755th item 118061 42695 -63%
gas used for inserting 756th item 142955 50333 -64%
gas used for inserting 757th item 95519 39852 -58%
gas used for inserting 758th item 139082 46520 -66%
gas used for inserting 759th item 122199 50014 -59%
gas used for inserting 760th item 72726 35878 -50%
gas used for inserting 761th item 73232 38165 -47%
gas used for inserting 762th item 122197 50011 -59%
gas used for inserting 763th item 117603 44344 -62%
gas used for inserting 764th item 95542 39867 -58%
gas used for inserting 765th item 118570 44971 -62%
gas used for inserting 766th item 117834 45377 -61%
gas used for inserting 767th item 120433 47510 -60%
gas used for inserting 768th item 72723 35888 -50%
gas used for inserting 769th item 95789 41009 -57%
gas used for inserting 770th item 96018 42133 -56%
gas used for inserting 771th item 72979 36937 -49%
gas used for inserting 772th item 142971 50356 -64%
gas used for inserting 773th item 118588 44984 -62%
gas used for inserting 774th item 73245 38163 -47%
gas used for inserting 775th item 72756 35885 -50%
gas used for inserting 776th item 118340 43759 -63%
gas used for inserting 777th item 72733 35887 -50%
gas used for inserting 778th item 73241 38171 -47%
gas used for inserting 779th item 117103 42050 -64%
gas used for inserting 780th item 73479 39296 -46%
gas used for inserting 781th item 72983 36941 -49%
gas used for inserting 782th item 117592 44331 -62%
gas used for inserting 783th item 117589 44336 -62%
gas used for inserting 784th item 139098 46511 -66%
gas used for inserting 785th item 117346 43197 -63%
gas used for inserting 786th item 72983 37029 -49%
gas used for inserting 787th item 73244 38176 -47%
gas used for inserting 788th item 117845 45468 -61%
gas used for inserting 789th item 73495 39311 -46%
gas used for inserting 790th item 121968 48891 -59%
gas used for inserting 791th item 122224 50047 -59%
gas used for inserting 792th item 118347 43850 -62%
gas used for inserting 793th item 138863 45397 -67%
gas used for inserting 794th item 120421 47515 -60%
gas used for inserting 795th item 96047 42159 -56%
gas used for inserting 796th item 139345 47663 -65%
gas used for inserting 797th item 73242 38165 -47%
gas used for inserting 798th item 117606 44248 -62%
gas used for inserting 799th item 95545 39873 -58%
gas used for inserting 800th item 72760 35905 -50%
gas used for inserting 801th item 139104 46525 -66%
gas used for inserting 802th item 73011 37039 -49%
gas used for inserting 803th item 72746 35812 -50%
gas used for inserting 804th item 73239 38174 -47%
gas used for inserting 805th item 118602 45007 -62%
gas used for inserting 806th item 138612 44253 -68%
gas used for inserting 807th item 139101 46529 -66%
gas used for inserting 808th item 96055 42068 -56%
gas used for inserting 809th item 120220 46400 -61%
gas used for inserting 810th item 138861 45392 -67%
gas used for inserting 811th item 117359 43208 -63%
gas used for inserting 812th item 117115 42068 -64%
gas used for inserting 813th item 73240 38095 -47%
gas used for inserting 814th item 73245 38178 -47%
gas used for inserting 815th item 117616 44379 -62%
gas used for inserting 816th item 138864 45407 -67%
gas used for inserting 817th item 72998 37043 -49%
gas used for inserting 818th item 186240 53525 -71%
gas used for inserting 819th item 72766 35917 -50%
gas used for inserting 820th item 72999 37045 -49%
gas used for inserting 821th item 72518 34782 -52%
gas used for inserting 822th item 73000 37045 -49%
gas used for inserting 823th item 72754 35909 -50%
gas used for inserting 824th item 73262 38193 -47%
gas used for inserting 825th item 117623 44382 -62%
gas used for inserting 826th item 138868 45400 -67%
gas used for inserting 827th item 73244 38190 -47%
gas used for inserting 828th item 120191 46394 -61%
gas used for inserting 829th item 144776 52902 -63%
gas used for inserting 830th item 95815 40951 -57%
gas used for inserting 831th item 95317 38762 -59%
gas used for inserting 832th item 140900 46713 -66%
gas used for inserting 833th item 73019 37060 -49%
gas used for inserting 834th item 73024 37056 -49%
gas used for inserting 835th item 117871 45438 -61%
gas used for inserting 836th item 73267 38199 -47%
gas used for inserting 837th item 117878 45522 -61%
gas used for inserting 838th item 117618 44358 -62%
gas used for inserting 839th item 73270 38199 -47%
gas used for inserting 840th item 73018 36978 -49%
gas used for inserting 841th item 73012 37052 -49%
gas used for inserting 842th item 117132 42103 -64%
gas used for inserting 843th item 95554 39906 -58%
gas used for inserting 844th item 73020 37069 -49%
gas used for inserting 845th item 117387 43162 -63%
gas used for inserting 846th item 72775 35932 -50%
gas used for inserting 847th item 117130 42110 -64%
gas used for inserting 848th item 96073 42182 -56%
gas used for inserting 849th item 73270 38208 -47%
gas used for inserting 850th item 73517 39346 -46%
gas used for inserting 851th item 73260 38197 -47%
gas used for inserting 852th item 73025 37071 -49%
gas used for inserting 853th item 95570 39899 -58%
gas used for inserting 854th item 73280 38202 -47%
gas used for inserting 855th item 73275 38208 -47%
gas used for inserting 856th item 73258 38203 -47%
gas used for inserting 857th item 73506 39340 -46%
gas used for inserting 858th item 138636 44274 -68%
gas used for inserting 859th item 73268 38196 -47%
gas used for inserting 860th item 117388 43265 -63%
gas used for inserting 861th item 73266 38200 -47%
gas used for inserting 862th item 118384 43803 -62%
gas used for inserting 863th item 117872 45511 -61%
gas used for inserting 864th item 73265 38204 -47%
gas used for inserting 865th item 73279 38214 -47%
gas used for inserting 866th item 73016 37071 -49%
gas used for inserting 867th item 73276 38127 -47%
gas used for inserting 868th item 95826 41056 -57%
gas used for inserting 869th item 117150 42110 -64%
gas used for inserting 870th item 95570 39906 -58%
gas used for inserting 871th item 95826 41059 -57%
gas used for inserting 872th item 117641 44297 -62%
gas used for inserting 873th item 122480 51211 -58%
gas used for inserting 874th item 95582 39921 -58%
gas used for inserting 875th item 121997 48940 -59%
gas used for inserting 876th item 73023 37073 -49%
gas used for inserting 877th item 139133 46472 -66%
gas used for inserting 878th item 95574 39918 -58%
gas used for inserting 879th item 73033 37089 -49%
gas used for inserting 880th item 73022 37077 -49%
gas used for inserting 881th item 96067 42188 -56%
gas used for inserting 882th item 95830 41065 -57%
gas used for inserting 883th item 95573 39915 -58%
gas used for inserting 884th item 73043 37084 -49%
gas used for inserting 885th item 73285 38226 -47%
gas used for inserting 886th item 117899 45529 -61%
gas used for inserting 887th item 117650 44413 -62%
gas used for inserting 888th item 95596 39929 -58%
gas used for inserting 889th item 117401 43261 -63%
gas used for inserting 890th item 73288 38228 -47%
gas used for inserting 891th item 73038 37095 -49%
gas used for inserting 892th item 95832 41057 -57%
gas used for inserting 893th item 73029 37083 -49%
gas used for inserting 894th item 73043 36997 -49%
gas used for inserting 895th item 95576 39923 -58%
gas used for inserting 896th item 122263 50089 -59%
gas used for inserting 897th item 140944 46753 -66%
gas used for inserting 898th item 95828 41059 -57%
gas used for inserting 899th item 120485 47502 -60%
gas used for inserting 900th item 95828 41060 -57%
gas used for inserting 901th item 163737 50725 -69%
gas used for inserting 902th item 72789 35947 -50%
gas used for inserting 903th item 73277 38228 -47%
gas used for inserting 904th item 73055 36994 -49%
gas used for inserting 905th item 117652 44410 -62%
gas used for inserting 906th item 73299 38232 -47%
gas used for inserting 907th item 72785 35956 -50%
gas used for inserting 908th item 73055 37094 -49%
gas used for inserting 909th item 138667 44220 -68%
gas used for inserting 910th item 139408 47729 -65%
gas used for inserting 911th item 117648 44396 -62%
gas used for inserting 912th item 73287 38226 -47%
gas used for inserting 913th item 95829 41071 -57%
gas used for inserting 914th item 73284 38231 -47%
gas used for inserting 915th item 73287 38229 -47%
gas used for inserting 916th item 73050 37106 -49%
gas used for inserting 917th item 118625 45049 -62%
gas used for inserting 918th item 117414 43276 -63%
gas used for inserting 919th item 139149 46585 -66%
gas used for inserting 920th item 138920 45458 -67%
gas used for inserting 921th item 95592 39940 -58%
gas used for inserting 922th item 122276 50100 -59%
gas used for inserting 923th item 117660 44419 -62%
gas used for inserting 924th item 118658 45062 -62%
gas used for inserting 925th item 95852 41082 -57%
gas used for inserting 926th item 73537 39275 -46%
gas used for inserting 927th item 73548 39386 -46%
gas used for inserting 928th item 139154 46606 -66%
gas used for inserting 929th item 73044 37101 -49%
gas used for inserting 930th item 122534 51258 -58%
gas used for inserting 931th item 73043 37005 -49%
gas used for inserting 932th item 122042 48971 -59%
gas used for inserting 933th item 73288 38245 -47%
gas used for inserting 934th item 139157 46591 -66%
gas used for inserting 935th item 143041 50434 -64%
gas used for inserting 936th item 117417 43190 -63%
gas used for inserting 937th item 138905 45465 -67%
gas used for inserting 938th item 118650 45075 -62%
gas used for inserting 939th item 73540 39382 -46%
gas used for inserting 940th item 95612 39953 -58%
gas used for inserting 941th item 95861 40996 -57%
gas used for inserting 942th item 140946 46769 -66%
gas used for inserting 943th item 122505 51233 -58%
gas used for inserting 944th item 138915 45458 -67%
gas used for inserting 945th item 73297 38247 -47%
gas used for inserting 946th item 95614 39956 -58%
gas used for inserting 947th item 138916 45477 -67%
gas used for inserting 948th item 144825 52950 -63%
gas used for inserting 949th item 73313 38258 -47%
gas used for inserting 950th item 73074 37114 -49%
gas used for inserting 951th item 138924 45460 -67%
gas used for inserting 952th item 73074 37115 -49%
gas used for inserting 953th item 95600 39954 -58%
gas used for inserting 954th item 73302 38250 -47%
gas used for inserting 955th item 95845 41094 -57%
gas used for inserting 956th item 73316 38261 -47%
gas used for inserting 957th item 73304 38251 -47%
gas used for inserting 958th item 73304 38150 -47%
gas used for inserting 959th item 95850 41093 -57%
gas used for inserting 960th item 73305 38253 -47%
gas used for inserting 961th item 122300 50124 -59%
gas used for inserting 962th item 117928 45571 -61%
gas used for inserting 963th item 139435 47648 -65%
gas used for inserting 964th item 139168 46608 -66%
gas used for inserting 965th item 72828 35989 -50%
gas used for inserting 966th item 73305 38259 -47%
gas used for inserting 967th item 73319 38269 -47%
gas used for inserting 968th item 73080 37022 -49%
gas used for inserting 969th item 117685 44436 -62%
gas used for inserting 970th item 122283 50118 -59%
gas used for inserting 971th item 118178 42810 -63%
gas used for inserting 972th item 144844 52961 -63%
gas used for inserting 973th item 120747 48644 -59%
gas used for inserting 974th item 120503 47626 -60%
gas used for inserting 975th item 96123 42242 -56%
gas used for inserting 976th item 117424 43296 -63%
gas used for inserting 977th item 117935 45595 -61%
gas used for inserting 978th item 73571 39410 -46%
gas used for inserting 979th item 139172 46618 -66%
gas used for inserting 980th item 95861 41101 -57%
gas used for inserting 981th item 122529 51263 -58%
gas used for inserting 982th item 138947 45488 -67%
gas used for inserting 983th item 73079 37139 -49%
gas used for inserting 984th item 117193 42173 -64%
gas used for inserting 985th item 120782 48769 -59%
gas used for inserting 986th item 95881 41110 -57%
gas used for inserting 987th item 138703 44353 -68%
gas used for inserting 988th item 118429 43958 -62%
gas used for inserting 989th item 139442 47768 -65%
gas used for inserting 990th item 73086 37034 -49%
gas used for inserting 991th item 141212 47933 -66%