-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdynamic.yml
5165 lines (5165 loc) · 111 KB
/
dynamic.yml
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
---
brooklyn:
0.0.1:
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.12137379904743284
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.11943926196545362
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.12212273699697107
eda: 100
weight: 1000
- user: 0.12999999999999998
system: 0.0
total: 0.12999999999999998
real: 0.1253269270528108
eda: 100
weight: 1000
- user: 0.12999999999999998
system: 0.0
total: 0.12999999999999998
real: 0.12914094398729503
eda: 100
weight: 1000
- user: 0.17
system: 0.009999999999999998
total: 0.18000000000000002
real: 0.16917528200428933
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.16850812500342727
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.1650244710035622
eda: 200
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.11768274405039847
eda: 100
weight: 1000
- user: 0.12
system: 0.0
total: 0.12
real: 0.11986637103836983
eda: 100
weight: 1000
- user: 0.12999999999999998
system: 0.0
total: 0.12999999999999998
real: 0.13233124103862792
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.11527698603458703
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.1217223679414019
eda: 100
weight: 1000
- user: 0.18
system: 0.010000000000000002
total: 0.19
real: 0.18796477396972477
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.1661586279515177
eda: 200
weight: 1000
- user: 0.17
system: 0.009999999999999998
total: 0.18000000000000002
real: 0.18052485503721982
eda: 200
weight: 1000
- user: 0.16
system: 0.0
total: 0.16
real: 0.16553549002856016
eda: 200
weight: 1000
- user: 0.16999999999999998
system: 0.0
total: 0.16999999999999998
real: 0.17148256802465767
eda: 200
weight: 1000
- user: 0.43
system: 0.010000000000000002
total: 0.44
real: 0.47648016398306936
eda: 500
weight: 1000
- user: 0.42000000000000004
system: 0.010000000000000002
total: 0.43000000000000005
real: 0.44147265795618296
eda: 500
weight: 1000
- user: 0.32999999999999996
system: 0.0
total: 0.32999999999999996
real: 0.3371918380726129
eda: 500
weight: 1000
- user: 0.33999999999999997
system: 0.0
total: 0.33999999999999997
real: 0.3373727719299495
eda: 500
weight: 1000
- user: 0.35
system: 0.0
total: 0.35
real: 0.34841650805901736
eda: 500
weight: 1000
- user: 0.61
system: 0.0
total: 0.61
real: 0.6145096910186112
eda: 1000
weight: 1000
- user: 0.62
system: 0.0
total: 0.62
real: 0.6305649279383942
eda: 1000
weight: 1000
- user: 0.72
system: 0.0
total: 0.72
real: 0.7352767050033435
eda: 1000
weight: 1000
- user: 0.62
system: 0.0
total: 0.62
real: 0.6299734229687601
eda: 1000
weight: 1000
- user: 0.65
system: 0.0
total: 0.65
real: 0.6604783189250156
eda: 1000
weight: 1000
- user: 0.16999999999999998
system: 0.0
total: 0.16999999999999998
real: 0.19689320301404223
eda: 100
weight: 1000
- user: 0.19
system: 0.0
total: 0.19
real: 0.1869093300192617
eda: 200
weight: 1000
- user: 0.37
system: 0.0
total: 0.37
real: 0.37804810400120914
eda: 500
weight: 1000
- user: 0.65
system: 0.010000000000000002
total: 0.66
real: 0.659283476008568
eda: 1000
weight: 1000
camping:
2.1.532:
- user: 0.8300000000000001
system: 0.010000000000000002
total: 0.8400000000000001
real: 0.8473734890576452
eda: 100
weight: 1000
- user: 0.78
system: 0.010000000000000002
total: 0.79
real: 0.8082033880054951
eda: 100
weight: 1000
- user: 0.79
system: 0.010000000000000002
total: 0.8
real: 0.8098189160227776
eda: 100
weight: 1000
- user: 0.77
system: 0.010000000000000002
total: 0.78
real: 0.787676829029806
eda: 100
weight: 1000
- user: 0.77
system: 0.010000000000000002
total: 0.78
real: 0.7959804609417915
eda: 100
weight: 1000
- user: 1.56
system: 0.03
total: 1.59
real: 1.5967818479984999
eda: 200
weight: 1000
- user: 1.6300000000000001
system: 0.03
total: 1.6600000000000001
real: 1.6668536940123886
eda: 200
weight: 1000
- user: 1.62
system: 0.03
total: 1.6500000000000001
real: 1.6594301569275558
eda: 200
weight: 1000
- user: 1.55
system: 0.03
total: 1.58
real: 1.5934839609544724
eda: 200
weight: 1000
- user: 1.59
system: 0.03
total: 1.62
real: 1.6270000420045108
eda: 200
weight: 1000
- user: 4.1000000000000005
system: 0.06
total: 4.16
real: 4.191002154024318
eda: 500
weight: 1000
- user: 4.08
system: 0.07
total: 4.15
real: 4.174212975078262
eda: 500
weight: 1000
- user: 4.01
system: 0.06
total: 4.069999999999999
real: 4.089226720039733
eda: 500
weight: 1000
- user: 4.17
system: 0.06
total: 4.2299999999999995
real: 4.2533300530631095
eda: 500
weight: 1000
- user: 4.11
system: 0.06
total: 4.17
real: 4.202774979989044
eda: 500
weight: 1000
- user: 8.219999999999999
system: 0.12
total: 8.339999999999998
real: 8.393667871016078
eda: 1000
weight: 1000
- user: 8.34
system: 0.13
total: 8.47
real: 8.523687654058449
eda: 1000
weight: 1000
- user: 8.36
system: 0.12
total: 8.479999999999999
real: 8.52356018696446
eda: 1000
weight: 1000
- user: 8.459999999999999
system: 0.14
total: 8.6
real: 8.651076868991368
eda: 1000
weight: 1000
- user: 8.4
system: 0.12
total: 8.52
real: 8.5725072278874
eda: 1000
weight: 1000
- user: 0.8
system: 0.010000000000000002
total: 0.81
real: 0.8090957280364819
eda: 100
weight: 1000
- user: 1.64
system: 0.030000000000000006
total: 1.67
real: 1.6754655719851144
eda: 200
weight: 1000
- user: 4.04
system: 0.05
total: 4.09
real: 4.099427592998836
eda: 500
weight: 1000
- user: 8.63
system: 0.16999999999999998
total: 8.8
real: 9.458977551956195
eda: 1000
weight: 1000
cuba:
3.8.0:
- user: 1.2
system: 0.020000000000000004
total: 1.22
real: 1.2305187800666317
eda: 100
weight: 1000
- user: 1.23
system: 0.020000000000000004
total: 1.25
real: 1.271756273927167
eda: 100
weight: 1000
- user: 1.18
system: 0.010000000000000002
total: 1.19
real: 1.1998587369453162
eda: 100
weight: 1000
- user: 1.19
system: 0.020000000000000004
total: 1.21
real: 1.2210092360619456
eda: 100
weight: 1000
- user: 1.18
system: 0.020000000000000004
total: 1.2
real: 1.205386060057208
eda: 100
weight: 1000
- user: 2.42
system: 0.03
total: 2.4499999999999997
real: 2.4687779130181298
eda: 200
weight: 1000
- user: 2.38
system: 0.03
total: 2.4099999999999997
real: 2.419500836986117
eda: 200
weight: 1000
- user: 2.44
system: 0.03
total: 2.4699999999999998
real: 2.4851088830037042
eda: 200
weight: 1000
- user: 2.3499999999999996
system: 0.03
total: 2.3799999999999994
real: 2.3985363559331745
eda: 200
weight: 1000
- user: 2.44
system: 0.03
total: 2.4699999999999998
real: 2.4837128130020574
eda: 200
weight: 1000
- user: 6.19
system: 0.07
total: 6.260000000000001
real: 6.288036106037907
eda: 500
weight: 1000
- user: 6.180000000000001
system: 0.07
total: 6.250000000000001
real: 6.288760791998357
eda: 500
weight: 1000
- user: 6.220000000000001
system: 0.07
total: 6.290000000000001
real: 6.34041743807029
eda: 500
weight: 1000
- user: 6.12
system: 0.08
total: 6.2
real: 6.241898489999585
eda: 500
weight: 1000
- user: 6.11
system: 0.08
total: 6.19
real: 6.22212672594469
eda: 500
weight: 1000
- user: 12.559999999999999
system: 0.14
total: 12.7
real: 12.769339326070622
eda: 1000
weight: 1000
- user: 12.37
system: 0.13
total: 12.5
real: 12.571816130075604
eda: 1000
weight: 1000
- user: 12.299999999999999
system: 0.14
total: 12.44
real: 12.52343438193202
eda: 1000
weight: 1000
- user: 12.33
system: 0.14
total: 12.47
real: 12.53427498403471
eda: 1000
weight: 1000
- user: 12.29
system: 0.13
total: 12.42
real: 12.498582924949005
eda: 1000
weight: 1000
- user: 1.15
system: 0.010000000000000002
total: 1.16
real: 1.1698367329663597
eda: 100
weight: 1000
- user: 2.5900000000000003
system: 0.04000000000000001
total: 2.6300000000000003
real: 2.6643669299664907
eda: 200
weight: 1000
- user: 6.54
system: 0.07
total: 6.61
real: 6.819367528951261
eda: 500
weight: 1000
- user: 13.66
system: 0.16999999999999998
total: 13.83
real: 14.072810508019757
eda: 1000
weight: 1000
grape:
0.17.0:
- user: 0.55
system: 0.010000000000000009
total: 0.56
real: 0.5679991650395095
eda: 100
weight: 1000
- user: 0.53
system: 0.010000000000000009
total: 0.54
real: 0.5346213589655235
eda: 100
weight: 1000
- user: 0.5
system: 0.010000000000000009
total: 0.51
real: 0.5165109089575708
eda: 100
weight: 1000
- user: 0.56
system: 0.009999999999999995
total: 0.5700000000000001
real: 0.6391798340482637
eda: 100
weight: 1000
- user: 0.48000000000000004
system: 0.0
total: 0.48000000000000004
real: 0.4917170259868726
eda: 100
weight: 1000
- user: 0.75
system: 0.020000000000000004
total: 0.77
real: 0.7638998640468344
eda: 200
weight: 1000
- user: 0.77
system: 0.010000000000000009
total: 0.78
real: 0.7837401159340516
eda: 200
weight: 1000
- user: 0.75
system: 0.0
total: 0.75
real: 0.760824978002347
eda: 200
weight: 1000
- user: 0.76
system: 0.020000000000000004
total: 0.78
real: 0.7779459420125932
eda: 200
weight: 1000
- user: 0.75
system: 0.010000000000000009
total: 0.76
real: 0.7556101409718394
eda: 200
weight: 1000
- user: 1.7799999999999998
system: 0.020000000000000004
total: 1.7999999999999998
real: 1.8046977239428088
eda: 500
weight: 1000
- user: 1.75
system: 0.03
total: 1.78
real: 1.767197750043124
eda: 500
weight: 1000
- user: 1.7600000000000002
system: 0.020000000000000004
total: 1.7800000000000002
real: 1.7886147380340844
eda: 500
weight: 1000
- user: 1.79
system: 0.03
total: 1.82
real: 1.813466863008216
eda: 500
weight: 1000
- user: 1.7000000000000002
system: 0.020000000000000004
total: 1.7200000000000002
real: 1.727129300008528
eda: 500
weight: 1000
- user: 4.67
system: 0.04000000000000001
total: 4.71
real: 4.721910129999742
eda: 1000
weight: 1000
- user: 4.779999999999999
system: 0.04000000000000001
total: 4.819999999999999
real: 4.8344634539680555
eda: 1000
weight: 1000
- user: 4.84
system: 0.04000000000000001
total: 4.88
real: 4.891728567075916
eda: 1000
weight: 1000
- user: 4.6000000000000005
system: 0.04000000000000001
total: 4.640000000000001
real: 4.646827574004419
eda: 1000
weight: 1000
- user: 4.59
system: 0.04000000000000001
total: 4.63
real: 4.63833457196597
eda: 1000
weight: 1000
0.18.0:
- user: 0.57
system: 0.01999999999999999
total: 0.59
real: 0.6094266079599038
eda: 100
weight: 1000
- user: 0.7999999999999999
system: 0.01999999999999999
total: 0.82
real: 0.8282128819846548
eda: 200
weight: 1000
- user: 1.5100000000000002
system: 0.03
total: 1.5400000000000003
real: 1.5854331430164166
eda: 500
weight: 1000
- user: 3.16
system: 0.07
total: 3.23
real: 3.3531436839839444
eda: 1000
weight: 1000
hobbit:
0.6.1:
- user: 0.11000000000000001
system: 0.0
total: 0.11000000000000001
real: 0.11571288399863988
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.009999999999999998
total: 0.13000000000000003
real: 0.11617868999019265
eda: 100
weight: 1000
- user: 0.11999999999999997
system: 0.0
total: 0.11999999999999997
real: 0.12013611604925245
eda: 100
weight: 1000
- user: 0.11000000000000001
system: 0.0
total: 0.11000000000000001
real: 0.1173971020616591
eda: 100
weight: 1000
- user: 0.12000000000000002
system: 0.0
total: 0.12000000000000002
real: 0.12344706803560257
eda: 100
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.17300186899956316
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.17821827693842351
eda: 200
weight: 1000
- user: 0.18999999999999997
system: 0.0
total: 0.18999999999999997
real: 0.1847178570460528
eda: 200
weight: 1000
- user: 0.18000000000000002
system: 0.0
total: 0.18000000000000002
real: 0.18141217692755163
eda: 200
weight: 1000
- user: 0.18000000000000002
system: 0.0
total: 0.18000000000000002
real: 0.17952715093269944
eda: 200
weight: 1000
- user: 0.39
system: 0.009999999999999998
total: 0.4
real: 0.3907746219774708
eda: 500
weight: 1000
- user: 0.38
system: 0.009999999999999998
total: 0.39
real: 0.3878210639813915
eda: 500
weight: 1000
- user: 0.4
system: 0.009999999999999998
total: 0.41000000000000003
real: 0.40378024301026016
eda: 500
weight: 1000
- user: 0.37
system: 0.0
total: 0.37
real: 0.3705323439789936
eda: 500
weight: 1000
- user: 0.39
system: 0.009999999999999998
total: 0.4
real: 0.39054605399724096
eda: 500
weight: 1000
- user: 0.72
system: 0.0
total: 0.72
real: 0.7288303569657728
eda: 1000
weight: 1000
- user: 0.71
system: 0.0
total: 0.71
real: 0.7151773709338158
eda: 1000
weight: 1000
- user: 0.73
system: 0.0
total: 0.73
real: 0.7347377920523286
eda: 1000
weight: 1000
- user: 0.7000000000000001
system: 0.0
total: 0.7000000000000001
real: 0.705780370044522
eda: 1000
weight: 1000
- user: 0.6900000000000001
system: 0.009999999999999998
total: 0.7000000000000001
real: 0.6983265519374982
eda: 1000
weight: 1000
- user: 0.17000000000000004
system: 0.010000000000000009
total: 0.18000000000000005
real: 0.18596896500093862
eda: 100
weight: 1000
- user: 0.32
system: 0.009999999999999995
total: 0.33
real: 0.36494887695880607
eda: 200
weight: 1000
- user: 0.41999999999999993
system: 0.0
total: 0.41999999999999993
real: 0.4290414210408926
eda: 500
weight: 1000
- user: 1.09
system: 0.010000000000000002
total: 1.1
real: 1.1265921860467643
eda: 1000
weight: 1000
nancy:
0.3.0:
- user: 0.13000000000000003
system: 0.0
total: 0.13000000000000003
real: 0.12996181705966592
eda: 100
weight: 1000
- user: 0.13
system: 0.0
total: 0.13
real: 0.1315984510583803
eda: 100
weight: 1000
- user: 0.13000000000000003
system: 0.009999999999999998
total: 0.14000000000000004
real: 0.1273047860013321
eda: 100
weight: 1000
- user: 0.13000000000000003
system: 0.0
total: 0.13000000000000003
real: 0.13701953506097198
eda: 100
weight: 1000
- user: 0.13000000000000003
system: 0.0
total: 0.13000000000000003
real: 0.12540748703759164
eda: 100
weight: 1000
- user: 0.17999999999999997
system: 0.0
total: 0.17999999999999997
real: 0.18510866805445403
eda: 200
weight: 1000
- user: 0.17
system: 0.009999999999999998
total: 0.18000000000000002
real: 0.17893771000672132
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.17730597697664052
eda: 200
weight: 1000
- user: 0.17
system: 0.0
total: 0.17
real: 0.1787546540144831
eda: 200
weight: 1000
- user: 0.18000000000000002
system: 0.0
total: 0.18000000000000002
real: 0.17789473803713918
eda: 200
weight: 1000
- user: 0.33999999999999997
system: 0.0
total: 0.33999999999999997
real: 0.3480359800159931
eda: 500
weight: 1000
- user: 0.35
system: 0.0
total: 0.35
real: 0.35349023493472487
eda: 500
weight: 1000
- user: 0.3500000000000001
system: 0.0
total: 0.3500000000000001
real: 0.3550284180091694
eda: 500
weight: 1000
- user: 0.3500000000000001
system: 0.0
total: 0.3500000000000001
real: 0.34887801308650523
eda: 500
weight: 1000
- user: 0.3400000000000001
system: 0.0
total: 0.3400000000000001
real: 0.33922492899000645
eda: 500
weight: 1000
- user: 0.68
system: 0.0
total: 0.68
real: 0.6869972150307149
eda: 1000
weight: 1000
- user: 0.63
system: 0.009999999999999998
total: 0.64
real: 0.6354650179855525
eda: 1000
weight: 1000
- user: 0.61
system: 0.009999999999999998
total: 0.62
real: 0.6091303549474105
eda: 1000
weight: 1000
- user: 0.63
system: 0.009999999999999998
total: 0.64
real: 0.6280990340746939
eda: 1000
weight: 1000
- user: 0.61
system: 0.009999999999999998
total: 0.62
real: 0.6153370059328154
eda: 1000
weight: 1000
- user: 0.18
system: 0.0
total: 0.18
real: 0.19434609095333144
eda: 100
weight: 1000
- user: 0.19
system: 0.0
total: 0.19
real: 0.20257277000928298
eda: 200
weight: 1000
- user: 0.39999999999999997
system: 0.010000000000000009
total: 0.41
real: 0.4183388680103235
eda: 500
weight: 1000
- user: 0.9299999999999999
system: 0.009999999999999995
total: 0.94
real: 0.9873833680176176
eda: 1000
weight: 1000
nyny:
3.4.3:
- user: 0.13
system: 0.0
total: 0.13
real: 0.13852669799234718
eda: 100
weight: 1000
- user: 0.14
system: 0.0
total: 0.14
real: 0.14182363101281226
eda: 100
weight: 1000
- user: 0.13
system: 0.0
total: 0.13
real: 0.1321465380024165
eda: 100
weight: 1000
- user: 0.12999999999999995
system: 0.0
total: 0.12999999999999995
real: 0.12728512100875378
eda: 100
weight: 1000
- user: 0.12999999999999995
system: 0.0
total: 0.12999999999999995
real: 0.13181969907600433
eda: 100
weight: 1000
- user: 0.15999999999999998
system: 0.0
total: 0.15999999999999998
real: 0.1615613439353183
eda: 200
weight: 1000
- user: 0.15999999999999998
system: 0.0
total: 0.15999999999999998
real: 0.16077434597536922
eda: 200
weight: 1000
- user: 0.14999999999999997
system: 0.0
total: 0.14999999999999997
real: 0.15307611704338342
eda: 200
weight: 1000
- user: 0.14999999999999997
system: 0.0
total: 0.14999999999999997
real: 0.14629596297163516
eda: 200
weight: 1000
- user: 0.15999999999999998
system: 0.0
total: 0.15999999999999998
real: 0.15378640801645815
eda: 200
weight: 1000
- user: 0.19
system: 0.0
total: 0.19
real: 0.1990420469082892
eda: 500
weight: 1000
- user: 0.2
system: 0.0
total: 0.2
real: 0.2011464750394225
eda: 500
weight: 1000