-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreq_lock-dce7c.html
927 lines (894 loc) · 99.6 KB
/
req_lock-dce7c.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
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="shortcut icon" type="image/x-icon" href="style/favicon.ico"/>
<link href="style/style.css" rel="stylesheet" type="text/css" />
<link href="style/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/gatling.js"></script>
<script type="text/javascript" src="js/moment.min.js"></script>
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/all_sessions.js"></script>
<script type="text/javascript" src="js/stats.js"></script>
<script type="text/javascript" src="js/highstock.js"></script>
<script type="text/javascript" src="js/highcharts-more.js"></script>
<script type="text/javascript" src="js/theme.js"></script>
<script type="text/javascript" src="js/unpack.js"></script>
<title>Gatling Stats - lock</title>
</head>
<body>
<div class="frise"></div>
<div class="container details">
<div class="head">
<a href="http://gatling.io" target="blank_" title="Gatling Home Page"><img alt="Gatling" src="style/logo.png"/></a>
</div>
<div class="main">
<div class="cadre">
<div class="onglet">
<img src="style/cible.png" />
<p><span>masscopyandretardsimulation</span></p>
</div>
<div class="content">
<div class="sous-menu">
<div class="item "><a href="index.html">GLOBAL</a></div>
<div class="item ouvert"><a id="details_link" href="#">DETAILS</a></div>
<script type="text/javascript">
var timestamp = 1528987419764;
var runStartHumanDate = moment(timestamp).format("YYYY-MM-DD HH:mm:ss Z");
document.writeln("<p class='sim_desc' title='"+ runStartHumanDate +", duration : 3596 seconds' data-content=''>");
document.writeln("<b>" + runStartHumanDate + ", duration : 3596 seconds </b>");
document.writeln("</p>");
</script>
</div>
<div class="content-in">
<h1><span>> </span>lock</h1>
<div class="article">
<div class="infos">
<div class="infos-in">
<div class="infos-title">STATISTICS</div>
<div class="repli"></div>
<div class="info">
<h2 class="first">Executions</h2>
<table>
<thead>
<tr><th></th><th>Total</th><th>OK</th><th>KO</th></tr>
</thead>
<tbody>
<tr>
<td class="title"></td>
<td id="numberOfRequests" class="total"></td>
<td id="numberOfRequestsOK" class="ok"></td>
<td id="numberOfRequestsKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean req/s</td>
<td id="meanNumberOfRequestsPerSecond" class="total"></td>
<td id="meanNumberOfRequestsPerSecondOK" class="ok"></td>
<td id="meanNumberOfRequestsPerSecondKO" class="ko"></td>
</tr>
</tbody>
</table>
<h2 class="second">Response Time (ms)</h2>
<table>
<thead>
<tr>
<th></th>
<th>Total</th>
<th>OK</th>
<th>KO</th>
</tr>
</thead>
<tbody>
<tr>
<td class="title">Min</td>
<td id="minResponseTime" class="total"></td>
<td id="minResponseTimeOK" class="ok"></td>
<td id="minResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">50th percentile</td>
<td id="percentiles1" class="total"></td>
<td id="percentiles1OK" class="ok"></td>
<td id="percentiles1KO" class="ko"></td>
</tr>
<tr>
<td class="title">75th percentile</td>
<td id="percentiles2" class="total"></td>
<td id="percentiles2OK" class="ok"></td>
<td id="percentiles2KO" class="ko"></td>
</tr>
<tr>
<td class="title">95th percentile</td>
<td id="percentiles3" class="total"></td>
<td id="percentiles3OK" class="ok"></td>
<td id="percentiles3KO" class="ko"></td>
</tr>
<tr>
<td class="title">99th percentile</td>
<td id="percentiles4" class="total"></td>
<td id="percentiles4OK" class="ok"></td>
<td id="percentiles4KO" class="ko"></td>
</tr>
<tr>
<td class="title">Max</td>
<td id="maxResponseTime" class="total"></td>
<td id="maxResponseTimeOK" class="ok"></td>
<td id="maxResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Mean</td>
<td id="meanResponseTime" class="total"></td>
<td id="meanResponseTimeOK" class="ok"></td>
<td id="meanResponseTimeKO" class="ko"></td>
</tr>
<tr>
<td class="title">Std Deviation</td>
<td id="standardDeviation" class="total"></td>
<td id="standardDeviationOK" class="ok"></td>
<td id="standardDeviationKO" class="ko"></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="schema demi">
<div id="container_indicators" class="demi"></div>
</div>
<div class="statistics extensible-geant collapsed">
<div class="title">
<div class="title_collapsed" style="cursor: auto;">ERRORS</div>
</div>
<table id="container_errors" class="statistics-in extensible-geant">
<thead>
<tr>
<th id="error-col-1" class="header sortable"><span>Error</span></th>
<th id="error-col-2" class="header sortable"><span>Count</span></th>
<th id="error-col-3" class="header sortable"><span>Percentage</span></th>
</tr>
</thead>
<tbody>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 400<span class="value" style="display:none">0</span></td>
<td class="value error-col-2 total">37</td>
<td class="value error-col-3 total">77.083 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 503<span class="value" style="display:none">1</span></td>
<td class="value error-col-2 total">8</td>
<td class="value error-col-3 total">16.667 %</td>
</tr>
<tr>
<td class="error-col-1 total">status.find.in(200,304,201,202,203,204,205,206,207,208,209), but actually found 502<span class="value" style="display:none">2</span></td>
<td class="value error-col-2 total">2</td>
<td class="value error-col-3 total">4.167 %</td>
</tr>
<tr>
<td class="error-col-1 total">j.u.c.TimeoutException: Request timeout to perf.kronos.itv.com/10.220.210.244:443 after 60000ms<span class="value" style="display:none">3</span></td>
<td class="value error-col-2 total">1</td>
<td class="value error-col-3 total">2.083 %</td>
</tr>
</tbody>
</table>
</div>
<div class="schema geant">
<div id="container_distrib" class="geant"></div>
</div>
<div class="schema geant">
<div id="container" class="geant"></div>
</div>
<div class="schema geant">
<a name="requests"></a>
<div id="container_requests" class="geant"></div>
</div>
<div class="schema geant">
<a name="responses"></a>
<div id="container_responses" class="geant"></div>
</div>
<div class="schema geant">
<div id="container_response_time_dispersion" class="geant"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="nav">
<ul></ul>
</div>
</div>
<div class="foot">
<a href="http://gatling.io" title="Gatling Home Page"><img alt="Gatling" src="style/logo-gatling.jpg"/></a>
</div>
<script type="text/javascript">
var pageStats = stats.contents['req_lock-dce7c'].stats;
$(document).ready(function() {
$('.sim_desc').popover({trigger:'hover', placement:'bottom'});
setDetailsLinkUrl();
setDetailsMenu();
setActiveMenu();
fillStats(pageStats);
Highcharts.setOptions({
global: { useUTC: false }
});
var indicatorsChart = new Highcharts.Chart({
chart: {
renderTo: 'container_indicators',
marginRight: 150
},
credits: { enabled: false },
legend: { enabled: false },
title: { text: 'A title to let highcharts reserve the place for the title set later' },
xAxis: {
categories: [
pageStats.group1.name,
pageStats.group2.name,
pageStats.group3.name,
pageStats.group4.name
]
},
yAxis: {
title: { text: 'Number of Requests' }
},
tooltip: {
formatter: function() {
var s;
if (this.point.name) { // the pie chart
s = ''+ this.point.name +': '+ this.y +'% requests';
} else {
s = ''+ this.y + ' requests';
}
return s;
}
},
plotOptions: {
series: {
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#A0B228',
data: [pageStats.group1.count,0,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FFDD00',
data: [0,pageStats.group2.count,0,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF9D00',
data: [0,0,pageStats.group3.count,0],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
data: [0,0,0,pageStats.group4.count],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'pie',
name: 'Percentages',
data: [
{
name: pageStats.group1.name,
y: pageStats.group1.percentage,
color: '#A0B228'
},
{
name: pageStats.group2.name,
y: pageStats.group2.percentage,
color: '#FFDD00'
},
{
name: pageStats.group3.name,
y: pageStats.group3.percentage,
color: '#FF9D00'
},
{
name: pageStats.group4.name,
y: pageStats.group4.percentage,
color: '#FF0000'
}
],
center: [470, 85],
size: 100,
showInLegend: false,
dataLabels: { enabled: false }
}
]
});
indicatorsChart.setTitle({
text: '<span class="chart_title">Indicators</span>',
useHTML: true
});
$('#container_errors').sortable('#container_errors');
var responseTimeDistributionChart = new Highcharts.Chart({
chart: {
renderTo: 'container_distrib',
type: 'column'
},
credits: {
enabled: false
},
legend: {
enabled: true,
floating: true,
y: -285,
borderWidth: 0,
itemStyle: {
fontWeight: "normal"
}
},
title: {
text: 'A title to let highcharts reserve the place for the title set later'
},
xAxis: {
categories: ['306', '906', '1506', '2106', '2706', '3306', '3906', '4506', '5106', '5706', '6306', '6906', '7506', '8106', '8706', '9306', '9906', '10506', '11106', '11706', '12306', '12906', '13506', '14106', '14706', '15307', '15907', '16507', '17107', '17707', '18307', '18907', '19507', '20107', '20707', '21307', '21907', '22507', '23107', '23707', '24307', '24907', '25507', '26107', '26707', '27307', '27907', '28507', '29107', '29707', '30307', '30907', '31507', '32107', '32707', '33307', '33907', '34507', '35107', '35707', '36307', '36907', '37507', '38107', '38707', '39307', '39907', '40507', '41107', '41707', '42307', '42907', '43507', '44107', '44707', '45308', '45908', '46508', '47108', '47708', '48308', '48908', '49508', '50108', '50708', '51308', '51908', '52508', '53108', '53708', '54308', '54908', '55508', '56108', '56708', '57308', '57908', '58508', '59108', '59708'],
tickInterval: 20
},
yAxis: {
min: 0,
title: {
text: 'Percentage of Requests'
}
},
tooltip: {
formatter: function() {
return '<b>'+ this.x +' ms</b><br/>'+
this.series.name +': '+ this.y +' %<br/>'+
'Total: '+ this.point.stackTotal + ' %';
}
},
plotOptions: {
series: {
groupPadding: 0,
stacking: 'normal',
shadow: true
}
},
series: [
{
type: 'column',
color: '#4572A7',
name: 'OK',
data: [
8.33,22.66,31.33,11.66,4.66,1.66,0.0,0.33,0.33,0.33,1.0,0.0,0.66,0.33,0.33,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
},
{
type: 'column',
color: '#FF0000',
name: 'KO',
data: [
3.33,1.33,5.0,1.0,1.0,0.66,1.0,0.66,1.33,0.0,0.0,0.0,0.0,0.0,0.0,0.33,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.33
],
tooltip: { yDecimals: 0, ySuffix: 'ms' }
}
]
});
responseTimeDistributionChart.setTitle({
text: '<span class="chart_title">Response Time Distribution</span>',
useHTML: true
});
var responseTimePercentiles = unpack([[1528987422,null],[1528987425,[1666,1666,1666,1666,1666,1666,1666,1666,1666,1666]],[1528987429,[1506,1506,1506,1506,1506,1506,1506,1506,1506,1506]],[1528987433,[73,73,73,73,73,73,73,73,73,73]],[1528987436,[1258,1258,1258,1258,1258,1258,1258,1258,1258,1258]],[1528987440,[74,74,74,74,74,74,74,74,74,74]],[1528987443,[944,944,944,944,944,944,944,944,944,944]],[1528987447,null],[1528987451,null],[1528987454,null],[1528987458,null],[1528987461,null],[1528987465,null],[1528987469,null],[1528987472,null],[1528987476,null],[1528987479,null],[1528987483,[1491,1491,1491,1491,1491,1491,1491,1491,1491,1491]],[1528987486,[94,94,94,94,94,94,94,94,94,94]],[1528987490,null],[1528987494,[2332,2332,2332,2332,2332,2332,2332,2332,2332,2332]],[1528987497,[902,902,902,902,902,902,902,902,902,902]],[1528987501,[2695,2695,2695,2695,2695,2695,2695,2695,2695,2695]],[1528987504,null],[1528987508,null],[1528987512,null],[1528987515,null],[1528987519,null],[1528987522,[992,992,992,992,992,992,992,992,992,992]],[1528987526,null],[1528987530,null],[1528987533,null],[1528987537,null],[1528987540,null],[1528987544,null],[1528987548,null],[1528987551,null],[1528987555,null],[1528987558,null],[1528987562,[1983,1983,1983,1983,1983,1983,1983,1983,1983,1983]],[1528987566,null],[1528987569,[1939,1939,1939,1939,1939,1939,1939,1939,1939,1939]],[1528987573,null],[1528987576,null],[1528987580,null],[1528987584,null],[1528987587,null],[1528987591,null],[1528987594,null],[1528987598,null],[1528987602,[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800]],[1528987605,null],[1528987609,null],[1528987612,null],[1528987616,null],[1528987620,null],[1528987623,[114,610,1107,1415,1476,1538,1599,1661,1710,1723]],[1528987627,null],[1528987630,null],[1528987634,null],[1528987638,null],[1528987641,[1081,1306,1532,1757,1802,1847,1892,1937,1973,1983]],[1528987645,null],[1528987648,null],[1528987652,null],[1528987656,null],[1528987659,null],[1528987663,null],[1528987666,null],[1528987670,null],[1528987674,[1687,1851,2015,2179,2211,2244,2277,2310,2336,2343]],[1528987677,null],[1528987681,null],[1528987684,null],[1528987688,[1919,1919,1919,1919,1919,1919,1919,1919,1919,1919]],[1528987692,null],[1528987695,null],[1528987699,[1437,1437,1437,1437,1437,1437,1437,1437,1437,1437]],[1528987702,null],[1528987706,null],[1528987710,[1591,1591,1591,1591,1591,1591,1591,1591,1591,1591]],[1528987713,[824,824,824,824,824,824,824,824,824,824]],[1528987717,null],[1528987720,null],[1528987724,null],[1528987727,null],[1528987731,null],[1528987735,null],[1528987738,[5384,5384,5384,5384,5384,5384,5384,5384,5384,5384]],[1528987742,null],[1528987745,null],[1528987749,null],[1528987753,null],[1528987756,[144,574,1004,1434,1520,1606,1692,1778,1847,1865]],[1528987760,[1895,1895,1895,1895,1895,1895,1895,1895,1895,1895]],[1528987763,null],[1528987767,null],[1528987771,null],[1528987774,[1758,1758,1758,1758,1758,1758,1758,1758,1758,1758]],[1528987778,null],[1528987781,null],[1528987785,null],[1528987789,null],[1528987792,[1586,1586,1586,1586,1586,1586,1586,1586,1586,1586]],[1528987796,null],[1528987799,null],[1528987803,null],[1528987807,[10143,10143,10143,10143,10143,10143,10143,10143,10143,10143]],[1528987810,null],[1528987814,null],[1528987817,[1203,1203,1203,1203,1203,1203,1203,1203,1203,1203]],[1528987821,null],[1528987825,null],[1528987828,null],[1528987832,null],[1528987835,null],[1528987839,null],[1528987843,null],[1528987846,[1428,1428,1428,1428,1428,1428,1428,1428,1428,1428]],[1528987850,[1592,1592,1592,1592,1592,1592,1592,1592,1592,1592]],[1528987853,null],[1528987857,null],[1528987861,null],[1528987864,null],[1528987868,[1460,1460,1460,1460,1460,1460,1460,1460,1460,1460]],[1528987871,null],[1528987875,null],[1528987879,null],[1528987882,[1676,1676,1676,1676,1676,1676,1676,1676,1676,1676]],[1528987886,null],[1528987889,[1142,1142,1142,1142,1142,1142,1142,1142,1142,1142]],[1528987893,null],[1528987897,null],[1528987900,null],[1528987904,null],[1528987907,[1647,1647,1647,1647,1647,1647,1647,1647,1647,1647]],[1528987911,[1114,1114,1114,1114,1114,1114,1114,1114,1114,1114]],[1528987915,null],[1528987918,null],[1528987922,[1463,1463,1463,1463,1463,1463,1463,1463,1463,1463]],[1528987925,null],[1528987929,null],[1528987933,[850,850,850,850,850,850,850,850,850,850]],[1528987936,null],[1528987940,[1561,1561,1561,1561,1561,1561,1561,1561,1561,1561]],[1528987943,null],[1528987947,null],[1528987951,null],[1528987954,null],[1528987958,[2098,2098,2098,2098,2098,2098,2098,2098,2098,2098]],[1528987961,null],[1528987965,null],[1528987968,[1089,1089,1089,1089,1089,1089,1089,1089,1089,1089]],[1528987972,null],[1528987976,null],[1528987979,null],[1528987983,[2084,2084,2084,2084,2084,2084,2084,2084,2084,2084]],[1528987986,null],[1528987990,null],[1528987994,null],[1528987997,null],[1528988001,[1797,1797,1797,1797,1797,1797,1797,1797,1797,1797]],[1528988004,[106,106,106,106,106,106,106,106,106,106]],[1528988008,null],[1528988012,null],[1528988015,[1103,1103,1103,1103,1103,1103,1103,1103,1103,1103]],[1528988019,null],[1528988022,null],[1528988026,null],[1528988030,null],[1528988033,null],[1528988037,[1929,1929,1929,1929,1929,1929,1929,1929,1929,1929]],[1528988040,[2454,2454,2454,2454,2454,2454,2454,2454,2454,2454]],[1528988044,null],[1528988048,null],[1528988051,null],[1528988055,[2052,2052,2052,2052,2052,2052,2052,2052,2052,2052]],[1528988058,null],[1528988062,[897,897,897,897,897,897,897,897,897,897]],[1528988066,null],[1528988069,null],[1528988073,null],[1528988076,null],[1528988080,null],[1528988084,null],[1528988087,[1758,1758,1758,1758,1758,1758,1758,1758,1758,1758]],[1528988091,null],[1528988094,null],[1528988098,null],[1528988102,null],[1528988105,[1722,1722,1722,1722,1722,1722,1722,1722,1722,1722]],[1528988109,null],[1528988112,null],[1528988116,null],[1528988120,[1433,1433,1433,1433,1433,1433,1433,1433,1433,1433]],[1528988123,null],[1528988127,[98,461,825,1188,1261,1333,1406,1479,1537,1552]],[1528988130,null],[1528988134,null],[1528988138,null],[1528988141,null],[1528988145,null],[1528988148,null],[1528988152,null],[1528988156,null],[1528988159,null],[1528988163,null],[1528988166,null],[1528988170,null],[1528988174,null],[1528988177,null],[1528988181,null],[1528988184,null],[1528988188,[1392,1392,1392,1392,1392,1392,1392,1392,1392,1392]],[1528988191,[59,531,1004,1476,1571,1665,1760,1854,1930,1949]],[1528988195,null],[1528988199,null],[1528988202,null],[1528988206,[2925,2925,2925,2925,2925,2925,2925,2925,2925,2925]],[1528988209,null],[1528988213,null],[1528988217,null],[1528988220,null],[1528988224,null],[1528988227,null],[1528988231,null],[1528988235,null],[1528988238,null],[1528988242,null],[1528988245,null],[1528988249,[103,103,103,103,103,103,103,103,103,103]],[1528988253,null],[1528988256,null],[1528988260,null],[1528988263,null],[1528988267,null],[1528988271,null],[1528988274,[1188,1188,1188,1188,1188,1188,1188,1188,1188,1188]],[1528988278,null],[1528988281,null],[1528988285,null],[1528988289,[2108,2108,2108,2108,2108,2108,2108,2108,2108,2108]],[1528988292,[887,887,887,887,887,887,887,887,887,887]],[1528988296,null],[1528988299,null],[1528988303,null],[1528988307,null],[1528988310,[1420,1420,1420,1420,1420,1420,1420,1420,1420,1420]],[1528988314,null],[1528988317,[1623,1623,1623,1623,1623,1623,1623,1623,1623,1623]],[1528988321,null],[1528988325,null],[1528988328,null],[1528988332,[60,421,782,1143,1216,1288,1360,1432,1490,1505]],[1528988335,null],[1528988339,null],[1528988343,null],[1528988346,null],[1528988350,[85,542,999,1456,1547,1638,1730,1821,1894,1913]],[1528988353,null],[1528988357,null],[1528988361,null],[1528988364,null],[1528988368,null],[1528988371,null],[1528988375,null],[1528988379,null],[1528988382,null],[1528988386,null],[1528988389,[3145,3145,3145,3145,3145,3145,3145,3145,3145,3145]],[1528988393,null],[1528988397,null],[1528988400,null],[1528988404,null],[1528988407,null],[1528988411,null],[1528988415,null],[1528988418,null],[1528988422,null],[1528988425,null],[1528988429,null],[1528988432,[3510,3510,3510,3510,3510,3510,3510,3510,3510,3510]],[1528988436,null],[1528988440,null],[1528988443,null],[1528988447,null],[1528988450,[1830,1830,1830,1830,1830,1830,1830,1830,1830,1830]],[1528988454,[88,88,88,88,88,88,88,88,88,88]],[1528988458,[2459,2459,2459,2459,2459,2459,2459,2459,2459,2459]],[1528988461,null],[1528988465,null],[1528988468,null],[1528988472,null],[1528988476,null],[1528988479,null],[1528988483,null],[1528988486,null],[1528988490,null],[1528988494,null],[1528988497,null],[1528988501,null],[1528988504,null],[1528988508,null],[1528988512,null],[1528988515,null],[1528988519,null],[1528988522,null],[1528988526,null],[1528988530,null],[1528988533,null],[1528988537,null],[1528988540,null],[1528988544,[3319,3319,3319,3319,3319,3319,3319,3319,3319,3319]],[1528988548,null],[1528988551,null],[1528988555,[2204,2204,2204,2204,2204,2204,2204,2204,2204,2204]],[1528988558,null],[1528988562,[1763,1763,1763,1763,1763,1763,1763,1763,1763,1763]],[1528988566,[1678,1678,1678,1678,1678,1678,1678,1678,1678,1678]],[1528988569,null],[1528988573,null],[1528988576,null],[1528988580,null],[1528988584,null],[1528988587,null],[1528988591,null],[1528988594,null],[1528988598,null],[1528988602,null],[1528988605,null],[1528988609,[1548,1548,1548,1548,1548,1548,1548,1548,1548,1548]],[1528988612,null],[1528988616,null],[1528988620,null],[1528988623,null],[1528988627,null],[1528988630,null],[1528988634,null],[1528988638,[1694,1694,1694,1694,1694,1694,1694,1694,1694,1694]],[1528988641,null],[1528988645,null],[1528988648,null],[1528988652,null],[1528988656,null],[1528988659,null],[1528988663,null],[1528988666,null],[1528988670,null],[1528988673,null],[1528988677,null],[1528988681,null],[1528988684,null],[1528988688,null],[1528988691,null],[1528988695,null],[1528988699,null],[1528988702,null],[1528988706,null],[1528988709,null],[1528988713,null],[1528988717,null],[1528988720,null],[1528988724,null],[1528988727,null],[1528988731,null],[1528988735,null],[1528988738,null],[1528988742,null],[1528988745,null],[1528988749,null],[1528988753,null],[1528988756,null],[1528988760,null],[1528988763,null],[1528988767,null],[1528988771,null],[1528988774,null],[1528988778,null],[1528988781,null],[1528988785,null],[1528988789,null],[1528988792,null],[1528988796,null],[1528988799,null],[1528988803,null],[1528988807,null],[1528988810,null],[1528988814,[98,569,1041,1513,1607,1701,1796,1890,1966,1985]],[1528988817,[1400,1400,1400,1400,1400,1400,1400,1400,1400,1400]],[1528988821,[62,62,62,62,62,62,62,62,62,62]],[1528988825,null],[1528988828,null],[1528988832,null],[1528988835,null],[1528988839,null],[1528988843,null],[1528988846,null],[1528988850,null],[1528988853,[1664,1664,1664,1664,1664,1664,1664,1664,1664,1664]],[1528988857,null],[1528988861,null],[1528988864,[1733,1733,1733,1733,1733,1733,1733,1733,1733,1733]],[1528988868,null],[1528988871,[1554,1554,1554,1554,1554,1554,1554,1554,1554,1554]],[1528988875,null],[1528988879,null],[1528988882,null],[1528988886,null],[1528988889,null],[1528988893,null],[1528988897,null],[1528988900,null],[1528988904,null],[1528988907,null],[1528988911,null],[1528988914,null],[1528988918,null],[1528988922,null],[1528988925,null],[1528988929,null],[1528988932,[2237,2237,2237,2237,2237,2237,2237,2237,2237,2237]],[1528988936,null],[1528988940,[663,663,663,663,663,663,663,663,663,663]],[1528988943,[2162,2162,2162,2162,2162,2162,2162,2162,2162,2162]],[1528988947,null],[1528988950,null],[1528988954,null],[1528988958,null],[1528988961,null],[1528988965,null],[1528988968,null],[1528988972,null],[1528988976,null],[1528988979,[1699,1699,1699,1699,1699,1699,1699,1699,1699,1699]],[1528988983,null],[1528988986,null],[1528988990,null],[1528988994,[1550,1550,1550,1550,1550,1550,1550,1550,1550,1550]],[1528988997,null],[1528989001,null],[1528989004,[1542,1542,1542,1542,1542,1542,1542,1542,1542,1542]],[1528989008,null],[1528989012,[47,228,409,590,627,663,699,735,764,772]],[1528989015,null],[1528989019,null],[1528989022,null],[1528989026,null],[1528989030,null],[1528989033,null],[1528989037,null],[1528989040,null],[1528989044,null],[1528989048,null],[1528989051,[1557,1557,1557,1557,1557,1557,1557,1557,1557,1557]],[1528989055,[940,940,940,940,940,940,940,940,940,940]],[1528989058,[1574,1574,1574,1574,1574,1574,1574,1574,1574,1574]],[1528989062,null],[1528989066,[1455,1455,1455,1455,1455,1455,1455,1455,1455,1455]],[1528989069,null],[1528989073,null],[1528989076,null],[1528989080,[695,695,695,695,695,695,695,695,695,695]],[1528989084,null],[1528989087,null],[1528989091,[1880,1880,1880,1880,1880,1880,1880,1880,1880,1880]],[1528989094,null],[1528989098,null],[1528989102,null],[1528989105,null],[1528989109,[1747,1747,1747,1747,1747,1747,1747,1747,1747,1747]],[1528989112,[959,959,959,959,959,959,959,959,959,959]],[1528989116,[1682,1682,1682,1682,1682,1682,1682,1682,1682,1682]],[1528989120,null],[1528989123,null],[1528989127,null],[1528989130,null],[1528989134,null],[1528989138,null],[1528989141,null],[1528989145,null],[1528989148,null],[1528989152,null],[1528989155,[847,847,847,847,847,847,847,847,847,847]],[1528989159,null],[1528989163,null],[1528989166,[1657,1657,1657,1657,1657,1657,1657,1657,1657,1657]],[1528989170,null],[1528989173,[859,977,1096,1215,1239,1262,1286,1310,1329,1334]],[1528989177,null],[1528989181,[2408,2408,2408,2408,2408,2408,2408,2408,2408,2408]],[1528989184,null],[1528989188,null],[1528989191,null],[1528989195,[733,733,733,733,733,733,733,733,733,733]],[1528989199,null],[1528989202,[1097,1097,1097,1097,1097,1097,1097,1097,1097,1097]],[1528989206,null],[1528989209,null],[1528989213,null],[1528989217,null],[1528989220,[1643,1643,1643,1643,1643,1643,1643,1643,1643,1643]],[1528989224,null],[1528989227,null],[1528989231,[1072,1072,1072,1072,1072,1072,1072,1072,1072,1072]],[1528989235,null],[1528989238,null],[1528989242,null],[1528989245,null],[1528989249,[1474,1474,1474,1474,1474,1474,1474,1474,1474,1474]],[1528989253,[804,804,804,804,804,804,804,804,804,804]],[1528989256,null],[1528989260,null],[1528989263,[741,792,844,896,906,916,927,937,945,948]],[1528989267,null],[1528989271,null],[1528989274,null],[1528989278,null],[1528989281,null],[1528989285,null],[1528989289,[3544,3544,3544,3544,3544,3544,3544,3544,3544,3544]],[1528989292,[67,67,67,67,67,67,67,67,67,67]],[1528989296,[1214,1214,1214,1214,1214,1214,1214,1214,1214,1214]],[1528989299,null],[1528989303,null],[1528989307,null],[1528989310,null],[1528989314,null],[1528989317,[1586,1586,1586,1586,1586,1586,1586,1586,1586,1586]],[1528989321,[936,936,936,936,936,936,936,936,936,936]],[1528989325,null],[1528989328,null],[1528989332,null],[1528989335,null],[1528989339,null],[1528989343,[807,807,807,807,807,807,807,807,807,807]],[1528989346,null],[1528989350,null],[1528989353,null],[1528989357,null],[1528989361,null],[1528989364,null],[1528989368,[1782,1782,1782,1782,1782,1782,1782,1782,1782,1782]],[1528989371,null],[1528989375,null],[1528989379,[1135,1135,1135,1135,1135,1135,1135,1135,1135,1135]],[1528989382,[1802,1802,1802,1802,1802,1802,1802,1802,1802,1802]],[1528989386,null],[1528989389,null],[1528989393,[1082,1082,1082,1082,1082,1082,1082,1082,1082,1082]],[1528989396,null],[1528989400,[870,870,870,870,870,870,870,870,870,870]],[1528989404,null],[1528989407,null],[1528989411,null],[1528989414,null],[1528989418,null],[1528989422,[1759,1759,1759,1759,1759,1759,1759,1759,1759,1759]],[1528989425,null],[1528989429,[932,932,932,932,932,932,932,932,932,932]],[1528989432,null],[1528989436,null],[1528989440,null],[1528989443,null],[1528989447,[2785,2785,2785,2785,2785,2785,2785,2785,2785,2785]],[1528989450,null],[1528989454,[900,939,979,1019,1027,1035,1043,1051,1057,1059]],[1528989458,null],[1528989461,null],[1528989465,null],[1528989468,[1423,1423,1423,1423,1423,1423,1423,1423,1423,1423]],[1528989472,null],[1528989476,null],[1528989479,[1878,1878,1878,1878,1878,1878,1878,1878,1878,1878]],[1528989483,null],[1528989486,null],[1528989490,null],[1528989494,null],[1528989497,[1071,1071,1071,1071,1071,1071,1071,1071,1071,1071]],[1528989501,[1024,1024,1024,1024,1024,1024,1024,1024,1024,1024]],[1528989504,null],[1528989508,null],[1528989512,[934,934,934,934,934,934,934,934,934,934]],[1528989515,null],[1528989519,null],[1528989522,[8221,8221,8221,8221,8221,8221,8221,8221,8221,8221]],[1528989526,null],[1528989530,null],[1528989533,[1001,1001,1001,1001,1001,1001,1001,1001,1001,1001]],[1528989537,null],[1528989540,null],[1528989544,null],[1528989548,null],[1528989551,null],[1528989555,null],[1528989558,[1053,1053,1053,1053,1053,1053,1053,1053,1053,1053]],[1528989562,null],[1528989566,[2265,2321,2377,2433,2445,2456,2467,2478,2487,2490]],[1528989569,null],[1528989573,null],[1528989576,null],[1528989580,[1630,1630,1630,1630,1630,1630,1630,1630,1630,1630]],[1528989584,null],[1528989587,null],[1528989591,null],[1528989594,[821,821,821,821,821,821,821,821,821,821]],[1528989598,null],[1528989602,null],[1528989605,null],[1528989609,null],[1528989612,[1055,1190,1325,1460,1487,1514,1541,1568,1590,1596]],[1528989616,null],[1528989620,[881,881,881,881,881,881,881,881,881,881]],[1528989623,null],[1528989627,null],[1528989630,null],[1528989634,null],[1528989637,null],[1528989641,null],[1528989645,null],[1528989648,null],[1528989652,null],[1528989655,[1649,1649,1649,1649,1649,1649,1649,1649,1649,1649]],[1528989659,null],[1528989663,null],[1528989666,null],[1528989670,[997,997,997,997,997,997,997,997,997,997]],[1528989673,null],[1528989677,null],[1528989681,[845,1003,1161,1319,1350,1382,1413,1445,1470,1477]],[1528989684,null],[1528989688,null],[1528989691,null],[1528989695,null],[1528989699,null],[1528989702,null],[1528989706,null],[1528989709,null],[1528989713,null],[1528989717,[1393,1393,1393,1393,1393,1393,1393,1393,1393,1393]],[1528989720,null],[1528989724,null],[1528989727,null],[1528989731,null],[1528989735,[1720,1720,1720,1720,1720,1720,1720,1720,1720,1720]],[1528989738,null],[1528989742,[2942,2942,2942,2942,2942,2942,2942,2942,2942,2942]],[1528989745,[2116,2116,2116,2116,2116,2116,2116,2116,2116,2116]],[1528989749,null],[1528989753,null],[1528989756,null],[1528989760,null],[1528989763,null],[1528989767,null],[1528989771,null],[1528989774,null],[1528989778,null],[1528989781,null],[1528989785,null],[1528989789,[1292,1292,1292,1292,1292,1292,1292,1292,1292,1292]],[1528989792,null],[1528989796,null],[1528989799,null],[1528989803,null],[1528989807,null],[1528989810,[2383,2383,2383,2383,2383,2383,2383,2383,2383,2383]],[1528989814,null],[1528989817,null],[1528989821,[8418,8418,8418,8418,8418,8418,8418,8418,8418,8418]],[1528989825,null],[1528989828,null],[1528989832,[6429,6429,6429,6429,6429,6429,6429,6429,6429,6429]],[1528989835,null],[1528989839,null],[1528989843,null],[1528989846,null],[1528989850,[868,868,868,868,868,868,868,868,868,868]],[1528989853,[1217,1217,1217,1217,1217,1217,1217,1217,1217,1217]],[1528989857,null],[1528989861,null],[1528989864,null],[1528989868,null],[1528989871,null],[1528989875,null],[1528989878,[6157,6157,6157,6157,6157,6157,6157,6157,6157,6157]],[1528989882,null],[1528989886,null],[1528989889,null],[1528989893,null],[1528989896,[7544,7544,7544,7544,7544,7544,7544,7544,7544,7544]],[1528989900,null],[1528989904,[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800]],[1528989907,[39,39,39,39,39,39,39,39,39,39]],[1528989911,null],[1528989914,null],[1528989918,null],[1528989922,null],[1528989925,[1116,1116,1116,1116,1116,1116,1116,1116,1116,1116]],[1528989929,null],[1528989932,null],[1528989936,[2573,2573,2573,2573,2573,2573,2573,2573,2573,2573]],[1528989940,null],[1528989943,null],[1528989947,null],[1528989950,null],[1528989954,null],[1528989958,null],[1528989961,null],[1528989965,[1292,1292,1292,1292,1292,1292,1292,1292,1292,1292]],[1528989968,null],[1528989972,null],[1528989976,[1800,1800,1800,1800,1800,1800,1800,1800,1800,1800]],[1528989979,null],[1528989983,null],[1528989986,null],[1528989990,null],[1528989994,[1240,1240,1240,1240,1240,1240,1240,1240,1240,1240]],[1528989997,null],[1528990001,null],[1528990004,null],[1528990008,null],[1528990012,null],[1528990015,null],[1528990019,[2387,2387,2387,2387,2387,2387,2387,2387,2387,2387]],[1528990022,null],[1528990026,null],[1528990030,[1782,1782,1782,1782,1782,1782,1782,1782,1782,1782]],[1528990033,null],[1528990037,null],[1528990040,[1411,1411,1411,1411,1411,1411,1411,1411,1411,1411]],[1528990044,null],[1528990048,null],[1528990051,null],[1528990055,null],[1528990058,null],[1528990062,null],[1528990066,null],[1528990069,null],[1528990073,null],[1528990076,[1192,1192,1192,1192,1192,1192,1192,1192,1192,1192]],[1528990080,[1893,1893,1893,1893,1893,1893,1893,1893,1893,1893]],[1528990084,null],[1528990087,null],[1528990091,[868,868,868,868,868,868,868,868,868,868]],[1528990094,null],[1528990098,[1158,1158,1158,1158,1158,1158,1158,1158,1158,1158]],[1528990102,null],[1528990105,null],[1528990109,null],[1528990112,null],[1528990116,null],[1528990119,null],[1528990123,null],[1528990127,[1120,1120,1120,1120,1120,1120,1120,1120,1120,1120]],[1528990130,null],[1528990134,[1714,1714,1714,1714,1714,1714,1714,1714,1714,1714]],[1528990137,null],[1528990141,[57,453,850,1247,1326,1405,1485,1564,1628,1644]],[1528990145,null],[1528990148,null],[1528990152,null],[1528990155,[910,910,910,910,910,910,910,910,910,910]],[1528990159,null],[1528990163,null],[1528990166,null],[1528990170,[1053,1053,1053,1053,1053,1053,1053,1053,1053,1053]],[1528990173,null],[1528990177,null],[1528990181,null],[1528990184,null],[1528990188,null],[1528990191,[1050,1050,1050,1050,1050,1050,1050,1050,1050,1050]],[1528990195,null],[1528990199,null],[1528990202,null],[1528990206,[2805,2805,2805,2805,2805,2805,2805,2805,2805,2805]],[1528990209,null],[1528990213,[2225,2225,2225,2225,2225,2225,2225,2225,2225,2225]],[1528990217,[56,56,56,56,56,56,56,56,56,56]],[1528990220,null],[1528990224,[892,892,892,892,892,892,892,892,892,892]],[1528990227,null],[1528990231,null],[1528990235,null],[1528990238,null],[1528990242,null],[1528990245,null],[1528990249,null],[1528990253,null],[1528990256,[1661,1661,1661,1661,1661,1661,1661,1661,1661,1661]],[1528990260,null],[1528990263,null],[1528990267,[1696,1696,1696,1696,1696,1696,1696,1696,1696,1696]],[1528990271,[1780,1780,1780,1780,1780,1780,1780,1780,1780,1780]],[1528990274,null],[1528990278,null],[1528990281,null],[1528990285,[42,474,906,1338,1424,1510,1597,1683,1752,1770]],[1528990289,null],[1528990292,[835,835,835,835,835,835,835,835,835,835]],[1528990296,null],[1528990299,null],[1528990303,null],[1528990307,null],[1528990310,null],[1528990314,null],[1528990317,null],[1528990321,null],[1528990325,null],[1528990328,null],[1528990332,[968,968,968,968,968,968,968,968,968,968]],[1528990335,null],[1528990339,null],[1528990343,[1539,1539,1539,1539,1539,1539,1539,1539,1539,1539]],[1528990346,null],[1528990350,[2487,2487,2487,2487,2487,2487,2487,2487,2487,2487]],[1528990353,null],[1528990357,null],[1528990360,null],[1528990364,null],[1528990368,null],[1528990371,null],[1528990375,null],[1528990378,null],[1528990382,[1118,1118,1118,1118,1118,1118,1118,1118,1118,1118]],[1528990386,null],[1528990389,null],[1528990393,null],[1528990396,[1540,1540,1540,1540,1540,1540,1540,1540,1540,1540]],[1528990400,[1653,1653,1653,1653,1653,1653,1653,1653,1653,1653]],[1528990404,null],[1528990407,null],[1528990411,null],[1528990414,null],[1528990418,null],[1528990422,null],[1528990425,[44,492,941,1390,1480,1569,1659,1749,1821,1839]],[1528990429,null],[1528990432,null],[1528990436,null],[1528990440,null],[1528990443,[2164,2164,2164,2164,2164,2164,2164,2164,2164,2164]],[1528990447,null],[1528990450,null],[1528990454,[859,859,859,859,859,859,859,859,859,859]],[1528990458,null],[1528990461,[6281,6281,6281,6281,6281,6281,6281,6281,6281,6281]],[1528990465,null],[1528990468,null],[1528990472,null],[1528990476,null],[1528990479,[1440,1440,1440,1440,1440,1440,1440,1440,1440,1440]],[1528990483,null],[1528990486,[831,831,831,831,831,831,831,831,831,831]],[1528990490,null],[1528990494,null],[1528990497,null],[1528990501,null],[1528990504,null],[1528990508,null],[1528990512,null],[1528990515,null],[1528990519,[1562,1562,1562,1562,1562,1562,1562,1562,1562,1562]],[1528990522,null],[1528990526,null],[1528990530,[2430,2430,2430,2430,2430,2430,2430,2430,2430,2430]],[1528990533,[1149,1149,1149,1149,1149,1149,1149,1149,1149,1149]],[1528990537,null],[1528990540,null],[1528990544,null],[1528990548,null],[1528990551,null],[1528990555,[1626,1626,1626,1626,1626,1626,1626,1626,1626,1626]],[1528990558,null],[1528990562,[953,953,953,953,953,953,953,953,953,953]],[1528990566,null],[1528990569,null],[1528990573,[1702,1702,1702,1702,1702,1702,1702,1702,1702,1702]],[1528990576,null],[1528990580,null],[1528990584,null],[1528990587,null],[1528990591,null],[1528990594,[1051,1051,1051,1051,1051,1051,1051,1051,1051,1051]],[1528990598,null],[1528990601,[1394,1394,1394,1394,1394,1394,1394,1394,1394,1394]],[1528990605,null],[1528990609,null],[1528990612,null],[1528990616,null],[1528990619,[775,775,775,775,775,775,775,775,775,775]],[1528990623,[1689,1689,1689,1689,1689,1689,1689,1689,1689,1689]],[1528990627,null],[1528990630,null],[1528990634,[1710,1710,1710,1710,1710,1710,1710,1710,1710,1710]],[1528990637,null],[1528990641,null],[1528990645,null],[1528990648,null],[1528990652,[1644,1644,1644,1644,1644,1644,1644,1644,1644,1644]],[1528990655,null],[1528990659,null],[1528990663,[4379,4379,4379,4379,4379,4379,4379,4379,4379,4379]],[1528990666,null],[1528990670,null],[1528990673,[1222,1222,1222,1222,1222,1222,1222,1222,1222,1222]],[1528990677,null],[1528990681,null],[1528990684,null],[1528990688,[2216,2216,2216,2216,2216,2216,2216,2216,2216,2216]],[1528990691,null],[1528990695,[1297,1297,1297,1297,1297,1297,1297,1297,1297,1297]],[1528990699,[103,103,103,103,103,103,103,103,103,103]],[1528990702,null],[1528990706,null],[1528990709,null],[1528990713,null],[1528990717,null],[1528990720,null],[1528990724,null],[1528990727,[1478,1478,1478,1478,1478,1478,1478,1478,1478,1478]],[1528990731,null],[1528990735,[1613,1613,1613,1613,1613,1613,1613,1613,1613,1613]],[1528990738,null],[1528990742,null],[1528990745,null],[1528990749,null],[1528990753,[1181,1181,1181,1181,1181,1181,1181,1181,1181,1181]],[1528990756,[2674,2674,2674,2674,2674,2674,2674,2674,2674,2674]],[1528990760,null],[1528990763,null],[1528990767,null],[1528990771,null],[1528990774,[1701,1701,1701,1701,1701,1701,1701,1701,1701,1701]],[1528990778,[2464,2464,2464,2464,2464,2464,2464,2464,2464,2464]],[1528990781,null],[1528990785,null],[1528990789,null],[1528990792,null],[1528990796,null],[1528990799,[7327,7327,7327,7327,7327,7327,7327,7327,7327,7327]],[1528990803,null],[1528990807,null],[1528990810,null],[1528990814,null],[1528990817,null],[1528990821,[105,640,1175,1710,1817,1924,2031,2138,2224,2246]],[1528990825,[1596,1596,1596,1596,1596,1596,1596,1596,1596,1596]],[1528990828,null],[1528990832,null],[1528990835,null],[1528990839,null],[1528990842,null],[1528990846,null],[1528990850,null],[1528990853,null],[1528990857,[3074,3074,3074,3074,3074,3074,3074,3074,3074,3074]],[1528990860,[61,61,61,61,61,61,61,61,61,61]],[1528990864,null],[1528990868,null],[1528990871,null],[1528990875,null],[1528990878,null],[1528990882,null],[1528990886,null],[1528990889,[1183,1183,1183,1183,1183,1183,1183,1183,1183,1183]],[1528990893,null],[1528990896,[1946,1946,1946,1946,1946,1946,1946,1946,1946,1946]],[1528990900,[1631,1631,1631,1631,1631,1631,1631,1631,1631,1631]],[1528990904,null],[1528990907,null],[1528990911,null],[1528990914,null],[1528990918,null],[1528990922,null],[1528990925,[2370,2370,2370,2370,2370,2370,2370,2370,2370,2370]],[1528990929,null],[1528990932,null],[1528990936,null],[1528990940,null],[1528990943,null],[1528990947,null],[1528990950,[1334,1334,1334,1334,1334,1334,1334,1334,1334,1334]],[1528990954,null],[1528990958,null],[1528990961,[1594,1594,1594,1594,1594,1594,1594,1594,1594,1594]],[1528990965,[178,178,178,178,178,178,178,178,178,178]],[1528990968,null],[1528990972,null],[1528990976,[2270,2270,2270,2270,2270,2270,2270,2270,2270,2270]],[1528990979,null],[1528990983,null],[1528990986,null],[1528990990,[5611,5611,5611,5611,5611,5611,5611,5611,5611,5611]],[1528990994,null],[1528990997,null],[1528991001,null],[1528991004,null],[1528991008,[1600,1600,1600,1600,1600,1600,1600,1600,1600,1600]],[1528991012,null],[1528991015,[1004,1004,1004,1004,1004,1004,1004,1004,1004,1004]]]);
var responseTimeChart = new Highcharts.StockChart({
chart: {
renderTo: 'container',
zoomType: 'x'
},
colors: ['#C4FD90', '#7FF77F', '#6FF2AD', '#60ECE5', '#51A8E7', '#4353E2', '#7335DC', '#BC28D7', '#D11C97', '#C73905', 'Orange'],
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
y: -65,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
navigator: { baseSeries: 9 },
rangeSelector: {
rangeSelector: { align: "left" },
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Response Time (ms)',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
plotOptions: {
arearange: { lineWidth: 1 },
series: {
dataGrouping: { enabled: false }
}
},
series: [
{
pointInterval: 1000,
name: 'min',
data: responseTimePercentiles[0],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 10
},
{
pointInterval: 1000,
name: '25%',
data: responseTimePercentiles[1],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 9
},
{
pointInterval: 1000,
name: '50%',
data: responseTimePercentiles[2],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 8
},
{
pointInterval: 1000,
name: '75%',
data: responseTimePercentiles[3],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 7
},
{
pointInterval: 1000,
name: '80%',
data: responseTimePercentiles[4],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 6
},
{
pointInterval: 1000,
name: '85%',
data: responseTimePercentiles[5],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 5
},
{
pointInterval: 1000,
name: '90%',
data: responseTimePercentiles[6],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 4
},
{
pointInterval: 1000,
name: '95%',
data: responseTimePercentiles[7],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 3
},
{
pointInterval: 1000,
name: '99%',
data: responseTimePercentiles[8],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 2
},
{
pointInterval: 1000,
name: 'max',
data: responseTimePercentiles[9],
tooltip: { yDecimals: 0, ySuffix: 'ms' },
type : 'area',
yAxis: 0,
zIndex: 1
},
allUsersData
]
});
responseTimeChart.setTitle({
text: '<span class="chart_title chart_title_">Response Time Percentiles over Time (OK)</span>',
useHTML: true
});
var container_requests = unpack([[1528987422,[0,0, 0]],[1528987425,[0,0, 0]],[1528987429,[0,0, 0]],[1528987433,[0,0, 0]],[1528987436,[0,0, 0]],[1528987440,[0,0, 0]],[1528987443,[0,0, 0]],[1528987447,[0,0, 0]],[1528987451,[0,0, 0]],[1528987454,[0,0, 0]],[1528987458,[0,0, 0]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[0,0, 0]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[0,0, 0]],[1528987486,[0,0, 0]],[1528987490,[0,0, 0]],[1528987494,[0,0, 0]],[1528987497,[0,0, 0]],[1528987501,[0,0, 0]],[1528987504,[0,0, 0]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[0,0, 0]],[1528987519,[0,0, 0]],[1528987522,[0,0, 0]],[1528987526,[0,0, 0]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[0,0, 0]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[0,0, 0]],[1528987566,[1,1, 0]],[1528987569,[0,0, 0]],[1528987573,[0,0, 0]],[1528987576,[0,0, 0]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[0,0, 0]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[0,0, 0]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[0,0, 0]],[1528987620,[0,0, 0]],[1528987623,[1,0, 1]],[1528987627,[0,0, 0]],[1528987630,[0,0, 0]],[1528987634,[0,0, 0]],[1528987638,[0,0, 0]],[1528987641,[1,0, 1]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[0,0, 0]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[0,0, 0]],[1528987674,[1,0, 1]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[0,0, 0]],[1528987688,[0,0, 0]],[1528987692,[0,0, 0]],[1528987695,[0,0, 0]],[1528987699,[0,0, 0]],[1528987702,[0,0, 0]],[1528987706,[0,0, 0]],[1528987710,[0,0, 0]],[1528987713,[0,0, 0]],[1528987717,[0,0, 0]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[0,0, 0]],[1528987742,[0,0, 0]],[1528987745,[0,0, 0]],[1528987749,[0,0, 0]],[1528987753,[0,0, 0]],[1528987756,[1,0, 1]],[1528987760,[0,0, 0]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[0,0, 0]],[1528987774,[0,0, 0]],[1528987778,[0,0, 0]],[1528987781,[0,0, 0]],[1528987785,[0,0, 0]],[1528987789,[0,0, 0]],[1528987792,[0,0, 0]],[1528987796,[0,0, 0]],[1528987799,[0,0, 0]],[1528987803,[0,0, 0]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[0,0, 0]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[0,0, 0]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[0,0, 0]],[1528987850,[0,0, 0]],[1528987853,[0,0, 0]],[1528987857,[0,0, 0]],[1528987861,[0,0, 0]],[1528987864,[0,0, 0]],[1528987868,[0,0, 0]],[1528987871,[0,0, 0]],[1528987875,[0,0, 0]],[1528987879,[0,0, 0]],[1528987882,[0,0, 0]],[1528987886,[0,0, 0]],[1528987889,[0,0, 0]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[0,0, 0]],[1528987907,[0,0, 0]],[1528987911,[0,0, 0]],[1528987915,[0,0, 0]],[1528987918,[0,0, 0]],[1528987922,[0,0, 0]],[1528987925,[0,0, 0]],[1528987929,[0,0, 0]],[1528987933,[0,0, 0]],[1528987936,[0,0, 0]],[1528987940,[0,0, 0]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[0,0, 0]],[1528987961,[0,0, 0]],[1528987965,[0,0, 0]],[1528987968,[0,0, 0]],[1528987972,[0,0, 0]],[1528987976,[0,0, 0]],[1528987979,[0,0, 0]],[1528987983,[0,0, 0]],[1528987986,[0,0, 0]],[1528987990,[0,0, 0]],[1528987994,[0,0, 0]],[1528987997,[0,0, 0]],[1528988001,[0,0, 0]],[1528988004,[0,0, 0]],[1528988008,[0,0, 0]],[1528988012,[0,0, 0]],[1528988015,[0,0, 0]],[1528988019,[0,0, 0]],[1528988022,[0,0, 0]],[1528988026,[0,0, 0]],[1528988030,[0,0, 0]],[1528988033,[0,0, 0]],[1528988037,[0,0, 0]],[1528988040,[0,0, 0]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[0,0, 0]],[1528988055,[0,0, 0]],[1528988058,[0,0, 0]],[1528988062,[0,0, 0]],[1528988066,[0,0, 0]],[1528988069,[0,0, 0]],[1528988073,[0,0, 0]],[1528988076,[0,0, 0]],[1528988080,[0,0, 0]],[1528988084,[0,0, 0]],[1528988087,[0,0, 0]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[0,0, 0]],[1528988102,[0,0, 0]],[1528988105,[0,0, 0]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[0,0, 0]],[1528988120,[0,0, 0]],[1528988123,[0,0, 0]],[1528988127,[1,0, 1]],[1528988130,[0,0, 0]],[1528988134,[0,0, 0]],[1528988138,[0,0, 0]],[1528988141,[0,0, 0]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[0,0, 0]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[0,0, 0]],[1528988184,[0,0, 0]],[1528988188,[0,0, 0]],[1528988191,[1,0, 1]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[0,0, 0]],[1528988206,[0,0, 0]],[1528988209,[0,0, 0]],[1528988213,[0,0, 0]],[1528988217,[0,0, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[0,0, 0]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[0,0, 0]],[1528988249,[0,0, 0]],[1528988253,[0,0, 0]],[1528988256,[0,0, 0]],[1528988260,[0,0, 0]],[1528988263,[0,0, 0]],[1528988267,[0,0, 0]],[1528988271,[0,0, 0]],[1528988274,[0,0, 0]],[1528988278,[0,0, 0]],[1528988281,[0,0, 0]],[1528988285,[0,0, 0]],[1528988289,[0,0, 0]],[1528988292,[0,0, 0]],[1528988296,[0,0, 0]],[1528988299,[0,0, 0]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[0,0, 0]],[1528988314,[0,0, 0]],[1528988317,[0,0, 0]],[1528988321,[0,0, 0]],[1528988325,[0,0, 0]],[1528988328,[0,0, 0]],[1528988332,[1,0, 1]],[1528988335,[0,0, 0]],[1528988339,[0,0, 0]],[1528988343,[0,0, 0]],[1528988346,[0,0, 0]],[1528988350,[1,0, 1]],[1528988353,[0,0, 0]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[0,0, 0]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[0,0, 0]],[1528988386,[0,0, 0]],[1528988389,[1,1, 0]],[1528988393,[0,0, 0]],[1528988397,[0,0, 0]],[1528988400,[0,0, 0]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[0,0, 0]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[0,0, 0]],[1528988436,[0,0, 0]],[1528988440,[0,0, 0]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[0,0, 0]],[1528988454,[0,0, 0]],[1528988458,[1,1, 0]],[1528988461,[0,0, 0]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[0,0, 0]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[0,0, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[0,0, 0]],[1528988548,[0,0, 0]],[1528988551,[0,0, 0]],[1528988555,[0,0, 0]],[1528988558,[0,0, 0]],[1528988562,[0,0, 0]],[1528988566,[0,0, 0]],[1528988569,[0,0, 0]],[1528988573,[0,0, 0]],[1528988576,[0,0, 0]],[1528988580,[0,0, 0]],[1528988584,[0,0, 0]],[1528988587,[0,0, 0]],[1528988591,[0,0, 0]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[0,0, 0]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[0,0, 0]],[1528988638,[0,0, 0]],[1528988641,[0,0, 0]],[1528988645,[0,0, 0]],[1528988648,[0,0, 0]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[0,0, 0]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[0,0, 0]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[0,0, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[0,0, 0]],[1528988745,[0,0, 0]],[1528988749,[0,0, 0]],[1528988753,[0,0, 0]],[1528988756,[0,0, 0]],[1528988760,[0,0, 0]],[1528988763,[0,0, 0]],[1528988767,[0,0, 0]],[1528988771,[0,0, 0]],[1528988774,[0,0, 0]],[1528988778,[0,0, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[1,0, 1]],[1528988817,[0,0, 0]],[1528988821,[0,0, 0]],[1528988825,[0,0, 0]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[0,0, 0]],[1528988853,[0,0, 0]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[0,0, 0]],[1528988868,[0,0, 0]],[1528988871,[0,0, 0]],[1528988875,[0,0, 0]],[1528988879,[0,0, 0]],[1528988882,[0,0, 0]],[1528988886,[0,0, 0]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[0,0, 0]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[0,0, 0]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[0,0, 0]],[1528988932,[0,0, 0]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[0,0, 0]],[1528988947,[0,0, 0]],[1528988950,[0,0, 0]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[0,0, 0]],[1528988965,[0,0, 0]],[1528988968,[0,0, 0]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[0,0, 0]],[1528988983,[0,0, 0]],[1528988986,[0,0, 0]],[1528988990,[0,0, 0]],[1528988994,[0,0, 0]],[1528988997,[0,0, 0]],[1528989001,[0,0, 0]],[1528989004,[0,0, 0]],[1528989008,[0,0, 0]],[1528989012,[1,0, 1]],[1528989015,[0,0, 0]],[1528989019,[0,0, 0]],[1528989022,[0,0, 0]],[1528989026,[0,0, 0]],[1528989030,[0,0, 0]],[1528989033,[0,0, 0]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[0,0, 0]],[1528989051,[0,0, 0]],[1528989055,[0,0, 0]],[1528989058,[0,0, 0]],[1528989062,[0,0, 0]],[1528989066,[0,0, 0]],[1528989069,[0,0, 0]],[1528989073,[0,0, 0]],[1528989076,[0,0, 0]],[1528989080,[0,0, 0]],[1528989084,[0,0, 0]],[1528989087,[0,0, 0]],[1528989091,[0,0, 0]],[1528989094,[0,0, 0]],[1528989098,[0,0, 0]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[0,0, 0]],[1528989112,[0,0, 0]],[1528989116,[0,0, 0]],[1528989120,[0,0, 0]],[1528989123,[0,0, 0]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[0,0, 0]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[0,0, 0]],[1528989159,[0,0, 0]],[1528989163,[0,0, 0]],[1528989166,[0,0, 0]],[1528989170,[0,0, 0]],[1528989173,[1,0, 1]],[1528989177,[0,0, 0]],[1528989181,[0,0, 0]],[1528989184,[0,0, 0]],[1528989188,[0,0, 0]],[1528989191,[0,0, 0]],[1528989195,[0,0, 0]],[1528989199,[0,0, 0]],[1528989202,[0,0, 0]],[1528989206,[0,0, 0]],[1528989209,[0,0, 0]],[1528989213,[0,0, 0]],[1528989217,[0,0, 0]],[1528989220,[0,0, 0]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[0,0, 0]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[0,0, 0]],[1528989245,[0,0, 0]],[1528989249,[0,0, 0]],[1528989253,[0,0, 0]],[1528989256,[0,0, 0]],[1528989260,[0,0, 0]],[1528989263,[1,0, 1]],[1528989267,[0,0, 0]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[0,0, 0]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[0,0, 0]],[1528989292,[0,0, 0]],[1528989296,[0,0, 0]],[1528989299,[0,0, 0]],[1528989303,[0,0, 0]],[1528989307,[0,0, 0]],[1528989310,[0,0, 0]],[1528989314,[0,0, 0]],[1528989317,[0,0, 0]],[1528989321,[0,0, 0]],[1528989325,[0,0, 0]],[1528989328,[0,0, 0]],[1528989332,[0,0, 0]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[0,0, 0]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[0,0, 0]],[1528989357,[0,0, 0]],[1528989361,[0,0, 0]],[1528989364,[0,0, 0]],[1528989368,[0,0, 0]],[1528989371,[0,0, 0]],[1528989375,[0,0, 0]],[1528989379,[0,0, 0]],[1528989382,[0,0, 0]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[0,0, 0]],[1528989396,[0,0, 0]],[1528989400,[0,0, 0]],[1528989404,[0,0, 0]],[1528989407,[0,0, 0]],[1528989411,[0,0, 0]],[1528989414,[0,0, 0]],[1528989418,[0,0, 0]],[1528989422,[0,0, 0]],[1528989425,[0,0, 0]],[1528989429,[0,0, 0]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[0,0, 0]],[1528989447,[0,0, 0]],[1528989450,[0,0, 0]],[1528989454,[1,0, 1]],[1528989458,[0,0, 0]],[1528989461,[0,0, 0]],[1528989465,[0,0, 0]],[1528989468,[0,0, 0]],[1528989472,[0,0, 0]],[1528989476,[0,0, 0]],[1528989479,[0,0, 0]],[1528989483,[0,0, 0]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[0,0, 0]],[1528989497,[0,0, 0]],[1528989501,[0,0, 0]],[1528989504,[0,0, 0]],[1528989508,[0,0, 0]],[1528989512,[0,0, 0]],[1528989515,[0,0, 0]],[1528989519,[0,0, 0]],[1528989522,[0,0, 0]],[1528989526,[0,0, 0]],[1528989530,[0,0, 0]],[1528989533,[0,0, 0]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[0,0, 0]],[1528989555,[0,0, 0]],[1528989558,[0,0, 0]],[1528989562,[0,0, 0]],[1528989566,[1,0, 1]],[1528989569,[0,0, 0]],[1528989573,[0,0, 0]],[1528989576,[0,0, 0]],[1528989580,[0,0, 0]],[1528989584,[0,0, 0]],[1528989587,[0,0, 0]],[1528989591,[0,0, 0]],[1528989594,[0,0, 0]],[1528989598,[0,0, 0]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[0,0, 0]],[1528989612,[1,0, 1]],[1528989616,[0,0, 0]],[1528989620,[0,0, 0]],[1528989623,[0,0, 0]],[1528989627,[0,0, 0]],[1528989630,[0,0, 0]],[1528989634,[0,0, 0]],[1528989637,[0,0, 0]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[0,0, 0]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[0,0, 0]],[1528989681,[1,0, 1]],[1528989684,[0,0, 0]],[1528989688,[0,0, 0]],[1528989691,[0,0, 0]],[1528989695,[0,0, 0]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[0,0, 0]],[1528989717,[0,0, 0]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[0,0, 0]],[1528989735,[0,0, 0]],[1528989738,[0,0, 0]],[1528989742,[0,0, 0]],[1528989745,[0,0, 0]],[1528989749,[0,0, 0]],[1528989753,[0,0, 0]],[1528989756,[0,0, 0]],[1528989760,[0,0, 0]],[1528989763,[0,0, 0]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[0,0, 0]],[1528989778,[0,0, 0]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[0,0, 0]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[0,0, 0]],[1528989803,[0,0, 0]],[1528989807,[0,0, 0]],[1528989810,[0,0, 0]],[1528989814,[0,0, 0]],[1528989817,[0,0, 0]],[1528989821,[0,0, 0]],[1528989825,[0,0, 0]],[1528989828,[0,0, 0]],[1528989832,[0,0, 0]],[1528989835,[0,0, 0]],[1528989839,[0,0, 0]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[0,0, 0]],[1528989853,[0,0, 0]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[0,0, 0]],[1528989871,[0,0, 0]],[1528989875,[0,0, 0]],[1528989878,[0,0, 0]],[1528989882,[0,0, 0]],[1528989886,[0,0, 0]],[1528989889,[0,0, 0]],[1528989893,[0,0, 0]],[1528989896,[0,0, 0]],[1528989900,[0,0, 0]],[1528989904,[0,0, 0]],[1528989907,[0,0, 0]],[1528989911,[0,0, 0]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[0,0, 0]],[1528989925,[0,0, 0]],[1528989929,[0,0, 0]],[1528989932,[0,0, 0]],[1528989936,[0,0, 0]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[0,0, 0]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[0,0, 0]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[0,0, 0]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[0,0, 0]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[0,0, 0]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[0,0, 0]],[1528990022,[0,0, 0]],[1528990026,[0,0, 0]],[1528990030,[0,0, 0]],[1528990033,[0,0, 0]],[1528990037,[0,0, 0]],[1528990040,[0,0, 0]],[1528990044,[0,0, 0]],[1528990048,[0,0, 0]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[0,0, 0]],[1528990080,[0,0, 0]],[1528990084,[0,0, 0]],[1528990087,[0,0, 0]],[1528990091,[0,0, 0]],[1528990094,[0,0, 0]],[1528990098,[0,0, 0]],[1528990102,[0,0, 0]],[1528990105,[0,0, 0]],[1528990109,[0,0, 0]],[1528990112,[0,0, 0]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[0,0, 0]],[1528990130,[0,0, 0]],[1528990134,[0,0, 0]],[1528990137,[0,0, 0]],[1528990141,[1,0, 1]],[1528990145,[0,0, 0]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[0,0, 0]],[1528990159,[0,0, 0]],[1528990163,[0,0, 0]],[1528990166,[0,0, 0]],[1528990170,[0,0, 0]],[1528990173,[0,0, 0]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[0,0, 0]],[1528990195,[0,0, 0]],[1528990199,[0,0, 0]],[1528990202,[0,0, 0]],[1528990206,[0,0, 0]],[1528990209,[0,0, 0]],[1528990213,[0,0, 0]],[1528990217,[0,0, 0]],[1528990220,[0,0, 0]],[1528990224,[0,0, 0]],[1528990227,[0,0, 0]],[1528990231,[0,0, 0]],[1528990235,[0,0, 0]],[1528990238,[0,0, 0]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[0,0, 0]],[1528990260,[0,0, 0]],[1528990263,[0,0, 0]],[1528990267,[0,0, 0]],[1528990271,[0,0, 0]],[1528990274,[0,0, 0]],[1528990278,[0,0, 0]],[1528990281,[0,0, 0]],[1528990285,[1,0, 1]],[1528990289,[0,0, 0]],[1528990292,[0,0, 0]],[1528990296,[0,0, 0]],[1528990299,[0,0, 0]],[1528990303,[0,0, 0]],[1528990307,[0,0, 0]],[1528990310,[0,0, 0]],[1528990314,[0,0, 0]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[0,0, 0]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[0,0, 0]],[1528990350,[0,0, 0]],[1528990353,[0,0, 0]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[0,0, 0]],[1528990368,[0,0, 0]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[0,0, 0]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[0,0, 0]],[1528990396,[0,0, 0]],[1528990400,[0,0, 0]],[1528990404,[0,0, 0]],[1528990407,[0,0, 0]],[1528990411,[0,0, 0]],[1528990414,[0,0, 0]],[1528990418,[0,0, 0]],[1528990422,[0,0, 0]],[1528990425,[1,0, 1]],[1528990429,[0,0, 0]],[1528990432,[0,0, 0]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[0,0, 0]],[1528990447,[0,0, 0]],[1528990450,[0,0, 0]],[1528990454,[0,0, 0]],[1528990458,[0,0, 0]],[1528990461,[0,0, 0]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[0,0, 0]],[1528990479,[0,0, 0]],[1528990483,[0,0, 0]],[1528990486,[0,0, 0]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[0,0, 0]],[1528990501,[0,0, 0]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[0,0, 0]],[1528990522,[0,0, 0]],[1528990526,[0,0, 0]],[1528990530,[0,0, 0]],[1528990533,[0,0, 0]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[0,0, 0]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[0,0, 0]],[1528990558,[0,0, 0]],[1528990562,[0,0, 0]],[1528990566,[0,0, 0]],[1528990569,[0,0, 0]],[1528990573,[0,0, 0]],[1528990576,[0,0, 0]],[1528990580,[0,0, 0]],[1528990584,[0,0, 0]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[0,0, 0]],[1528990598,[0,0, 0]],[1528990601,[0,0, 0]],[1528990605,[0,0, 0]],[1528990609,[0,0, 0]],[1528990612,[0,0, 0]],[1528990616,[0,0, 0]],[1528990619,[0,0, 0]],[1528990623,[0,0, 0]],[1528990627,[0,0, 0]],[1528990630,[0,0, 0]],[1528990634,[0,0, 0]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[0,0, 0]],[1528990652,[0,0, 0]],[1528990655,[0,0, 0]],[1528990659,[0,0, 0]],[1528990663,[0,0, 0]],[1528990666,[0,0, 0]],[1528990670,[0,0, 0]],[1528990673,[0,0, 0]],[1528990677,[0,0, 0]],[1528990681,[0,0, 0]],[1528990684,[0,0, 0]],[1528990688,[0,0, 0]],[1528990691,[0,0, 0]],[1528990695,[0,0, 0]],[1528990699,[0,0, 0]],[1528990702,[0,0, 0]],[1528990706,[0,0, 0]],[1528990709,[0,0, 0]],[1528990713,[0,0, 0]],[1528990717,[0,0, 0]],[1528990720,[0,0, 0]],[1528990724,[0,0, 0]],[1528990727,[0,0, 0]],[1528990731,[0,0, 0]],[1528990735,[0,0, 0]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[0,0, 0]],[1528990753,[0,0, 0]],[1528990756,[0,0, 0]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[0,0, 0]],[1528990774,[0,0, 0]],[1528990778,[0,0, 0]],[1528990781,[0,0, 0]],[1528990785,[0,0, 0]],[1528990789,[0,0, 0]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[0,0, 0]],[1528990803,[0,0, 0]],[1528990807,[0,0, 0]],[1528990810,[0,0, 0]],[1528990814,[0,0, 0]],[1528990817,[0,0, 0]],[1528990821,[1,0, 1]],[1528990825,[0,0, 0]],[1528990828,[0,0, 0]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[0,0, 0]],[1528990842,[0,0, 0]],[1528990846,[0,0, 0]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[0,0, 0]],[1528990860,[0,0, 0]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[0,0, 0]],[1528990878,[0,0, 0]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[0,0, 0]],[1528990893,[0,0, 0]],[1528990896,[0,0, 0]],[1528990900,[0,0, 0]],[1528990904,[0,0, 0]],[1528990907,[0,0, 0]],[1528990911,[0,0, 0]],[1528990914,[0,0, 0]],[1528990918,[0,0, 0]],[1528990922,[0,0, 0]],[1528990925,[0,0, 0]],[1528990929,[0,0, 0]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[0,0, 0]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[0,0, 0]],[1528990954,[0,0, 0]],[1528990958,[0,0, 0]],[1528990961,[0,0, 0]],[1528990965,[0,0, 0]],[1528990968,[0,0, 0]],[1528990972,[0,0, 0]],[1528990976,[0,0, 0]],[1528990979,[0,0, 0]],[1528990983,[0,0, 0]],[1528990986,[0,0, 0]],[1528990990,[0,0, 0]],[1528990994,[0,0, 0]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[0,0, 0]],[1528991008,[0,0, 0]],[1528991012,[0,0, 0]],[1528991015,[0,0, 0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_requests',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Number of requests',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_requests[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of requests per second</span>',
useHTML: true
});
var container_responses = unpack([[1528987422,[0,0, 0]],[1528987425,[0,0, 0]],[1528987429,[0,0, 0]],[1528987433,[1,0, 1]],[1528987436,[0,0, 0]],[1528987440,[1,0, 1]],[1528987443,[0,0, 0]],[1528987447,[0,0, 0]],[1528987451,[0,0, 0]],[1528987454,[0,0, 0]],[1528987458,[0,0, 0]],[1528987461,[0,0, 0]],[1528987465,[0,0, 0]],[1528987469,[0,0, 0]],[1528987472,[0,0, 0]],[1528987476,[0,0, 0]],[1528987479,[0,0, 0]],[1528987483,[0,0, 0]],[1528987486,[1,0, 1]],[1528987490,[0,0, 0]],[1528987494,[0,0, 0]],[1528987497,[0,0, 0]],[1528987501,[0,0, 0]],[1528987504,[0,0, 0]],[1528987508,[0,0, 0]],[1528987512,[0,0, 0]],[1528987515,[0,0, 0]],[1528987519,[0,0, 0]],[1528987522,[0,0, 0]],[1528987526,[0,0, 0]],[1528987530,[0,0, 0]],[1528987533,[0,0, 0]],[1528987537,[0,0, 0]],[1528987540,[0,0, 0]],[1528987544,[0,0, 0]],[1528987548,[0,0, 0]],[1528987551,[0,0, 0]],[1528987555,[0,0, 0]],[1528987558,[0,0, 0]],[1528987562,[0,0, 0]],[1528987566,[1,1, 0]],[1528987569,[0,0, 0]],[1528987573,[0,0, 0]],[1528987576,[0,0, 0]],[1528987580,[0,0, 0]],[1528987584,[0,0, 0]],[1528987587,[0,0, 0]],[1528987591,[0,0, 0]],[1528987594,[0,0, 0]],[1528987598,[0,0, 0]],[1528987602,[0,0, 0]],[1528987605,[0,0, 0]],[1528987609,[0,0, 0]],[1528987612,[0,0, 0]],[1528987616,[0,0, 0]],[1528987620,[0,0, 0]],[1528987623,[1,0, 1]],[1528987627,[0,0, 0]],[1528987630,[0,0, 0]],[1528987634,[0,0, 0]],[1528987638,[0,0, 0]],[1528987641,[0,0, 0]],[1528987645,[0,0, 0]],[1528987648,[0,0, 0]],[1528987652,[0,0, 0]],[1528987656,[0,0, 0]],[1528987659,[0,0, 0]],[1528987663,[0,0, 0]],[1528987666,[0,0, 0]],[1528987670,[0,0, 0]],[1528987674,[1,0, 1]],[1528987677,[0,0, 0]],[1528987681,[0,0, 0]],[1528987684,[0,0, 0]],[1528987688,[0,0, 0]],[1528987692,[0,0, 0]],[1528987695,[0,0, 0]],[1528987699,[0,0, 0]],[1528987702,[0,0, 0]],[1528987706,[0,0, 0]],[1528987710,[0,0, 0]],[1528987713,[0,0, 0]],[1528987717,[0,0, 0]],[1528987720,[0,0, 0]],[1528987724,[0,0, 0]],[1528987727,[0,0, 0]],[1528987731,[0,0, 0]],[1528987735,[0,0, 0]],[1528987738,[0,0, 0]],[1528987742,[0,0, 0]],[1528987745,[0,0, 0]],[1528987749,[0,0, 0]],[1528987753,[0,0, 0]],[1528987756,[1,0, 1]],[1528987760,[0,0, 0]],[1528987763,[0,0, 0]],[1528987767,[0,0, 0]],[1528987771,[0,0, 0]],[1528987774,[0,0, 0]],[1528987778,[0,0, 0]],[1528987781,[0,0, 0]],[1528987785,[0,0, 0]],[1528987789,[0,0, 0]],[1528987792,[0,0, 0]],[1528987796,[0,0, 0]],[1528987799,[0,0, 0]],[1528987803,[0,0, 0]],[1528987807,[0,0, 0]],[1528987810,[0,0, 0]],[1528987814,[0,0, 0]],[1528987817,[1,0, 1]],[1528987821,[0,0, 0]],[1528987825,[0,0, 0]],[1528987828,[0,0, 0]],[1528987832,[0,0, 0]],[1528987835,[0,0, 0]],[1528987839,[0,0, 0]],[1528987843,[0,0, 0]],[1528987846,[0,0, 0]],[1528987850,[0,0, 0]],[1528987853,[0,0, 0]],[1528987857,[0,0, 0]],[1528987861,[0,0, 0]],[1528987864,[0,0, 0]],[1528987868,[0,0, 0]],[1528987871,[0,0, 0]],[1528987875,[0,0, 0]],[1528987879,[0,0, 0]],[1528987882,[0,0, 0]],[1528987886,[0,0, 0]],[1528987889,[0,0, 0]],[1528987893,[0,0, 0]],[1528987897,[0,0, 0]],[1528987900,[0,0, 0]],[1528987904,[0,0, 0]],[1528987907,[0,0, 0]],[1528987911,[0,0, 0]],[1528987915,[0,0, 0]],[1528987918,[0,0, 0]],[1528987922,[0,0, 0]],[1528987925,[0,0, 0]],[1528987929,[0,0, 0]],[1528987933,[0,0, 0]],[1528987936,[0,0, 0]],[1528987940,[0,0, 0]],[1528987943,[0,0, 0]],[1528987947,[0,0, 0]],[1528987951,[0,0, 0]],[1528987954,[0,0, 0]],[1528987958,[0,0, 0]],[1528987961,[0,0, 0]],[1528987965,[0,0, 0]],[1528987968,[0,0, 0]],[1528987972,[0,0, 0]],[1528987976,[0,0, 0]],[1528987979,[0,0, 0]],[1528987983,[0,0, 0]],[1528987986,[0,0, 0]],[1528987990,[0,0, 0]],[1528987994,[0,0, 0]],[1528987997,[0,0, 0]],[1528988001,[0,0, 0]],[1528988004,[0,0, 0]],[1528988008,[0,0, 0]],[1528988012,[0,0, 0]],[1528988015,[0,0, 0]],[1528988019,[0,0, 0]],[1528988022,[0,0, 0]],[1528988026,[0,0, 0]],[1528988030,[0,0, 0]],[1528988033,[0,0, 0]],[1528988037,[0,0, 0]],[1528988040,[0,0, 0]],[1528988044,[0,0, 0]],[1528988048,[0,0, 0]],[1528988051,[0,0, 0]],[1528988055,[0,0, 0]],[1528988058,[0,0, 0]],[1528988062,[0,0, 0]],[1528988066,[0,0, 0]],[1528988069,[0,0, 0]],[1528988073,[0,0, 0]],[1528988076,[0,0, 0]],[1528988080,[0,0, 0]],[1528988084,[0,0, 0]],[1528988087,[0,0, 0]],[1528988091,[0,0, 0]],[1528988094,[0,0, 0]],[1528988098,[0,0, 0]],[1528988102,[0,0, 0]],[1528988105,[0,0, 0]],[1528988109,[0,0, 0]],[1528988112,[0,0, 0]],[1528988116,[0,0, 0]],[1528988120,[0,0, 0]],[1528988123,[0,0, 0]],[1528988127,[1,0, 1]],[1528988130,[0,0, 0]],[1528988134,[0,0, 0]],[1528988138,[0,0, 0]],[1528988141,[0,0, 0]],[1528988145,[0,0, 0]],[1528988148,[0,0, 0]],[1528988152,[0,0, 0]],[1528988156,[0,0, 0]],[1528988159,[0,0, 0]],[1528988163,[0,0, 0]],[1528988166,[0,0, 0]],[1528988170,[0,0, 0]],[1528988174,[0,0, 0]],[1528988177,[0,0, 0]],[1528988181,[0,0, 0]],[1528988184,[0,0, 0]],[1528988188,[0,0, 0]],[1528988191,[0,0, 0]],[1528988195,[0,0, 0]],[1528988199,[0,0, 0]],[1528988202,[0,0, 0]],[1528988206,[0,0, 0]],[1528988209,[0,0, 0]],[1528988213,[0,0, 0]],[1528988217,[0,0, 0]],[1528988220,[0,0, 0]],[1528988224,[0,0, 0]],[1528988227,[0,0, 0]],[1528988231,[0,0, 0]],[1528988235,[0,0, 0]],[1528988238,[0,0, 0]],[1528988242,[0,0, 0]],[1528988245,[0,0, 0]],[1528988249,[0,0, 0]],[1528988253,[0,0, 0]],[1528988256,[0,0, 0]],[1528988260,[0,0, 0]],[1528988263,[0,0, 0]],[1528988267,[0,0, 0]],[1528988271,[0,0, 0]],[1528988274,[0,0, 0]],[1528988278,[0,0, 0]],[1528988281,[0,0, 0]],[1528988285,[0,0, 0]],[1528988289,[0,0, 0]],[1528988292,[0,0, 0]],[1528988296,[0,0, 0]],[1528988299,[0,0, 0]],[1528988303,[0,0, 0]],[1528988307,[0,0, 0]],[1528988310,[0,0, 0]],[1528988314,[0,0, 0]],[1528988317,[0,0, 0]],[1528988321,[0,0, 0]],[1528988325,[0,0, 0]],[1528988328,[0,0, 0]],[1528988332,[1,0, 1]],[1528988335,[0,0, 0]],[1528988339,[0,0, 0]],[1528988343,[0,0, 0]],[1528988346,[0,0, 0]],[1528988350,[1,0, 1]],[1528988353,[0,0, 0]],[1528988357,[0,0, 0]],[1528988361,[0,0, 0]],[1528988364,[0,0, 0]],[1528988368,[0,0, 0]],[1528988371,[0,0, 0]],[1528988375,[0,0, 0]],[1528988379,[0,0, 0]],[1528988382,[0,0, 0]],[1528988386,[0,0, 0]],[1528988389,[0,0, 0]],[1528988393,[1,1, 0]],[1528988397,[0,0, 0]],[1528988400,[0,0, 0]],[1528988404,[0,0, 0]],[1528988407,[0,0, 0]],[1528988411,[0,0, 0]],[1528988415,[0,0, 0]],[1528988418,[0,0, 0]],[1528988422,[0,0, 0]],[1528988425,[0,0, 0]],[1528988429,[0,0, 0]],[1528988432,[0,0, 0]],[1528988436,[0,0, 0]],[1528988440,[0,0, 0]],[1528988443,[0,0, 0]],[1528988447,[0,0, 0]],[1528988450,[0,0, 0]],[1528988454,[1,0, 1]],[1528988458,[0,0, 0]],[1528988461,[1,1, 0]],[1528988465,[0,0, 0]],[1528988468,[0,0, 0]],[1528988472,[0,0, 0]],[1528988476,[0,0, 0]],[1528988479,[0,0, 0]],[1528988483,[0,0, 0]],[1528988486,[0,0, 0]],[1528988490,[0,0, 0]],[1528988494,[0,0, 0]],[1528988497,[0,0, 0]],[1528988501,[0,0, 0]],[1528988504,[0,0, 0]],[1528988508,[0,0, 0]],[1528988512,[0,0, 0]],[1528988515,[0,0, 0]],[1528988519,[0,0, 0]],[1528988522,[0,0, 0]],[1528988526,[0,0, 0]],[1528988530,[0,0, 0]],[1528988533,[0,0, 0]],[1528988537,[0,0, 0]],[1528988540,[0,0, 0]],[1528988544,[0,0, 0]],[1528988548,[0,0, 0]],[1528988551,[0,0, 0]],[1528988555,[0,0, 0]],[1528988558,[0,0, 0]],[1528988562,[0,0, 0]],[1528988566,[0,0, 0]],[1528988569,[0,0, 0]],[1528988573,[0,0, 0]],[1528988576,[0,0, 0]],[1528988580,[0,0, 0]],[1528988584,[0,0, 0]],[1528988587,[0,0, 0]],[1528988591,[0,0, 0]],[1528988594,[0,0, 0]],[1528988598,[0,0, 0]],[1528988602,[0,0, 0]],[1528988605,[0,0, 0]],[1528988609,[0,0, 0]],[1528988612,[0,0, 0]],[1528988616,[0,0, 0]],[1528988620,[0,0, 0]],[1528988623,[0,0, 0]],[1528988627,[0,0, 0]],[1528988630,[0,0, 0]],[1528988634,[0,0, 0]],[1528988638,[0,0, 0]],[1528988641,[0,0, 0]],[1528988645,[0,0, 0]],[1528988648,[0,0, 0]],[1528988652,[0,0, 0]],[1528988656,[0,0, 0]],[1528988659,[0,0, 0]],[1528988663,[0,0, 0]],[1528988666,[0,0, 0]],[1528988670,[0,0, 0]],[1528988673,[0,0, 0]],[1528988677,[0,0, 0]],[1528988681,[0,0, 0]],[1528988684,[0,0, 0]],[1528988688,[0,0, 0]],[1528988691,[0,0, 0]],[1528988695,[0,0, 0]],[1528988699,[0,0, 0]],[1528988702,[0,0, 0]],[1528988706,[0,0, 0]],[1528988709,[0,0, 0]],[1528988713,[0,0, 0]],[1528988717,[0,0, 0]],[1528988720,[0,0, 0]],[1528988724,[0,0, 0]],[1528988727,[0,0, 0]],[1528988731,[0,0, 0]],[1528988735,[0,0, 0]],[1528988738,[0,0, 0]],[1528988742,[0,0, 0]],[1528988745,[0,0, 0]],[1528988749,[0,0, 0]],[1528988753,[0,0, 0]],[1528988756,[0,0, 0]],[1528988760,[0,0, 0]],[1528988763,[0,0, 0]],[1528988767,[0,0, 0]],[1528988771,[0,0, 0]],[1528988774,[0,0, 0]],[1528988778,[0,0, 0]],[1528988781,[0,0, 0]],[1528988785,[0,0, 0]],[1528988789,[0,0, 0]],[1528988792,[0,0, 0]],[1528988796,[0,0, 0]],[1528988799,[0,0, 0]],[1528988803,[0,0, 0]],[1528988807,[0,0, 0]],[1528988810,[0,0, 0]],[1528988814,[1,0, 1]],[1528988817,[0,0, 0]],[1528988821,[1,0, 1]],[1528988825,[0,0, 0]],[1528988828,[0,0, 0]],[1528988832,[0,0, 0]],[1528988835,[0,0, 0]],[1528988839,[0,0, 0]],[1528988843,[0,0, 0]],[1528988846,[0,0, 0]],[1528988850,[0,0, 0]],[1528988853,[0,0, 0]],[1528988857,[0,0, 0]],[1528988861,[0,0, 0]],[1528988864,[0,0, 0]],[1528988868,[0,0, 0]],[1528988871,[0,0, 0]],[1528988875,[0,0, 0]],[1528988879,[0,0, 0]],[1528988882,[0,0, 0]],[1528988886,[0,0, 0]],[1528988889,[0,0, 0]],[1528988893,[0,0, 0]],[1528988897,[0,0, 0]],[1528988900,[0,0, 0]],[1528988904,[0,0, 0]],[1528988907,[0,0, 0]],[1528988911,[0,0, 0]],[1528988914,[0,0, 0]],[1528988918,[0,0, 0]],[1528988922,[0,0, 0]],[1528988925,[0,0, 0]],[1528988929,[0,0, 0]],[1528988932,[0,0, 0]],[1528988936,[0,0, 0]],[1528988940,[0,0, 0]],[1528988943,[0,0, 0]],[1528988947,[0,0, 0]],[1528988950,[0,0, 0]],[1528988954,[0,0, 0]],[1528988958,[0,0, 0]],[1528988961,[0,0, 0]],[1528988965,[0,0, 0]],[1528988968,[0,0, 0]],[1528988972,[0,0, 0]],[1528988976,[0,0, 0]],[1528988979,[0,0, 0]],[1528988983,[0,0, 0]],[1528988986,[0,0, 0]],[1528988990,[0,0, 0]],[1528988994,[0,0, 0]],[1528988997,[0,0, 0]],[1528989001,[0,0, 0]],[1528989004,[0,0, 0]],[1528989008,[0,0, 0]],[1528989012,[1,0, 1]],[1528989015,[0,0, 0]],[1528989019,[0,0, 0]],[1528989022,[0,0, 0]],[1528989026,[0,0, 0]],[1528989030,[0,0, 0]],[1528989033,[0,0, 0]],[1528989037,[0,0, 0]],[1528989040,[0,0, 0]],[1528989044,[0,0, 0]],[1528989048,[0,0, 0]],[1528989051,[0,0, 0]],[1528989055,[0,0, 0]],[1528989058,[0,0, 0]],[1528989062,[0,0, 0]],[1528989066,[0,0, 0]],[1528989069,[0,0, 0]],[1528989073,[0,0, 0]],[1528989076,[0,0, 0]],[1528989080,[0,0, 0]],[1528989084,[0,0, 0]],[1528989087,[0,0, 0]],[1528989091,[0,0, 0]],[1528989094,[0,0, 0]],[1528989098,[0,0, 0]],[1528989102,[0,0, 0]],[1528989105,[0,0, 0]],[1528989109,[0,0, 0]],[1528989112,[0,0, 0]],[1528989116,[0,0, 0]],[1528989120,[0,0, 0]],[1528989123,[0,0, 0]],[1528989127,[0,0, 0]],[1528989130,[0,0, 0]],[1528989134,[0,0, 0]],[1528989138,[0,0, 0]],[1528989141,[0,0, 0]],[1528989145,[0,0, 0]],[1528989148,[0,0, 0]],[1528989152,[0,0, 0]],[1528989155,[0,0, 0]],[1528989159,[0,0, 0]],[1528989163,[0,0, 0]],[1528989166,[0,0, 0]],[1528989170,[0,0, 0]],[1528989173,[0,0, 0]],[1528989177,[0,0, 0]],[1528989181,[0,0, 0]],[1528989184,[0,0, 0]],[1528989188,[0,0, 0]],[1528989191,[0,0, 0]],[1528989195,[0,0, 0]],[1528989199,[0,0, 0]],[1528989202,[0,0, 0]],[1528989206,[0,0, 0]],[1528989209,[0,0, 0]],[1528989213,[0,0, 0]],[1528989217,[0,0, 0]],[1528989220,[0,0, 0]],[1528989224,[0,0, 0]],[1528989227,[0,0, 0]],[1528989231,[0,0, 0]],[1528989235,[0,0, 0]],[1528989238,[0,0, 0]],[1528989242,[0,0, 0]],[1528989245,[0,0, 0]],[1528989249,[0,0, 0]],[1528989253,[0,0, 0]],[1528989256,[0,0, 0]],[1528989260,[0,0, 0]],[1528989263,[0,0, 0]],[1528989267,[0,0, 0]],[1528989271,[0,0, 0]],[1528989274,[0,0, 0]],[1528989278,[0,0, 0]],[1528989281,[0,0, 0]],[1528989285,[0,0, 0]],[1528989289,[0,0, 0]],[1528989292,[1,0, 1]],[1528989296,[0,0, 0]],[1528989299,[0,0, 0]],[1528989303,[0,0, 0]],[1528989307,[0,0, 0]],[1528989310,[0,0, 0]],[1528989314,[0,0, 0]],[1528989317,[0,0, 0]],[1528989321,[1,0, 1]],[1528989325,[0,0, 0]],[1528989328,[0,0, 0]],[1528989332,[0,0, 0]],[1528989335,[0,0, 0]],[1528989339,[0,0, 0]],[1528989343,[0,0, 0]],[1528989346,[0,0, 0]],[1528989350,[0,0, 0]],[1528989353,[0,0, 0]],[1528989357,[0,0, 0]],[1528989361,[0,0, 0]],[1528989364,[0,0, 0]],[1528989368,[0,0, 0]],[1528989371,[0,0, 0]],[1528989375,[0,0, 0]],[1528989379,[0,0, 0]],[1528989382,[0,0, 0]],[1528989386,[0,0, 0]],[1528989389,[0,0, 0]],[1528989393,[0,0, 0]],[1528989396,[0,0, 0]],[1528989400,[0,0, 0]],[1528989404,[0,0, 0]],[1528989407,[0,0, 0]],[1528989411,[0,0, 0]],[1528989414,[0,0, 0]],[1528989418,[0,0, 0]],[1528989422,[0,0, 0]],[1528989425,[0,0, 0]],[1528989429,[0,0, 0]],[1528989432,[0,0, 0]],[1528989436,[0,0, 0]],[1528989440,[0,0, 0]],[1528989443,[0,0, 0]],[1528989447,[0,0, 0]],[1528989450,[0,0, 0]],[1528989454,[1,0, 1]],[1528989458,[0,0, 0]],[1528989461,[0,0, 0]],[1528989465,[0,0, 0]],[1528989468,[0,0, 0]],[1528989472,[0,0, 0]],[1528989476,[0,0, 0]],[1528989479,[0,0, 0]],[1528989483,[0,0, 0]],[1528989486,[0,0, 0]],[1528989490,[0,0, 0]],[1528989494,[0,0, 0]],[1528989497,[0,0, 0]],[1528989501,[0,0, 0]],[1528989504,[0,0, 0]],[1528989508,[0,0, 0]],[1528989512,[0,0, 0]],[1528989515,[0,0, 0]],[1528989519,[0,0, 0]],[1528989522,[0,0, 0]],[1528989526,[0,0, 0]],[1528989530,[0,0, 0]],[1528989533,[0,0, 0]],[1528989537,[0,0, 0]],[1528989540,[0,0, 0]],[1528989544,[0,0, 0]],[1528989548,[0,0, 0]],[1528989551,[0,0, 0]],[1528989555,[0,0, 0]],[1528989558,[0,0, 0]],[1528989562,[0,0, 0]],[1528989566,[0,0, 0]],[1528989569,[1,0, 1]],[1528989573,[0,0, 0]],[1528989576,[0,0, 0]],[1528989580,[0,0, 0]],[1528989584,[0,0, 0]],[1528989587,[0,0, 0]],[1528989591,[0,0, 0]],[1528989594,[0,0, 0]],[1528989598,[0,0, 0]],[1528989602,[0,0, 0]],[1528989605,[0,0, 0]],[1528989609,[0,0, 0]],[1528989612,[0,0, 0]],[1528989616,[0,0, 0]],[1528989620,[0,0, 0]],[1528989623,[0,0, 0]],[1528989627,[0,0, 0]],[1528989630,[0,0, 0]],[1528989634,[0,0, 0]],[1528989637,[0,0, 0]],[1528989641,[0,0, 0]],[1528989645,[0,0, 0]],[1528989648,[0,0, 0]],[1528989652,[0,0, 0]],[1528989655,[0,0, 0]],[1528989659,[0,0, 0]],[1528989663,[0,0, 0]],[1528989666,[0,0, 0]],[1528989670,[0,0, 0]],[1528989673,[0,0, 0]],[1528989677,[0,0, 0]],[1528989681,[1,0, 1]],[1528989684,[0,0, 0]],[1528989688,[0,0, 0]],[1528989691,[0,0, 0]],[1528989695,[0,0, 0]],[1528989699,[0,0, 0]],[1528989702,[0,0, 0]],[1528989706,[0,0, 0]],[1528989709,[0,0, 0]],[1528989713,[0,0, 0]],[1528989717,[0,0, 0]],[1528989720,[0,0, 0]],[1528989724,[0,0, 0]],[1528989727,[0,0, 0]],[1528989731,[0,0, 0]],[1528989735,[0,0, 0]],[1528989738,[0,0, 0]],[1528989742,[0,0, 0]],[1528989745,[0,0, 0]],[1528989749,[0,0, 0]],[1528989753,[0,0, 0]],[1528989756,[0,0, 0]],[1528989760,[0,0, 0]],[1528989763,[0,0, 0]],[1528989767,[0,0, 0]],[1528989771,[0,0, 0]],[1528989774,[0,0, 0]],[1528989778,[0,0, 0]],[1528989781,[0,0, 0]],[1528989785,[0,0, 0]],[1528989789,[0,0, 0]],[1528989792,[0,0, 0]],[1528989796,[0,0, 0]],[1528989799,[0,0, 0]],[1528989803,[0,0, 0]],[1528989807,[0,0, 0]],[1528989810,[0,0, 0]],[1528989814,[0,0, 0]],[1528989817,[0,0, 0]],[1528989821,[0,0, 0]],[1528989825,[0,0, 0]],[1528989828,[0,0, 0]],[1528989832,[0,0, 0]],[1528989835,[0,0, 0]],[1528989839,[0,0, 0]],[1528989843,[0,0, 0]],[1528989846,[0,0, 0]],[1528989850,[0,0, 0]],[1528989853,[0,0, 0]],[1528989857,[0,0, 0]],[1528989861,[0,0, 0]],[1528989864,[0,0, 0]],[1528989868,[0,0, 0]],[1528989871,[0,0, 0]],[1528989875,[0,0, 0]],[1528989878,[0,0, 0]],[1528989882,[0,0, 0]],[1528989886,[0,0, 0]],[1528989889,[0,0, 0]],[1528989893,[0,0, 0]],[1528989896,[0,0, 0]],[1528989900,[0,0, 0]],[1528989904,[1,0, 1]],[1528989907,[0,0, 0]],[1528989911,[0,0, 0]],[1528989914,[0,0, 0]],[1528989918,[0,0, 0]],[1528989922,[0,0, 0]],[1528989925,[0,0, 0]],[1528989929,[0,0, 0]],[1528989932,[0,0, 0]],[1528989936,[0,0, 0]],[1528989940,[0,0, 0]],[1528989943,[0,0, 0]],[1528989947,[0,0, 0]],[1528989950,[0,0, 0]],[1528989954,[0,0, 0]],[1528989958,[0,0, 0]],[1528989961,[0,0, 0]],[1528989965,[0,0, 0]],[1528989968,[0,0, 0]],[1528989972,[0,0, 0]],[1528989976,[0,0, 0]],[1528989979,[0,0, 0]],[1528989983,[0,0, 0]],[1528989986,[0,0, 0]],[1528989990,[0,0, 0]],[1528989994,[0,0, 0]],[1528989997,[0,0, 0]],[1528990001,[0,0, 0]],[1528990004,[0,0, 0]],[1528990008,[0,0, 0]],[1528990012,[0,0, 0]],[1528990015,[0,0, 0]],[1528990019,[0,0, 0]],[1528990022,[0,0, 0]],[1528990026,[0,0, 0]],[1528990030,[0,0, 0]],[1528990033,[0,0, 0]],[1528990037,[0,0, 0]],[1528990040,[0,0, 0]],[1528990044,[0,0, 0]],[1528990048,[0,0, 0]],[1528990051,[0,0, 0]],[1528990055,[0,0, 0]],[1528990058,[0,0, 0]],[1528990062,[0,0, 0]],[1528990066,[0,0, 0]],[1528990069,[0,0, 0]],[1528990073,[0,0, 0]],[1528990076,[0,0, 0]],[1528990080,[0,0, 0]],[1528990084,[0,0, 0]],[1528990087,[0,0, 0]],[1528990091,[0,0, 0]],[1528990094,[0,0, 0]],[1528990098,[0,0, 0]],[1528990102,[0,0, 0]],[1528990105,[0,0, 0]],[1528990109,[0,0, 0]],[1528990112,[0,0, 0]],[1528990116,[0,0, 0]],[1528990119,[0,0, 0]],[1528990123,[0,0, 0]],[1528990127,[0,0, 0]],[1528990130,[0,0, 0]],[1528990134,[0,0, 0]],[1528990137,[0,0, 0]],[1528990141,[1,0, 1]],[1528990145,[0,0, 0]],[1528990148,[0,0, 0]],[1528990152,[0,0, 0]],[1528990155,[0,0, 0]],[1528990159,[0,0, 0]],[1528990163,[0,0, 0]],[1528990166,[0,0, 0]],[1528990170,[0,0, 0]],[1528990173,[0,0, 0]],[1528990177,[0,0, 0]],[1528990181,[0,0, 0]],[1528990184,[0,0, 0]],[1528990188,[0,0, 0]],[1528990191,[0,0, 0]],[1528990195,[0,0, 0]],[1528990199,[0,0, 0]],[1528990202,[0,0, 0]],[1528990206,[0,0, 0]],[1528990209,[0,0, 0]],[1528990213,[0,0, 0]],[1528990217,[1,0, 1]],[1528990220,[0,0, 0]],[1528990224,[0,0, 0]],[1528990227,[0,0, 0]],[1528990231,[0,0, 0]],[1528990235,[0,0, 0]],[1528990238,[0,0, 0]],[1528990242,[0,0, 0]],[1528990245,[0,0, 0]],[1528990249,[0,0, 0]],[1528990253,[0,0, 0]],[1528990256,[0,0, 0]],[1528990260,[0,0, 0]],[1528990263,[0,0, 0]],[1528990267,[0,0, 0]],[1528990271,[0,0, 0]],[1528990274,[0,0, 0]],[1528990278,[0,0, 0]],[1528990281,[0,0, 0]],[1528990285,[1,0, 1]],[1528990289,[0,0, 0]],[1528990292,[0,0, 0]],[1528990296,[0,0, 0]],[1528990299,[0,0, 0]],[1528990303,[0,0, 0]],[1528990307,[0,0, 0]],[1528990310,[0,0, 0]],[1528990314,[0,0, 0]],[1528990317,[0,0, 0]],[1528990321,[0,0, 0]],[1528990325,[0,0, 0]],[1528990328,[0,0, 0]],[1528990332,[0,0, 0]],[1528990335,[0,0, 0]],[1528990339,[0,0, 0]],[1528990343,[0,0, 0]],[1528990346,[0,0, 0]],[1528990350,[0,0, 0]],[1528990353,[1,1, 0]],[1528990357,[0,0, 0]],[1528990360,[0,0, 0]],[1528990364,[0,0, 0]],[1528990368,[0,0, 0]],[1528990371,[0,0, 0]],[1528990375,[0,0, 0]],[1528990378,[0,0, 0]],[1528990382,[0,0, 0]],[1528990386,[0,0, 0]],[1528990389,[0,0, 0]],[1528990393,[0,0, 0]],[1528990396,[0,0, 0]],[1528990400,[0,0, 0]],[1528990404,[0,0, 0]],[1528990407,[0,0, 0]],[1528990411,[0,0, 0]],[1528990414,[0,0, 0]],[1528990418,[0,0, 0]],[1528990422,[0,0, 0]],[1528990425,[1,0, 1]],[1528990429,[0,0, 0]],[1528990432,[0,0, 0]],[1528990436,[0,0, 0]],[1528990440,[0,0, 0]],[1528990443,[0,0, 0]],[1528990447,[0,0, 0]],[1528990450,[0,0, 0]],[1528990454,[0,0, 0]],[1528990458,[0,0, 0]],[1528990461,[0,0, 0]],[1528990465,[0,0, 0]],[1528990468,[0,0, 0]],[1528990472,[0,0, 0]],[1528990476,[0,0, 0]],[1528990479,[0,0, 0]],[1528990483,[0,0, 0]],[1528990486,[0,0, 0]],[1528990490,[0,0, 0]],[1528990494,[0,0, 0]],[1528990497,[0,0, 0]],[1528990501,[0,0, 0]],[1528990504,[0,0, 0]],[1528990508,[0,0, 0]],[1528990512,[0,0, 0]],[1528990515,[0,0, 0]],[1528990519,[0,0, 0]],[1528990522,[0,0, 0]],[1528990526,[0,0, 0]],[1528990530,[0,0, 0]],[1528990533,[0,0, 0]],[1528990537,[0,0, 0]],[1528990540,[0,0, 0]],[1528990544,[0,0, 0]],[1528990548,[0,0, 0]],[1528990551,[0,0, 0]],[1528990555,[0,0, 0]],[1528990558,[0,0, 0]],[1528990562,[0,0, 0]],[1528990566,[0,0, 0]],[1528990569,[0,0, 0]],[1528990573,[0,0, 0]],[1528990576,[0,0, 0]],[1528990580,[0,0, 0]],[1528990584,[0,0, 0]],[1528990587,[0,0, 0]],[1528990591,[0,0, 0]],[1528990594,[0,0, 0]],[1528990598,[0,0, 0]],[1528990601,[0,0, 0]],[1528990605,[0,0, 0]],[1528990609,[0,0, 0]],[1528990612,[0,0, 0]],[1528990616,[0,0, 0]],[1528990619,[0,0, 0]],[1528990623,[0,0, 0]],[1528990627,[0,0, 0]],[1528990630,[0,0, 0]],[1528990634,[0,0, 0]],[1528990637,[0,0, 0]],[1528990641,[0,0, 0]],[1528990645,[0,0, 0]],[1528990648,[0,0, 0]],[1528990652,[0,0, 0]],[1528990655,[0,0, 0]],[1528990659,[0,0, 0]],[1528990663,[0,0, 0]],[1528990666,[0,0, 0]],[1528990670,[0,0, 0]],[1528990673,[0,0, 0]],[1528990677,[0,0, 0]],[1528990681,[0,0, 0]],[1528990684,[0,0, 0]],[1528990688,[0,0, 0]],[1528990691,[0,0, 0]],[1528990695,[0,0, 0]],[1528990699,[1,0, 1]],[1528990702,[0,0, 0]],[1528990706,[0,0, 0]],[1528990709,[0,0, 0]],[1528990713,[0,0, 0]],[1528990717,[0,0, 0]],[1528990720,[0,0, 0]],[1528990724,[0,0, 0]],[1528990727,[0,0, 0]],[1528990731,[0,0, 0]],[1528990735,[0,0, 0]],[1528990738,[0,0, 0]],[1528990742,[0,0, 0]],[1528990745,[0,0, 0]],[1528990749,[0,0, 0]],[1528990753,[0,0, 0]],[1528990756,[0,0, 0]],[1528990760,[0,0, 0]],[1528990763,[0,0, 0]],[1528990767,[0,0, 0]],[1528990771,[0,0, 0]],[1528990774,[0,0, 0]],[1528990778,[0,0, 0]],[1528990781,[0,0, 0]],[1528990785,[0,0, 0]],[1528990789,[0,0, 0]],[1528990792,[0,0, 0]],[1528990796,[0,0, 0]],[1528990799,[0,0, 0]],[1528990803,[0,0, 0]],[1528990807,[0,0, 0]],[1528990810,[0,0, 0]],[1528990814,[0,0, 0]],[1528990817,[0,0, 0]],[1528990821,[0,0, 0]],[1528990825,[1,0, 1]],[1528990828,[0,0, 0]],[1528990832,[0,0, 0]],[1528990835,[0,0, 0]],[1528990839,[0,0, 0]],[1528990842,[0,0, 0]],[1528990846,[0,0, 0]],[1528990850,[0,0, 0]],[1528990853,[0,0, 0]],[1528990857,[0,0, 0]],[1528990860,[1,0, 1]],[1528990864,[0,0, 0]],[1528990868,[0,0, 0]],[1528990871,[0,0, 0]],[1528990875,[0,0, 0]],[1528990878,[0,0, 0]],[1528990882,[0,0, 0]],[1528990886,[0,0, 0]],[1528990889,[0,0, 0]],[1528990893,[0,0, 0]],[1528990896,[0,0, 0]],[1528990900,[0,0, 0]],[1528990904,[0,0, 0]],[1528990907,[0,0, 0]],[1528990911,[0,0, 0]],[1528990914,[0,0, 0]],[1528990918,[0,0, 0]],[1528990922,[0,0, 0]],[1528990925,[0,0, 0]],[1528990929,[0,0, 0]],[1528990932,[0,0, 0]],[1528990936,[0,0, 0]],[1528990940,[0,0, 0]],[1528990943,[0,0, 0]],[1528990947,[0,0, 0]],[1528990950,[0,0, 0]],[1528990954,[0,0, 0]],[1528990958,[0,0, 0]],[1528990961,[0,0, 0]],[1528990965,[0,0, 0]],[1528990968,[0,0, 0]],[1528990972,[0,0, 0]],[1528990976,[0,0, 0]],[1528990979,[0,0, 0]],[1528990983,[0,0, 0]],[1528990986,[0,0, 0]],[1528990990,[0,0, 0]],[1528990994,[0,0, 0]],[1528990997,[0,0, 0]],[1528991001,[0,0, 0]],[1528991004,[0,0, 0]],[1528991008,[0,0, 0]],[1528991012,[0,0, 0]],[1528991015,[0,0, 0]]]);
var requestsChart = new Highcharts.StockChart({
chart: {
renderTo: 'container_responses',
zoomType: 'x'
},
credits: { enabled: false },
legend: {
enabled: true,
floating: true,
itemDistance: 10,
y: -285,
borderWidth: 0,
itemStyle: { fontWeight: "normal" }
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
rangeSelector: {
buttonSpacing: 0,
buttonTheme: {
fill: 'LightGrey',
padding: 1,
stroke: 'Black',
'stroke-width': 0.25,
style: {
color: 'Black',
fontWeight: 'bold',
},
states: {
stroke: 'Black',
'stroke-width': 0.25,
hover: {
fill: 'DarkGrey',
style: { color: 'black' }
},
select: {
fill: 'DarkOrange',
style: { color: 'white' }
}
}
},
buttons : [
{
type : 'minute',
count : 1,
text : '1m'
}, {
type : 'minute',
count : 10,
text : '10m'
}, {
type : 'hour',
count : 1,
text : '1h'
}, {
type : 'all',
count : 1,
text : 'All'
}
],
selected : 3,
inputEnabled : false
},
plotOptions: {
series: {
dataGrouping: { enabled: false }
},
area: {
stacking: 'normal'
}
},
xAxis: {
type: 'datetime',
ordinal: false,
maxZoom: 10000 // three days
},
yAxis:[
{
min: 0,
title: {
text: 'Number of responses',
style: { color: '#4572A7' }
},
opposite: false
}, {
min: 0,
title: {
text: 'Active Users',
style: { color: '#FF9D00' }
},
opposite: true
}
],
series: [
{
color: '#4572A7',
name: 'All',
data: container_responses[0],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
},
{
color: '#FF0000',
name: 'KO',
data: container_responses[1],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
{
color: '#A0B228',
name: 'OK',
data: container_responses[2],
tooltip: { yDecimals: 0, ySuffix: '', valueDecimals: 0 }
,type: 'area'},
allUsersData,
{
type: 'pie',
name: 'Distribution',
data: [
{name: 'OK', y: 27.0, color: '#A0B228'},{name: 'KO', y: 4.0, color: '#FF0000'}
],
center: [775, -40],
size: 70,
showInLegend: false,
dataLabels: { enabled: false },
dataGrouping: { enabled: false }
}
]
});
requestsChart.setTitle({
text: '<span class="chart_title">Number of responses per second</span>',
useHTML: true
});
var scatterChart = new Highcharts.Chart({
chart: {
renderTo: 'container_response_time_dispersion',
defaultSeriesType: 'scatter',
zoomType: 'xy'
},
credits: { enabled: false },
xAxis: {
title: {
enabled: true,
text: 'Global number of requests per second',
style: { fontWeight: 'bold' }
},
startOnTick: true,
endOnTick: true,
showLastLabel: true,
min: 0
},
title: { text: 'A title to let highcharts reserve the place for the title set later' },
yAxis: {
min: 0,
title: { text: 'Response Time' }
},
tooltip: {
formatter: function() {
return ''+ this.y +' ms at ' + this.x + ' allreq/s';
}
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'top',
x: 80,
y: 10,
floating: true,
backgroundColor: '#FFFFFF',
borderWidth: 1,
borderRadius: 3,
itemStyle: {
fontWeight: "normal",
color: "#274B6D"
}
},
plotOptions: {
scatter: {
marker: {
radius: 3,
states: {
hover: {
enabled: true,
lineColor: 'rgb(100,100,100)'
}
}
},
states: {
hover: {
marker: { enabled: false }
}
}
}
},
series: [
{
type: 'scatter',
color: 'rgba(69, 114, 167, .2)',
name: 'OK',
data: [
[0,73],[0,1437],[0,1591],[0,10143],[0,1103],[0,663],[0,1557],[0,2785],[0,6157],[0,2573],[0,1782],[0,1701],[1,1758],[1,1586],[1,1592],[1,1676],[1,1647],[1,2084],[1,106],[1,2454],[1,897],[1,1758],[1,1433],[1,1188],[1,1548],[1,1542],[1,1574],[1,959],[1,2408],[1,1474],[1,1759],[1,1024],[1,1053],[1,1393],[1,2942],[1,6429],[1,1217],[1,7544],[1,1714],[1,56],[1,1539],[1,1540],[1,6281],[1,2430],[1,1689],[1,103],[1,1631],[1,178],[1,2270],[1,5611],[1,1004],[2,1666],[2,74],[2,944],[2,1491],[2,94],[2,2332],[2,2695],[2,992],[2,1800],[2,1937],[2,2310],[2,1919],[2,824],[2,5384],[2,1895],[2,1203],[2,1460],[2,1142],[2,1114],[2,1463],[2,850],[2,1561],[2,2098],[2,1929],[2,1722],[2,1392],[2,1854],[2,2925],[2,103],[2,2108],[2,887],[2,1420],[2,1623],[2,1821],[2,3510],[2,1830],[2,3319],[2,2204],[2,1694],[2,1400],[2,62],[2,1664],[2,1554],[2,2162],[2,1699],[2,1550],[2,1455],[2,695],[2,1880],[2,1682],[2,847],[2,733],[2,1097],[2,1643],[2,1072],[2,804],[2,3544],[2,67],[2,1214],[2,1586],[2,936],[2,807],[2,1782],[2,1802],[2,1082],[2,932],[2,1051],[2,1423],[2,1878],[2,934],[2,8221],[2,1001],[2,1630],[2,821],[2,881],[2,997],[2,1720],[2,2383],[2,1800],[2,39],[2,1116],[2,1292],[2,1800],[2,1240],[2,2387],[2,1411],[2,1192],[2,1893],[2,868],[2,1158],[2,1120],[2,910],[2,1053],[2,1050],[2,2805],[2,892],[2,1661],[2,1696],[2,1780],[2,835],[2,1118],[2,1653],[2,1749],[2,2164],[2,859],[2,831],[2,1562],[2,1149],[2,1626],[2,953],[2,1394],[2,1710],[2,1644],[2,4379],[2,1222],[2,2216],[2,1478],[2,1613],[2,1181],[2,2464],[2,7327],[2,3074],[2,61],[2,1183],[2,2370],[2,1334],[2,1600],[3,1258],[3,902],[3,1778],[3,1089],[3,1797],[3,2052],[3,1479],[3,1432],[3,3145],[3,88],[3,1763],[3,1678],[3,1890],[3,1733],[3,2237],[3,735],[3,940],[3,1657],[3,937],[3,1135],[3,870],[3,1071],[3,2478],[3,1649],[3,1445],[3,1292],[3,8418],[3,868],[3,1564],[3,2225],[3,1683],[3,968],[3,2487],[3,1440],[3,1702],[3,1051],[3,775],[3,1297],[3,1596],[3,1946],[3,1594],[4,1506],[4,1983],[4,1939],[4,1661],[4,1428],[4,1747],[4,1310],[4,1568],[4,2116],[4,2674],[4,2138],[5,2459]
]},
{
type: 'scatter',
color: 'rgba(255, 0, 0, .2)',
name: 'KO',
data: [
[0,60008],[0,19],[1,1280],[1,1231],[1,6],[1,4404],[1,17],[1,9],[1,3628],[1,5320],[1,1711],[2,2184],[2,4423],[2,6],[2,10],[2,12],[2,2126],[2,15],[2,10],[2,1409],[2,824],[2,9333],[2,3422],[3,1324],[3,2997],[3,10],[3,5083],[3,1737],[3,1504],[3,1369],[3,5308],[3,1310],[3,747],[3,920],[3,2672],[3,3657],[3,1714],[3,1572],[3,1672],[4,1515],[4,1455],[4,1415],[4,5116],[4,3127],[5,2778]
]}
]
});
scatterChart.setTitle({
text: '<span class="chart_title">Response Time against Global RPS</span>',
useHTML: true
});
});
</script>
</body>
</html>