-
Notifications
You must be signed in to change notification settings - Fork 0
/
out_new2.html
853 lines (764 loc) · 129 KB
/
out_new2.html
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
<!doctype html>
<html ng-app="TaskApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rally | Rally Task Report</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.css">
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.4.13/d3.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/nvd3/1.1.15-beta/nv.d3.min.js"></script>
<script type="text/javascript">
"use strict";
if (typeof angular === "object") { angular.module("TaskApp", []).controller(
"TaskController", ["$scope", "$location", function($scope, $location) {
$scope.source = "{\n \"Dummy.dummy_random_action\": [\n {\n \"args\": {\n \"actions_num\": 1, \n \"sleep_max\": 0.5, \n \"sleep_min\": 0.1\n }, \n \"context\": {\n \"users\": {\n \"project_domain\": \"default\", \n \"resource_management_workers\": 30, \n \"tenants\": 1, \n \"user_domain\": \"default\", \n \"users_per_tenant\": 1\n }\n }, \n \"runner\": {\n \"concurrency\": 400, \n \"times\": 4000, \n \"type\": \"constant\"\n }\n }\n ]\n}";
$scope.scenarios = [{"load_profile": [["parallel iterations", [[0.0, 0], [0.03507715930938721, 68.0], [0.07015431861877441, 198.0], [0.10523147792816162, 318.0], [0.14030863723754883, 386.5], [0.17538579654693603, 398.0], [0.21046295585632324, 399.0], [0.24554011516571045, 399.0], [0.28061727447509766, 398.5], [0.31569443378448486, 398.0], [0.35077159309387207, 395.5], [0.3858487524032593, 395.5], [0.4209259117126465, 396.5], [0.4560030710220337, 395.5], [0.4910802303314209, 396.0], [0.526157389640808, 395.5], [0.5612345489501953, 396.0], [0.5963117082595826, 397.5], [0.6313888675689697, 395.0], [0.6664660268783569, 392.0], [0.7015431861877441, 394.5], [0.7366203454971314, 396.0], [0.7716975048065186, 393.5], [0.8067746641159057, 393.0], [0.841851823425293, 394.0], [0.8769289827346802, 395.0], [0.9120061420440674, 398.0], [0.9470833013534545, 397.5], [0.9821604606628418, 395.5], [1.017237619972229, 393.5], [1.052314779281616, 393.0], [1.0873919385910034, 395.5], [1.1224690979003906, 393.5], [1.1575462572097779, 394.5], [1.1926234165191651, 397.5], [1.2277005758285522, 397.0], [1.2627777351379394, 394.0], [1.2978548944473267, 391.5], [1.3329320537567138, 393.0], [1.368009213066101, 393.0], [1.4030863723754883, 392.5], [1.4381635316848755, 395.0], [1.4732406909942628, 393.5], [1.5083178503036498, 393.0], [1.543395009613037, 397.0], [1.5784721689224244, 398.5], [1.6135493282318114, 397.5], [1.6486264875411987, 397.0], [1.683703646850586, 397.0], [1.7187808061599732, 396.0], [1.7538579654693605, 398.0], [1.7889351247787475, 398.5], [1.8240122840881348, 397.5], [1.859089443397522, 396.5], [1.894166602706909, 396.0], [1.9292437620162963, 397.0], [1.9643209213256836, 396.0], [1.9993980806350709, 394.5], [2.034475239944458, 391.0], [2.0695523992538454, 386.5], [2.104629558563232, 392.5], [2.1397067178726195, 394.0], [2.1747838771820067, 392.0], [2.209861036491394, 396.0], [2.2449381958007812, 395.5], [2.2800153551101685, 395.5], [2.3150925144195558, 393.5], [2.350169673728943, 389.5], [2.3852468330383303, 391.5], [2.420323992347717, 394.0], [2.4554011516571044, 389.5], [2.4904783109664916, 385.0], [2.525555470275879, 391.5], [2.560632629585266, 395.0], [2.5957097888946534, 392.0], [2.6307869482040407, 396.0], [2.6658641075134275, 397.0], [2.7009412668228148, 395.5], [2.736018426132202, 396.5], [2.7710955854415893, 395.5], [2.8061727447509766, 395.0], [2.841249904060364, 394.0], [2.876327063369751, 394.5], [2.9114042226791383, 397.5], [2.9464813819885256, 398.5], [2.9815585412979124, 381.0], [3.0166357006072997, 339.0], [3.051712859916687, 288.5], [3.086790019226074, 243.0], [3.1218671785354615, 205.0], [3.1569443378448487, 170.5], [3.192021497154236, 139.5], [3.227098656463623, 108.0], [3.26217581577301, 77.5], [3.2972529750823973, 50.5], [3.3323301343917846, 29.0], [3.367407293701172, 15.0], [3.402484453010559, 6.5], [3.4375616123199464, 2.0], [3.4726387716293337, 0.5], [3.507715930938721, 0]]]], "errors": [], "name": "dummy_random_action", "runner": "constant", "iterations_count": 4000, "output_errors": [], "pos": "0", "load_duration": 3.438937187194824, "sla_success": true, "met": "dummy_random_action", "atomic": {"pie": [["action_0", 0.30369549852609634]], "iter": [["action_0", [[1, 0.2015330195426941], [6, 0.18790370225906372], [10, 0.2833212614059448], [14, 0.26509207487106323], [18, 0.261296808719635], [22, 0.3867682218551636], [26, 0.27668654918670654], [30, 0.38356077671051025], [34, 0.279812216758728], [38, 0.30812937021255493], [42, 0.34689050912857056], [46, 0.302171528339386], [50, 0.29478543996810913], [54, 0.17744696140289307], [58, 0.2691822052001953], [62, 0.3760952949523926], [66, 0.2667995095252991], [70, 0.21455854177474976], [74, 0.2718026638031006], [78, 0.2956467866897583], [82, 0.25562024116516113], [86, 0.33533626794815063], [90, 0.3283405303955078], [94, 0.2702754735946655], [98, 0.3381814956665039], [102, 0.2785157561302185], [106, 0.28839874267578125], [110, 0.2674030661582947], [114, 0.24933630228042603], [118, 0.3047952651977539], [122, 0.3303292393684387], [126, 0.3384380340576172], [130, 0.24040526151657104], [134, 0.21656525135040283], [138, 0.23677408695220947], [142, 0.30481481552124023], [146, 0.31756317615509033], [150, 0.3902939558029175], [154, 0.2724147439002991], [158, 0.26598846912384033], [162, 0.21693819761276245], [166, 0.3763890266418457], [170, 0.25664424896240234], [174, 0.3377465009689331], [178, 0.36096155643463135], [182, 0.32574254274368286], [186, 0.24398529529571533], [190, 0.2505466938018799], [194, 0.3366032838821411], [198, 0.4006522297859192], [202, 0.316429078578949], [206, 0.4083166718482971], [210, 0.3461560010910034], [214, 0.3096885085105896], [218, 0.2635567784309387], [222, 0.3240887522697449], [226, 0.41080254316329956], [230, 0.32791441679000854], [234, 0.3610674738883972], [238, 0.2749457359313965], [242, 0.3477832078933716], [246, 0.3764227628707886], [250, 0.3083232045173645], [254, 0.3917688727378845], [258, 0.35613471269607544], [262, 0.31176143884658813], [266, 0.40922534465789795], [270, 0.2832692265510559], [274, 0.40684497356414795], [278, 0.38006848096847534], [282, 0.3092420697212219], [286, 0.22988247871398926], [290, 0.2422768473625183], [294, 0.37085407972335815], [298, 0.32025349140167236], [302, 0.4160892367362976], [306, 0.15360456705093384], [310, 0.34255748987197876], [314, 0.2829344868659973], [318, 0.403935968875885], [322, 0.27174049615859985], [326, 0.2656775116920471], [330, 0.4029061198234558], [334, 0.2460448145866394], [338, 0.31051504611968994], [342, 0.24888569116592407], [346, 0.36594974994659424], [350, 0.4103490710258484], [354, 0.2169513702392578], [358, 0.20950472354888916], [362, 0.25166428089141846], [366, 0.22415697574615479], [370, 0.42640209197998047], [374, 0.3038517236709595], [378, 0.259640634059906], [382, 0.292472243309021], [386, 0.3617457151412964], [390, 0.3069380521774292], [394, 0.3386789560317993], [398, 0.2901644706726074], [402, 0.3290855288505554], [406, 0.30282849073410034], [410, 0.3190987706184387], [414, 0.4428887367248535], [418, 0.3401848077774048], [422, 0.25461477041244507], [426, 0.23808985948562622], [430, 0.3033105731010437], [434, 0.18617171049118042], [438, 0.275672972202301], [442, 0.31476378440856934], [446, 0.3326627016067505], [450, 0.35242724418640137], [454, 0.22724372148513794], [458, 0.2505252957344055], [462, 0.3055466413497925], [466, 0.3711543083190918], [470, 0.20424556732177734], [474, 0.3967931866645813], [478, 0.2551495432853699], [482, 0.3436982035636902], [486, 0.35911548137664795], [490, 0.2774287462234497], [494, 0.2832362651824951], [498, 0.25804758071899414], [502, 0.2657012939453125], [506, 0.39289647340774536], [510, 0.3425769805908203], [514, 0.24233418703079224], [518, 0.33157944679260254], [522, 0.2381347417831421], [526, 0.40710151195526123], [530, 0.28931427001953125], [534, 0.30681300163269043], [538, 0.2915399670600891], [542, 0.3038782477378845], [546, 0.3562932014465332], [550, 0.2772790193557739], [554, 0.19745177030563354], [558, 0.2950889468193054], [562, 0.35553497076034546], [566, 0.33922600746154785], [570, 0.23008912801742554], [574, 0.3004162311553955], [578, 0.2162705659866333], [582, 0.26886820793151855], [586, 0.2961374521255493], [590, 0.2343727946281433], [594, 0.2711781859397888], [598, 0.2797117829322815], [602, 0.32256293296813965], [606, 0.2886826992034912], [610, 0.3053619861602783], [614, 0.29942530393600464], [618, 0.38935041427612305], [622, 0.259451687335968], [626, 0.24113625288009644], [630, 0.28033655881881714], [634, 0.24561649560928345], [638, 0.23275595903396606], [642, 0.24792593717575073], [646, 0.2642415761947632], [650, 0.2910040020942688], [654, 0.4228389859199524], [658, 0.3355717062950134], [662, 0.2067927122116089], [666, 0.3147634267807007], [670, 0.2115446925163269], [674, 0.22913730144500732], [678, 0.35147202014923096], [682, 0.345639705657959], [686, 0.2709997892379761], [690, 0.3379135727882385], [694, 0.21763426065444946], [698, 0.20452117919921875], [702, 0.27605122327804565], [706, 0.3160199522972107], [710, 0.2887119650840759], [714, 0.3038218021392822], [718, 0.3522161841392517], [722, 0.2936221957206726], [726, 0.2497285008430481], [730, 0.21223801374435425], [734, 0.32534676790237427], [738, 0.3182148337364197], [742, 0.2904975414276123], [746, 0.20390474796295166], [750, 0.3007112741470337], [754, 0.3198155164718628], [758, 0.31991028785705566], [762, 0.33031290769577026], [766, 0.2586972117424011], [770, 0.3685961961746216], [774, 0.3482102155685425], [778, 0.36878645420074463], [782, 0.3801584839820862], [786, 0.3568221926689148], [790, 0.2372889518737793], [794, 0.38453710079193115], [798, 0.27396875619888306], [802, 0.28450703620910645], [806, 0.27057772874832153], [810, 0.30926454067230225], [814, 0.31303149461746216], [818, 0.25770848989486694], [822, 0.2604379653930664], [826, 0.2821146845817566], [830, 0.2875663638114929], [834, 0.36498552560806274], [838, 0.289182186126709], [842, 0.258884072303772], [846, 0.38675665855407715], [850, 0.3875337839126587], [854, 0.43437474966049194], [858, 0.37959712743759155], [862, 0.20880752801895142], [866, 0.2913386821746826], [870, 0.3896715044975281], [874, 0.30045706033706665], [878, 0.34195834398269653], [882, 0.3297625184059143], [886, 0.3438412547111511], [890, 0.3599688410758972], [894, 0.27075374126434326], [898, 0.3407440185546875], [902, 0.29101723432540894], [906, 0.4106127619743347], [910, 0.22613024711608887], [914, 0.2279161810874939], [918, 0.30914872884750366], [922, 0.17635446786880493], [926, 0.3412020206451416], [930, 0.38376426696777344], [934, 0.23565000295639038], [938, 0.20657330751419067], [942, 0.2825170159339905], [946, 0.2741835117340088], [950, 0.2720819115638733], [954, 0.3380863070487976], [958, 0.26012301445007324], [962, 0.28742140531539917], [966, 0.27145302295684814], [970, 0.30326777696609497], [974, 0.2862001657485962], [978, 0.3103877902030945], [982, 0.30445075035095215], [986, 0.3948975205421448], [990, 0.30120450258255005], [994, 0.2585744261741638], [998, 0.3420252203941345], [1002, 0.26481521129608154], [1006, 0.4018399715423584], [1010, 0.41131532192230225], [1014, 0.2612612247467041], [1018, 0.23194831609725952], [1022, 0.3386111855506897], [1026, 0.1489277482032776], [1030, 0.2009323239326477], [1034, 0.22224581241607666], [1038, 0.30963999032974243], [1042, 0.2403302788734436], [1046, 0.37963372468948364], [1050, 0.2199680209159851], [1054, 0.27540069818496704], [1058, 0.22681331634521484], [1062, 0.3189634680747986], [1066, 0.3285965919494629], [1070, 0.3308452367782593], [1074, 0.26997750997543335], [1078, 0.3453649878501892], [1082, 0.24768245220184326], [1086, 0.233187735080719], [1090, 0.2225397825241089], [1094, 0.3507939577102661], [1098, 0.25958549976348877], [1102, 0.24529677629470825], [1106, 0.3237530589103699], [1110, 0.17295926809310913], [1114, 0.27979201078414917], [1118, 0.3153337836265564], [1122, 0.22359120845794678], [1126, 0.3066354990005493], [1130, 0.33661550283432007], [1134, 0.37099647521972656], [1138, 0.20373517274856567], [1142, 0.2764337658882141], [1146, 0.3330668807029724], [1150, 0.4132649898529053], [1154, 0.24395930767059326], [1158, 0.34531843662261963], [1162, 0.35631227493286133], [1166, 0.21214139461517334], [1170, 0.30542027950286865], [1174, 0.3782450556755066], [1178, 0.37192368507385254], [1182, 0.26390278339385986], [1186, 0.1543293595314026], [1190, 0.26123183965682983], [1194, 0.30325567722320557], [1198, 0.38561058044433594], [1202, 0.17224174737930298], [1206, 0.3991607427597046], [1210, 0.28186655044555664], [1214, 0.27877241373062134], [1218, 0.38793641328811646], [1222, 0.34561455249786377], [1226, 0.3051450252532959], [1230, 0.3708072900772095], [1234, 0.29013824462890625], [1238, 0.3638457655906677], [1242, 0.42137742042541504], [1246, 0.40581828355789185], [1250, 0.23380500078201294], [1254, 0.2855624556541443], [1258, 0.3632814288139343], [1262, 0.30356496572494507], [1266, 0.318983793258667], [1270, 0.2908176779747009], [1274, 0.2562299966812134], [1278, 0.2578619718551636], [1282, 0.3183406591415405], [1286, 0.357170045375824], [1290, 0.33660829067230225], [1294, 0.3603990077972412], [1298, 0.3258882761001587], [1302, 0.27253150939941406], [1306, 0.2970687747001648], [1310, 0.37491631507873535], [1314, 0.3812417984008789], [1318, 0.3829214572906494], [1322, 0.3315672278404236], [1326, 0.33819669485092163], [1330, 0.2860112190246582], [1334, 0.36796796321868896], [1338, 0.33006322383880615], [1342, 0.33773016929626465], [1346, 0.2416245937347412], [1350, 0.26949453353881836], [1354, 0.3218689560890198], [1358, 0.2440815567970276], [1362, 0.27465176582336426], [1366, 0.31454533338546753], [1370, 0.3344849944114685], [1374, 0.29105591773986816], [1378, 0.3760387897491455], [1382, 0.336580753326416], [1386, 0.2732808589935303], [1390, 0.2974954843521118], [1394, 0.3049735426902771], [1398, 0.24850356578826904], [1402, 0.2185562252998352], [1406, 0.2962729334831238], [1410, 0.4186680316925049], [1414, 0.2573510408401489], [1418, 0.341108500957489], [1422, 0.3262069821357727], [1426, 0.37640857696533203], [1430, 0.2776622176170349], [1434, 0.3025515079498291], [1438, 0.28961747884750366], [1442, 0.34863704442977905], [1446, 0.3534218668937683], [1450, 0.24501478672027588], [1454, 0.16171520948410034], [1458, 0.2813897728919983], [1462, 0.31143754720687866], [1466, 0.3684825301170349], [1470, 0.29661381244659424], [1474, 0.3142610788345337], [1478, 0.306348979473114], [1482, 0.4027618169784546], [1486, 0.3154400587081909], [1490, 0.2539992928504944], [1494, 0.33416223526000977], [1498, 0.33409059047698975], [1502, 0.26742929220199585], [1506, 0.29777753353118896], [1510, 0.2692492604255676], [1514, 0.4217992424964905], [1518, 0.24879825115203857], [1522, 0.3704737424850464], [1526, 0.29009777307510376], [1530, 0.17690348625183105], [1534, 0.31551480293273926], [1538, 0.23051786422729492], [1542, 0.28805869817733765], [1546, 0.2980527877807617], [1550, 0.4106329679489136], [1554, 0.3240950107574463], [1558, 0.21166115999221802], [1562, 0.24859023094177246], [1566, 0.23485922813415527], [1570, 0.3184594511985779], [1574, 0.28526872396469116], [1578, 0.27477550506591797], [1582, 0.2886325716972351], [1586, 0.3708597421646118], [1590, 0.28037750720977783], [1594, 0.2867932915687561], [1598, 0.313230037689209], [1602, 0.24576473236083984], [1606, 0.3239858150482178], [1610, 0.40811848640441895], [1614, 0.25678551197052], [1618, 0.33774781227111816], [1622, 0.2528252601623535], [1626, 0.33363819122314453], [1630, 0.22552895545959473], [1634, 0.32201093435287476], [1638, 0.3975977301597595], [1642, 0.2696102261543274], [1646, 0.347414493560791], [1650, 0.27583426237106323], [1654, 0.31471097469329834], [1658, 0.25190848112106323], [1662, 0.3990586996078491], [1666, 0.3682289719581604], [1670, 0.21848106384277344], [1674, 0.30696219205856323], [1678, 0.2662179470062256], [1682, 0.3377351760864258], [1686, 0.36215901374816895], [1690, 0.31275272369384766], [1694, 0.2677627205848694], [1698, 0.2851240634918213], [1702, 0.23796677589416504], [1706, 0.2888568043708801], [1710, 0.3641812801361084], [1714, 0.34571748971939087], [1718, 0.312453031539917], [1722, 0.30182945728302], [1726, 0.29604673385620117], [1730, 0.2664406895637512], [1734, 0.2747933268547058], [1738, 0.23295724391937256], [1742, 0.28584349155426025], [1746, 0.2962075471878052], [1750, 0.2109319567680359], [1754, 0.34494322538375854], [1758, 0.2525297999382019], [1762, 0.3705791234970093], [1766, 0.34486842155456543], [1770, 0.4331432580947876], [1774, 0.33794379234313965], [1778, 0.32999181747436523], [1782, 0.36681121587753296], [1786, 0.2591434121131897], [1790, 0.4026227593421936], [1794, 0.3158549666404724], [1798, 0.3104460835456848], [1802, 0.2999793291091919], [1806, 0.31595951318740845], [1810, 0.2896110415458679], [1814, 0.2938477396965027], [1818, 0.28350597620010376], [1822, 0.33192020654678345], [1826, 0.25027090311050415], [1830, 0.3928225636482239], [1834, 0.2956649661064148], [1838, 0.27833569049835205], [1842, 0.27229970693588257], [1846, 0.31362223625183105], [1850, 0.28245723247528076], [1854, 0.34169304370880127], [1858, 0.36330801248550415], [1862, 0.23252451419830322], [1866, 0.28662651777267456], [1870, 0.30274254083633423], [1874, 0.34556204080581665], [1878, 0.247211754322052], [1882, 0.30725419521331787], [1886, 0.36501747369766235], [1890, 0.32561928033828735], [1894, 0.3244912028312683], [1898, 0.29771459102630615], [1902, 0.2553407549858093], [1906, 0.3000067472457886], [1910, 0.3105979561805725], [1914, 0.30981433391571045], [1918, 0.3655707836151123], [1922, 0.2619916796684265], [1926, 0.30972975492477417], [1930, 0.423578679561615], [1934, 0.21649128198623657], [1938, 0.31157076358795166], [1942, 0.3854060173034668], [1946, 0.40406548976898193], [1950, 0.2678062915802002], [1954, 0.2635112404823303], [1958, 0.29320228099823], [1962, 0.17585277557373047], [1966, 0.3158267140388489], [1970, 0.3173797130584717], [1974, 0.29488104581832886], [1978, 0.4182690382003784], [1982, 0.34942251443862915], [1986, 0.36385953426361084], [1990, 0.3126235008239746], [1994, 0.38112133741378784], [1998, 0.2925025224685669], [2002, 0.17717301845550537], [2006, 0.2830987572669983], [2010, 0.22014349699020386], [2014, 0.27419227361679077], [2018, 0.32912468910217285], [2022, 0.3298102617263794], [2026, 0.2677280306816101], [2030, 0.2129272222518921], [2034, 0.23579192161560059], [2038, 0.34351080656051636], [2042, 0.2931935787200928], [2046, 0.31444692611694336], [2050, 0.3605169653892517], [2054, 0.3846210241317749], [2058, 0.2403995394706726], [2062, 0.17423129081726074], [2066, 0.20711380243301392], [2070, 0.3391607403755188], [2074, 0.2718188166618347], [2078, 0.2700105309486389], [2082, 0.33208972215652466], [2086, 0.23649752140045166], [2090, 0.2996974587440491], [2094, 0.38869428634643555], [2098, 0.2831476926803589], [2102, 0.23918724060058594], [2106, 0.28182846307754517], [2110, 0.3653057813644409], [2114, 0.3624919652938843], [2118, 0.2475447654724121], [2122, 0.18772315979003906], [2126, 0.24890977144241333], [2130, 0.28432023525238037], [2134, 0.25082528591156006], [2138, 0.24906480312347412], [2142, 0.3986385464668274], [2146, 0.3192404508590698], [2150, 0.30347126722335815], [2154, 0.3039460778236389], [2158, 0.31252431869506836], [2162, 0.3818686604499817], [2166, 0.30422550439834595], [2170, 0.4017904996871948], [2174, 0.2668376564979553], [2178, 0.38066166639328003], [2182, 0.25696462392807007], [2186, 0.21852779388427734], [2190, 0.3899030089378357], [2194, 0.24550747871398926], [2198, 0.24018371105194092], [2202, 0.30998945236206055], [2206, 0.3749467730522156], [2210, 0.2561819553375244], [2214, 0.28616827726364136], [2218, 0.22943121194839478], [2222, 0.2493094801902771], [2226, 0.38413798809051514], [2230, 0.2906000018119812], [2234, 0.25465404987335205], [2238, 0.4409981369972229], [2242, 0.42895644903182983], [2246, 0.26696550846099854], [2250, 0.3486371636390686], [2254, 0.26281923055648804], [2258, 0.32953089475631714], [2262, 0.2769344449043274], [2266, 0.3524153232574463], [2270, 0.27978944778442383], [2274, 0.2570720314979553], [2278, 0.2965855598449707], [2282, 0.2683337330818176], [2286, 0.2256145477294922], [2290, 0.26582103967666626], [2294, 0.3757812976837158], [2298, 0.30987751483917236], [2302, 0.1632392406463623], [2306, 0.3145097494125366], [2310, 0.22259950637817383], [2314, 0.38343220949172974], [2318, 0.33030879497528076], [2322, 0.3101533055305481], [2326, 0.2475980520248413], [2330, 0.24485301971435547], [2334, 0.24769943952560425], [2338, 0.3237640857696533], [2342, 0.3777252435684204], [2346, 0.3223915100097656], [2350, 0.2958797812461853], [2354, 0.23904073238372803], [2358, 0.33208173513412476], [2362, 0.32666856050491333], [2366, 0.18941569328308105], [2370, 0.21718651056289673], [2374, 0.2617648243904114], [2378, 0.30006200075149536], [2382, 0.2847382426261902], [2386, 0.21906602382659912], [2390, 0.36728179454803467], [2394, 0.2656117081642151], [2398, 0.32923150062561035], [2402, 0.312396764755249], [2406, 0.2866470217704773], [2410, 0.2706182599067688], [2414, 0.2982390522956848], [2418, 0.3238106966018677], [2422, 0.37613821029663086], [2426, 0.33618998527526855], [2430, 0.37828201055526733], [2434, 0.27907073497772217], [2438, 0.32931554317474365], [2442, 0.32311153411865234], [2446, 0.32535499334335327], [2450, 0.29942452907562256], [2454, 0.29437828063964844], [2458, 0.23961901664733887], [2462, 0.36647796630859375], [2466, 0.29348963499069214], [2470, 0.323100209236145], [2474, 0.2820857763290405], [2478, 0.32837897539138794], [2482, 0.2488204836845398], [2486, 0.36673104763031006], [2490, 0.3665367364883423], [2494, 0.32394707202911377], [2498, 0.23646003007888794], [2502, 0.30963635444641113], [2506, 0.37242448329925537], [2510, 0.20493674278259277], [2514, 0.21428197622299194], [2518, 0.26728373765945435], [2522, 0.2565787434577942], [2526, 0.32140254974365234], [2530, 0.3178117275238037], [2534, 0.35134702920913696], [2538, 0.329569935798645], [2542, 0.21776264905929565], [2546, 0.28658682107925415], [2550, 0.3745758533477783], [2554, 0.2895572781562805], [2558, 0.2811894416809082], [2562, 0.3289082646369934], [2566, 0.39188629388809204], [2570, 0.25678420066833496], [2574, 0.30544543266296387], [2578, 0.35344159603118896], [2582, 0.3673906922340393], [2586, 0.347445547580719], [2590, 0.3533385396003723], [2594, 0.24741500616073608], [2598, 0.394981324672699], [2602, 0.333545982837677], [2606, 0.26186394691467285], [2610, 0.27678197622299194], [2614, 0.20568519830703735], [2618, 0.2997782826423645], [2622, 0.30983221530914307], [2626, 0.2829520106315613], [2630, 0.14043176174163818], [2634, 0.29624372720718384], [2638, 0.26813238859176636], [2642, 0.23650026321411133], [2646, 0.29428690671920776], [2650, 0.28575700521469116], [2654, 0.3773542642593384], [2658, 0.23189479112625122], [2662, 0.3769587278366089], [2666, 0.40797680616378784], [2670, 0.3134637475013733], [2674, 0.2992566227912903], [2678, 0.3872172236442566], [2682, 0.1847577691078186], [2686, 0.2600795030593872], [2690, 0.37529969215393066], [2694, 0.24026328325271606], [2698, 0.3719770312309265], [2702, 0.3623817563056946], [2706, 0.3773495554924011], [2710, 0.32405829429626465], [2714, 0.32152146100997925], [2718, 0.3115849494934082], [2722, 0.3924752473831177], [2726, 0.36523401737213135], [2730, 0.268241822719574], [2734, 0.33764350414276123], [2738, 0.20667529106140137], [2742, 0.3630303740501404], [2746, 0.2841114401817322], [2750, 0.23160725831985474], [2754, 0.33741050958633423], [2758, 0.29814815521240234], [2762, 0.29749780893325806], [2766, 0.3056979775428772], [2770, 0.41308295726776123], [2774, 0.2268584966659546], [2778, 0.3465195298194885], [2782, 0.2788752317428589], [2786, 0.2957203984260559], [2790, 0.2946227192878723], [2794, 0.2043711543083191], [2798, 0.2902980446815491], [2802, 0.32987749576568604], [2806, 0.42111408710479736], [2810, 0.4138312339782715], [2814, 0.2644450068473816], [2818, 0.4265429973602295], [2822, 0.3558993935585022], [2826, 0.26759451627731323], [2830, 0.23367267847061157], [2834, 0.2389281988143921], [2838, 0.22021031379699707], [2842, 0.4446975588798523], [2846, 0.22196859121322632], [2850, 0.2308087944984436], [2854, 0.33421921730041504], [2858, 0.3306230306625366], [2862, 0.2878061532974243], [2866, 0.24620020389556885], [2870, 0.2674040198326111], [2874, 0.3612164258956909], [2878, 0.2294902801513672], [2882, 0.30112314224243164], [2886, 0.28775906562805176], [2890, 0.30813050270080566], [2894, 0.3491050601005554], [2898, 0.3770252466201782], [2902, 0.3561222553253174], [2906, 0.22941017150878906], [2910, 0.25029975175857544], [2914, 0.29881054162979126], [2918, 0.35313665866851807], [2922, 0.2987407445907593], [2926, 0.34744423627853394], [2930, 0.24184578657150269], [2934, 0.31464898586273193], [2938, 0.3399829864501953], [2942, 0.18936645984649658], [2946, 0.271603524684906], [2950, 0.3437845706939697], [2954, 0.3264992833137512], [2958, 0.2965127229690552], [2962, 0.41139549016952515], [2966, 0.22988170385360718], [2970, 0.28693026304244995], [2974, 0.29277390241622925], [2978, 0.3306533694267273], [2982, 0.2731757164001465], [2986, 0.30462926626205444], [2990, 0.354748010635376], [2994, 0.28257954120635986], [2998, 0.29089856147766113], [3002, 0.3020032048225403], [3006, 0.2621784210205078], [3010, 0.2448209524154663], [3014, 0.35712724924087524], [3018, 0.30253905057907104], [3022, 0.21396523714065552], [3026, 0.25577276945114136], [3030, 0.22241729497909546], [3034, 0.39369404315948486], [3038, 0.29270118474960327], [3042, 0.3265972137451172], [3046, 0.2605735659599304], [3050, 0.3810175061225891], [3054, 0.219931960105896], [3058, 0.30714142322540283], [3062, 0.2868884801864624], [3066, 0.39366525411605835], [3070, 0.21745574474334717], [3074, 0.2363559603691101], [3078, 0.21995306015014648], [3082, 0.26101982593536377], [3086, 0.3244442343711853], [3090, 0.34317463636398315], [3094, 0.3081165552139282], [3098, 0.26781147718429565], [3102, 0.23466020822525024], [3106, 0.15824323892593384], [3110, 0.37339580059051514], [3114, 0.19676315784454346], [3118, 0.39831221103668213], [3122, 0.3274437189102173], [3126, 0.34438151121139526], [3130, 0.2813800573348999], [3134, 0.3696560263633728], [3138, 0.30179858207702637], [3142, 0.39243531227111816], [3146, 0.27139973640441895], [3150, 0.3141428232192993], [3154, 0.3369840383529663], [3158, 0.3540689945220947], [3162, 0.267871618270874], [3166, 0.24954825639724731], [3170, 0.26438742876052856], [3174, 0.29331332445144653], [3178, 0.33297598361968994], [3182, 0.28096795082092285], [3186, 0.2888672351837158], [3190, 0.20428156852722168], [3194, 0.33248263597488403], [3198, 0.3234867453575134], [3202, 0.3963940739631653], [3206, 0.3874474763870239], [3210, 0.35958826541900635], [3214, 0.3373614549636841], [3218, 0.32463347911834717], [3222, 0.21507424116134644], [3226, 0.27833378314971924], [3230, 0.35003793239593506], [3234, 0.2523692846298218], [3238, 0.3057287335395813], [3242, 0.41060423851013184], [3246, 0.2569509744644165], [3250, 0.3265202045440674], [3254, 0.20215117931365967], [3258, 0.22060346603393555], [3262, 0.20068997144699097], [3266, 0.1747940182685852], [3270, 0.2268596887588501], [3274, 0.3528192639350891], [3278, 0.26579493284225464], [3282, 0.25326377153396606], [3286, 0.25370949506759644], [3290, 0.2383853793144226], [3294, 0.3718099594116211], [3298, 0.20591872930526733], [3302, 0.26758795976638794], [3306, 0.35768550634384155], [3310, 0.17754441499710083], [3314, 0.2909435033798218], [3318, 0.24640297889709473], [3322, 0.37332284450531006], [3326, 0.3730522394180298], [3330, 0.39532899856567383], [3334, 0.2520967721939087], [3338, 0.25757062435150146], [3342, 0.33040523529052734], [3346, 0.2791927456855774], [3350, 0.3468490242958069], [3354, 0.332155704498291], [3358, 0.27765899896621704], [3362, 0.22537720203399658], [3366, 0.4137269854545593], [3370, 0.3275987505912781], [3374, 0.2140675187110901], [3378, 0.32208824157714844], [3382, 0.26619648933410645], [3386, 0.38208192586898804], [3390, 0.34811365604400635], [3394, 0.30612272024154663], [3398, 0.26288795471191406], [3402, 0.31204646825790405], [3406, 0.3340025544166565], [3410, 0.32194018363952637], [3414, 0.45554208755493164], [3418, 0.2870604395866394], [3422, 0.3554007411003113], [3426, 0.2630777359008789], [3430, 0.36967068910598755], [3434, 0.3492717742919922], [3438, 0.26101601123809814], [3442, 0.3486253023147583], [3446, 0.27003616094589233], [3450, 0.22400224208831787], [3454, 0.30774247646331787], [3458, 0.24170273542404175], [3462, 0.2897107005119324], [3466, 0.2773677706718445], [3470, 0.3865954279899597], [3474, 0.24862170219421387], [3478, 0.3251473307609558], [3482, 0.32108306884765625], [3486, 0.2892402410507202], [3490, 0.3935346007347107], [3494, 0.34732306003570557], [3498, 0.3950355052947998], [3502, 0.37300950288772583], [3506, 0.2996237277984619], [3510, 0.33486855030059814], [3514, 0.24436545372009277], [3518, 0.2745649814605713], [3522, 0.33737093210220337], [3526, 0.3753262758255005], [3530, 0.37442630529403687], [3534, 0.29528772830963135], [3538, 0.32052671909332275], [3542, 0.32099074125289917], [3546, 0.36079591512680054], [3550, 0.331750750541687], [3554, 0.37116771936416626], [3558, 0.33962100744247437], [3562, 0.33230090141296387], [3566, 0.31057727336883545], [3570, 0.34681546688079834], [3574, 0.3827122449874878], [3578, 0.3217260241508484], [3582, 0.3680087924003601], [3586, 0.2219562530517578], [3590, 0.3601894974708557], [3594, 0.3346792459487915], [3598, 0.2918415069580078], [3602, 0.33435916900634766], [3606, 0.2907017469406128], [3610, 0.24430632591247559], [3614, 0.284525990486145], [3618, 0.2613075375556946], [3622, 0.25399935245513916], [3626, 0.394361674785614], [3630, 0.3236241936683655], [3634, 0.33823931217193604], [3638, 0.2809865474700928], [3642, 0.2812875509262085], [3646, 0.3416525721549988], [3650, 0.2557935118675232], [3654, 0.33249378204345703], [3658, 0.32038676738739014], [3662, 0.2498146891593933], [3666, 0.297121524810791], [3670, 0.37928450107574463], [3674, 0.27104121446609497], [3678, 0.3068397641181946], [3682, 0.40674668550491333], [3686, 0.26053446531295776], [3690, 0.3118230104446411], [3694, 0.3303927779197693], [3698, 0.284076452255249], [3702, 0.3093556761741638], [3706, 0.320295512676239], [3710, 0.37863367795944214], [3714, 0.38168424367904663], [3718, 0.21447479724884033], [3722, 0.3407610058784485], [3726, 0.33297860622406006], [3730, 0.3605090379714966], [3734, 0.29768770933151245], [3738, 0.25088298320770264], [3742, 0.3814350366592407], [3746, 0.22845548391342163], [3750, 0.17323976755142212], [3754, 0.3063490390777588], [3758, 0.37138527631759644], [3762, 0.3261290192604065], [3766, 0.3338102102279663], [3770, 0.3472748398780823], [3774, 0.46851271390914917], [3778, 0.38128501176834106], [3782, 0.2586338520050049], [3786, 0.34289777278900146], [3790, 0.3422424793243408], [3794, 0.30011504888534546], [3798, 0.3107287287712097], [3802, 0.4299132227897644], [3806, 0.3217800259590149], [3810, 0.2739402651786804], [3814, 0.30305129289627075], [3818, 0.22810858488082886], [3822, 0.2708285450935364], [3826, 0.2612851858139038], [3830, 0.3741649389266968], [3834, 0.3546684980392456], [3838, 0.2712775468826294], [3842, 0.24375653266906738], [3846, 0.3498362898826599], [3850, 0.35258346796035767], [3854, 0.4091690182685852], [3858, 0.30148398876190186], [3862, 0.38997673988342285], [3866, 0.28039026260375977], [3870, 0.3737948536872864], [3874, 0.267705500125885], [3878, 0.346565306186676], [3882, 0.26143699884414673], [3886, 0.2577512264251709], [3890, 0.3258775472640991], [3894, 0.45016348361968994], [3898, 0.41618049144744873], [3902, 0.21094799041748047], [3906, 0.41340458393096924], [3910, 0.29186928272247314], [3914, 0.31546229124069214], [3918, 0.2803409695625305], [3922, 0.27622705698013306], [3926, 0.31414663791656494], [3930, 0.29681551456451416], [3934, 0.24123477935791016], [3938, 0.3543497323989868], [3942, 0.33413076400756836], [3946, 0.23748373985290527], [3950, 0.255511999130249], [3954, 0.371782124042511], [3958, 0.21446871757507324], [3962, 0.2741680145263672], [3966, 0.2835637927055359], [3970, 0.20323145389556885], [3974, 0.3830784559249878], [3978, 0.2907310128211975], [3982, 0.23849648237228394], [3986, 0.40425002574920654], [3990, 0.23790782690048218], [3994, 0.22109466791152954], [4000, 0.31910616159439087]]]], "histogram": {"data": [[{"disabled": 0, "values": [{"y": 28, "x": 0.10730685293674469}, {"y": 76, "x": 0.11361387372016907}, {"y": 55, "x": 0.11992089450359344}, {"y": 73, "x": 0.12622791528701782}, {"y": 54, "x": 0.1325349360704422}, {"y": 63, "x": 0.13884195685386658}, {"y": 58, "x": 0.14514897763729095}, {"y": 59, "x": 0.15145599842071533}, {"y": 71, "x": 0.1577630192041397}, {"y": 60, "x": 0.1640700399875641}, {"y": 55, "x": 0.17037706077098846}, {"y": 55, "x": 0.17668408155441284}, {"y": 58, "x": 0.18299110233783722}, {"y": 63, "x": 0.1892981231212616}, {"y": 48, "x": 0.19560514390468597}, {"y": 68, "x": 0.20191216468811035}, {"y": 60, "x": 0.20821918547153473}, {"y": 63, "x": 0.2145262062549591}, {"y": 60, "x": 0.22083322703838348}, {"y": 57, "x": 0.22714024782180786}, {"y": 72, "x": 0.23344726860523224}, {"y": 59, "x": 0.23975428938865662}, {"y": 75, "x": 0.246061310172081}, {"y": 76, "x": 0.25236833095550537}, {"y": 60, "x": 0.25867535173892975}, {"y": 74, "x": 0.2649823725223541}, {"y": 51, "x": 0.2712893933057785}, {"y": 59, "x": 0.2775964140892029}, {"y": 68, "x": 0.28390343487262726}, {"y": 80, "x": 0.29021045565605164}, {"y": 59, "x": 0.296517476439476}, {"y": 56, "x": 0.3028244972229004}, {"y": 64, "x": 0.30913151800632477}, {"y": 70, "x": 0.31543853878974915}, {"y": 66, "x": 0.3217455595731735}, {"y": 85, "x": 0.3280525803565979}, {"y": 62, "x": 0.3343596011400223}, {"y": 65, "x": 0.34066662192344666}, {"y": 77, "x": 0.34697364270687103}, {"y": 65, "x": 0.3532806634902954}, {"y": 71, "x": 0.3595876842737198}, {"y": 58, "x": 0.36589470505714417}, {"y": 63, "x": 0.37220172584056854}, {"y": 75, "x": 0.3785087466239929}, {"y": 60, "x": 0.3848157674074173}, {"y": 55, "x": 0.3911227881908417}, {"y": 63, "x": 0.39742980897426605}, {"y": 75, "x": 0.40373682975769043}, {"y": 58, "x": 0.4100438505411148}, {"y": 62, "x": 0.4163508713245392}, {"y": 48, "x": 0.42265789210796356}, {"y": 63, "x": 0.42896491289138794}, {"y": 70, "x": 0.4352719336748123}, {"y": 55, "x": 0.4415789544582367}, {"y": 52, "x": 0.44788597524166107}, {"y": 53, "x": 0.45419299602508545}, {"y": 58, "x": 0.4605000168085098}, {"y": 66, "x": 0.4668070375919342}, {"y": 74, "x": 0.4731140583753586}, {"y": 64, "x": 0.47942107915878296}, {"y": 58, "x": 0.48572809994220734}, {"y": 63, "x": 0.4920351207256317}, {"y": 62, "x": 0.4983421415090561}, {"y": 47, "x": 0.5046491622924805}], "key": "action_0", "view": "Square Root Choice"}], [{"disabled": 0, "values": [{"y": 280, "x": 0.1320497806255634}, {"y": 312, "x": 0.16309972909780648}, {"y": 274, "x": 0.19414967757004958}, {"y": 300, "x": 0.22519962604229266}, {"y": 334, "x": 0.2562495745145358}, {"y": 324, "x": 0.28729952298677885}, {"y": 315, "x": 0.3183494714590219}, {"y": 343, "x": 0.349399419931265}, {"y": 323, "x": 0.3804493684035081}, {"y": 320, "x": 0.4114993168757512}, {"y": 287, "x": 0.44254926534799427}, {"y": 304, "x": 0.4735992138202374}, {"y": 284, "x": 0.5046491622924805}], "key": "action_0", "view": "Sturges Formula"}], [{"disabled": 0, "values": [{"y": 104, "x": 0.11361387372016907}, {"y": 128, "x": 0.12622791528701782}, {"y": 117, "x": 0.13884195685386658}, {"y": 117, "x": 0.15145599842071533}, {"y": 131, "x": 0.1640700399875641}, {"y": 110, "x": 0.17668408155441284}, {"y": 121, "x": 0.1892981231212616}, {"y": 116, "x": 0.20191216468811035}, {"y": 123, "x": 0.2145262062549591}, {"y": 117, "x": 0.22714024782180786}, {"y": 131, "x": 0.23975428938865662}, {"y": 151, "x": 0.25236833095550537}, {"y": 134, "x": 0.2649823725223541}, {"y": 110, "x": 0.2775964140892029}, {"y": 148, "x": 0.29021045565605164}, {"y": 115, "x": 0.3028244972229004}, {"y": 134, "x": 0.31543853878974915}, {"y": 151, "x": 0.3280525803565979}, {"y": 127, "x": 0.34066662192344666}, {"y": 142, "x": 0.3532806634902954}, {"y": 129, "x": 0.36589470505714417}, {"y": 138, "x": 0.3785087466239929}, {"y": 115, "x": 0.3911227881908417}, {"y": 138, "x": 0.40373682975769043}, {"y": 120, "x": 0.4163508713245392}, {"y": 111, "x": 0.42896491289138794}, {"y": 125, "x": 0.4415789544582367}, {"y": 105, "x": 0.45419299602508545}, {"y": 124, "x": 0.4668070375919342}, {"y": 138, "x": 0.47942107915878296}, {"y": 121, "x": 0.4920351207256317}, {"y": 109, "x": 0.5046491622924805}], "key": "action_0", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "iterations": {"pie": [["success", 4000], ["errors", 0]], "iter": [["duration", [[1, 0.2016175389289856], [6, 0.1879522204399109], [10, 0.283392071723938], [14, 0.26513946056365967], [18, 0.26133519411087036], [22, 0.38680779933929443], [26, 0.2767412066459656], [30, 0.38359588384628296], [34, 0.27984505891799927], [38, 0.3081657290458679], [42, 0.34724026918411255], [46, 0.30221420526504517], [50, 0.29482918977737427], [54, 0.17748677730560303], [58, 0.26921701431274414], [62, 0.37613022327423096], [66, 0.26683509349823], [70, 0.21463894844055176], [74, 0.2718369960784912], [78, 0.2956809997558594], [82, 0.2556695342063904], [86, 0.3353683352470398], [90, 0.3283761739730835], [94, 0.2703079581260681], [98, 0.33821648359298706], [102, 0.2785465121269226], [106, 0.2884292006492615], [110, 0.267433226108551], [114, 0.24936902523040771], [118, 0.3048242926597595], [122, 0.3303629755973816], [126, 0.3384697437286377], [130, 0.24044030904769897], [134, 0.2169950008392334], [138, 0.23680567741394043], [142, 0.3048474192619324], [146, 0.31759196519851685], [150, 0.39033043384552], [154, 0.2724447250366211], [158, 0.2660192847251892], [162, 0.21697300672531128], [166, 0.37641721963882446], [170, 0.25667399168014526], [174, 0.33777695894241333], [178, 0.3609890341758728], [182, 0.3257725238800049], [186, 0.24401551485061646], [190, 0.2505737543106079], [194, 0.3366524577140808], [198, 0.40070945024490356], [202, 0.3165017366409302], [206, 0.4083603024482727], [210, 0.34624773263931274], [214, 0.30972105264663696], [218, 0.26359230279922485], [222, 0.3241307735443115], [226, 0.41085726022720337], [230, 0.3279458284378052], [234, 0.36110377311706543], [238, 0.2749779224395752], [242, 0.3478105068206787], [246, 0.3764495253562927], [250, 0.30835598707199097], [254, 0.3917972445487976], [258, 0.35616201162338257], [262, 0.31179457902908325], [266, 0.40925872325897217], [270, 0.2832987904548645], [274, 0.40687859058380127], [278, 0.38009822368621826], [282, 0.3092705011367798], [286, 0.2299094796180725], [290, 0.24230772256851196], [294, 0.37088465690612793], [298, 0.32028478384017944], [302, 0.41612106561660767], [306, 0.1536349654197693], [310, 0.3425862193107605], [314, 0.28296732902526855], [318, 0.4039725661277771], [322, 0.2717854380607605], [326, 0.2657099962234497], [330, 0.40293729305267334], [334, 0.24607503414154053], [338, 0.3105435371398926], [342, 0.24891579151153564], [346, 0.3659919500350952], [350, 0.410389244556427], [354, 0.21701645851135254], [358, 0.20956766605377197], [362, 0.2516983151435852], [366, 0.22418951988220215], [370, 0.4264487028121948], [374, 0.3038939833641052], [378, 0.25968021154403687], [382, 0.2925124764442444], [386, 0.36178505420684814], [390, 0.3069693446159363], [394, 0.33871275186538696], [398, 0.29019850492477417], [402, 0.3291258215904236], [406, 0.30287158489227295], [410, 0.3191547393798828], [414, 0.4429283142089844], [418, 0.34022122621536255], [422, 0.2546427845954895], [426, 0.23813199996948242], [430, 0.30348747968673706], [434, 0.18620365858078003], [438, 0.275698721408844], [442, 0.3147885203361511], [446, 0.3326912522315979], [450, 0.3524608612060547], [454, 0.2272689938545227], [458, 0.250551700592041], [462, 0.3055717349052429], [466, 0.37118101119995117], [470, 0.20428401231765747], [474, 0.39683830738067627], [478, 0.255179226398468], [482, 0.34372472763061523], [486, 0.3591517210006714], [490, 0.2774617075920105], [494, 0.28325897455215454], [498, 0.25807708501815796], [502, 0.2657390832901001], [506, 0.3929205536842346], [510, 0.34260672330856323], [514, 0.24237525463104248], [518, 0.3316212296485901], [522, 0.23816728591918945], [526, 0.40713047981262207], [530, 0.2893415689468384], [534, 0.307483971118927], [538, 0.29156577587127686], [542, 0.3039090633392334], [546, 0.3563210368156433], [550, 0.27730584144592285], [554, 0.19748318195343018], [558, 0.2951182723045349], [562, 0.3555600047111511], [566, 0.3392593264579773], [570, 0.2301253080368042], [574, 0.30045968294143677], [578, 0.21630990505218506], [582, 0.26890695095062256], [586, 0.2961686849594116], [590, 0.23441272974014282], [594, 0.27120256423950195], [598, 0.2797390818595886], [602, 0.3225939869880676], [606, 0.2887069582939148], [610, 0.3053857088088989], [614, 0.29946428537368774], [618, 0.3893889784812927], [622, 0.2594834566116333], [626, 0.24116480350494385], [630, 0.28036952018737793], [634, 0.24564790725708008], [638, 0.2327817678451538], [642, 0.24795001745224], [646, 0.2642752528190613], [650, 0.2910362482070923], [654, 0.42286747694015503], [658, 0.33559924364089966], [662, 0.20681828260421753], [666, 0.31479477882385254], [670, 0.21157145500183105], [674, 0.22916221618652344], [678, 0.35150855779647827], [682, 0.3456905484199524], [686, 0.27104121446609497], [690, 0.3379529118537903], [694, 0.21766501665115356], [698, 0.20454776287078857], [702, 0.276075541973114], [706, 0.3160449266433716], [710, 0.2887410521507263], [714, 0.3038552403450012], [718, 0.35225188732147217], [722, 0.29365646839141846], [726, 0.24976074695587158], [730, 0.21227407455444336], [734, 0.32538020610809326], [738, 0.3182499408721924], [742, 0.29053163528442383], [746, 0.20394223928451538], [750, 0.3007494807243347], [754, 0.31984400749206543], [758, 0.31994104385375977], [762, 0.33034229278564453], [766, 0.25872802734375], [770, 0.3686257004737854], [774, 0.34824007749557495], [778, 0.3688177466392517], [782, 0.3801867961883545], [786, 0.35685205459594727], [790, 0.2373274564743042], [794, 0.38458800315856934], [798, 0.27401524782180786], [802, 0.28455400466918945], [806, 0.27061426639556885], [810, 0.30929434299468994], [814, 0.3130680322647095], [818, 0.25773853063583374], [822, 0.260467529296875], [826, 0.2821597456932068], [830, 0.2876012921333313], [834, 0.3650195002555847], [838, 0.28921300172805786], [842, 0.2589145302772522], [846, 0.3867899775505066], [850, 0.38756370544433594], [854, 0.43440282344818115], [858, 0.3796294927597046], [862, 0.20883941650390625], [866, 0.29137879610061646], [870, 0.3897070288658142], [874, 0.300492525100708], [878, 0.3419875502586365], [882, 0.3298075795173645], [886, 0.3438955545425415], [890, 0.35999929904937744], [894, 0.2707887291908264], [898, 0.3407900333404541], [902, 0.29104650020599365], [906, 0.41064727306365967], [910, 0.2261589765548706], [914, 0.2279437780380249], [918, 0.30918025970458984], [922, 0.17638617753982544], [926, 0.34124070405960083], [930, 0.38379526138305664], [934, 0.23567652702331543], [938, 0.20660394430160522], [942, 0.2825459837913513], [946, 0.2742159366607666], [950, 0.27211350202560425], [954, 0.3381615877151489], [958, 0.26017117500305176], [962, 0.2874593138694763], [966, 0.27149754762649536], [970, 0.3033067584037781], [974, 0.2862287759780884], [978, 0.3104211688041687], [982, 0.30448073148727417], [986, 0.3949352502822876], [990, 0.3012462854385376], [994, 0.2586221694946289], [998, 0.34206151962280273], [1002, 0.26484251022338867], [1006, 0.40186625719070435], [1010, 0.411352276802063], [1014, 0.26129668951034546], [1018, 0.23197507858276367], [1022, 0.3386397361755371], [1026, 0.14896678924560547], [1030, 0.2009720802307129], [1034, 0.22228378057479858], [1038, 0.3096731901168823], [1042, 0.24036091566085815], [1046, 0.3796660304069519], [1050, 0.21999436616897583], [1054, 0.2754276990890503], [1058, 0.22683775424957275], [1062, 0.31899571418762207], [1066, 0.32862597703933716], [1070, 0.33087384700775146], [1074, 0.27000927925109863], [1078, 0.34539031982421875], [1082, 0.24771076440811157], [1086, 0.23322755098342896], [1090, 0.22258830070495605], [1094, 0.35083645582199097], [1098, 0.2596192955970764], [1102, 0.2453342080116272], [1106, 0.32378828525543213], [1110, 0.17299199104309082], [1114, 0.2798207402229309], [1118, 0.31536394357681274], [1122, 0.2236294150352478], [1126, 0.30666452646255493], [1130, 0.3366427421569824], [1134, 0.3710290789604187], [1138, 0.20376920700073242], [1142, 0.276459276676178], [1146, 0.3330940008163452], [1150, 0.41330569982528687], [1154, 0.24401378631591797], [1158, 0.3453584909439087], [1162, 0.35634249448776245], [1166, 0.21217763423919678], [1170, 0.3054477572441101], [1174, 0.37827372550964355], [1178, 0.3719545006752014], [1182, 0.2639309763908386], [1186, 0.15435898303985596], [1190, 0.26126474142074585], [1194, 0.3033902645111084], [1198, 0.3856457471847534], [1202, 0.17227375507354736], [1206, 0.3991878032684326], [1210, 0.28189176321029663], [1214, 0.27880895137786865], [1218, 0.3879590630531311], [1222, 0.34563928842544556], [1226, 0.30520498752593994], [1230, 0.37084490060806274], [1234, 0.2901732921600342], [1238, 0.3638809323310852], [1242, 0.4214027523994446], [1246, 0.40584802627563477], [1250, 0.23382967710494995], [1254, 0.2855952978134155], [1258, 0.36331504583358765], [1262, 0.3035934567451477], [1266, 0.3190092444419861], [1270, 0.2908499836921692], [1274, 0.25625747442245483], [1278, 0.25789642333984375], [1282, 0.3183697462081909], [1286, 0.35720402002334595], [1290, 0.33664846420288086], [1294, 0.36044031381607056], [1298, 0.32591676712036133], [1302, 0.27256250381469727], [1306, 0.297099232673645], [1310, 0.37494295835494995], [1314, 0.3812674283981323], [1318, 0.3829447627067566], [1322, 0.3315967321395874], [1326, 0.3382298946380615], [1330, 0.2860383987426758], [1334, 0.36799901723861694], [1338, 0.330094575881958], [1342, 0.3377739191055298], [1346, 0.24166429042816162], [1350, 0.26951926946640015], [1354, 0.32190024852752686], [1358, 0.24411672353744507], [1362, 0.27468979358673096], [1366, 0.3145895004272461], [1370, 0.334516704082489], [1374, 0.29109328985214233], [1378, 0.3760681748390198], [1382, 0.3366086483001709], [1386, 0.273311972618103], [1390, 0.297527551651001], [1394, 0.30500149726867676], [1398, 0.2485305666923523], [1402, 0.21858680248260498], [1406, 0.2963000535964966], [1410, 0.41870397329330444], [1414, 0.25737881660461426], [1418, 0.3411317467689514], [1422, 0.3262341022491455], [1426, 0.37644249200820923], [1430, 0.2776966691017151], [1434, 0.302582323551178], [1438, 0.2896447777748108], [1442, 0.3486679196357727], [1446, 0.353457510471344], [1450, 0.2450452446937561], [1454, 0.16174530982971191], [1458, 0.2814213037490845], [1462, 0.3114748001098633], [1466, 0.3685162663459778], [1470, 0.2966460585594177], [1474, 0.31428807973861694], [1478, 0.3063785433769226], [1482, 0.4027932286262512], [1486, 0.3154694437980652], [1490, 0.2540324926376343], [1494, 0.3342207670211792], [1498, 0.3341270089149475], [1502, 0.2674667239189148], [1506, 0.2978202700614929], [1510, 0.2692747712135315], [1514, 0.42182397842407227], [1518, 0.24882394075393677], [1522, 0.37050384283065796], [1526, 0.2901325225830078], [1530, 0.17694133520126343], [1534, 0.31554126739501953], [1538, 0.23054248094558716], [1542, 0.28808629512786865], [1546, 0.29807746410369873], [1550, 0.41067326068878174], [1554, 0.3241472840309143], [1558, 0.21169501543045044], [1562, 0.24863702058792114], [1566, 0.23488175868988037], [1570, 0.31849801540374756], [1574, 0.28529971837997437], [1578, 0.274802029132843], [1582, 0.288662314414978], [1586, 0.37088799476623535], [1590, 0.2804120182991028], [1594, 0.2868227958679199], [1598, 0.3132587671279907], [1602, 0.24579578638076782], [1606, 0.324019193649292], [1610, 0.40816277265548706], [1614, 0.2568190097808838], [1618, 0.3377864360809326], [1622, 0.25286227464675903], [1626, 0.3336845636367798], [1630, 0.22555428743362427], [1634, 0.3220425844192505], [1638, 0.39763522148132324], [1642, 0.26964157819747925], [1646, 0.3474408984184265], [1650, 0.27586549520492554], [1654, 0.314744770526886], [1658, 0.2519347667694092], [1662, 0.39909327030181885], [1666, 0.36826997995376587], [1670, 0.21851104497909546], [1674, 0.30699098110198975], [1678, 0.2662527561187744], [1682, 0.33776891231536865], [1686, 0.36219125986099243], [1690, 0.3127859830856323], [1694, 0.26781952381134033], [1698, 0.2851625084877014], [1702, 0.2379995584487915], [1706, 0.2888824939727783], [1710, 0.36422199010849], [1714, 0.3457522988319397], [1718, 0.31248658895492554], [1722, 0.30185574293136597], [1726, 0.29607629776000977], [1730, 0.26646870374679565], [1734, 0.27482569217681885], [1738, 0.23299473524093628], [1742, 0.2858821749687195], [1746, 0.29625123739242554], [1750, 0.21096372604370117], [1754, 0.34497249126434326], [1758, 0.2525565028190613], [1762, 0.37061601877212524], [1766, 0.3448975086212158], [1770, 0.4331873059272766], [1774, 0.3379705548286438], [1778, 0.33001989126205444], [1782, 0.366843044757843], [1786, 0.2591795325279236], [1790, 0.4026554822921753], [1794, 0.31588900089263916], [1798, 0.3104829788208008], [1802, 0.3000134825706482], [1806, 0.31598591804504395], [1810, 0.2896427512168884], [1814, 0.29387950897216797], [1818, 0.2835395336151123], [1822, 0.3319554924964905], [1826, 0.2503020763397217], [1830, 0.39285504817962646], [1834, 0.2957180142402649], [1838, 0.27837854623794556], [1842, 0.2723327875137329], [1846, 0.3136524558067322], [1850, 0.28249025344848633], [1854, 0.3417258858680725], [1858, 0.3633413314819336], [1862, 0.23255705833435059], [1866, 0.286654531955719], [1870, 0.3027729392051697], [1874, 0.3455902338027954], [1878, 0.24724096059799194], [1882, 0.30728524923324585], [1886, 0.3650512099266052], [1890, 0.3256455063819885], [1894, 0.32452553510665894], [1898, 0.29774826765060425], [1902, 0.25538116693496704], [1906, 0.30004405975341797], [1910, 0.31063514947891235], [1914, 0.3098464012145996], [1918, 0.36561721563339233], [1922, 0.26202595233917236], [1926, 0.3097609877586365], [1930, 0.42384546995162964], [1934, 0.21652954816818237], [1938, 0.31161272525787354], [1942, 0.3854546546936035], [1946, 0.404100239276886], [1950, 0.26783186197280884], [1954, 0.2635587453842163], [1958, 0.29325300455093384], [1962, 0.17602378129959106], [1966, 0.3158639073371887], [1970, 0.31741464138031006], [1974, 0.294907808303833], [1978, 0.41830170154571533], [1982, 0.34945374727249146], [1986, 0.36388587951660156], [1990, 0.31265729665756226], [1994, 0.3811560273170471], [1998, 0.29255253076553345], [2002, 0.17721349000930786], [2006, 0.28313499689102173], [2010, 0.22019517421722412], [2014, 0.2742267847061157], [2018, 0.3291570544242859], [2022, 0.32983875274658203], [2026, 0.26775866746902466], [2030, 0.21295523643493652], [2034, 0.23581945896148682], [2038, 0.3435453176498413], [2042, 0.2932191491127014], [2046, 0.31448131799697876], [2050, 0.3605504631996155], [2054, 0.3846493363380432], [2058, 0.24043267965316772], [2062, 0.1744256615638733], [2066, 0.20715618133544922], [2070, 0.33920156955718994], [2074, 0.27185046672821045], [2078, 0.27003198862075806], [2082, 0.33212047815322876], [2086, 0.23652297258377075], [2090, 0.2997279763221741], [2094, 0.38872575759887695], [2098, 0.283174991607666], [2102, 0.23921328783035278], [2106, 0.28185606002807617], [2110, 0.36533552408218384], [2114, 0.3625220060348511], [2118, 0.24758076667785645], [2122, 0.18776553869247437], [2126, 0.2489580512046814], [2130, 0.28440046310424805], [2134, 0.25087523460388184], [2138, 0.24914848804473877], [2142, 0.398679256439209], [2146, 0.3192744851112366], [2150, 0.303505539894104], [2154, 0.3039761781692505], [2158, 0.3125525712966919], [2162, 0.3819010853767395], [2166, 0.3042535185813904], [2170, 0.4018186926841736], [2174, 0.26686346530914307], [2178, 0.38068950176239014], [2182, 0.2569912075996399], [2186, 0.21855485439300537], [2190, 0.3899329900741577], [2194, 0.24556642770767212], [2198, 0.24021881818771362], [2202, 0.31002652645111084], [2206, 0.3749871253967285], [2210, 0.2562224268913269], [2214, 0.28619706630706787], [2218, 0.2294585108757019], [2222, 0.24933654069900513], [2226, 0.38417917490005493], [2230, 0.2906482219696045], [2234, 0.2546842098236084], [2238, 0.4412875175476074], [2242, 0.429002046585083], [2246, 0.2670047879219055], [2250, 0.3486705422401428], [2254, 0.2628514766693115], [2258, 0.32956480979919434], [2262, 0.27696430683135986], [2266, 0.35244297981262207], [2270, 0.27981871366500854], [2274, 0.25748950242996216], [2278, 0.29661571979522705], [2282, 0.2683759927749634], [2286, 0.22564345598220825], [2290, 0.2658577561378479], [2294, 0.3758249878883362], [2298, 0.30992645025253296], [2302, 0.16326826810836792], [2306, 0.31454575061798096], [2310, 0.22262799739837646], [2314, 0.3835229277610779], [2318, 0.3303378224372864], [2322, 0.3101789355278015], [2326, 0.2476290464401245], [2330, 0.24488478899002075], [2334, 0.24772953987121582], [2338, 0.3237972855567932], [2342, 0.37775224447250366], [2346, 0.3224274516105652], [2350, 0.29590505361557007], [2354, 0.23909199237823486], [2358, 0.332122266292572], [2362, 0.3267062306404114], [2366, 0.1894499659538269], [2370, 0.2172195315361023], [2374, 0.2617974281311035], [2378, 0.30009204149246216], [2382, 0.28478699922561646], [2386, 0.21910309791564941], [2390, 0.3673195242881775], [2394, 0.26565927267074585], [2398, 0.3292750120162964], [2402, 0.31243395805358887], [2406, 0.28668248653411865], [2410, 0.270649254322052], [2414, 0.29827946424484253], [2418, 0.32384049892425537], [2422, 0.3761674761772156], [2426, 0.33622270822525024], [2430, 0.3783165216445923], [2434, 0.27910053730010986], [2438, 0.3293439745903015], [2442, 0.32314544916152954], [2446, 0.32538390159606934], [2450, 0.29945552349090576], [2454, 0.29440754652023315], [2458, 0.239662766456604], [2462, 0.36653655767440796], [2466, 0.2935222387313843], [2470, 0.32314395904541016], [2474, 0.2821282744407654], [2478, 0.32841622829437256], [2482, 0.24884730577468872], [2486, 0.36675703525543213], [2490, 0.36656653881073], [2494, 0.32397598028182983], [2498, 0.2364867925643921], [2502, 0.3096657395362854], [2506, 0.37245142459869385], [2510, 0.20497572422027588], [2514, 0.21431022882461548], [2518, 0.26731252670288086], [2522, 0.2566041946411133], [2526, 0.3214317560195923], [2530, 0.31784671545028687], [2534, 0.351393461227417], [2538, 0.329601526260376], [2542, 0.21780294179916382], [2546, 0.28661948442459106], [2550, 0.37461352348327637], [2554, 0.28958994150161743], [2558, 0.28122270107269287], [2562, 0.32896149158477783], [2566, 0.39193296432495117], [2570, 0.25682324171066284], [2574, 0.3055102825164795], [2578, 0.3534924387931824], [2582, 0.3674302101135254], [2586, 0.34749072790145874], [2590, 0.35337573289871216], [2594, 0.2474515438079834], [2598, 0.3950161933898926], [2602, 0.3335827589035034], [2606, 0.2618910074234009], [2610, 0.2768070697784424], [2614, 0.20571649074554443], [2618, 0.2998170256614685], [2622, 0.3098689913749695], [2626, 0.2829872965812683], [2630, 0.14046674966812134], [2634, 0.29639649391174316], [2638, 0.2681574821472168], [2642, 0.23653221130371094], [2646, 0.29431724548339844], [2650, 0.2857856750488281], [2654, 0.3773866891860962], [2658, 0.2319631576538086], [2662, 0.37699854373931885], [2666, 0.4080197215080261], [2670, 0.3135035037994385], [2674, 0.2992814779281616], [2678, 0.38725125789642334], [2682, 0.18478429317474365], [2686, 0.2601127624511719], [2690, 0.3753417134284973], [2694, 0.24029797315597534], [2698, 0.3720245957374573], [2702, 0.3624139428138733], [2706, 0.37745803594589233], [2710, 0.32409554719924927], [2714, 0.3215540647506714], [2718, 0.3116301894187927], [2722, 0.39254575967788696], [2726, 0.36527353525161743], [2730, 0.26827502250671387], [2734, 0.3376767039299011], [2738, 0.20672625303268433], [2742, 0.3630814552307129], [2746, 0.2841464877128601], [2750, 0.23163622617721558], [2754, 0.3374451994895935], [2758, 0.2981839179992676], [2762, 0.29753220081329346], [2766, 0.30572450160980225], [2770, 0.413108229637146], [2774, 0.22688472270965576], [2778, 0.34656792879104614], [2782, 0.2789129614830017], [2786, 0.29577845335006714], [2790, 0.29466724395751953], [2794, 0.2044087052345276], [2798, 0.2903289794921875], [2802, 0.3299090266227722], [2806, 0.4211450219154358], [2810, 0.4138612747192383], [2814, 0.264476478099823], [2818, 0.42657727003097534], [2822, 0.35593605041503906], [2826, 0.2676224708557129], [2830, 0.23370397090911865], [2834, 0.23895901441574097], [2838, 0.22029978036880493], [2842, 0.4447285532951355], [2846, 0.2220049500465393], [2850, 0.23086249828338623], [2854, 0.3342459797859192], [2858, 0.3306552767753601], [2862, 0.2878485321998596], [2866, 0.24623924493789673], [2870, 0.26744651794433594], [2874, 0.3612508177757263], [2878, 0.2295209765434265], [2882, 0.30115020275115967], [2886, 0.2877882719039917], [2890, 0.3081580400466919], [2894, 0.3491308093070984], [2898, 0.3770568370819092], [2902, 0.3561517000198364], [2906, 0.2294396162033081], [2910, 0.25033146142959595], [2914, 0.2988350987434387], [2918, 0.35316646099090576], [2922, 0.2987672686576843], [2926, 0.3474734425544739], [2930, 0.2418762445449829], [2934, 0.3146764636039734], [2938, 0.3400147557258606], [2942, 0.18940621614456177], [2946, 0.2716500759124756], [2950, 0.34383344650268555], [2954, 0.3265385627746582], [2958, 0.2965487241744995], [2962, 0.41142749786376953], [2966, 0.22991424798965454], [2970, 0.28696560859680176], [2974, 0.2928032875061035], [2978, 0.3306804895401001], [2982, 0.2732255458831787], [2986, 0.3046557307243347], [2990, 0.35478127002716064], [2994, 0.282623827457428], [2998, 0.290931761264801], [3002, 0.302033007144928], [3006, 0.2622133493423462], [3010, 0.24485599994659424], [3014, 0.3571552634239197], [3018, 0.30257517099380493], [3022, 0.21399378776550293], [3026, 0.2558037042617798], [3030, 0.22244924306869507], [3034, 0.39373064041137695], [3038, 0.29272758960723877], [3042, 0.3266267776489258], [3046, 0.26060950756073], [3050, 0.38104790449142456], [3054, 0.21996676921844482], [3058, 0.30717194080352783], [3062, 0.28693848848342896], [3066, 0.393716037273407], [3070, 0.21748924255371094], [3074, 0.23639094829559326], [3078, 0.21999484300613403], [3082, 0.2610574960708618], [3086, 0.32448679208755493], [3090, 0.3432133197784424], [3094, 0.30816400051116943], [3098, 0.2678452730178833], [3102, 0.23468756675720215], [3106, 0.15827852487564087], [3110, 0.3734362721443176], [3114, 0.19679594039916992], [3118, 0.39833927154541016], [3122, 0.3274739980697632], [3126, 0.3444135785102844], [3130, 0.281429648399353], [3134, 0.36969971656799316], [3138, 0.3018372654914856], [3142, 0.39247292280197144], [3146, 0.2714434862136841], [3150, 0.3141762614250183], [3154, 0.33701395988464355], [3158, 0.35412275791168213], [3162, 0.26790422201156616], [3166, 0.24957698583602905], [3170, 0.2644357681274414], [3174, 0.2933477759361267], [3178, 0.3330067992210388], [3182, 0.2809985280036926], [3186, 0.28889745473861694], [3190, 0.2043275237083435], [3194, 0.332522988319397], [3198, 0.3235297203063965], [3202, 0.39642953872680664], [3206, 0.3874806761741638], [3210, 0.35962796211242676], [3214, 0.33740371465682983], [3218, 0.32466548681259155], [3222, 0.2151058316230774], [3226, 0.27837133407592773], [3230, 0.350069522857666], [3234, 0.2524404525756836], [3238, 0.3057555556297302], [3242, 0.4106382727622986], [3246, 0.256985068321228], [3250, 0.32656699419021606], [3254, 0.2021825909614563], [3258, 0.2206437587738037], [3262, 0.2007189393043518], [3266, 0.17482870817184448], [3270, 0.2268887758255005], [3274, 0.3528450131416321], [3278, 0.26582396030426025], [3282, 0.25329703092575073], [3286, 0.25376200675964355], [3290, 0.23843073844909668], [3294, 0.37184226512908936], [3298, 0.20595920085906982], [3302, 0.26762932538986206], [3306, 0.35773080587387085], [3310, 0.17757493257522583], [3314, 0.2909717559814453], [3318, 0.24643146991729736], [3322, 0.37334829568862915], [3326, 0.37308400869369507], [3330, 0.3953620195388794], [3334, 0.2521427273750305], [3338, 0.2576035261154175], [3342, 0.33044081926345825], [3346, 0.2792307138442993], [3350, 0.34689152240753174], [3354, 0.33217936754226685], [3358, 0.2776835560798645], [3362, 0.22541850805282593], [3366, 0.4137660264968872], [3370, 0.32764047384262085], [3374, 0.21410125494003296], [3378, 0.3221249580383301], [3382, 0.2662336826324463], [3386, 0.38210946321487427], [3390, 0.3481379747390747], [3394, 0.306149423122406], [3398, 0.26291728019714355], [3402, 0.31207478046417236], [3406, 0.3340752124786377], [3410, 0.3219832181930542], [3414, 0.4555789828300476], [3418, 0.28709322214126587], [3422, 0.35544174909591675], [3426, 0.2631187438964844], [3430, 0.369712233543396], [3434, 0.3493157625198364], [3438, 0.2610490322113037], [3442, 0.34866517782211304], [3446, 0.2700737714767456], [3450, 0.22403651475906372], [3454, 0.3077664375305176], [3458, 0.24172967672348022], [3462, 0.28974395990371704], [3466, 0.277399480342865], [3470, 0.38662731647491455], [3474, 0.24865704774856567], [3478, 0.3251790404319763], [3482, 0.321114718914032], [3486, 0.28929781913757324], [3490, 0.3935840129852295], [3494, 0.34736430644989014], [3498, 0.3950920104980469], [3502, 0.37304365634918213], [3506, 0.2996631860733032], [3510, 0.33490824699401855], [3514, 0.24439728260040283], [3518, 0.27459967136383057], [3522, 0.33739954233169556], [3526, 0.3753592371940613], [3530, 0.3744584918022156], [3534, 0.295329749584198], [3538, 0.32055824995040894], [3542, 0.32102519273757935], [3546, 0.36082881689071655], [3550, 0.33178502321243286], [3554, 0.37121403217315674], [3558, 0.33965301513671875], [3562, 0.3323374390602112], [3566, 0.31063926219940186], [3570, 0.34703296422958374], [3574, 0.38274675607681274], [3578, 0.32177799940109253], [3582, 0.3680417537689209], [3586, 0.2225170135498047], [3590, 0.36023300886154175], [3594, 0.33470457792282104], [3598, 0.29186564683914185], [3602, 0.33438998460769653], [3606, 0.2907337546348572], [3610, 0.2443314790725708], [3614, 0.2845602035522461], [3618, 0.26134616136550903], [3622, 0.25402700901031494], [3626, 0.3943992257118225], [3630, 0.32366102933883667], [3634, 0.3382757306098938], [3638, 0.2810329794883728], [3642, 0.2813355326652527], [3646, 0.3416822552680969], [3650, 0.2558259963989258], [3654, 0.3325403928756714], [3658, 0.3204194903373718], [3662, 0.2498466968536377], [3666, 0.29717928171157837], [3670, 0.3793209195137024], [3674, 0.2710655927658081], [3678, 0.3068682551383972], [3682, 0.4067780375480652], [3686, 0.26056772470474243], [3690, 0.3118517994880676], [3694, 0.3304523229598999], [3698, 0.2841283082962036], [3702, 0.3093891739845276], [3706, 0.3203358054161072], [3710, 0.37866055965423584], [3714, 0.38171201944351196], [3718, 0.21450698375701904], [3722, 0.34080272912979126], [3726, 0.3330736756324768], [3730, 0.3606495261192322], [3734, 0.29773372411727905], [3738, 0.2509503960609436], [3742, 0.38148075342178345], [3746, 0.22851049900054932], [3750, 0.1732710599899292], [3754, 0.30637872219085693], [3758, 0.37143558263778687], [3762, 0.3261587619781494], [3766, 0.3338412642478943], [3770, 0.34730422496795654], [3774, 0.4685574769973755], [3778, 0.38133007287979126], [3782, 0.2586684226989746], [3786, 0.34292978048324585], [3790, 0.34227901697158813], [3794, 0.300142765045166], [3798, 0.31076258420944214], [3802, 0.43015193939208984], [3806, 0.321807324886322], [3810, 0.2740587592124939], [3814, 0.3030872941017151], [3818, 0.2281392216682434], [3822, 0.27089858055114746], [3826, 0.2613207697868347], [3830, 0.37420177459716797], [3834, 0.3547060489654541], [3838, 0.2713105082511902], [3842, 0.2437891960144043], [3846, 0.3499922752380371], [3850, 0.35263168811798096], [3854, 0.40923428535461426], [3858, 0.30152279138565063], [3862, 0.3900129795074463], [3866, 0.28042906522750854], [3870, 0.37382352352142334], [3874, 0.2677544951438904], [3878, 0.34659677743911743], [3882, 0.2614819407463074], [3886, 0.2577822804450989], [3890, 0.3259095549583435], [3894, 0.45021045207977295], [3898, 0.4163340926170349], [3902, 0.21098357439041138], [3906, 0.4134417772293091], [3910, 0.29190361499786377], [3914, 0.315654993057251], [3918, 0.28036701679229736], [3922, 0.27626800537109375], [3926, 0.31418997049331665], [3930, 0.2968490719795227], [3934, 0.2412872314453125], [3938, 0.35439473390579224], [3942, 0.334283709526062], [3946, 0.23751091957092285], [3950, 0.25555896759033203], [3954, 0.3718382716178894], [3958, 0.21450728178024292], [3962, 0.2743690013885498], [3966, 0.28359299898147583], [3970, 0.20338225364685059], [3974, 0.38311904668807983], [3978, 0.2907789945602417], [3982, 0.23852598667144775], [3986, 0.4043620228767395], [3990, 0.23793798685073853], [3994, 0.22116291522979736], [4000, 0.3191370368003845]]], ["idle_duration", [[1, 0.0], [6, 0.0], [10, 0.0], [14, 0.0], [18, 0.0], [22, 0.0], [26, 0.0], [30, 0.0], [34, 0.0], [38, 0.0], [42, 0.0], [46, 0.0], [50, 0.0], [54, 0.0], [58, 0.0], [62, 0.0], [66, 0.0], [70, 0.0], [74, 0.0], [78, 0.0], [82, 0.0], [86, 0.0], [90, 0.0], [94, 0.0], [98, 0.0], [102, 0.0], [106, 0.0], [110, 0.0], [114, 0.0], [118, 0.0], [122, 0.0], [126, 0.0], [130, 0.0], [134, 0.0], [138, 0.0], [142, 0.0], [146, 0.0], [150, 0.0], [154, 0.0], [158, 0.0], [162, 0.0], [166, 0.0], [170, 0.0], [174, 0.0], [178, 0.0], [182, 0.0], [186, 0.0], [190, 0.0], [194, 0.0], [198, 0.0], [202, 0.0], [206, 0.0], [210, 0.0], [214, 0.0], [218, 0.0], [222, 0.0], [226, 0.0], [230, 0.0], [234, 0.0], [238, 0.0], [242, 0.0], [246, 0.0], [250, 0.0], [254, 0.0], [258, 0.0], [262, 0.0], [266, 0.0], [270, 0.0], [274, 0.0], [278, 0.0], [282, 0.0], [286, 0.0], [290, 0.0], [294, 0.0], [298, 0.0], [302, 0.0], [306, 0.0], [310, 0.0], [314, 0.0], [318, 0.0], [322, 0.0], [326, 0.0], [330, 0.0], [334, 0.0], [338, 0.0], [342, 0.0], [346, 0.0], [350, 0.0], [354, 0.0], [358, 0.0], [362, 0.0], [366, 0.0], [370, 0.0], [374, 0.0], [378, 0.0], [382, 0.0], [386, 0.0], [390, 0.0], [394, 0.0], [398, 0.0], [402, 0.0], [406, 0.0], [410, 0.0], [414, 0.0], [418, 0.0], [422, 0.0], [426, 0.0], [430, 0.0], [434, 0.0], [438, 0.0], [442, 0.0], [446, 0.0], [450, 0.0], [454, 0.0], [458, 0.0], [462, 0.0], [466, 0.0], [470, 0.0], [474, 0.0], [478, 0.0], [482, 0.0], [486, 0.0], [490, 0.0], [494, 0.0], [498, 0.0], [502, 0.0], [506, 0.0], [510, 0.0], [514, 0.0], [518, 0.0], [522, 0.0], [526, 0.0], [530, 0.0], [534, 0.0], [538, 0.0], [542, 0.0], [546, 0.0], [550, 0.0], [554, 0.0], [558, 0.0], [562, 0.0], [566, 0.0], [570, 0.0], [574, 0.0], [578, 0.0], [582, 0.0], [586, 0.0], [590, 0.0], [594, 0.0], [598, 0.0], [602, 0.0], [606, 0.0], [610, 0.0], [614, 0.0], [618, 0.0], [622, 0.0], [626, 0.0], [630, 0.0], [634, 0.0], [638, 0.0], [642, 0.0], [646, 0.0], [650, 0.0], [654, 0.0], [658, 0.0], [662, 0.0], [666, 0.0], [670, 0.0], [674, 0.0], [678, 0.0], [682, 0.0], [686, 0.0], [690, 0.0], [694, 0.0], [698, 0.0], [702, 0.0], [706, 0.0], [710, 0.0], [714, 0.0], [718, 0.0], [722, 0.0], [726, 0.0], [730, 0.0], [734, 0.0], [738, 0.0], [742, 0.0], [746, 0.0], [750, 0.0], [754, 0.0], [758, 0.0], [762, 0.0], [766, 0.0], [770, 0.0], [774, 0.0], [778, 0.0], [782, 0.0], [786, 0.0], [790, 0.0], [794, 0.0], [798, 0.0], [802, 0.0], [806, 0.0], [810, 0.0], [814, 0.0], [818, 0.0], [822, 0.0], [826, 0.0], [830, 0.0], [834, 0.0], [838, 0.0], [842, 0.0], [846, 0.0], [850, 0.0], [854, 0.0], [858, 0.0], [862, 0.0], [866, 0.0], [870, 0.0], [874, 0.0], [878, 0.0], [882, 0.0], [886, 0.0], [890, 0.0], [894, 0.0], [898, 0.0], [902, 0.0], [906, 0.0], [910, 0.0], [914, 0.0], [918, 0.0], [922, 0.0], [926, 0.0], [930, 0.0], [934, 0.0], [938, 0.0], [942, 0.0], [946, 0.0], [950, 0.0], [954, 0.0], [958, 0.0], [962, 0.0], [966, 0.0], [970, 0.0], [974, 0.0], [978, 0.0], [982, 0.0], [986, 0.0], [990, 0.0], [994, 0.0], [998, 0.0], [1002, 0.0], [1006, 0.0], [1010, 0.0], [1014, 0.0], [1018, 0.0], [1022, 0.0], [1026, 0.0], [1030, 0.0], [1034, 0.0], [1038, 0.0], [1042, 0.0], [1046, 0.0], [1050, 0.0], [1054, 0.0], [1058, 0.0], [1062, 0.0], [1066, 0.0], [1070, 0.0], [1074, 0.0], [1078, 0.0], [1082, 0.0], [1086, 0.0], [1090, 0.0], [1094, 0.0], [1098, 0.0], [1102, 0.0], [1106, 0.0], [1110, 0.0], [1114, 0.0], [1118, 0.0], [1122, 0.0], [1126, 0.0], [1130, 0.0], [1134, 0.0], [1138, 0.0], [1142, 0.0], [1146, 0.0], [1150, 0.0], [1154, 0.0], [1158, 0.0], [1162, 0.0], [1166, 0.0], [1170, 0.0], [1174, 0.0], [1178, 0.0], [1182, 0.0], [1186, 0.0], [1190, 0.0], [1194, 0.0], [1198, 0.0], [1202, 0.0], [1206, 0.0], [1210, 0.0], [1214, 0.0], [1218, 0.0], [1222, 0.0], [1226, 0.0], [1230, 0.0], [1234, 0.0], [1238, 0.0], [1242, 0.0], [1246, 0.0], [1250, 0.0], [1254, 0.0], [1258, 0.0], [1262, 0.0], [1266, 0.0], [1270, 0.0], [1274, 0.0], [1278, 0.0], [1282, 0.0], [1286, 0.0], [1290, 0.0], [1294, 0.0], [1298, 0.0], [1302, 0.0], [1306, 0.0], [1310, 0.0], [1314, 0.0], [1318, 0.0], [1322, 0.0], [1326, 0.0], [1330, 0.0], [1334, 0.0], [1338, 0.0], [1342, 0.0], [1346, 0.0], [1350, 0.0], [1354, 0.0], [1358, 0.0], [1362, 0.0], [1366, 0.0], [1370, 0.0], [1374, 0.0], [1378, 0.0], [1382, 0.0], [1386, 0.0], [1390, 0.0], [1394, 0.0], [1398, 0.0], [1402, 0.0], [1406, 0.0], [1410, 0.0], [1414, 0.0], [1418, 0.0], [1422, 0.0], [1426, 0.0], [1430, 0.0], [1434, 0.0], [1438, 0.0], [1442, 0.0], [1446, 0.0], [1450, 0.0], [1454, 0.0], [1458, 0.0], [1462, 0.0], [1466, 0.0], [1470, 0.0], [1474, 0.0], [1478, 0.0], [1482, 0.0], [1486, 0.0], [1490, 0.0], [1494, 0.0], [1498, 0.0], [1502, 0.0], [1506, 0.0], [1510, 0.0], [1514, 0.0], [1518, 0.0], [1522, 0.0], [1526, 0.0], [1530, 0.0], [1534, 0.0], [1538, 0.0], [1542, 0.0], [1546, 0.0], [1550, 0.0], [1554, 0.0], [1558, 0.0], [1562, 0.0], [1566, 0.0], [1570, 0.0], [1574, 0.0], [1578, 0.0], [1582, 0.0], [1586, 0.0], [1590, 0.0], [1594, 0.0], [1598, 0.0], [1602, 0.0], [1606, 0.0], [1610, 0.0], [1614, 0.0], [1618, 0.0], [1622, 0.0], [1626, 0.0], [1630, 0.0], [1634, 0.0], [1638, 0.0], [1642, 0.0], [1646, 0.0], [1650, 0.0], [1654, 0.0], [1658, 0.0], [1662, 0.0], [1666, 0.0], [1670, 0.0], [1674, 0.0], [1678, 0.0], [1682, 0.0], [1686, 0.0], [1690, 0.0], [1694, 0.0], [1698, 0.0], [1702, 0.0], [1706, 0.0], [1710, 0.0], [1714, 0.0], [1718, 0.0], [1722, 0.0], [1726, 0.0], [1730, 0.0], [1734, 0.0], [1738, 0.0], [1742, 0.0], [1746, 0.0], [1750, 0.0], [1754, 0.0], [1758, 0.0], [1762, 0.0], [1766, 0.0], [1770, 0.0], [1774, 0.0], [1778, 0.0], [1782, 0.0], [1786, 0.0], [1790, 0.0], [1794, 0.0], [1798, 0.0], [1802, 0.0], [1806, 0.0], [1810, 0.0], [1814, 0.0], [1818, 0.0], [1822, 0.0], [1826, 0.0], [1830, 0.0], [1834, 0.0], [1838, 0.0], [1842, 0.0], [1846, 0.0], [1850, 0.0], [1854, 0.0], [1858, 0.0], [1862, 0.0], [1866, 0.0], [1870, 0.0], [1874, 0.0], [1878, 0.0], [1882, 0.0], [1886, 0.0], [1890, 0.0], [1894, 0.0], [1898, 0.0], [1902, 0.0], [1906, 0.0], [1910, 0.0], [1914, 0.0], [1918, 0.0], [1922, 0.0], [1926, 0.0], [1930, 0.0], [1934, 0.0], [1938, 0.0], [1942, 0.0], [1946, 0.0], [1950, 0.0], [1954, 0.0], [1958, 0.0], [1962, 0.0], [1966, 0.0], [1970, 0.0], [1974, 0.0], [1978, 0.0], [1982, 0.0], [1986, 0.0], [1990, 0.0], [1994, 0.0], [1998, 0.0], [2002, 0.0], [2006, 0.0], [2010, 0.0], [2014, 0.0], [2018, 0.0], [2022, 0.0], [2026, 0.0], [2030, 0.0], [2034, 0.0], [2038, 0.0], [2042, 0.0], [2046, 0.0], [2050, 0.0], [2054, 0.0], [2058, 0.0], [2062, 0.0], [2066, 0.0], [2070, 0.0], [2074, 0.0], [2078, 0.0], [2082, 0.0], [2086, 0.0], [2090, 0.0], [2094, 0.0], [2098, 0.0], [2102, 0.0], [2106, 0.0], [2110, 0.0], [2114, 0.0], [2118, 0.0], [2122, 0.0], [2126, 0.0], [2130, 0.0], [2134, 0.0], [2138, 0.0], [2142, 0.0], [2146, 0.0], [2150, 0.0], [2154, 0.0], [2158, 0.0], [2162, 0.0], [2166, 0.0], [2170, 0.0], [2174, 0.0], [2178, 0.0], [2182, 0.0], [2186, 0.0], [2190, 0.0], [2194, 0.0], [2198, 0.0], [2202, 0.0], [2206, 0.0], [2210, 0.0], [2214, 0.0], [2218, 0.0], [2222, 0.0], [2226, 0.0], [2230, 0.0], [2234, 0.0], [2238, 0.0], [2242, 0.0], [2246, 0.0], [2250, 0.0], [2254, 0.0], [2258, 0.0], [2262, 0.0], [2266, 0.0], [2270, 0.0], [2274, 0.0], [2278, 0.0], [2282, 0.0], [2286, 0.0], [2290, 0.0], [2294, 0.0], [2298, 0.0], [2302, 0.0], [2306, 0.0], [2310, 0.0], [2314, 0.0], [2318, 0.0], [2322, 0.0], [2326, 0.0], [2330, 0.0], [2334, 0.0], [2338, 0.0], [2342, 0.0], [2346, 0.0], [2350, 0.0], [2354, 0.0], [2358, 0.0], [2362, 0.0], [2366, 0.0], [2370, 0.0], [2374, 0.0], [2378, 0.0], [2382, 0.0], [2386, 0.0], [2390, 0.0], [2394, 0.0], [2398, 0.0], [2402, 0.0], [2406, 0.0], [2410, 0.0], [2414, 0.0], [2418, 0.0], [2422, 0.0], [2426, 0.0], [2430, 0.0], [2434, 0.0], [2438, 0.0], [2442, 0.0], [2446, 0.0], [2450, 0.0], [2454, 0.0], [2458, 0.0], [2462, 0.0], [2466, 0.0], [2470, 0.0], [2474, 0.0], [2478, 0.0], [2482, 0.0], [2486, 0.0], [2490, 0.0], [2494, 0.0], [2498, 0.0], [2502, 0.0], [2506, 0.0], [2510, 0.0], [2514, 0.0], [2518, 0.0], [2522, 0.0], [2526, 0.0], [2530, 0.0], [2534, 0.0], [2538, 0.0], [2542, 0.0], [2546, 0.0], [2550, 0.0], [2554, 0.0], [2558, 0.0], [2562, 0.0], [2566, 0.0], [2570, 0.0], [2574, 0.0], [2578, 0.0], [2582, 0.0], [2586, 0.0], [2590, 0.0], [2594, 0.0], [2598, 0.0], [2602, 0.0], [2606, 0.0], [2610, 0.0], [2614, 0.0], [2618, 0.0], [2622, 0.0], [2626, 0.0], [2630, 0.0], [2634, 0.0], [2638, 0.0], [2642, 0.0], [2646, 0.0], [2650, 0.0], [2654, 0.0], [2658, 0.0], [2662, 0.0], [2666, 0.0], [2670, 0.0], [2674, 0.0], [2678, 0.0], [2682, 0.0], [2686, 0.0], [2690, 0.0], [2694, 0.0], [2698, 0.0], [2702, 0.0], [2706, 0.0], [2710, 0.0], [2714, 0.0], [2718, 0.0], [2722, 0.0], [2726, 0.0], [2730, 0.0], [2734, 0.0], [2738, 0.0], [2742, 0.0], [2746, 0.0], [2750, 0.0], [2754, 0.0], [2758, 0.0], [2762, 0.0], [2766, 0.0], [2770, 0.0], [2774, 0.0], [2778, 0.0], [2782, 0.0], [2786, 0.0], [2790, 0.0], [2794, 0.0], [2798, 0.0], [2802, 0.0], [2806, 0.0], [2810, 0.0], [2814, 0.0], [2818, 0.0], [2822, 0.0], [2826, 0.0], [2830, 0.0], [2834, 0.0], [2838, 0.0], [2842, 0.0], [2846, 0.0], [2850, 0.0], [2854, 0.0], [2858, 0.0], [2862, 0.0], [2866, 0.0], [2870, 0.0], [2874, 0.0], [2878, 0.0], [2882, 0.0], [2886, 0.0], [2890, 0.0], [2894, 0.0], [2898, 0.0], [2902, 0.0], [2906, 0.0], [2910, 0.0], [2914, 0.0], [2918, 0.0], [2922, 0.0], [2926, 0.0], [2930, 0.0], [2934, 0.0], [2938, 0.0], [2942, 0.0], [2946, 0.0], [2950, 0.0], [2954, 0.0], [2958, 0.0], [2962, 0.0], [2966, 0.0], [2970, 0.0], [2974, 0.0], [2978, 0.0], [2982, 0.0], [2986, 0.0], [2990, 0.0], [2994, 0.0], [2998, 0.0], [3002, 0.0], [3006, 0.0], [3010, 0.0], [3014, 0.0], [3018, 0.0], [3022, 0.0], [3026, 0.0], [3030, 0.0], [3034, 0.0], [3038, 0.0], [3042, 0.0], [3046, 0.0], [3050, 0.0], [3054, 0.0], [3058, 0.0], [3062, 0.0], [3066, 0.0], [3070, 0.0], [3074, 0.0], [3078, 0.0], [3082, 0.0], [3086, 0.0], [3090, 0.0], [3094, 0.0], [3098, 0.0], [3102, 0.0], [3106, 0.0], [3110, 0.0], [3114, 0.0], [3118, 0.0], [3122, 0.0], [3126, 0.0], [3130, 0.0], [3134, 0.0], [3138, 0.0], [3142, 0.0], [3146, 0.0], [3150, 0.0], [3154, 0.0], [3158, 0.0], [3162, 0.0], [3166, 0.0], [3170, 0.0], [3174, 0.0], [3178, 0.0], [3182, 0.0], [3186, 0.0], [3190, 0.0], [3194, 0.0], [3198, 0.0], [3202, 0.0], [3206, 0.0], [3210, 0.0], [3214, 0.0], [3218, 0.0], [3222, 0.0], [3226, 0.0], [3230, 0.0], [3234, 0.0], [3238, 0.0], [3242, 0.0], [3246, 0.0], [3250, 0.0], [3254, 0.0], [3258, 0.0], [3262, 0.0], [3266, 0.0], [3270, 0.0], [3274, 0.0], [3278, 0.0], [3282, 0.0], [3286, 0.0], [3290, 0.0], [3294, 0.0], [3298, 0.0], [3302, 0.0], [3306, 0.0], [3310, 0.0], [3314, 0.0], [3318, 0.0], [3322, 0.0], [3326, 0.0], [3330, 0.0], [3334, 0.0], [3338, 0.0], [3342, 0.0], [3346, 0.0], [3350, 0.0], [3354, 0.0], [3358, 0.0], [3362, 0.0], [3366, 0.0], [3370, 0.0], [3374, 0.0], [3378, 0.0], [3382, 0.0], [3386, 0.0], [3390, 0.0], [3394, 0.0], [3398, 0.0], [3402, 0.0], [3406, 0.0], [3410, 0.0], [3414, 0.0], [3418, 0.0], [3422, 0.0], [3426, 0.0], [3430, 0.0], [3434, 0.0], [3438, 0.0], [3442, 0.0], [3446, 0.0], [3450, 0.0], [3454, 0.0], [3458, 0.0], [3462, 0.0], [3466, 0.0], [3470, 0.0], [3474, 0.0], [3478, 0.0], [3482, 0.0], [3486, 0.0], [3490, 0.0], [3494, 0.0], [3498, 0.0], [3502, 0.0], [3506, 0.0], [3510, 0.0], [3514, 0.0], [3518, 0.0], [3522, 0.0], [3526, 0.0], [3530, 0.0], [3534, 0.0], [3538, 0.0], [3542, 0.0], [3546, 0.0], [3550, 0.0], [3554, 0.0], [3558, 0.0], [3562, 0.0], [3566, 0.0], [3570, 0.0], [3574, 0.0], [3578, 0.0], [3582, 0.0], [3586, 0.0], [3590, 0.0], [3594, 0.0], [3598, 0.0], [3602, 0.0], [3606, 0.0], [3610, 0.0], [3614, 0.0], [3618, 0.0], [3622, 0.0], [3626, 0.0], [3630, 0.0], [3634, 0.0], [3638, 0.0], [3642, 0.0], [3646, 0.0], [3650, 0.0], [3654, 0.0], [3658, 0.0], [3662, 0.0], [3666, 0.0], [3670, 0.0], [3674, 0.0], [3678, 0.0], [3682, 0.0], [3686, 0.0], [3690, 0.0], [3694, 0.0], [3698, 0.0], [3702, 0.0], [3706, 0.0], [3710, 0.0], [3714, 0.0], [3718, 0.0], [3722, 0.0], [3726, 0.0], [3730, 0.0], [3734, 0.0], [3738, 0.0], [3742, 0.0], [3746, 0.0], [3750, 0.0], [3754, 0.0], [3758, 0.0], [3762, 0.0], [3766, 0.0], [3770, 0.0], [3774, 0.0], [3778, 0.0], [3782, 0.0], [3786, 0.0], [3790, 0.0], [3794, 0.0], [3798, 0.0], [3802, 0.0], [3806, 0.0], [3810, 0.0], [3814, 0.0], [3818, 0.0], [3822, 0.0], [3826, 0.0], [3830, 0.0], [3834, 0.0], [3838, 0.0], [3842, 0.0], [3846, 0.0], [3850, 0.0], [3854, 0.0], [3858, 0.0], [3862, 0.0], [3866, 0.0], [3870, 0.0], [3874, 0.0], [3878, 0.0], [3882, 0.0], [3886, 0.0], [3890, 0.0], [3894, 0.0], [3898, 0.0], [3902, 0.0], [3906, 0.0], [3910, 0.0], [3914, 0.0], [3918, 0.0], [3922, 0.0], [3926, 0.0], [3930, 0.0], [3934, 0.0], [3938, 0.0], [3942, 0.0], [3946, 0.0], [3950, 0.0], [3954, 0.0], [3958, 0.0], [3962, 0.0], [3966, 0.0], [3970, 0.0], [3974, 0.0], [3978, 0.0], [3982, 0.0], [3986, 0.0], [3990, 0.0], [3994, 0.0], [4000, 0.0]]]], "histogram": {"data": [[{"disabled": null, "values": [{"y": 28, "x": 0.10733738914132118}, {"y": 76, "x": 0.11364466696977615}, {"y": 55, "x": 0.11995194479823112}, {"y": 72, "x": 0.1262592226266861}, {"y": 55, "x": 0.13256650045514107}, {"y": 63, "x": 0.13887377828359604}, {"y": 58, "x": 0.145181056112051}, {"y": 59, "x": 0.15148833394050598}, {"y": 71, "x": 0.15779561176896095}, {"y": 59, "x": 0.16410288959741592}, {"y": 56, "x": 0.1704101674258709}, {"y": 55, "x": 0.17671744525432587}, {"y": 58, "x": 0.18302472308278084}, {"y": 62, "x": 0.1893320009112358}, {"y": 49, "x": 0.19563927873969078}, {"y": 68, "x": 0.20194655656814575}, {"y": 60, "x": 0.20825383439660072}, {"y": 63, "x": 0.2145611122250557}, {"y": 60, "x": 0.22086839005351067}, {"y": 57, "x": 0.22717566788196564}, {"y": 72, "x": 0.2334829457104206}, {"y": 59, "x": 0.23979022353887558}, {"y": 75, "x": 0.24609750136733055}, {"y": 76, "x": 0.2524047791957855}, {"y": 60, "x": 0.2587120570242405}, {"y": 74, "x": 0.26501933485269547}, {"y": 51, "x": 0.27132661268115044}, {"y": 59, "x": 0.2776338905096054}, {"y": 68, "x": 0.2839411683380604}, {"y": 80, "x": 0.29024844616651535}, {"y": 59, "x": 0.2965557239949703}, {"y": 56, "x": 0.3028630018234253}, {"y": 65, "x": 0.30917027965188026}, {"y": 69, "x": 0.31547755748033524}, {"y": 67, "x": 0.3217848353087902}, {"y": 84, "x": 0.3280921131372452}, {"y": 62, "x": 0.33439939096570015}, {"y": 65, "x": 0.3407066687941551}, {"y": 76, "x": 0.3470139466226101}, {"y": 66, "x": 0.35332122445106506}, {"y": 71, "x": 0.35962850227952003}, {"y": 59, "x": 0.365935780107975}, {"y": 62, "x": 0.37224305793643}, {"y": 75, "x": 0.37855033576488495}, {"y": 60, "x": 0.3848576135933399}, {"y": 55, "x": 0.3911648914217949}, {"y": 62, "x": 0.39747216925024986}, {"y": 76, "x": 0.40377944707870483}, {"y": 58, "x": 0.4100867249071598}, {"y": 62, "x": 0.4163940027356148}, {"y": 48, "x": 0.42270128056406975}, {"y": 64, "x": 0.4290085583925247}, {"y": 69, "x": 0.4353158362209797}, {"y": 55, "x": 0.44162311404943466}, {"y": 51, "x": 0.44793039187788963}, {"y": 54, "x": 0.4542376697063446}, {"y": 58, "x": 0.4605449475347996}, {"y": 65, "x": 0.46685222536325455}, {"y": 75, "x": 0.4731595031917095}, {"y": 64, "x": 0.4794667810201645}, {"y": 58, "x": 0.48577405884861946}, {"y": 64, "x": 0.49208133667707443}, {"y": 61, "x": 0.4983886145055294}, {"y": 47, "x": 0.5046958923339844}], "key": "task", "view": "Square Root Choice"}], [{"disabled": null, "values": [{"y": 280, "x": 0.1320813252375676}, {"y": 311, "x": 0.163132539162269}, {"y": 275, "x": 0.1941837530869704}, {"y": 300, "x": 0.22523496701167178}, {"y": 334, "x": 0.25628618093637323}, {"y": 324, "x": 0.28733739486107457}, {"y": 315, "x": 0.318388608785776}, {"y": 343, "x": 0.34943982271047735}, {"y": 323, "x": 0.3804910366351788}, {"y": 321, "x": 0.4115422505598802}, {"y": 286, "x": 0.4425934644845816}, {"y": 305, "x": 0.473644678409283}, {"y": 283, "x": 0.5046958923339844}], "key": "task", "view": "Sturges Formula"}], [{"disabled": null, "values": [{"y": 104, "x": 0.11364466696977615}, {"y": 127, "x": 0.1262592226266861}, {"y": 118, "x": 0.13887377828359604}, {"y": 117, "x": 0.15148833394050598}, {"y": 130, "x": 0.16410288959741592}, {"y": 111, "x": 0.17671744525432587}, {"y": 120, "x": 0.1893320009112358}, {"y": 117, "x": 0.20194655656814575}, {"y": 123, "x": 0.2145611122250557}, {"y": 117, "x": 0.22717566788196564}, {"y": 131, "x": 0.23979022353887558}, {"y": 151, "x": 0.2524047791957855}, {"y": 134, "x": 0.26501933485269547}, {"y": 110, "x": 0.2776338905096054}, {"y": 148, "x": 0.29024844616651535}, {"y": 115, "x": 0.3028630018234253}, {"y": 134, "x": 0.31547755748033524}, {"y": 151, "x": 0.3280921131372452}, {"y": 127, "x": 0.3407066687941551}, {"y": 142, "x": 0.35332122445106506}, {"y": 130, "x": 0.365935780107975}, {"y": 137, "x": 0.37855033576488495}, {"y": 115, "x": 0.3911648914217949}, {"y": 138, "x": 0.40377944707870483}, {"y": 120, "x": 0.4163940027356148}, {"y": 112, "x": 0.4290085583925247}, {"y": 124, "x": 0.44162311404943466}, {"y": 105, "x": 0.4542376697063446}, {"y": 123, "x": 0.46685222536325455}, {"y": 139, "x": 0.4794667810201645}, {"y": 122, "x": 0.49208133667707443}, {"y": 108, "x": 0.5046958923339844}], "key": "task", "view": "Rice Rule"}]], "views": [{"id": 0, "name": "Square Root Choice"}, {"id": 1, "name": "Sturges Formula"}, {"id": 2, "name": "Rice Rule"}]}}, "additive_output": [], "table": {"rows": [["action_0", 0.101, 0.305, 0.464, 0.482, 0.505, 0.304, "100.0%", 4000], ["total", 0.101, 0.306, 0.464, 0.482, 0.505, 0.304, "100.0%", 4000]], "cols": ["Action", "Min (sec)", "Median (sec)", "90%ile (sec)", "95%ile (sec)", "Max (sec)", "Avg (sec)", "Success", "Count"]}, "full_duration": 4.747297048568726, "config": "{\n \"Dummy.dummy_random_action\": [\n {\n \"runner\": {\n \"type\": \"constant\", \n \"concurrency\": 400, \n \"times\": 4000\n }, \n \"args\": {\n \"sleep_min\": 0.1, \n \"sleep_max\": 0.5, \n \"actions_num\": 1\n }, \n \"context\": {\n \"users\": {\n \"project_domain\": \"default\", \n \"users_per_tenant\": 1, \n \"tenants\": 1, \n \"resource_management_workers\": 30, \n \"user_domain\": \"default\"\n }\n }\n }\n ]\n}", "sla": [], "complete_output": [[], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []], "cls": "Dummy"}];
$scope.location = {
/* #/path/hash/sub/div */
normalize: function(str) {
/* Remove unwanted characters from string */
if (typeof str !== "string") { return "" }
return str.replace(/[^\w\-\.]/g, "")
},
uri: function(obj) {
/* Getter/Setter */
if (! obj) {
var uri = {path: "", hash: "", sub: "", div: ""};
var arr = ["div", "sub", "hash", "path"];
angular.forEach($location.url().split("/"), function(value){
var v = $scope.location.normalize(value);
if (v) { var k = arr.pop(); if (k) { this[k] = v }}
}, uri);
return uri
}
var arr = [obj.path, obj.hash, obj.sub, obj.div], res = [];
for (var i in arr) { if (! arr[i]) { break }; res.push(arr[i]) }
return $location.url("/" + res.join("/"))
},
path: function(path, hash) {
/* Getter/Setter */
if (path === "") { return this.uri({}) }
path = this.normalize(path);
var uri = this.uri();
if (! path) { return uri.path }
uri.path = path;
var _hash = this.normalize(hash);
if (_hash || hash === "") { uri.hash = _hash }
return this.uri(uri)
},
hash: function(hash) {
/* Getter/Setter */
if (hash) { this.uri({path:this.uri().path, hash:hash}) }
return this.uri().hash
}
}
/* Dispatch */
$scope.route = function(uri) {
if (! $scope.scenarios_map) { return }
if (uri.path in $scope.scenarios_map) {
$scope.view = {is_scenario:true};
$scope.scenario = $scope.scenarios_map[uri.path];
$scope.nav_idx = $scope.nav_map[uri.path];
if ($scope.scenario.iterations.histogram.views.length) {
$scope.mainHistogram = $scope.scenario.iterations.histogram.views[0]
}
if ($scope.scenario.atomic.histogram.views.length) {
$scope.atomicHistogram = $scope.scenario.atomic.histogram.views[0]
}
$scope.outputIteration = 0;
$scope.showTab(uri);
} else {
$scope.scenario = null;
if (uri.path === "source") {
$scope.view = {is_source:true}
} else {
$scope.view = {is_main:true}
}
}
}
$scope.$on("$locationChangeSuccess", function (event, newUrl, oldUrl) {
$scope.route($scope.location.uri())
});
$scope.showNav = function(nav_idx) { $scope.nav_idx = nav_idx }
/* Tabs */
$scope.tabs = [
{
id: "overview",
name: "Overview",
visible: function(){ return !! $scope.scenario.iterations.pie.length }
},{
id: "details",
name: "Details",
visible: function(){ return !! $scope.scenario.atomic.pie.length }
},{
id: "output",
name: "Scenario Data",
visible: function(){ return $scope.scenario.output.length }
},{
id: "failures",
name: "Failures",
visible: function(){ return !! $scope.scenario.errors.length }
},{
id: "task",
name: "Input task",
visible: function(){ return !! $scope.scenario.config }
}
];
$scope.tabs_map = {};
angular.forEach($scope.tabs,
function(tab){ this[tab.id] = tab }, $scope.tabs_map);
$scope.showTab = function(uri) {
$scope.tab = uri.hash in $scope.tabs_map ? uri.hash : "overview";
if (! $scope.scenario.output) {
var has_additive = !! $scope.scenario.additive_output.length;
var has_complete = !! ($scope.scenario.complete_output.length
&& $scope.scenario.complete_output[0].length);
$scope.scenario.output = {
has_additive: has_additive,
has_complete: has_complete,
length: has_additive + has_complete,
active: has_additive ? "additive" : (has_complete ? "complete" : "")
}
}
if (uri.hash === "output") {
if (uri.sub && $scope.scenario.output["has_" + uri.sub]) {
$scope.scenario.output.active = uri.sub
}
}
}
for (var i in $scope.tabs) {
if ($scope.tabs[i].id === $scope.location.hash()) {
$scope.tab = $scope.tabs[i].id
}
$scope.tabs[i].isVisible = function() {
if ($scope.scenario) {
if (this.visible()) { return true }
/* If tab should be hidden but is selected - show another one */
if (this.id === $scope.location.hash()) {
for (var i in $scope.tabs) {
var tab = $scope.tabs[i];
if (tab.id != this.id && tab.visible()) {
$scope.tab = tab.id;
return false
}
}
}
}
return false
}
}
$scope.showError = function(message) {
return (function (e) {
e.style.display = "block";
e.textContent = message
})(document.getElementById("page-error"))
}
/* Initialization */
angular.element(document).ready(function(){
if (! $scope.scenarios.length) {
return $scope.showError("No data...")
}
/* Compose data mapping */
$scope.nav = [];
$scope.nav_map = {};
$scope.scenarios_map = {};
var met = [], itr = 0, cls_idx = 0;
var prev_cls, prev_met;
for (var idx in $scope.scenarios) {
var sc = $scope.scenarios[idx];
if (! prev_cls) {
prev_cls = sc.cls
}
else if (prev_cls !== sc.cls) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx});
prev_cls = sc.cls;
met = [];
itr = 1;
cls_idx += 1
}
if (prev_met !== sc.met) { itr = 1 };
sc.ref = $scope.location.normalize(sc.cls+"."+sc.met+(itr > 1 ? "-"+itr : ""));
$scope.scenarios_map[sc.ref] = sc;
$scope.nav_map[sc.ref] = cls_idx;
met.push({name:sc.name, itr:itr, idx:idx, ref:sc.ref});
prev_met = sc.met;
itr += 1;
}
if (met.length) {
$scope.nav.push({cls:prev_cls, met:met, idx:cls_idx})
}
/* Start */
var uri = $scope.location.uri();
uri.path = $scope.location.path();
$scope.route(uri);
$scope.$digest()
});
}])
.directive("widget", function($compile) {
var Chart = {
_render: function(node, data, chart, do_after){
nv.addGraph(function() {
d3.select(node)
.datum(data).transition().duration(0)
.call(chart);
if (typeof do_after === "function") {
do_after(node, chart)
}
nv.utils.windowResize(chart.update);
})
},
/* NOTE(amaretskiy): this is actually a result of
d3.scale.category20().range(), excluding red color (#d62728)
which is reserved for errors */
_colors: ["#1f77b4", "#aec7e8", "#ff7f0e", "#ffbb78", "#2ca02c",
"#98df8a", "#ff9896", "#9467bd", "#c5b0d5", "#8c564b",
"#c49c94", "#e377c2", "#f7b6d2", "#7f7f7f", "#c7c7c7",
"#bcbd22", "#dbdb8d", "#17becf", "#9edae5"],
_widgets: {
Pie: "pie",
StackedArea: "stack",
Lines: "lines",
Histogram: "histogram"
},
get_chart: function(widget) {
if (widget in this._widgets) {
var name = this._widgets[widget];
return Chart[name]
}
return function() { console.log("Error: unexpected widget:", widget) }
},
pie: function(node, data, opts, do_after) {
var chart = nv.models.pieChart()
.x(function(d) { return d.key })
.y(function(d) { return d.values })
.showLabels(true)
.labelType("percent")
.donut(true)
.donutRatio(0.25)
.donutLabelsOutside(true)
.color(function(d){
if (d.data && d.data.color) { return d.data.color }
});
var data_ = [], colors = [], colors_map = {errors: "#d62728"};
for (var i in data) {
var key = data[i][0];
if (! (key in colors_map)) {
if (! colors.length) { colors = Chart._colors.slice() }
colors_map[key] = colors.shift()
}
data_.push({key:key, values:data[i][1], color:colors_map[key]})
}
Chart._render(node, data_, chart)
},
stack: function(node, data, opts, do_after) {
var chart = nv.models.stackedAreaChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.showControls(opts.controls)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var data_ = [];
for (var i in data) {
var d = {key:data[i][0], values:data[i][1]};
if (d.key === "failed_duration") {
d.color = "#d62728"
}
data_.push(d);
}
Chart._render(node, data_, chart, do_after);
},
lines: function(node, data, opts, do_after) {
var chart = nv.models.lineChart()
.x(function(d) { return d[0] })
.y(function(d) { return d[1] })
.useInteractiveGuideline(opts.guide)
.clipEdge(true);
chart.xAxis
.tickFormat(d3.format(opts.xformat || "d"))
.axisLabel(opts.xname || "")
.showMaxMin(false);
chart.yAxis
.orient("left")
.tickFormat(d3.format(opts.yformat || ",.3f"));
var data_ = [];
for (var i in data) {
var d = {key:data[i][0], values:data[i][1]};
if (d.key === "failed_duration") {
d.color = "#d62728"
}
data_.push(d)
}
Chart._render(node, data_, chart, do_after)
},
histogram: function(node, data, opts) {
var chart = nv.models.multiBarChart()
.reduceXTicks(true)
.showControls(false)
.transitionDuration(0)
.groupSpacing(0.05);
chart
.legend.radioButtonMode(true);
chart.xAxis
.axisLabel("Duration (seconds)")
.tickFormat(d3.format(",.2f"));
chart.yAxis
.axisLabel("Iterations (frequency)")
.tickFormat(d3.format("d"));
Chart._render(node, data, chart)
}
};
return {
restrict: "A",
scope: { data: "=" },
link: function(scope, element, attrs) {
scope.$watch("data", function(data) {
if (! data) { return console.log("Chart has no data to render!") }
if (attrs.widget === "Table") {
var ng_class = attrs.lastrowClass ? " ng-class='{"+attrs.lastrowClass+":$last}'" : "";
var template = "<table class='striped'><thead>" +
"<tr><th ng-repeat='i in data.cols track by $index'>{{i}}<tr>" +
"</thead><tbody>" +
"<tr" + ng_class + " ng-repeat='row in data.rows track by $index'>" +
"<td ng-repeat='i in row track by $index'>{{i}}" +
"<tr>" +
"</tbody></table>";
var el = element.empty().append($compile(template)(scope)).children()[0]
} else {
var el_chart = element.addClass("chart").css({display:"block"});
var el = el_chart.html("<svg></svg>").children()[0];
var do_after = null;
if (attrs.widget in {StackedArea:0, Lines:0}) {
/* Hide widget if not enough data */
if ((! data.length) || (data[0].length < 1) || (data[0][1].length < 2)) {
return element.empty().css({display:"none"})
}
/* NOTE(amaretskiy): Dirty fix for changing chart width in case
if there are too long Y values that overlaps chart box. */
var do_after = function(node, chart){
var g_box = angular.element(el_chart[0].querySelector(".nv-y.nv-axis"));
if (g_box && g_box[0] && g_box[0].getBBox) {
try {
// 30 is padding aroung graphs
var width = g_box[0].getBBox().width + 30;
} catch (err) {
// This happens sometimes, just skip silently
return
}
// 890 is chart width (set by CSS)
if (typeof width === "number" && width > 890) {
width = (890 * 2) - width;
if (width > 0) {
angular.element(node).css({width:width+"px"});
chart.update()
}
}
}
}
}
else if (attrs.widget === "Pie") {
if (! data.length) {
return element.empty().css({display:"none"})
}
}
var options = {
xname: attrs.nameX || "",
xformat: attrs.formatX || "d",
yformat: attrs.formatY || ",.3f",
controls: attrs.controls === "true",
guide: attrs.guide === "true"
};
Chart.get_chart(attrs.widget)(el, data, options, do_after);
}
if (attrs.nameY) {
/* NOTE(amaretskiy): Dirty fix for displaying Y-axis label correctly.
I believe sometimes NVD3 will allow doing this in normal way */
var label_y = angular.element("<div>").addClass("chart-label-y").text(attrs.nameY);
angular.element(el).parent().prepend(label_y)
}
if (attrs.description) {
var desc_el = angular.element("<div>").addClass(attrs.descriptionClass || "h3").text(attrs.description);
angular.element(el).parent().prepend(desc_el)
}
if (attrs.title) {
var title_el = angular.element("<div>").addClass(attrs.titleClass || "h2").text(attrs.title);
angular.element(el).parent().prepend(title_el)
}
angular.element(el).parent().append(angular.element("<div style='clear:both'>"))
});
}
}
})
}
</script>
<style>
body { margin:0; padding:0 0 50px; font-size:14px; font-family:Helvetica,Arial,sans-serif }
a, a:active, a:focus, a:visited { text-decoration:none; outline:none }
p { margin:0; padding:5px 0 }
p.thesis { padding:10px 0 }
h1 { color:#666; margin:0 0 20px; font-size:30px; font-weight:normal }
h2, .h2 { color:#666; margin:24px 0 6px; font-size:25px; font-weight:normal }
h3, .h3 { color:#777; margin:12px 0 4px; font-size:18px; font-weight:normal }
table { border-collapse:collapse; border-spacing:0; width:100%; font-size:12px; margin:0 0 10px }
table th { text-align:left; padding:8px; color:#000; border:2px solid #ddd; border-width:0 0 2px 0 }
table th.sortable { cursor:pointer }
table td { text-align:left; border-top:1px solid #ddd; padding:8px; color:#333 }
table.compact td { padding:4px 8px }
table.striped tr:nth-child(odd) td { background:#f9f9f9 }
table.linked tbody tr:hover { background:#f9f9f9; cursor:pointer }
.rich, .rich td { font-weight:bold }
.code { padding:10px; font-size:13px; color:#333; background:#f6f6f6; border:1px solid #e5e5e5; border-radius:4px }
.header { text-align:left; background:#333; font-size:18px; padding:13px 0; margin-bottom:20px; color:#fff; background-image:linear-gradient(to bottom, #444 0px, #222 100%) }
.header a, .header a:visited, .header a:focus { color:#999 }
.notify-error { padding:5px 10px; background:#fee; color:red }
.status-skip, .status-skip td { color:grey }
.status-pass, .status-pass td { color:green }
.status-fail, .status-fail td { color:red }
.capitalize { text-transform:capitalize }
.aside { margin:0 20px 0 0; display:block; width:255px; float:left }
.aside > div { margin-bottom: 15px }
.aside > div div:first-child { border-top-left-radius:4px; border-top-right-radius:4px }
.aside > div div:last-child { border-bottom-left-radius:4px; border-bottom-right-radius:4px }
.navcls { color:#678; background:#eee; border:1px solid #ddd; margin-bottom:-1px; display:block; padding:8px 9px; font-weight:bold; text-align:left; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; cursor:pointer }
.navcls.expanded { color:#469 }
.navcls.active { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.navmet { color:#555; background:#fff; border:1px solid #ddd; font-size:12px; display:block; margin-bottom:-1px; padding:8px 10px; text-align:left; text-overflow:ellipsis; white-space:nowrap; overflow:hidden; cursor:pointer }
.navmet:hover { background:#f8f8f8 }
.navmet.active, .navmet.active:hover { background:#428bca; background-image:linear-gradient(to bottom, #428bca 0px, #3278b3 100%); border-color:#3278b3; color:#fff }
.tabs { list-style:outside none none; margin:0 0 5px; padding:0; border-bottom:1px solid #ddd }
.tabs:after { clear:both }
.tabs li { float:left; margin-bottom:-1px; display:block; position:relative }
.tabs li div { border:1px solid transparent; border-radius:4px 4px 0 0; line-height:20px; margin-right:2px; padding:10px 15px; color:#428bca }
.tabs li div:hover { border-color:#eee #eee #ddd; background:#eee; cursor:pointer; }
.tabs li.active div { background:#fff; border-color:#ddd #ddd transparent; border-style:solid; border-width:1px; color:#555; cursor:default }
.failure-mesg { color:#900 }
.failure-trace { color:#333; white-space:pre; overflow:auto }
.link { color:#428BCA; padding:5px 15px 5px 5px; text-decoration:underline; cursor:pointer }
.link.active { color:#333; text-decoration:none }
.chart { padding:0; margin:0; width:890px }
.chart svg { height:300px; padding:0; margin:0; overflow:visible; float:right }
.chart.lower svg { height:180px }
.chart-label-y { font-size:12px; position:relative; top:5px; padding:0; margin:0 }
.expandable { cursor:pointer }
.clearfix { clear:both }
.sortable > .arrow { display:inline-block; width:12px; height:inherit; color:#c90 }
.content-main { margin:0 5px; display:block; float:left }
.content-wrap { margin:0 auto; padding:0 5px </%block>}
@media only screen and (min-width: 320px) { .content-wrap { width:900px } .content-main { width:600px } }
@media only screen and (min-width: 900px) { .content-wrap { width:880px } .content-main { width:590px } }
@media only screen and (min-width: 1000px) { .content-wrap { width:980px } .content-main { width:690px } }
@media only screen and (min-width: 1100px) { .content-wrap { width:1080px } .content-main { width:790px } }
@media only screen and (min-width: 1200px) { .content-wrap { width:1180px } .content-main { width:890px } }
</style>
</head>
<body ng-controller="TaskController">
<div class="header">
<div class="content-wrap">
<a href="https://github.com/openstack/rally">Rally</a>
<span>task results</span>
</div>
</div>
<div class="content-wrap">
<p id="page-error" class="notify-error" style="display:none"></p>
<div id="content-nav" class="aside" ng-show="scenarios.length" ng-cloack>
<div>
<div class="navcls"
ng-class="{active:view.is_main}"
ng-click="location.path('')">Task overview</div>
<div class="navcls"
ng-class="{active:view.is_source}"
ng-click="location.path('source', '')">Input file</div>
</div>
<div>
<div class="navcls" title="{{n.cls}}"
ng-repeat-start="n in nav track by $index"
ng-click="showNav(n.idx)"
ng-class="{expanded:n.idx==nav_idx}">
<span ng-hide="n.idx==nav_idx">►</span>
<span ng-show="n.idx==nav_idx">▼</span>
{{n.cls}}</div>
<div class="navmet" title="{{m.name}}"
ng-show="n.idx==nav_idx"
ng-class="{active:m.ref==scenario.ref}"
ng-click="location.path(m.ref)"
ng-repeat="m in n.met track by $index"
ng-repeat-end>{{m.name}}</div>
</div>
</div>
<div id="content-main" class="content-main" ng-show="scenarios.length" ng-cloak>
<div ng-show="view.is_main">
<h1>Task overview</h1>
<table class="linked compact"
ng-init="ov_srt='ref'; ov_dir=false">
<thead>
<tr>
<th class="sortable"
title="Scenario name, with optional suffix of call number"
ng-click="ov_srt='ref'; ov_dir=!ov_dir">
Scenario
<span class="arrow">
<b ng-show="ov_srt=='ref' && !ov_dir">▴</b>
<b ng-show="ov_srt=='ref' && ov_dir">▾</b>
</span>
<th class="sortable"
title="How long the scenario run, without context duration"
ng-click="ov_srt='load_duration'; ov_dir=!ov_dir">
Load duration (s)
<span class="arrow">
<b ng-show="ov_srt=='load_duration' && !ov_dir">▴</b>
<b ng-show="ov_srt=='load_duration' && ov_dir">▾</b>
</span>
<th class="sortable"
title="Scenario duration plus context duration"
ng-click="ov_srt='full_duration'; ov_dir=!ov_dir">
Full duration (s)
<span class="arrow">
<b ng-show="ov_srt=='full_duration' && !ov_dir">▴</b>
<b ng-show="ov_srt=='full_duration' && ov_dir">▾</b>
</span>
<th class="sortable" title="Number of iterations"
ng-click="ov_srt='iterations_count'; ov_dir=!ov_dir">
Iterations
<span class="arrow">
<b ng-show="ov_srt=='iterations_count' && !ov_dir">▴</b>
<b ng-show="ov_srt=='iterations_count' && ov_dir">▾</b>
</span>
<th class="sortable" title="Scenario runner type"
ng-click="ov_srt='runner'; ov_dir=!ov_dir">
Runner
<span class="arrow">
<b ng-show="ov_srt=='runner' && !ov_dir">▴</b>
<b ng-show="ov_srt=='runner' && ov_dir">▾</b>
</span>
<th class="sortable" title="Number of errors occurred"
ng-click="ov_srt='errors.length'; ov_dir=!ov_dir">
Errors
<span class="arrow">
<b ng-show="ov_srt=='errors.length' && !ov_dir">▴</b>
<b ng-show="ov_srt=='errors.length' && ov_dir">▾</b>
</span>
<th class="sortable" title="Whether SLA check is successful"
ng-click="ov_srt='sla_success'; ov_dir=!ov_dir">
Success (SLA)
<span class="arrow">
<b ng-show="ov_srt=='sla_success' && !ov_dir">▴</b>
<b ng-show="ov_srt=='sla_success' && ov_dir">▾</b>
</span>
<tr>
</thead>
<tbody>
<tr ng-repeat="sc in scenarios | orderBy:ov_srt:ov_dir"
ng-click="location.path(sc.ref)">
<td>{{sc.ref}}
<td>{{sc.load_duration | number:3}}
<td>{{sc.full_duration | number:3}}
<td>{{sc.iterations_count}}
<td>{{sc.runner}}
<td>{{sc.errors.length}}
<td>
<span ng-show="sc.sla_success" class="status-pass">✔</span>
<span ng-hide="sc.sla_success" class="status-fail">✖</span>
<tr>
</tbody>
</table>
</div>
<div ng-show="view.is_source">
<h1>Input file</h1>
<pre class="code">{{source}}</pre>
</div>
<div ng-show="view.is_scenario">
<h1>{{scenario.cls}}.<wbr>{{scenario.name}} ({{scenario.full_duration | number:3}}s)</h1>
<ul class="tabs">
<li ng-repeat="t in tabs"
ng-show="t.isVisible()"
ng-class="{active:t.id == tab}"
ng-click="location.hash(t.id)">
<div>{{t.name}}</div>
</li>
<div class="clearfix"></div>
</ul>
<div ng-include="tab"></div>
<script type="text/ng-template" id="overview">
<p class="thesis">
Load duration: <b>{{scenario.load_duration | number:3}} s</b>
Full duration: <b>{{scenario.full_duration | number:3}} s</b>
Iterations: <b>{{scenario.iterations_count}}</b>
Failures: <b>{{scenario.errors.length}}</b>
</p>
<div ng-show="scenario.sla.length">
<h2>Service-level agreement</h2>
<table class="striped">
<thead>
<tr>
<th>Criterion
<th>Detail
<th>Success
<tr>
</thead>
<tbody>
<tr class="rich"
ng-repeat="row in scenario.sla track by $index"
ng-class="{'status-fail':!row.success, 'status-pass':row.success}">
<td>{{row.criterion}}
<td>{{row.detail}}
<td class="capitalize">{{row.success}}
<tr>
</tbody>
</table>
</div>
<div widget="Table"
data="scenario.table"
lastrow-class="rich"
title="Total durations">
</div>
<div widget="StackedArea"
data="scenario.iterations.iter"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="StackedArea"
data="scenario.load_profile"
title="Load Profile"
title-class="h3"
name-x="Timeline (seconds)"
format-y="d"
format-x=",.2f"
class="lower">
</div>
<div widget="Pie"
data="scenario.iterations.pie"
title="Distribution"
title-class="h3"
style="float:left; width:40%; margin-top:15px">
</div>
<div widget="Histogram"
ng-if="scenario.iterations.histogram.data.length"
data="scenario.iterations.histogram.data[mainHistogram.id]"
style="float:left; width:59%; margin-top:15px; position:relative; top:40px">
</div>
<select ng-model="mainHistogram"
ng-show="scenario.iterations.histogram.data.length"
ng-options="i.name for i in scenario.iterations.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="details">
<div widget="StackedArea"
data="scenario.atomic.iter"
title="Atomic Action Durations"
name-x="Iteration sequence number"
controls="true"
guide="true">
</div>
<div widget="Pie"
data="scenario.atomic.pie"
title="Distribution"
title-class="h3"
style="float:left; width:40%; margin-top:15px">
</div>
<div widget="Histogram" data="scenario.atomic.histogram.data[atomicHistogram.id]"
ng-if="scenario.atomic.histogram.data.length"
style="float:left; width:59%; margin-top:15px; position:relative; top:40px">
</div>
<select ng-show="scenario.atomic.histogram.data.length"
ng-model="atomicHistogram"
ng-options="i.name for i in scenario.atomic.histogram.views track by i.id"
style="float:right; margin:45px 35px 0">
</select>
<div class="clearfix"></div>
</script>
<script type="text/ng-template" id="output">
<div style="padding:10px 0 0">
<span class="link"
ng-click="location.hash('output/additive')"
ng-class="{active:scenario.output.active === 'additive'}"
ng-if="scenario.output.has_additive">Aggregated</span>
<span class="link"
ng-click="location.hash('output/complete')"
ng-class="{active:scenario.output.active === 'complete'}"
ng-if="scenario.output.has_complete">Per iteration</span>
</div>
<div ng-repeat="chart in scenario.additive_output"
ng-if="scenario.output.active === 'additive'">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
<div ng-if="scenario.output.active === 'complete'" style="padding:10px 0 0">
<select ng-model="outputIteration">
<option ng-repeat="i in scenario.complete_output track by $index"
value="{{$index}}">
Iteration {{$index}}
</select>
<div ng-repeat="chart in scenario.complete_output[outputIteration]">
<div widget="{{chart.widget}}"
title="{{chart.title}}"
description="{{chart.description}}"
name-x="{{chart.axis_label}}"
name-y="{{chart.label}}"
data="chart.data">
</div>
</div>
</div>
</script>
<script type="text/ng-template" id="failures">
<h2>Task failures (<ng-pluralize
count="scenario.errors.length"
when="{'1': '1 iteration', 'other': '{} iterations'}"></ng-pluralize> failed)
</h2>
<table class="striped">
<thead>
<tr>
<th>
<th>Iteration
<th>Exception type
<th>Exception message
</tr>
</thead>
<tbody>
<tr class="expandable"
ng-repeat-start="i in scenario.errors track by $index"
ng-click="i.expanded = ! i.expanded">
<td>
<span ng-hide="i.expanded">►</span>
<span ng-show="i.expanded">▼</span>
<td>{{i.iteration}}
<td>{{i.type}}
<td class="failure-mesg">{{i.message}}
</tr>
<tr ng-show="i.expanded" ng-repeat-end>
<td colspan="4" class="failure-trace">{{i.traceback}}
</tr>
</tbody>
</table>
</script>
<script type="text/ng-template" id="task">
<h2>Subtask Configuration</h2>
<pre class="code">{{scenario.config}}</pre>
</script>
</div>
</div>
<div class="clearfix"></div>
</div>
<script type="text/javascript">
if (! window.angular) {(function(f){
f(document.getElementById("content-nav"), "none");
f(document.getElementById("content-main"), "none");
f(document.getElementById("page-error"), "block").textContent = "Failed to load AngularJS framework"
})(function(e, s){e.style.display = s; return e})}
</script>
</body>
</html>