-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrossout_input.render_stats.html
More file actions
1006 lines (1006 loc) · 60.8 KB
/
crossout_input.render_stats.html
File metadata and controls
1006 lines (1006 loc) · 60.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>REAPER Render: phoenix_stemmed</title>
<style>
body { font-family: monospace; }
table { border-collapse: collapse; }
table th { border: 1px solid black; padding: 12px; text-align: right; }
table td { border: 1px solid black; padding: 12px; text-align: right; }
table th:nth-child(1), td:nth-child(1) { text-align: left; }
</style>
</head>
<body>
<p>REAPER Render</p>
<p>
MP3 (lame_enc) 44100Hz 2ch 320kbps CBR q=0<br>
Project: phoenix_stemmed<br>
</p>
<br>
<table>
<thead>
<tr>
<th><br>File</th>
<th><br>Length</th>
<th><br>Peak</th>
<th>True<br>Peak</th>
<th><br>Clips</th>
<th>TP<br>Clips</th>
<th>max<br>RMS-M</th>
<th>max<br>RMS-S</th>
<th><br>RMS-I</th>
<th><br>RMS-RA</th>
</tr>
</thead>
<tbody>
<tr>
<td>crossout_input.mp3</td>
<td>1:06.750</td>
<td>+4.3</td>
<td>+4.3</td>
<td>6774</td>
<td>10839</td>
<td>-4.7</td>
<td>-5.6</td>
<td>-7.3</td>
<td>2.6</td>
</tr>
</tbody>
</table>
<br><br>
<input type='checkbox' id='regions' name='regions' value='yes'>
<label for='regions'> Display project regions</label><br>
<input type='checkbox' id='markers' name='markers'>
<label for='markers'> Display project markers</label><br>
<script type='text/javascript'>
var w=1024, h=768, xa=64, xb=w-24, ya=32, yb=112, yc=160, yd=h-24;
const colors=['#808080', '#3366CC', '#FF9900', '#F0F8F0', '#80E080'];
function stroke(ctx, c, l) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.stroke(); }
function strokerect(ctx, c, l, x, y, w, h) { ctx.strokeStyle=c; ctx.lineWidth=l; ctx.strokeRect(x, y, w, h); }
function fill(ctx, c) { ctx.fillStyle=c; ctx.fill(); }
function fillrect(ctx, c, x, y, w, h) { ctx.fillStyle=c; ctx.fillRect(x, y, w, h); }
function text(ctx, c, a, b, t, x, y) { ctx.fillStyle=c; ctx.textAlign=a; ctx.textBaseline=b; ctx.fillText(t, x, y); }
function clip(ctx, x, y, w, h) { ctx.save(); ctx.beginPath(); ctx.rect(x, y, w, h); ctx.clip(); }
function to_x(x) { return xa+(xb-xa)*x; }
function to_y(y, i) { return !i ? ya+(yb-ya)*y : yc+(yd-yc)*y; }
function from_x(x) { return (x-xa)/(xb-xa); }
function draw_chart(canv, data, tipx, tipy) {
w=canv.width=Math.max(window.innerWidth-64, 800);
xb=w-24;
let reg = 'regions' in data && document.getElementById('regions').checked;
let mrk = 'markers' in data && document.getElementById('markers').checked;
yc=160+40*(reg+mrk);
let ctx=canv.getContext('2d');
ctx.clearRect(0, 0, w, h);
ctx.font='1em monospace';
let x=xa;
text(ctx, '#000000', 'left', 'top', 'File: '+data.name, x, 0);
x += ctx.measureText('File: '+data.name).width+48;
for (let i=1; i < data.series.length; ++i) {
fillrect(ctx, colors[i], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.series[i], x+48, 0);
x += ctx.measureText(data.series[i]).width+96;
}
fillrect(ctx, colors[4], x, 6, 40, 3);
text(ctx, '#000000', 'left', 'top', data.integrated[0], x+48, 0);
x += ctx.measureText(data.integrated[0]).width+96;
if ('dynrange' in data) {
fillrect(ctx, colors[3], x, 0, 40, 16);
text(ctx, '#000000', 'left', 'top', data.dynrange[0], x+48, 0);
let ylo=to_y(data.dynrange[1][0], 1), yhi=to_y(data.dynrange[2][0], 1);
fillrect(ctx, colors[3], xa, yhi, xb-xa, ylo-yhi);
}
let y=to_y(data.integrated[1], 1);
fillrect(ctx, colors[4], xa, y-1, xb-xa, 2);
ctx.beginPath();
for (let i=0; i < data.xmaj.length; ++i) {
let x=Math.floor(to_x(data.xmaj[i][0]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb+8);
ctx.moveTo(x, yc-8);
ctx.lineTo(x+0.5, h);
text(ctx, '#000000', 'center', 'middle', data.xmaj[i][1], x, yc-24);
}
for (let i=0; i < data.ymaj.length; ++i) {
let y=Math.floor(to_y(data.ymaj[i][0], 1))+0.5;
ctx.moveTo(xa-8, y);
ctx.lineTo(w, y);
text(ctx, '#000000', 'right', 'middle', data.ymaj[i][1], xa-24, y);
}
stroke(ctx, '#E0E0E0', 1);
ctx.beginPath();
for (let i=0; i < data.xmin.length; ++i) {
let x=Math.floor(to_x(data.xmin[i]))+0.5;
ctx.moveTo(x, ya);
ctx.lineTo(x, yb);
ctx.moveTo(x, yc);
ctx.lineTo(x, h);
}
for (let i=0; i < data.ymin.length; ++i) {
let y=Math.floor(to_y(data.ymin[i], 1))+0.5;
ctx.moveTo(xa, y);
ctx.lineTo(w-8, y);
}
stroke(ctx, '#F4F4F4', 1);
strokerect(ctx, '#000000', 1, xa+0.5, ya+0.5, xb-xa, yb-ya);
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
for (let j=0; j < data.vals.length; ++j) {
ctx.lineTo(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i));
}
if (!i) {
ctx.lineTo(xb, yb);
ctx.lineTo(xa, yb);
fill(ctx, colors[0]);
}
else {
stroke(ctx, colors[i], 2);
}
}
let sx=-1, ex=-1;
for (let i=0; i <= data.vals.length; ++i) {
if (i < data.vals.length && data.vals[i][1][1].startsWith('+')) {
ex=to_x(data.vals[i][0][0]);
if (sx < 0) sx=ex;
}
else if (sx >= 0 && ex >= 0) {
fillrect(ctx, '#FF0000', sx, ya, ex-sx, yb-ya);
sx=ex=-1;
}
}
if (reg) {
let lastx=w;
for (let i=data.regions.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.regions[i][0]));
let ty=yb+10+0.5;
let tw=Math.floor(to_x(data.regions[i][2]))-tx;
let ex=tx+tw;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.regions[i][5], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.regions[i][6], 'left', 'middle', data.regions[i][4], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.regions[i][5], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], tx, yc-12, 2, h-yc+12);
fillrect(ctx, data.regions[i][5], ex, ya-6, 2, yc-ya-32);
fillrect(ctx, data.regions[i][5], ex, yc-12, 2, h-yc+12);
}
}
if (mrk) {
let lastx=w;
for (let i=data.markers.length-1; i >= 0; --i) {
let tx=Math.floor(to_x(data.markers[i][0]));
let ty=yb+40*reg+10+0.5;
let tw=ctx.measureText(data.markers[i][2]).width+16;
if (tx+tw > lastx) tw=lastx-tx;
lastx=tx-1;
fillrect(ctx, data.markers[i][3], tx, ty, tw, 20);
clip(ctx, tx, ty, tw, 20);
text(ctx, data.markers[i][4], 'left', 'middle', data.markers[i][2], tx+8, ty+10);
ctx.restore();
fillrect(ctx, data.markers[i][3], tx, ya-6, 2, yc-ya-32);
fillrect(ctx, data.markers[i][3], tx, yc-12, 2, h-yc+12);
}
}
if (tipx >= 0 && tipy >= 0) {
let tx=from_x(tipx);
let j=0;
for (; j < data.vals.length-1; ++j) {
if (data.vals[j][0][0] > tx) break;
}
if (j < data.vals.length-1 && data.vals[j+1][0][0]-tx < tx-data.vals[j][0][0]) ++j;
let str=[data.vals[j][0][1], '', '', ''];
for (let i=0; i < data.series.length; ++i) {
ctx.beginPath();
ctx.arc(to_x(data.vals[j][0][0]), to_y(data.vals[j][i+1][0], i), 4, 0, 2*Math.PI, false);
fill(ctx, !i ? '#000000' : colors[i]);
str[i+1]=data.series[i]+' '+data.vals[j][i+1][1];
}
let tipw=160, tiph=24*(data.series.length+1)+12;
if (tipx < tipw/2+1) tipx=tipw/2+1;
else if (tipx > w-tipw/2-1) tipx=w-tipw/2-1;
tipy += 96;
if (tipy > h-tiph/2-1) tipy=h-tiph/2-1;
strokerect(ctx, '#000000', 1, tipx-tipw/2, tipy-tiph/2, tipw, tiph);
fillrect(ctx, '#FFFFFF', tipx-tipw/2, tipy-tiph/2, tipw, tiph);
tipy -= 24*data.series.length/2;
for (let i=0; str[i]; ++i) {
text(ctx, !i ? '#000000' : colors[i-1], 'center', 'middle', str[i], tipx, tipy);
tipy += 24;
}
}
}
</script>
<br><br>
<canvas id='chart_0' width='1024' height='768'></canvas>
<script type='text/javascript'>
const data_0={
name:'crossout_input.mp3',
length:66.750,
series:['Peak','RMS-M','RMS-S'],
integrated:['RMS-I',0.3461,'-7.27'],
dynrange:['RMS-RA',[0.4190,'-8.80'],[0.2952,'-6.20']],
vals:[
[[0.0014,'0:00.092'],[0.9653,'-58.40'],[2.7534,'-57.82'],[3.1700,'-66.57']],
[[0.0028,'0:00.185'],[0.9542,'-53.58'],[2.4610,'-51.68'],[2.8777,'-60.43']],
[[0.0042,'0:00.278'],[0.9121,'-42.24'],[2.3350,'-49.04'],[2.7503,'-57.76']],
[[0.0056,'0:00.371'],[0.9163,'-43.09'],[2.2398,'-47.04'],[2.6534,'-55.72']],
[[0.0070,'0:00.464'],[0.8795,'-36.76'],[2.1860,'-45.91'],[2.5856,'-54.30']],
[[0.0084,'0:00.557'],[0.9053,'-40.95'],[2.1509,'-45.17'],[2.5310,'-53.15']],
[[0.0097,'0:00.650'],[0.8929,'-38.80'],[1.9974,'-41.95'],[2.3772,'-49.92']],
[[0.0111,'0:00.743'],[0.8882,'-38.06'],[1.7394,'-36.53'],[2.1359,'-44.85']],
[[0.0125,'0:00.836'],[0.8949,'-39.13'],[1.5553,'-32.66'],[1.9623,'-41.21']],
[[0.0139,'0:00.929'],[0.8948,'-39.13'],[1.4941,'-31.38'],[1.9014,'-39.93']],
[[0.0153,'0:01.022'],[0.4917,'-11.76'],[1.4401,'-30.24'],[1.8416,'-38.67']],
[[0.0167,'0:01.115'],[0.6512,'-18.30'],[1.4117,'-29.65'],[1.7854,'-37.49']],
[[0.0181,'0:01.208'],[0.7065,'-21.30'],[1.3852,'-29.09'],[1.7312,'-36.36']],
[[0.0195,'0:01.301'],[0.7216,'-22.21'],[1.3849,'-29.08'],[1.7080,'-35.87']],
[[0.0209,'0:01.394'],[0.4623,'-10.78'],[1.3846,'-29.08'],[1.6847,'-35.38']],
[[0.0223,'0:01.487'],[0.6444,'-17.96'],[1.3705,'-28.78'],[1.6528,'-34.71']],
[[0.0237,'0:01.580'],[0.6745,'-19.50'],[1.3551,'-28.46'],[1.6200,'-34.02']],
[[0.0251,'0:01.673'],[0.7083,'-21.40'],[1.3544,'-28.44'],[1.6011,'-33.62']],
[[0.0265,'0:01.766'],[0.4707,'-11.05'],[1.3586,'-28.53'],[1.5869,'-33.32']],
[[0.0279,'0:01.859'],[0.6087,'-16.30'],[1.3526,'-28.40'],[1.5674,'-32.91']],
[[0.0292,'0:01.952'],[0.6569,'-18.58'],[1.3396,'-28.13'],[1.5443,'-32.43']],
[[0.0306,'0:02.045'],[0.6994,'-20.88'],[1.1826,'-24.83'],[1.4233,'-29.89']],
[[0.0320,'0:02.138'],[0.4553,'-10.55'],[0.8411,'-17.66'],[1.1768,'-24.71']],
[[0.0334,'0:02.231'],[0.6218,'-16.89'],[0.5871,'-12.33'],[0.9911,'-20.81']],
[[0.0348,'0:02.324'],[0.0594,'-1.06'],[0.5553,'-11.66'],[0.9598,'-20.16']],
[[0.0362,'0:02.417'],[0.0685,'-1.23'],[0.5240,'-11.00'],[0.9285,'-19.50']],
[[0.0376,'0:02.510'],[0.0637,'-1.14'],[0.4963,'-10.42'],[0.8974,'-18.85']],
[[0.0390,'0:02.603'],[0.3988,'-8.84'],[0.4686,'-9.84'],[0.8664,'-18.19']],
[[0.0404,'0:02.696'],[0.0529,'-0.94'],[0.5278,'-11.08'],[0.8647,'-18.16']],
[[0.0418,'0:02.788'],[0.6067,'-16.21'],[0.5898,'-12.39'],[0.8640,'-18.14']],
[[0.0432,'0:02.881'],[0.6476,'-18.12'],[0.5939,'-12.47'],[0.8427,'-17.70']],
[[0.0446,'0:02.974'],[0.6819,'-19.90'],[0.5847,'-12.28'],[0.8167,'-17.15']],
[[0.0460,'0:03.067'],[0.0503,'-0.90'],[0.5774,'-12.12'],[0.7969,'-16.73']],
[[0.0474,'0:03.160'],[0.5130,'-12.50'],[0.5710,'-11.99'],[0.7804,'-16.39']],
[[0.0487,'0:03.253'],[0.6216,'-16.88'],[0.5787,'-12.15'],[0.7664,'-16.09']],
[[0.0501,'0:03.346'],[0.6903,'-20.36'],[0.6003,'-12.61'],[0.7549,'-15.85']],
[[0.0515,'0:03.439'],[0.0489,'-0.87'],[0.6021,'-12.64'],[0.7415,'-15.57']],
[[0.0529,'0:03.532'],[0.6671,'-19.11'],[0.5662,'-11.89'],[0.7246,'-15.22']],
[[0.0543,'0:03.625'],[0.0618,'-1.11'],[0.5245,'-11.01'],[0.7041,'-14.79']],
[[0.0557,'0:03.718'],[0.3937,'-8.69'],[0.4575,'-9.61'],[0.6679,'-14.03']],
[[0.0571,'0:03.811'],[0.0612,'-1.10'],[0.3916,'-8.22'],[0.6322,'-13.28']],
[[0.0585,'0:03.904'],[0.0624,'-1.12'],[0.3556,'-7.47'],[0.6069,'-12.74']],
[[0.0599,'0:03.997'],[0.0515,'-0.92'],[0.3195,'-6.71'],[0.5816,'-12.21']],
[[0.0613,'0:04.090'],[0.0416,'-0.74'],[0.3112,'-6.54'],[0.5622,'-11.81']],
[[0.0627,'0:04.183'],[0.0401,'-0.71'],[0.3069,'-6.44'],[0.5435,'-11.41']],
[[0.0641,'0:04.276'],[0.0540,'-0.97'],[0.3146,'-6.61'],[0.5287,'-11.10']],
[[0.0655,'0:04.369'],[0.0465,'-0.83'],[0.3270,'-6.87'],[0.5153,'-10.82']],
[[0.0669,'0:04.462'],[0.0551,'-0.98'],[0.3385,'-7.11'],[0.5027,'-10.56']],
[[0.0682,'0:04.555'],[0.0619,'-1.11'],[0.3492,'-7.33'],[0.4906,'-10.30']],
[[0.0696,'0:04.648'],[0.1033,'-1.89'],[0.3579,'-7.52'],[0.4800,'-10.08']],
[[0.0710,'0:04.741'],[0.0546,'-0.97'],[0.3635,'-7.63'],[0.4714,'-9.90']],
[[0.0724,'0:04.834'],[0.0608,'-1.09'],[0.3688,'-7.75'],[0.4623,'-9.71']],
[[0.0738,'0:04.927'],[0.0610,'-1.09'],[0.3733,'-7.84'],[0.4517,'-9.49']],
[[0.0752,'0:05.020'],[0.0641,'-1.15'],[0.3763,'-7.90'],[0.4419,'-9.28']],
[[0.0766,'0:05.113'],[0.0666,'-1.20'],[0.3654,'-7.67'],[0.4381,'-9.20']],
[[0.0780,'0:05.206'],[0.0638,'-1.14'],[0.3545,'-7.44'],[0.4343,'-9.12']],
[[0.0794,'0:05.299'],[0.0648,'-1.16'],[0.3484,'-7.32'],[0.4293,'-9.01']],
[[0.0808,'0:05.392'],[0.1238,'-2.30'],[0.3426,'-7.19'],[0.4241,'-8.91']],
[[0.0822,'0:05.485'],[0.0511,'-0.91'],[0.3606,'-7.57'],[0.4213,'-8.85']],
[[0.0836,'0:05.577'],[0.1309,'-2.44'],[0.3852,'-8.09'],[0.4192,'-8.80']],
[[0.0850,'0:05.670'],[0.0936,'-1.71'],[0.3992,'-8.38'],[0.4154,'-8.72']],
[[0.0864,'0:05.763'],[0.1244,'-2.31'],[0.4070,'-8.55'],[0.4104,'-8.62']],
[[0.0877,'0:05.856'],[0.1369,'-2.56'],[0.4204,'-8.83'],[0.4069,'-8.54']],
[[0.0891,'0:05.949'],[0.1153,'-2.13'],[0.4401,'-9.24'],[0.4048,'-8.50']],
[[0.0905,'0:06.042'],[0.1203,'-2.23'],[0.4523,'-9.50'],[0.4022,'-8.45']],
[[0.0919,'0:06.135'],[0.1772,'-3.39'],[0.4483,'-9.41'],[0.3985,'-8.37']],
[[0.0933,'0:06.228'],[0.0573,'-1.02'],[0.4456,'-9.36'],[0.3952,'-8.30']],
[[0.0947,'0:06.321'],[0.0838,'-1.52'],[0.4496,'-9.44'],[0.3941,'-8.28']],
[[0.0961,'0:06.414'],[0.1333,'-2.49'],[0.4535,'-9.52'],[0.3930,'-8.25']],
[[0.0975,'0:06.507'],[0.1072,'-1.97'],[0.4471,'-9.39'],[0.3891,'-8.17']],
[[0.0989,'0:06.600'],[0.1205,'-2.23'],[0.4407,'-9.25'],[0.3851,'-8.09']],
[[0.1003,'0:06.693'],[0.1168,'-2.16'],[0.4260,'-8.95'],[0.3864,'-8.12']],
[[0.1017,'0:06.786'],[0.1397,'-2.61'],[0.4097,'-8.60'],[0.3887,'-8.16']],
[[0.1031,'0:06.879'],[0.0922,'-1.68'],[0.4069,'-8.54'],[0.3927,'-8.25']],
[[0.1045,'0:06.972'],[0.0462,'-0.82'],[0.4100,'-8.61'],[0.3974,'-8.35']],
[[0.1058,'0:07.065'],[0.0625,'-1.12'],[0.4230,'-8.88'],[0.4027,'-8.46']],
[[0.1072,'0:07.158'],[0.1809,'-3.47'],[0.4445,'-9.34'],[0.4086,'-8.58']],
[[0.1086,'0:07.251'],[0.1593,'-3.01'],[0.4673,'-9.81'],[0.4139,'-8.69']],
[[0.1100,'0:07.344'],[0.1323,'-2.47'],[0.4921,'-10.33'],[0.4185,'-8.79']],
[[0.1114,'0:07.437'],[0.1337,'-2.49'],[0.5084,'-10.68'],[0.4231,'-8.89']],
[[0.1128,'0:07.530'],[0.1539,'-2.90'],[0.4950,'-10.39'],[0.4275,'-8.98']],
[[0.1142,'0:07.623'],[0.1936,'-3.74'],[0.4826,'-10.13'],[0.4319,'-9.07']],
[[0.1156,'0:07.716'],[0.0552,'-0.99'],[0.4851,'-10.19'],[0.4350,'-9.13']],
[[0.1170,'0:07.809'],[0.0559,'-1.00'],[0.4876,'-10.24'],[0.4381,'-9.20']],
[[0.1184,'0:07.902'],[0.1621,'-3.07'],[0.4879,'-10.25'],[0.4414,'-9.27']],
[[0.1198,'0:07.995'],[0.1700,'-3.24'],[0.4880,'-10.25'],[0.4447,'-9.34']],
[[0.1212,'0:08.088'],[0.1879,'-3.62'],[0.4578,'-9.61'],[0.4472,'-9.39']],
[[0.1226,'0:08.181'],[0.1457,'-2.74'],[0.4177,'-8.77'],[0.4495,'-9.44']],
[[0.1240,'0:08.274'],[0.0529,'-0.94'],[0.3920,'-8.23'],[0.4510,'-9.47']],
[[0.1253,'0:08.366'],[0.0631,'-1.13'],[0.3761,'-7.90'],[0.4519,'-9.49']],
[[0.1267,'0:08.459'],[0.0655,'-1.18'],[0.3645,'-7.65'],[0.4507,'-9.47']],
[[0.1281,'0:08.552'],[0.0648,'-1.16'],[0.3581,'-7.52'],[0.4467,'-9.38']],
[[0.1295,'0:08.645'],[0.0468,'-0.83'],[0.3518,'-7.39'],[0.4424,'-9.29']],
[[0.1309,'0:08.738'],[0.0622,'-1.12'],[0.3457,'-7.26'],[0.4374,'-9.19']],
[[0.1323,'0:08.831'],[0.0782,'-1.41'],[0.3384,'-7.11'],[0.4321,'-9.07']],
[[0.1337,'0:08.924'],[0.0640,'-1.15'],[0.3227,'-6.78'],[0.4253,'-8.93']],
[[0.1351,'0:09.017'],[0.0548,'-0.98'],[0.3070,'-6.45'],[0.4184,'-8.79']],
[[0.1365,'0:09.110'],[0.0610,'-1.09'],[0.3020,'-6.34'],[0.4130,'-8.67']],
[[0.1379,'0:09.203'],[0.0599,'-1.07'],[0.2973,'-6.24'],[0.4075,'-8.56']],
[[0.1393,'0:09.296'],[0.0591,'-1.06'],[0.3012,'-6.32'],[0.4044,'-8.49']],
[[0.1407,'0:09.389'],[0.0520,'-0.93'],[0.3070,'-6.45'],[0.4017,'-8.44']],
[[0.1421,'0:09.482'],[0.0562,'-1.00'],[0.3153,'-6.62'],[0.3986,'-8.37']],
[[0.1435,'0:09.575'],[0.0625,'-1.12'],[0.3249,'-6.82'],[0.3952,'-8.30']],
[[0.1448,'0:09.668'],[0.0552,'-0.99'],[0.3272,'-6.87'],[0.3921,'-8.23']],
[[0.1462,'0:09.761'],[0.0577,'-1.03'],[0.3224,'-6.77'],[0.3894,'-8.18']],
[[0.1476,'0:09.854'],[0.0508,'-0.91'],[0.3171,'-6.66'],[0.3861,'-8.11']],
[[0.1490,'0:09.947'],[0.0619,'-1.11'],[0.3109,'-6.53'],[0.3817,'-8.02']],
[[0.1504,'0:10.040'],[0.0535,'-0.96'],[0.3082,'-6.47'],[0.3775,'-7.93']],
[[0.1518,'0:10.133'],[0.0594,'-1.06'],[0.3196,'-6.71'],[0.3741,'-7.86']],
[[0.1532,'0:10.226'],[0.0601,'-1.08'],[0.3311,'-6.95'],[0.3707,'-7.78']],
[[0.1546,'0:10.319'],[0.0626,'-1.12'],[0.3453,'-7.25'],[0.3677,'-7.72']],
[[0.1560,'0:10.412'],[0.0574,'-1.03'],[0.3595,'-7.55'],[0.3647,'-7.66']],
[[0.1574,'0:10.505'],[0.0624,'-1.12'],[0.3600,'-7.56'],[0.3617,'-7.59']],
[[0.1588,'0:10.598'],[0.0713,'-1.29'],[0.3587,'-7.53'],[0.3586,'-7.53']],
[[0.1602,'0:10.691'],[0.0617,'-1.11'],[0.3590,'-7.54'],[0.3561,'-7.48']],
[[0.1616,'0:10.784'],[0.0553,'-0.99'],[0.3599,'-7.56'],[0.3538,'-7.43']],
[[0.1630,'0:10.877'],[0.0956,'-1.75'],[0.3636,'-7.64'],[0.3511,'-7.37']],
[[0.1643,'0:10.970'],[0.0792,'-1.43'],[0.3693,'-7.76'],[0.3481,'-7.31']],
[[0.1657,'0:11.063'],[0.0643,'-1.15'],[0.3721,'-7.81'],[0.3464,'-7.28']],
[[0.1671,'0:11.155'],[0.0647,'-1.16'],[0.3707,'-7.79'],[0.3468,'-7.28']],
[[0.1685,'0:11.248'],[0.0646,'-1.16'],[0.3669,'-7.70'],[0.3470,'-7.29']],
[[0.1699,'0:11.341'],[0.0642,'-1.15'],[0.3560,'-7.48'],[0.3466,'-7.28']],
[[0.1713,'0:11.434'],[0.1016,'-1.86'],[0.3475,'-7.30'],[0.3465,'-7.28']],
[[0.1727,'0:11.527'],[0.0487,'-0.87'],[0.3610,'-7.58'],[0.3484,'-7.32']],
[[0.1741,'0:11.620'],[0.1095,'-2.02'],[0.3745,'-7.87'],[0.3503,'-7.36']],
[[0.1755,'0:11.713'],[0.1340,'-2.50'],[0.3805,'-7.99'],[0.3508,'-7.37']],
[[0.1769,'0:11.806'],[0.0871,'-1.58'],[0.3859,'-8.10'],[0.3513,'-7.38']],
[[0.1783,'0:11.899'],[0.0627,'-1.12'],[0.4056,'-8.52'],[0.3555,'-7.47']],
[[0.1797,'0:11.992'],[0.1230,'-2.28'],[0.4292,'-9.01'],[0.3607,'-7.58']],
[[0.1811,'0:12.085'],[0.1324,'-2.47'],[0.4331,'-9.10'],[0.3646,'-7.66']],
[[0.1825,'0:12.178'],[0.1328,'-2.48'],[0.4255,'-8.94'],[0.3677,'-7.72']],
[[0.1838,'0:12.271'],[0.0573,'-1.02'],[0.4212,'-8.84'],[0.3709,'-7.79']],
[[0.1852,'0:12.364'],[0.0919,'-1.67'],[0.4204,'-8.83'],[0.3744,'-7.86']],
[[0.1866,'0:12.457'],[0.1043,'-1.91'],[0.4217,'-8.86'],[0.3772,'-7.92']],
[[0.1880,'0:12.550'],[0.0801,'-1.45'],[0.4278,'-8.98'],[0.3785,'-7.95']],
[[0.1894,'0:12.643'],[0.1033,'-1.89'],[0.4299,'-9.03'],[0.3802,'-7.98']],
[[0.1908,'0:12.736'],[0.0648,'-1.16'],[0.4116,'-8.64'],[0.3842,'-8.07']],
[[0.1922,'0:12.829'],[0.1300,'-2.42'],[0.3934,'-8.26'],[0.3883,'-8.15']],
[[0.1936,'0:12.922'],[0.1245,'-2.31'],[0.3962,'-8.32'],[0.3906,'-8.20']],
[[0.1950,'0:13.015'],[0.0495,'-0.88'],[0.3990,'-8.38'],[0.3929,'-8.25']],
[[0.1964,'0:13.108'],[0.1585,'-3.00'],[0.4089,'-8.59'],[0.3967,'-8.33']],
[[0.1978,'0:13.201'],[0.1285,'-2.39'],[0.4200,'-8.82'],[0.4007,'-8.41']],
[[0.1992,'0:13.294'],[0.1692,'-3.22'],[0.4467,'-9.38'],[0.4040,'-8.48']],
[[0.2006,'0:13.387'],[0.1275,'-2.37'],[0.4802,'-10.09'],[0.4071,'-8.55']],
[[0.2019,'0:13.480'],[0.1433,'-2.69'],[0.4944,'-10.38'],[0.4111,'-8.63']],
[[0.2033,'0:13.573'],[0.1958,'-3.78'],[0.4919,'-10.33'],[0.4157,'-8.73']],
[[0.2047,'0:13.666'],[0.1939,'-3.75'],[0.4905,'-10.30'],[0.4198,'-8.82']],
[[0.2061,'0:13.759'],[0.0523,'-0.93'],[0.4907,'-10.31'],[0.4230,'-8.88']],
[[0.2075,'0:13.852'],[0.1611,'-3.05'],[0.4904,'-10.30'],[0.4263,'-8.95']],
[[0.2089,'0:13.944'],[0.1436,'-2.69'],[0.4880,'-10.25'],[0.4299,'-9.03']],
[[0.2103,'0:14.037'],[0.1640,'-3.11'],[0.4823,'-10.13'],[0.4333,'-9.10']],
[[0.2117,'0:14.130'],[0.0964,'-1.76'],[0.4327,'-9.09'],[0.4326,'-9.08']],
[[0.2131,'0:14.223'],[0.1093,'-2.01'],[0.3830,'-8.04'],[0.4319,'-9.07']],
[[0.2145,'0:14.316'],[0.0540,'-0.96'],[0.3588,'-7.53'],[0.4323,'-9.08']],
[[0.2159,'0:14.409'],[0.0623,'-1.12'],[0.3370,'-7.08'],[0.4328,'-9.09']],
[[0.2173,'0:14.502'],[0.0596,'-1.07'],[0.3250,'-6.82'],[0.4299,'-9.03']],
[[0.2187,'0:14.595'],[0.0605,'-1.08'],[0.3161,'-6.64'],[0.4258,'-8.94']],
[[0.2201,'0:14.688'],[0.0530,'-0.95'],[0.3176,'-6.67'],[0.4217,'-8.86']],
[[0.2214,'0:14.781'],[0.0621,'-1.11'],[0.3261,'-6.85'],[0.4177,'-8.77']],
[[0.2228,'0:14.874'],[0.0495,'-0.88'],[0.3256,'-6.84'],[0.4134,'-8.68']],
[[0.2242,'0:14.967'],[0.0587,'-1.05'],[0.3139,'-6.59'],[0.4087,'-8.58']],
[[0.2256,'0:15.060'],[0.0488,'-0.87'],[0.3075,'-6.46'],[0.4046,'-8.50']],
[[0.2270,'0:15.153'],[0.0523,'-0.93'],[0.3145,'-6.60'],[0.4017,'-8.44']],
[[0.2284,'0:15.246'],[0.0432,'-0.77'],[0.3206,'-6.73'],[0.3986,'-8.37']],
[[0.2298,'0:15.339'],[0.0530,'-0.95'],[0.3217,'-6.76'],[0.3937,'-8.27']],
[[0.2312,'0:15.432'],[0.0565,'-1.01'],[0.3228,'-6.78'],[0.3888,'-8.17']],
[[0.2326,'0:15.525'],[0.0584,'-1.05'],[0.3141,'-6.60'],[0.3852,'-8.09']],
[[0.2340,'0:15.618'],[0.0501,'-0.89'],[0.3052,'-6.41'],[0.3817,'-8.02']],
[[0.2354,'0:15.711'],[0.0630,'-1.13'],[0.3008,'-6.32'],[0.3789,'-7.96']],
[[0.2368,'0:15.804'],[0.0600,'-1.07'],[0.2973,'-6.24'],[0.3763,'-7.90']],
[[0.2382,'0:15.897'],[0.0580,'-1.04'],[0.2990,'-6.28'],[0.3726,'-7.83']],
[[0.2396,'0:15.990'],[0.0470,'-0.84'],[0.3034,'-6.37'],[0.3684,'-7.74']],
[[0.2409,'0:16.083'],[0.0482,'-0.86'],[0.3056,'-6.42'],[0.3636,'-7.64']],
[[0.2423,'0:16.176'],[0.0371,'-0.66'],[0.3057,'-6.42'],[0.3584,'-7.53']],
[[0.2437,'0:16.269'],[0.0485,'-0.86'],[0.3072,'-6.45'],[0.3538,'-7.43']],
[[0.2451,'0:16.362'],[0.0421,'-0.75'],[0.3113,'-6.54'],[0.3505,'-7.36']],
[[0.2465,'0:16.455'],[0.0525,'-0.94'],[0.3163,'-6.64'],[0.3472,'-7.29']],
[[0.2479,'0:16.548'],[0.0545,'-0.97'],[0.3247,'-6.82'],[0.3434,'-7.21']],
[[0.2493,'0:16.641'],[0.0577,'-1.03'],[0.3329,'-6.99'],[0.3397,'-7.13']],
[[0.2507,'0:16.733'],[0.0391,'-0.69'],[0.3336,'-7.00'],[0.3368,'-7.07']],
[[0.2521,'0:16.826'],[0.0480,'-0.86'],[0.3343,'-7.02'],[0.3339,'-7.01']],
[[0.2535,'0:16.919'],[0.0556,'-0.99'],[0.3331,'-7.00'],[0.3298,'-6.93']],
[[0.2549,'0:17.012'],[0.0614,'-1.10'],[0.3317,'-6.97'],[0.3255,'-6.84']],
[[0.2563,'0:17.105'],[0.0431,'-0.76'],[0.3260,'-6.85'],[0.3232,'-6.79']],
[[0.2577,'0:17.198'],[0.0525,'-0.94'],[0.3187,'-6.69'],[0.3216,'-6.75']],
[[0.2591,'0:17.291'],[0.0580,'-1.04'],[0.3155,'-6.63'],[0.3220,'-6.76']],
[[0.2604,'0:17.384'],[0.0590,'-1.06'],[0.3154,'-6.62'],[0.3237,'-6.80']],
[[0.2618,'0:17.477'],[0.0253,'-0.44'],[0.3224,'-6.77'],[0.3252,'-6.83']],
[[0.2632,'0:17.570'],[0.0586,'-1.05'],[0.3392,'-7.12'],[0.3264,'-6.85']],
[[0.2646,'0:17.663'],[0.0640,'-1.15'],[0.3526,'-7.40'],[0.3275,'-6.88']],
[[0.2660,'0:17.756'],[0.0645,'-1.16'],[0.3564,'-7.49'],[0.3286,'-6.90']],
[[0.2674,'0:17.849'],[0.0385,'-0.68'],[0.3595,'-7.55'],[0.3298,'-6.93']],
[[0.2688,'0:17.942'],[0.0476,'-0.85'],[0.3562,'-7.48'],[0.3317,'-6.97']],
[[0.2702,'0:18.035'],[0.0547,'-0.98'],[0.3530,'-7.41'],[0.3336,'-7.00']],
[[0.2716,'0:18.128'],[0.0663,'-1.19'],[0.3464,'-7.27'],[0.3329,'-6.99']],
[[0.2730,'0:18.221'],[0.0471,'-0.84'],[0.3396,'-7.13'],[0.3321,'-6.97']],
[[0.2744,'0:18.314'],[0.0469,'-0.83'],[0.3362,'-7.06'],[0.3330,'-6.99']],
[[0.2758,'0:18.407'],[0.0534,'-0.95'],[0.3338,'-7.01'],[0.3345,'-7.02']],
[[0.2772,'0:18.500'],[0.0608,'-1.09'],[0.3369,'-7.07'],[0.3356,'-7.05']],
[[0.2786,'0:18.593'],[0.0481,'-0.86'],[0.3432,'-7.21'],[0.3363,'-7.06']],
[[0.2799,'0:18.686'],[0.0526,'-0.94'],[0.3447,'-7.24'],[0.3374,'-7.09']],
[[0.2813,'0:18.779'],[0.0567,'-1.01'],[0.3411,'-7.16'],[0.3387,'-7.11']],
[[0.2827,'0:18.872'],[0.0595,'-1.07'],[0.3403,'-7.15'],[0.3401,'-7.14']],
[[0.2841,'0:18.965'],[0.0178,'-0.31'],[0.3456,'-7.26'],[0.3414,'-7.17']],
[[0.2855,'0:19.058'],[0.0369,'-0.65'],[0.3517,'-7.38'],[0.3430,'-7.20']],
[[0.2869,'0:19.151'],[0.0537,'-0.96'],[0.3610,'-7.58'],[0.3460,'-7.27']],
[[0.2883,'0:19.244'],[0.0637,'-1.14'],[0.3702,'-7.77'],[0.3490,'-7.33']],
[[0.2897,'0:19.337'],[0.0573,'-1.03'],[0.3638,'-7.64'],[0.3494,'-7.34']],
[[0.2911,'0:19.430'],[0.0276,'-0.49'],[0.3573,'-7.50'],[0.3498,'-7.35']],
[[0.2925,'0:19.522'],[0.0544,'-0.97'],[0.3448,'-7.24'],[0.3496,'-7.34']],
[[0.2939,'0:19.615'],[0.0584,'-1.04'],[0.3313,'-6.96'],[0.3493,'-7.33']],
[[0.2953,'0:19.708'],[0.0620,'-1.11'],[0.3305,'-6.94'],[0.3492,'-7.33']],
[[0.2967,'0:19.801'],[0.0427,'-0.76'],[0.3351,'-7.04'],[0.3492,'-7.33']],
[[0.2981,'0:19.894'],[0.0594,'-1.06'],[0.3377,'-7.09'],[0.3500,'-7.35']],
[[0.2994,'0:19.987'],[0.0654,'-1.17'],[0.3387,'-7.11'],[0.3514,'-7.38']],
[[0.3008,'0:20.080'],[0.0620,'-1.11'],[0.3377,'-7.09'],[0.3522,'-7.40']],
[[0.3022,'0:20.173'],[0.0304,'-0.54'],[0.3336,'-7.01'],[0.3519,'-7.39']],
[[0.3036,'0:20.266'],[0.0549,'-0.98'],[0.3302,'-6.94'],[0.3519,'-7.39']],
[[0.3050,'0:20.359'],[0.0531,'-0.95'],[0.3295,'-6.92'],[0.3531,'-7.41']],
[[0.3064,'0:20.452'],[0.0624,'-1.12'],[0.3284,'-6.90'],[0.3539,'-7.43']],
[[0.3078,'0:20.545'],[0.0627,'-1.13'],[0.3239,'-6.80'],[0.3505,'-7.36']],
[[0.3092,'0:20.638'],[0.0583,'-1.04'],[0.3194,'-6.71'],[0.3470,'-7.29']],
[[0.3106,'0:20.731'],[0.0413,'-0.73'],[0.3159,'-6.63'],[0.3469,'-7.28']],
[[0.3120,'0:20.824'],[0.0644,'-1.16'],[0.3124,'-6.56'],[0.3471,'-7.29']],
[[0.3134,'0:20.917'],[0.0573,'-1.03'],[0.3099,'-6.51'],[0.3456,'-7.26']],
[[0.3148,'0:21.010'],[0.0648,'-1.16'],[0.3079,'-6.47'],[0.3435,'-7.21']],
[[0.3162,'0:21.103'],[0.0537,'-0.96'],[0.3104,'-6.52'],[0.3431,'-7.20']],
[[0.3175,'0:21.196'],[0.0592,'-1.06'],[0.3161,'-6.64'],[0.3438,'-7.22']],
[[0.3189,'0:21.289'],[0.0553,'-0.99'],[0.3182,'-6.68'],[0.3433,'-7.21']],
[[0.3203,'0:21.382'],[0.0557,'-1.00'],[0.3161,'-6.64'],[0.3413,'-7.17']],
[[0.3217,'0:21.475'],[0.0510,'-0.91'],[0.3099,'-6.51'],[0.3394,'-7.13']],
[[0.3231,'0:21.568'],[0.0529,'-0.94'],[0.2938,'-6.17'],[0.3377,'-7.09']],
[[0.3245,'0:21.661'],[0.0501,'-0.89'],[0.2811,'-5.90'],[0.3362,'-7.06']],
[[0.3259,'0:21.754'],[0.0558,'-1.00'],[0.2907,'-6.10'],[0.3360,'-7.06']],
[[0.3273,'0:21.847'],[0.0564,'-1.01'],[0.3002,'-6.30'],[0.3358,'-7.05']],
[[0.3287,'0:21.940'],[0.0446,'-0.79'],[0.3082,'-6.47'],[0.3339,'-7.01']],
[[0.3301,'0:22.033'],[0.0429,'-0.76'],[0.3161,'-6.64'],[0.3320,'-6.97']],
[[0.3315,'0:22.126'],[0.0505,'-0.90'],[0.3176,'-6.67'],[0.3310,'-6.95']],
[[0.3329,'0:22.219'],[0.0473,'-0.84'],[0.3177,'-6.67'],[0.3301,'-6.93']],
[[0.3343,'0:22.311'],[0.0434,'-0.77'],[0.3224,'-6.77'],[0.3298,'-6.93']],
[[0.3357,'0:22.404'],[0.0393,'-0.70'],[0.3293,'-6.92'],[0.3298,'-6.93']],
[[0.3370,'0:22.497'],[0.0519,'-0.93'],[0.3342,'-7.02'],[0.3301,'-6.93']],
[[0.3384,'0:22.590'],[0.0611,'-1.10'],[0.3372,'-7.08'],[0.3306,'-6.94']],
[[0.3398,'0:22.683'],[0.0589,'-1.05'],[0.3414,'-7.17'],[0.3310,'-6.95']],
[[0.3412,'0:22.776'],[0.0433,'-0.77'],[0.3481,'-7.31'],[0.3310,'-6.95']],
[[0.3426,'0:22.869'],[0.0635,'-1.14'],[0.3524,'-7.40'],[0.3310,'-6.95']],
[[0.3440,'0:22.962'],[0.0587,'-1.05'],[0.3477,'-7.30'],[0.3303,'-6.94']],
[[0.3454,'0:23.055'],[0.0592,'-1.06'],[0.3433,'-7.21'],[0.3296,'-6.92']],
[[0.3468,'0:23.148'],[0.0363,'-0.64'],[0.3451,'-7.25'],[0.3297,'-6.92']],
[[0.3482,'0:23.241'],[0.0564,'-1.01'],[0.3468,'-7.28'],[0.3298,'-6.93']],
[[0.3496,'0:23.334'],[0.0626,'-1.12'],[0.3428,'-7.20'],[0.3306,'-6.94']],
[[0.3510,'0:23.427'],[0.0617,'-1.11'],[0.3380,'-7.10'],[0.3315,'-6.96']],
[[0.3524,'0:23.520'],[0.0311,'-0.55'],[0.3463,'-7.27'],[0.3334,'-7.00']],
[[0.3538,'0:23.613'],[0.0602,'-1.08'],[0.3596,'-7.55'],[0.3357,'-7.05']],
[[0.3552,'0:23.706'],[0.0647,'-1.16'],[0.3636,'-7.63'],[0.3370,'-7.08']],
[[0.3565,'0:23.799'],[0.0609,'-1.09'],[0.3606,'-7.57'],[0.3375,'-7.09']],
[[0.3579,'0:23.892'],[0.0328,'-0.58'],[0.3574,'-7.51'],[0.3385,'-7.11']],
[[0.3593,'0:23.985'],[0.0578,'-1.03'],[0.3540,'-7.43'],[0.3403,'-7.15']],
[[0.3607,'0:24.078'],[0.0598,'-1.07'],[0.3501,'-7.35'],[0.3415,'-7.17']],
[[0.3621,'0:24.171'],[0.0636,'-1.14'],[0.3447,'-7.24'],[0.3410,'-7.16']],
[[0.3635,'0:24.264'],[0.0371,'-0.66'],[0.3404,'-7.15'],[0.3408,'-7.16']],
[[0.3649,'0:24.357'],[0.0564,'-1.01'],[0.3456,'-7.26'],[0.3424,'-7.19']],
[[0.3663,'0:24.450'],[0.0569,'-1.02'],[0.3507,'-7.37'],[0.3440,'-7.22']],
[[0.3677,'0:24.543'],[0.0638,'-1.15'],[0.3529,'-7.41'],[0.3463,'-7.27']],
[[0.3691,'0:24.636'],[0.0466,'-0.83'],[0.3548,'-7.45'],[0.3486,'-7.32']],
[[0.3705,'0:24.729'],[0.0584,'-1.04'],[0.3513,'-7.38'],[0.3502,'-7.35']],
[[0.3719,'0:24.822'],[0.0603,'-1.08'],[0.3464,'-7.27'],[0.3516,'-7.38']],
[[0.3733,'0:24.915'],[0.0617,'-1.11'],[0.3440,'-7.22'],[0.3522,'-7.40']],
[[0.3747,'0:25.008'],[0.0412,'-0.73'],[0.3430,'-7.20'],[0.3525,'-7.40']],
[[0.3760,'0:25.100'],[0.0522,'-0.93'],[0.3417,'-7.18'],[0.3529,'-7.41']],
[[0.3774,'0:25.193'],[0.0571,'-1.02'],[0.3399,'-7.14'],[0.3536,'-7.43']],
[[0.3788,'0:25.286'],[0.0613,'-1.10'],[0.3414,'-7.17'],[0.3542,'-7.44']],
[[0.3802,'0:25.379'],[0.0433,'-0.77'],[0.3496,'-7.34'],[0.3550,'-7.45']],
[[0.3816,'0:25.472'],[0.0544,'-0.97'],[0.3555,'-7.47'],[0.3554,'-7.46']],
[[0.3830,'0:25.565'],[0.0621,'-1.11'],[0.3505,'-7.36'],[0.3547,'-7.45']],
[[0.3844,'0:25.658'],[0.0600,'-1.07'],[0.3456,'-7.26'],[0.3540,'-7.43']],
[[0.3858,'0:25.751'],[0.0352,'-0.62'],[0.3525,'-7.40'],[0.3554,'-7.46']],
[[0.3872,'0:25.844'],[0.0608,'-1.09'],[0.3595,'-7.55'],[0.3567,'-7.49']],
[[0.3886,'0:25.937'],[0.0631,'-1.13'],[0.3664,'-7.69'],[0.3577,'-7.51']],
[[0.3900,'0:26.030'],[0.0631,'-1.13'],[0.3734,'-7.84'],[0.3585,'-7.53']],
[[0.3914,'0:26.123'],[0.0415,'-0.74'],[0.3632,'-7.63'],[0.3581,'-7.52']],
[[0.3928,'0:26.216'],[0.0527,'-0.94'],[0.3458,'-7.26'],[0.3570,'-7.50']],
[[0.3942,'0:26.309'],[0.0519,'-0.93'],[0.3343,'-7.02'],[0.3565,'-7.49']],
[[0.3955,'0:26.402'],[0.0710,'-1.28'],[0.3280,'-6.89'],[0.3563,'-7.48']],
[[0.3969,'0:26.495'],[0.0570,'-1.02'],[0.3245,'-6.82'],[0.3555,'-7.47']],
[[0.3983,'0:26.588'],[0.0516,'-0.92'],[0.3257,'-6.84'],[0.3537,'-7.43']],
[[0.3997,'0:26.681'],[0.0562,'-1.00'],[0.3269,'-6.86'],[0.3523,'-7.40']],
[[0.4011,'0:26.774'],[0.0573,'-1.02'],[0.3284,'-6.90'],[0.3521,'-7.39']],
[[0.4025,'0:26.867'],[0.0486,'-0.87'],[0.3285,'-6.90'],[0.3518,'-7.39']],
[[0.4039,'0:26.960'],[0.0540,'-0.96'],[0.3111,'-6.53'],[0.3486,'-7.32']],
[[0.4053,'0:27.053'],[0.0532,'-0.95'],[0.2937,'-6.17'],[0.3453,'-7.25']],
[[0.4067,'0:27.146'],[0.0561,'-1.00'],[0.2902,'-6.09'],[0.3441,'-7.23']],
[[0.4081,'0:27.239'],[0.0530,'-0.95'],[0.2878,'-6.04'],[0.3430,'-7.20']],
[[0.4095,'0:27.332'],[0.0597,'-1.07'],[0.2936,'-6.17'],[0.3408,'-7.16']],
[[0.4109,'0:27.425'],[0.0573,'-1.02'],[0.3019,'-6.34'],[0.3382,'-7.10']],
[[0.4123,'0:27.518'],[0.0623,'-1.12'],[0.3016,'-6.33'],[0.3361,'-7.06']],
[[0.4136,'0:27.611'],[0.0537,'-0.96'],[0.2957,'-6.21'],[0.3344,'-7.02']],
[[0.4150,'0:27.704'],[0.0584,'-1.04'],[0.2901,'-6.09'],[0.3326,'-6.98']],
[[0.4164,'0:27.797'],[0.0444,'-0.79'],[0.2848,'-5.98'],[0.3306,'-6.94']],
[[0.4178,'0:27.889'],[0.0465,'-0.83'],[0.2842,'-5.97'],[0.3296,'-6.92']],
[[0.4192,'0:27.982'],[0.0494,'-0.88'],[0.2950,'-6.20'],[0.3312,'-6.96']],
[[0.4206,'0:28.075'],[0.0520,'-0.93'],[0.3049,'-6.40'],[0.3321,'-6.97']],
[[0.4220,'0:28.168'],[0.0451,'-0.80'],[0.3085,'-6.48'],[0.3291,'-6.91']],
[[0.4234,'0:28.261'],[0.0000,'+1.67'],[0.3120,'-6.55'],[0.3260,'-6.85']],
[[0.4248,'0:28.354'],[0.0000,'+1.24'],[0.3034,'-6.37'],[0.3251,'-6.83']],
[[0.4262,'0:28.447'],[0.0000,'+1.66'],[0.2946,'-6.19'],[0.3242,'-6.81']],
[[0.4276,'0:28.540'],[0.0000,'+1.10'],[0.2986,'-6.27'],[0.3236,'-6.80']],
[[0.4290,'0:28.633'],[0.0000,'+0.80'],[0.3053,'-6.41'],[0.3232,'-6.79']],
[[0.4304,'0:28.726'],[0.0226,'-0.40'],[0.3103,'-6.52'],[0.3214,'-6.75']],
[[0.4318,'0:28.819'],[0.0000,'+1.01'],[0.3146,'-6.61'],[0.3190,'-6.70']],
[[0.4331,'0:28.912'],[0.0000,'+1.45'],[0.3126,'-6.57'],[0.3170,'-6.66']],
[[0.4345,'0:29.005'],[0.0080,'-0.14'],[0.3048,'-6.40'],[0.3154,'-6.62']],
[[0.4359,'0:29.098'],[0.0000,'+2.71'],[0.2944,'-6.18'],[0.3134,'-6.58']],
[[0.4373,'0:29.191'],[0.0000,'+0.93'],[0.2794,'-5.87'],[0.3108,'-6.53']],
[[0.4387,'0:29.284'],[0.0000,'+2.69'],[0.2676,'-5.62'],[0.3087,'-6.48']],
[[0.4401,'0:29.377'],[0.0000,'+0.97'],[0.2684,'-5.64'],[0.3085,'-6.48']],
[[0.4415,'0:29.470'],[0.0000,'+2.88'],[0.2699,'-5.67'],[0.3083,'-6.47']],
[[0.4429,'0:29.563'],[0.0572,'-1.02'],[0.2853,'-5.99'],[0.3083,'-6.47']],
[[0.4443,'0:29.656'],[0.0000,'+3.50'],[0.3006,'-6.31'],[0.3083,'-6.47']],
[[0.4457,'0:29.749'],[0.0010,'-0.02'],[0.2974,'-6.24'],[0.3060,'-6.43']],
[[0.4471,'0:29.842'],[0.0000,'+2.69'],[0.2918,'-6.13'],[0.3034,'-6.37']],
[[0.4485,'0:29.935'],[0.0000,'+2.67'],[0.2922,'-6.14'],[0.3048,'-6.40']],
[[0.4499,'0:30.028'],[0.0000,'+2.50'],[0.2948,'-6.19'],[0.3076,'-6.46']],
[[0.4513,'0:30.121'],[0.0000,'+0.00'],[0.3050,'-6.40'],[0.3088,'-6.48']],
[[0.4526,'0:30.214'],[0.0060,'-0.10'],[0.3207,'-6.73'],[0.3088,'-6.49']],
[[0.4540,'0:30.307'],[0.0000,'+0.23'],[0.3264,'-6.85'],[0.3088,'-6.49']],
[[0.4554,'0:30.400'],[0.0050,'-0.09'],[0.3184,'-6.69'],[0.3087,'-6.48']],
[[0.4568,'0:30.493'],[0.0000,'+0.30'],[0.3094,'-6.50'],[0.3088,'-6.48']],
[[0.4582,'0:30.586'],[0.0209,'-0.37'],[0.2977,'-6.25'],[0.3092,'-6.49']],
[[0.4596,'0:30.678'],[0.0287,'-0.51'],[0.2875,'-6.04'],[0.3096,'-6.50']],
[[0.4610,'0:30.771'],[0.0000,'+2.57'],[0.2898,'-6.09'],[0.3101,'-6.51']],
[[0.4624,'0:30.864'],[0.0000,'+0.65'],[0.2921,'-6.14'],[0.3107,'-6.52']],
[[0.4638,'0:30.957'],[0.0518,'-0.92'],[0.2922,'-6.14'],[0.3107,'-6.53']],
[[0.4652,'0:31.050'],[0.0616,'-1.10'],[0.2922,'-6.14'],[0.3108,'-6.53']],
[[0.4666,'0:31.143'],[0.0398,'-0.71'],[0.3105,'-6.52'],[0.3118,'-6.55']],
[[0.4680,'0:31.236'],[0.0000,'+1.34'],[0.3336,'-7.00'],[0.3131,'-6.58']],
[[0.4694,'0:31.329'],[0.0000,'+2.11'],[0.3399,'-7.14'],[0.3142,'-6.60']],
[[0.4708,'0:31.422'],[0.0000,'+1.64'],[0.3369,'-7.08'],[0.3153,'-6.62']],
[[0.4721,'0:31.515'],[0.0552,'-0.99'],[0.3362,'-7.06'],[0.3161,'-6.64']],
[[0.4735,'0:31.608'],[0.0069,'-0.12'],[0.3379,'-7.10'],[0.3167,'-6.65']],
[[0.4749,'0:31.701'],[0.0159,'-0.28'],[0.3380,'-7.10'],[0.3174,'-6.67']],
[[0.4763,'0:31.794'],[0.0000,'+0.44'],[0.3346,'-7.03'],[0.3181,'-6.68']],
[[0.4777,'0:31.887'],[0.0000,'+0.61'],[0.3298,'-6.93'],[0.3187,'-6.69']],
[[0.4791,'0:31.980'],[0.0000,'+0.15'],[0.3188,'-6.69'],[0.3185,'-6.69']],
[[0.4805,'0:32.073'],[0.0000,'+2.29'],[0.3077,'-6.46'],[0.3183,'-6.68']],
[[0.4819,'0:32.166'],[0.0000,'+0.90'],[0.2987,'-6.27'],[0.3196,'-6.71']],
[[0.4833,'0:32.259'],[0.0362,'-0.64'],[0.2897,'-6.08'],[0.3209,'-6.74']],
[[0.4847,'0:32.352'],[0.0000,'+1.06'],[0.2873,'-6.03'],[0.3210,'-6.74']],
[[0.4861,'0:32.445'],[0.0000,'+0.79'],[0.2861,'-6.01'],[0.3208,'-6.74']],
[[0.4875,'0:32.538'],[0.0000,'+1.95'],[0.2822,'-5.93'],[0.3193,'-6.71']],
[[0.4889,'0:32.631'],[0.0000,'+1.42'],[0.2771,'-5.82'],[0.3172,'-6.66']],
[[0.4903,'0:32.724'],[0.0000,'+2.16'],[0.2803,'-5.89'],[0.3177,'-6.67']],
[[0.4916,'0:32.817'],[0.0380,'-0.67'],[0.2902,'-6.09'],[0.3204,'-6.73']],
[[0.4930,'0:32.910'],[0.0727,'-1.31'],[0.2956,'-6.21'],[0.3210,'-6.74']],
[[0.4944,'0:33.003'],[0.0000,'+1.03'],[0.2940,'-6.17'],[0.3182,'-6.68']],
[[0.4958,'0:33.096'],[0.0000,'+2.53'],[0.2922,'-6.14'],[0.3162,'-6.64']],
[[0.4972,'0:33.189'],[0.0239,'-0.42'],[0.2897,'-6.08'],[0.3168,'-6.65']],
[[0.4986,'0:33.282'],[0.0175,'-0.31'],[0.2890,'-6.07'],[0.3174,'-6.67']],
[[0.5000,'0:33.375'],[0.0427,'-0.76'],[0.3091,'-6.49'],[0.3183,'-6.68']],
[[0.5014,'0:33.467'],[0.0000,'+0.31'],[0.3292,'-6.91'],[0.3191,'-6.70']],
[[0.5028,'0:33.560'],[0.0144,'-0.25'],[0.3272,'-6.87'],[0.3198,'-6.72']],
[[0.5042,'0:33.653'],[0.0475,'-0.85'],[0.3233,'-6.79'],[0.3205,'-6.73']],
[[0.5056,'0:33.746'],[0.0637,'-1.14'],[0.3181,'-6.68'],[0.3215,'-6.75']],
[[0.5070,'0:33.839'],[0.0475,'-0.85'],[0.3125,'-6.56'],[0.3226,'-6.77']],
[[0.5084,'0:33.932'],[0.0528,'-0.94'],[0.3108,'-6.53'],[0.3230,'-6.78']],
[[0.5097,'0:34.025'],[0.0561,'-1.00'],[0.3115,'-6.54'],[0.3230,'-6.78']],
[[0.5111,'0:34.118'],[0.0581,'-1.04'],[0.3121,'-6.55'],[0.3222,'-6.77']],
[[0.5125,'0:34.211'],[0.0335,'-0.59'],[0.3126,'-6.56'],[0.3205,'-6.73']],
[[0.5139,'0:34.304'],[0.0000,'+0.43'],[0.3134,'-6.58'],[0.3194,'-6.71']],
[[0.5153,'0:34.397'],[0.0000,'+2.58'],[0.3150,'-6.61'],[0.3196,'-6.71']],
[[0.5167,'0:34.490'],[0.0231,'-0.41'],[0.3181,'-6.68'],[0.3200,'-6.72']],
[[0.5181,'0:34.583'],[0.0193,'-0.34'],[0.3308,'-6.95'],[0.3212,'-6.74']],
[[0.5195,'0:34.676'],[0.0427,'-0.76'],[0.3434,'-7.21'],[0.3223,'-6.77']],
[[0.5209,'0:34.769'],[0.0293,'-0.52'],[0.3327,'-6.99'],[0.3216,'-6.75']],
[[0.5223,'0:34.862'],[0.0329,'-0.58'],[0.3216,'-6.75'],[0.3208,'-6.74']],
[[0.5237,'0:34.955'],[0.0000,'+0.62'],[0.3133,'-6.58'],[0.3203,'-6.73']],
[[0.5251,'0:35.048'],[0.0000,'+2.85'],[0.3056,'-6.42'],[0.3200,'-6.72']],
[[0.5265,'0:35.141'],[0.0000,'+1.63'],[0.2932,'-6.16'],[0.3199,'-6.72']],
[[0.5279,'0:35.234'],[0.0286,'-0.50'],[0.2785,'-5.85'],[0.3199,'-6.72']],
[[0.5292,'0:35.327'],[0.0000,'+2.19'],[0.2764,'-5.80'],[0.3203,'-6.73']],
[[0.5306,'0:35.420'],[0.0000,'+3.06'],[0.2861,'-6.01'],[0.3210,'-6.74']],
[[0.5320,'0:35.513'],[0.0000,'+2.02'],[0.2940,'-6.17'],[0.3221,'-6.76']],
[[0.5334,'0:35.606'],[0.0000,'+1.35'],[0.2988,'-6.27'],[0.3239,'-6.80']],
[[0.5348,'0:35.699'],[0.0201,'-0.35'],[0.3048,'-6.40'],[0.3251,'-6.83']],
[[0.5362,'0:35.792'],[0.0443,'-0.79'],[0.3158,'-6.63'],[0.3237,'-6.80']],
[[0.5376,'0:35.885'],[0.0000,'+3.32'],[0.3264,'-6.85'],[0.3225,'-6.77']],
[[0.5390,'0:35.978'],[0.0000,'+1.41'],[0.3280,'-6.89'],[0.3259,'-6.84']],
[[0.5404,'0:36.071'],[0.0000,'+1.94'],[0.3295,'-6.92'],[0.3293,'-6.92']],
[[0.5418,'0:36.163'],[0.0898,'-1.63'],[0.3376,'-7.09'],[0.3300,'-6.93']],
[[0.5432,'0:36.256'],[0.0000,'+0.45'],[0.3464,'-7.27'],[0.3305,'-6.94']],
[[0.5446,'0:36.349'],[0.0135,'-0.24'],[0.3411,'-7.16'],[0.3298,'-6.93']],
[[0.5460,'0:36.442'],[0.0196,'-0.34'],[0.3308,'-6.95'],[0.3287,'-6.90']],
[[0.5474,'0:36.535'],[0.0000,'+0.18'],[0.3221,'-6.76'],[0.3285,'-6.90']],
[[0.5487,'0:36.628'],[0.0232,'-0.41'],[0.3145,'-6.61'],[0.3288,'-6.91']],
[[0.5501,'0:36.721'],[0.0212,'-0.37'],[0.3128,'-6.57'],[0.3293,'-6.92']],
[[0.5515,'0:36.814'],[0.0000,'+2.89'],[0.3189,'-6.70'],[0.3300,'-6.93']],
[[0.5529,'0:36.907'],[0.0000,'+0.96'],[0.3256,'-6.84'],[0.3307,'-6.95']],
[[0.5543,'0:37.000'],[0.0601,'-1.08'],[0.3342,'-7.02'],[0.3319,'-6.97']],
[[0.5557,'0:37.093'],[0.0402,'-0.71'],[0.3416,'-7.17'],[0.3331,'-6.99']],
[[0.5571,'0:37.186'],[0.0543,'-0.97'],[0.3403,'-7.15'],[0.3336,'-7.01']],
[[0.5585,'0:37.279'],[0.0000,'+0.77'],[0.3389,'-7.12'],[0.3342,'-7.02']],
[[0.5599,'0:37.372'],[0.0000,'+3.08'],[0.3105,'-6.52'],[0.3302,'-6.93']],
[[0.5613,'0:37.465'],[0.0000,'+0.67'],[0.2809,'-5.90'],[0.3260,'-6.85']],
[[0.5627,'0:37.558'],[0.0000,'+1.76'],[0.2731,'-5.73'],[0.3242,'-6.81']],
[[0.5641,'0:37.651'],[0.0269,'-0.47'],[0.2708,'-5.69'],[0.3229,'-6.78']],
[[0.5655,'0:37.744'],[0.0000,'+2.65'],[0.2769,'-5.82'],[0.3225,'-6.77']],
[[0.5669,'0:37.837'],[0.0456,'-0.81'],[0.2878,'-6.04'],[0.3226,'-6.77']],
[[0.5682,'0:37.930'],[0.0162,'-0.28'],[0.3009,'-6.32'],[0.3232,'-6.79']],
[[0.5696,'0:38.023'],[0.0610,'-1.09'],[0.3164,'-6.64'],[0.3245,'-6.81']],
[[0.5710,'0:38.116'],[0.0000,'+1.70'],[0.3262,'-6.85'],[0.3255,'-6.84']],
[[0.5724,'0:38.209'],[0.0000,'+0.84'],[0.3246,'-6.82'],[0.3261,'-6.85']],
[[0.5738,'0:38.302'],[0.0000,'+0.63'],[0.3244,'-6.81'],[0.3271,'-6.87']],
[[0.5752,'0:38.395'],[0.0000,'+0.82'],[0.3305,'-6.94'],[0.3299,'-6.93']],
[[0.5766,'0:38.488'],[0.0427,'-0.76'],[0.3365,'-7.07'],[0.3326,'-6.98']],
[[0.5780,'0:38.581'],[0.0000,'+1.76'],[0.3370,'-7.08'],[0.3314,'-6.96']],
[[0.5794,'0:38.674'],[0.0000,'+1.98'],[0.3376,'-7.09'],[0.3301,'-6.93']],
[[0.5808,'0:38.767'],[0.0000,'+0.73'],[0.3299,'-6.93'],[0.3309,'-6.95']],
[[0.5822,'0:38.860'],[0.0000,'+2.95'],[0.3209,'-6.74'],[0.3319,'-6.97']],
[[0.5836,'0:38.952'],[0.0000,'+0.13'],[0.3119,'-6.55'],[0.3304,'-6.94']],
[[0.5850,'0:39.045'],[0.0000,'+0.07'],[0.3030,'-6.36'],[0.3277,'-6.88']],
[[0.5864,'0:39.138'],[0.0000,'+1.32'],[0.3011,'-6.32'],[0.3262,'-6.85']],
[[0.5877,'0:39.231'],[0.0224,'-0.39'],[0.3052,'-6.41'],[0.3256,'-6.84']],
[[0.5891,'0:39.324'],[0.0000,'+0.22'],[0.3098,'-6.51'],[0.3253,'-6.83']],
[[0.5905,'0:39.417'],[0.0291,'-0.51'],[0.3153,'-6.62'],[0.3254,'-6.83']],
[[0.5919,'0:39.510'],[0.0330,'-0.58'],[0.3182,'-6.68'],[0.3254,'-6.83']],
[[0.5933,'0:39.603'],[0.0570,'-1.02'],[0.3130,'-6.57'],[0.3251,'-6.83']],
[[0.5947,'0:39.696'],[0.0534,'-0.95'],[0.3078,'-6.46'],[0.3246,'-6.82']],
[[0.5961,'0:39.789'],[0.0521,'-0.93'],[0.3019,'-6.34'],[0.3228,'-6.78']],
[[0.5975,'0:39.882'],[0.0321,'-0.57'],[0.2960,'-6.22'],[0.3209,'-6.74']],
[[0.5989,'0:39.975'],[0.0438,'-0.78'],[0.2926,'-6.14'],[0.3182,'-6.68']],
[[0.6003,'0:40.068'],[0.0486,'-0.87'],[0.2893,'-6.08'],[0.3154,'-6.62']],
[[0.6017,'0:40.161'],[0.0000,'+1.90'],[0.2955,'-6.20'],[0.3148,'-6.61']],
[[0.6031,'0:40.254'],[0.0000,'+3.62'],[0.3045,'-6.39'],[0.3150,'-6.61']],
[[0.6045,'0:40.347'],[0.0368,'-0.65'],[0.3072,'-6.45'],[0.3158,'-6.63']],
[[0.6058,'0:40.440'],[0.0000,'+0.09'],[0.3059,'-6.42'],[0.3170,'-6.66']],
[[0.6072,'0:40.533'],[0.0000,'+2.43'],[0.3029,'-6.36'],[0.3178,'-6.67']],
[[0.6086,'0:40.626'],[0.0000,'+0.38'],[0.2981,'-6.26'],[0.3182,'-6.68']],
[[0.6100,'0:40.719'],[0.0000,'+1.62'],[0.2953,'-6.20'],[0.3185,'-6.69']],
[[0.6114,'0:40.812'],[0.0000,'+4.10'],[0.2972,'-6.24'],[0.3188,'-6.69']],
[[0.6128,'0:40.905'],[0.0523,'-0.93'],[0.2996,'-6.29'],[0.3190,'-6.70']],
[[0.6142,'0:40.998'],[0.0444,'-0.79'],[0.3053,'-6.41'],[0.3186,'-6.69']],
[[0.6156,'0:41.091'],[0.0442,'-0.79'],[0.3110,'-6.53'],[0.3181,'-6.68']],
[[0.6170,'0:41.184'],[0.0000,'+3.10'],[0.3053,'-6.41'],[0.3167,'-6.65']],
[[0.6184,'0:41.277'],[0.0000,'+3.09'],[0.2994,'-6.29'],[0.3152,'-6.62']],
[[0.6198,'0:41.370'],[0.0558,'-1.00'],[0.2943,'-6.18'],[0.3142,'-6.60']],
[[0.6212,'0:41.463'],[0.0626,'-1.12'],[0.2894,'-6.08'],[0.3133,'-6.58']],
[[0.6226,'0:41.556'],[0.0131,'-0.23'],[0.3018,'-6.34'],[0.3136,'-6.58']],
[[0.6240,'0:41.649'],[0.0000,'+0.28'],[0.3225,'-6.77'],[0.3143,'-6.60']],
[[0.6253,'0:41.741'],[0.0000,'+1.52'],[0.3310,'-6.95'],[0.3145,'-6.60']],
[[0.6267,'0:41.834'],[0.0632,'-1.13'],[0.3281,'-6.89'],[0.3142,'-6.60']],
[[0.6281,'0:41.927'],[0.0000,'+1.08'],[0.3253,'-6.83'],[0.3145,'-6.60']],
[[0.6295,'0:42.020'],[0.0000,'+3.36'],[0.3228,'-6.78'],[0.3159,'-6.63']],
[[0.6309,'0:42.113'],[0.0414,'-0.73'],[0.3206,'-6.73'],[0.3171,'-6.66']],
[[0.6323,'0:42.206'],[0.0429,'-0.76'],[0.3202,'-6.72'],[0.3173,'-6.66']],
[[0.6337,'0:42.299'],[0.0000,'+0.22'],[0.3202,'-6.72'],[0.3175,'-6.67']],
[[0.6351,'0:42.392'],[0.0000,'+2.31'],[0.3281,'-6.89'],[0.3183,'-6.68']],
[[0.6365,'0:42.485'],[0.0537,'-0.96'],[0.3360,'-7.06'],[0.3192,'-6.70']],
[[0.6379,'0:42.578'],[0.0856,'-1.55'],[0.3449,'-7.24'],[0.3197,'-6.71']],
[[0.6393,'0:42.671'],[0.0216,'-0.38'],[0.3539,'-7.43'],[0.3201,'-6.72']],
[[0.6407,'0:42.764'],[0.0011,'-0.02'],[0.3547,'-7.45'],[0.3223,'-6.77']],
[[0.6421,'0:42.857'],[0.0190,'-0.33'],[0.3526,'-7.40'],[0.3251,'-6.83']],
[[0.6435,'0:42.950'],[0.0564,'-1.01'],[0.3535,'-7.42'],[0.3265,'-6.86']],
[[0.6448,'0:43.043'],[0.0423,'-0.75'],[0.3565,'-7.49'],[0.3270,'-6.87']],
[[0.6462,'0:43.136'],[0.0529,'-0.94'],[0.3603,'-7.57'],[0.3287,'-6.90']],
[[0.6476,'0:43.229'],[0.0573,'-1.03'],[0.3651,'-7.67'],[0.3320,'-6.97']],
[[0.6490,'0:43.322'],[0.0594,'-1.06'],[0.3666,'-7.70'],[0.3344,'-7.02']],
[[0.6504,'0:43.415'],[0.0122,'-0.21'],[0.3594,'-7.55'],[0.3346,'-7.03']],
[[0.6518,'0:43.508'],[0.0000,'+1.29'],[0.3523,'-7.40'],[0.3349,'-7.03']],
[[0.6532,'0:43.601'],[0.0000,'+0.29'],[0.3451,'-7.25'],[0.3363,'-7.06']],
[[0.6546,'0:43.694'],[0.0000,'+0.96'],[0.3380,'-7.10'],[0.3376,'-7.09']],
[[0.6560,'0:43.787'],[0.0000,'+0.48'],[0.3333,'-7.00'],[0.3382,'-7.10']],
[[0.6574,'0:43.880'],[0.0341,'-0.60'],[0.3288,'-6.90'],[0.3388,'-7.11']],
[[0.6588,'0:43.973'],[0.0594,'-1.06'],[0.3226,'-6.78'],[0.3384,'-7.11']],
[[0.6602,'0:44.066'],[0.0000,'+2.19'],[0.3161,'-6.64'],[0.3379,'-7.10']],
[[0.6616,'0:44.159'],[0.0126,'-0.22'],[0.3024,'-6.35'],[0.3372,'-7.08']],
[[0.6630,'0:44.252'],[0.0030,'-0.05'],[0.2848,'-5.98'],[0.3364,'-7.07']],
[[0.6643,'0:44.345'],[0.0000,'+0.37'],[0.2776,'-5.83'],[0.3362,'-7.06']],
[[0.6657,'0:44.438'],[0.0000,'+2.54'],[0.2814,'-5.91'],[0.3365,'-7.07']],
[[0.6671,'0:44.530'],[0.0000,'+3.49'],[0.2795,'-5.87'],[0.3355,'-7.05']],
[[0.6685,'0:44.623'],[0.0000,'+0.32'],[0.2664,'-5.59'],[0.3321,'-6.97']],
[[0.6699,'0:44.716'],[0.0000,'+4.31'],[0.2592,'-5.44'],[0.3295,'-6.92']],
[[0.6713,'0:44.809'],[0.0674,'-1.21'],[0.2789,'-5.86'],[0.3306,'-6.94']],
[[0.6727,'0:44.902'],[0.0265,'-0.47'],[0.2981,'-6.26'],[0.3318,'-6.97']],
[[0.6741,'0:44.995'],[0.0000,'+2.07'],[0.2967,'-6.23'],[0.3315,'-6.96']],
[[0.6755,'0:45.088'],[0.0000,'+0.08'],[0.2952,'-6.20'],[0.3312,'-6.95']],
[[0.6769,'0:45.181'],[0.0407,'-0.72'],[0.3106,'-6.52'],[0.3323,'-6.98']],
[[0.6783,'0:45.274'],[0.0354,'-0.63'],[0.3285,'-6.90'],[0.3337,'-7.01']],
[[0.6797,'0:45.367'],[0.0577,'-1.03'],[0.3430,'-7.20'],[0.3344,'-7.02']],
[[0.6811,'0:45.460'],[0.0000,'+0.06'],[0.3560,'-7.48'],[0.3347,'-7.03']],
[[0.6825,'0:45.553'],[0.0266,'-0.47'],[0.3535,'-7.42'],[0.3345,'-7.02']],
[[0.6838,'0:45.646'],[0.0140,'-0.25'],[0.3385,'-7.11'],[0.3339,'-7.01']],
[[0.6852,'0:45.739'],[0.0400,'-0.71'],[0.3285,'-6.90'],[0.3331,'-6.99']],
[[0.6866,'0:45.832'],[0.0360,'-0.64'],[0.3260,'-6.85'],[0.3321,'-6.97']],
[[0.6880,'0:45.925'],[0.0527,'-0.94'],[0.3252,'-6.83'],[0.3313,'-6.96']],
[[0.6894,'0:46.018'],[0.0467,'-0.83'],[0.3296,'-6.92'],[0.3315,'-6.96']],
[[0.6908,'0:46.111'],[0.0628,'-1.13'],[0.3340,'-7.01'],[0.3315,'-6.96']],
[[0.6922,'0:46.204'],[0.0942,'-1.72'],[0.3390,'-7.12'],[0.3299,'-6.93']],
[[0.6936,'0:46.297'],[0.0000,'+1.98'],[0.3439,'-7.22'],[0.3282,'-6.89']],
[[0.6950,'0:46.390'],[0.0247,'-0.43'],[0.3177,'-6.67'],[0.3258,'-6.84']],
[[0.6964,'0:46.483'],[0.0000,'+0.21'],[0.2891,'-6.07'],[0.3232,'-6.79']],
[[0.6978,'0:46.576'],[0.0000,'+2.86'],[0.2825,'-5.93'],[0.3217,'-6.76']],
[[0.6992,'0:46.669'],[0.0000,'+1.92'],[0.2824,'-5.93'],[0.3205,'-6.73']],
[[0.7006,'0:46.762'],[0.0000,'+2.07'],[0.2850,'-5.99'],[0.3201,'-6.72']],
[[0.7019,'0:46.855'],[0.0334,'-0.59'],[0.2894,'-6.08'],[0.3203,'-6.73']],
[[0.7033,'0:46.948'],[0.0249,'-0.44'],[0.2987,'-6.27'],[0.3206,'-6.73']],
[[0.7047,'0:47.041'],[0.0281,'-0.50'],[0.3138,'-6.59'],[0.3211,'-6.74']],
[[0.7061,'0:47.134'],[0.0000,'+1.62'],[0.3215,'-6.75'],[0.3214,'-6.75']],
[[0.7075,'0:47.227'],[0.0000,'+3.37'],[0.3123,'-6.56'],[0.3214,'-6.75']],
[[0.7089,'0:47.319'],[0.0296,'-0.52'],[0.3038,'-6.38'],[0.3217,'-6.76']],
[[0.7103,'0:47.412'],[0.0127,'-0.22'],[0.2990,'-6.28'],[0.3237,'-6.80']],
[[0.7117,'0:47.505'],[0.0424,'-0.75'],[0.2943,'-6.18'],[0.3258,'-6.84']],
[[0.7131,'0:47.598'],[0.0000,'+3.46'],[0.3140,'-6.59'],[0.3291,'-6.91']],
[[0.7145,'0:47.691'],[0.0693,'-1.25'],[0.3340,'-7.01'],[0.3325,'-6.98']],
[[0.7159,'0:47.784'],[0.0504,'-0.90'],[0.3358,'-7.05'],[0.3321,'-6.97']],
[[0.7173,'0:47.877'],[0.0000,'+0.16'],[0.3340,'-7.01'],[0.3311,'-6.95']],
[[0.7187,'0:47.970'],[0.0000,'+0.94'],[0.3313,'-6.96'],[0.3314,'-6.96']],
[[0.7201,'0:48.063'],[0.0000,'+0.36'],[0.3282,'-6.89'],[0.3324,'-6.98']],
[[0.7214,'0:48.156'],[0.0000,'+0.20'],[0.3241,'-6.81'],[0.3316,'-6.96']],
[[0.7228,'0:48.249'],[0.0043,'-0.07'],[0.3191,'-6.70'],[0.3291,'-6.91']],
[[0.7242,'0:48.342'],[0.0350,'-0.62'],[0.3194,'-6.71'],[0.3277,'-6.88']],
[[0.7256,'0:48.435'],[0.0488,'-0.87'],[0.3287,'-6.90'],[0.3284,'-6.90']],
[[0.7270,'0:48.528'],[0.0345,'-0.61'],[0.3368,'-7.07'],[0.3290,'-6.91']],
[[0.7284,'0:48.621'],[0.0000,'+0.14'],[0.3407,'-7.16'],[0.3288,'-6.90']],
[[0.7298,'0:48.714'],[0.0188,'-0.33'],[0.3441,'-7.23'],[0.3286,'-6.90']],
[[0.7312,'0:48.807'],[0.0468,'-0.83'],[0.3375,'-7.09'],[0.3294,'-6.92']],
[[0.7326,'0:48.900'],[0.0515,'-0.92'],[0.3309,'-6.95'],[0.3301,'-6.93']],
[[0.7340,'0:48.993'],[0.0305,'-0.54'],[0.3346,'-7.03'],[0.3293,'-6.92']],
[[0.7354,'0:49.086'],[0.0398,'-0.70'],[0.3393,'-7.13'],[0.3283,'-6.89']],
[[0.7368,'0:49.179'],[0.0000,'+0.20'],[0.3372,'-7.08'],[0.3284,'-6.90']],
[[0.7382,'0:49.272'],[0.0000,'+0.13'],[0.3328,'-6.99'],[0.3288,'-6.90']],
[[0.7396,'0:49.365'],[0.0000,'+1.30'],[0.3289,'-6.91'],[0.3290,'-6.91']],
[[0.7409,'0:49.458'],[0.0000,'+1.13'],[0.3255,'-6.84'],[0.3292,'-6.91']],
[[0.7423,'0:49.551'],[0.0000,'+0.75'],[0.3248,'-6.82'],[0.3311,'-6.95']],
[[0.7437,'0:49.644'],[0.0087,'-0.15'],[0.3278,'-6.88'],[0.3352,'-7.04']],
[[0.7451,'0:49.737'],[0.0000,'+1.50'],[0.3325,'-6.98'],[0.3380,'-7.10']],
[[0.7465,'0:49.830'],[0.0249,'-0.44'],[0.3421,'-7.18'],[0.3376,'-7.09']],
[[0.7479,'0:49.923'],[0.0332,'-0.59'],[0.3506,'-7.36'],[0.3372,'-7.08']],
[[0.7493,'0:50.016'],[0.0000,'+0.38'],[0.3518,'-7.39'],[0.3372,'-7.08']],
[[0.7507,'0:50.108'],[0.0142,'-0.25'],[0.3529,'-7.41'],[0.3372,'-7.08']],
[[0.7521,'0:50.201'],[0.0000,'+1.34'],[0.3396,'-7.13'],[0.3386,'-7.11']],
[[0.7535,'0:50.294'],[0.0602,'-1.08'],[0.3257,'-6.84'],[0.3400,'-7.14']],
[[0.7549,'0:50.387'],[0.0000,'+0.31'],[0.3264,'-6.86'],[0.3413,'-7.17']],
[[0.7563,'0:50.480'],[0.0323,'-0.57'],[0.3308,'-6.95'],[0.3425,'-7.19']],
[[0.7577,'0:50.573'],[0.0095,'-0.17'],[0.3310,'-6.95'],[0.3428,'-7.20']],
[[0.7591,'0:50.666'],[0.0114,'-0.20'],[0.3291,'-6.91'],[0.3427,'-7.20']],
[[0.7604,'0:50.759'],[0.0000,'+0.00'],[0.3296,'-6.92'],[0.3428,'-7.20']],
[[0.7618,'0:50.852'],[0.0614,'-1.10'],[0.3326,'-6.98'],[0.3432,'-7.21']],
[[0.7632,'0:50.945'],[0.0000,'+4.12'],[0.3293,'-6.92'],[0.3430,'-7.20']],
[[0.7646,'0:51.038'],[0.0103,'-0.18'],[0.3136,'-6.59'],[0.3417,'-7.18']],
[[0.7660,'0:51.131'],[0.0290,'-0.51'],[0.2992,'-6.28'],[0.3404,'-7.15']],
[[0.7674,'0:51.224'],[0.0000,'+0.23'],[0.2901,'-6.09'],[0.3392,'-7.12']],
[[0.7688,'0:51.317'],[0.0080,'-0.14'],[0.2813,'-5.91'],[0.3379,'-7.10']],
[[0.7702,'0:51.410'],[0.0000,'+0.03'],[0.2872,'-6.03'],[0.3368,'-7.07']],
[[0.7716,'0:51.503'],[0.0029,'-0.05'],[0.2931,'-6.15'],[0.3358,'-7.05']],
[[0.7730,'0:51.596'],[0.0290,'-0.51'],[0.3016,'-6.33'],[0.3346,'-7.03']],
[[0.7744,'0:51.689'],[0.0498,'-0.89'],[0.3105,'-6.52'],[0.3334,'-7.00']],
[[0.7758,'0:51.782'],[0.0580,'-1.04'],[0.3071,'-6.45'],[0.3316,'-6.96']],
[[0.7772,'0:51.875'],[0.0431,'-0.77'],[0.2986,'-6.27'],[0.3296,'-6.92']],
[[0.7786,'0:51.968'],[0.0388,'-0.69'],[0.2898,'-6.09'],[0.3275,'-6.88']],
[[0.7799,'0:52.061'],[0.0517,'-0.92'],[0.2807,'-5.89'],[0.3252,'-6.83']],
[[0.7813,'0:52.154'],[0.0521,'-0.93'],[0.2772,'-5.82'],[0.3236,'-6.80']],
[[0.7827,'0:52.247'],[0.0455,'-0.81'],[0.2823,'-5.93'],[0.3231,'-6.78']],
[[0.7841,'0:52.340'],[0.0510,'-0.91'],[0.2872,'-6.03'],[0.3223,'-6.77']],
[[0.7855,'0:52.433'],[0.0461,'-0.82'],[0.2912,'-6.12'],[0.3208,'-6.74']],
[[0.7869,'0:52.526'],[0.0568,'-1.02'],[0.2956,'-6.21'],[0.3195,'-6.71']],
[[0.7883,'0:52.619'],[0.0513,'-0.91'],[0.3040,'-6.38'],[0.3196,'-6.71']],
[[0.7897,'0:52.712'],[0.0026,'-0.05'],[0.3124,'-6.56'],[0.3197,'-6.71']],
[[0.7911,'0:52.805'],[0.0000,'+0.50'],[0.3162,'-6.64'],[0.3188,'-6.69']],
[[0.7925,'0:52.897'],[0.0058,'-0.10'],[0.3196,'-6.71'],[0.3178,'-6.67']],
[[0.7939,'0:52.990'],[0.0000,'+0.29'],[0.3211,'-6.74'],[0.3172,'-6.66']],
[[0.7953,'0:53.083'],[0.0049,'-0.08'],[0.3222,'-6.77'],[0.3168,'-6.65']],
[[0.7967,'0:53.176'],[0.0000,'+0.41'],[0.3146,'-6.61'],[0.3157,'-6.63']],
[[0.7981,'0:53.269'],[0.0049,'-0.09'],[0.3017,'-6.34'],[0.3142,'-6.60']],
[[0.7994,'0:53.362'],[0.0000,'+4.02'],[0.2939,'-6.17'],[0.3130,'-6.57']],
[[0.8008,'0:53.455'],[0.0000,'+0.36'],[0.2922,'-6.14'],[0.3123,'-6.56']],
[[0.8022,'0:53.548'],[0.0000,'+0.72'],[0.2919,'-6.13'],[0.3115,'-6.54']],
[[0.8036,'0:53.641'],[0.0502,'-0.89'],[0.2945,'-6.19'],[0.3106,'-6.52']],
[[0.8050,'0:53.734'],[0.0000,'+0.93'],[0.2973,'-6.24'],[0.3098,'-6.51']],
[[0.8064,'0:53.827'],[0.0000,'+0.37'],[0.3010,'-6.32'],[0.3090,'-6.49']],
[[0.8078,'0:53.920'],[0.0000,'+0.18'],[0.3047,'-6.40'],[0.3083,'-6.47']],
[[0.8092,'0:54.013'],[0.0000,'+0.30'],[0.2963,'-6.22'],[0.3083,'-6.47']],
[[0.8106,'0:54.106'],[0.0000,'+0.65'],[0.2878,'-6.04'],[0.3083,'-6.47']],
[[0.8120,'0:54.199'],[0.0221,'-0.39'],[0.2931,'-6.16'],[0.3099,'-6.51']],
[[0.8134,'0:54.292'],[0.0000,'+0.82'],[0.3011,'-6.32'],[0.3119,'-6.55']],
[[0.8148,'0:54.385'],[0.0036,'-0.06'],[0.3075,'-6.46'],[0.3123,'-6.56']],
[[0.8162,'0:54.478'],[0.0000,'+0.71'],[0.3133,'-6.58'],[0.3120,'-6.55']],
[[0.8175,'0:54.571'],[0.0000,'+0.48'],[0.3093,'-6.50'],[0.3115,'-6.54']],
[[0.8189,'0:54.664'],[0.0452,'-0.80'],[0.2967,'-6.23'],[0.3107,'-6.53']],
[[0.8203,'0:54.757'],[0.0000,'+3.20'],[0.2905,'-6.10'],[0.3103,'-6.52']],
[[0.8217,'0:54.850'],[0.0561,'-1.00'],[0.2955,'-6.21'],[0.3105,'-6.52']],
[[0.8231,'0:54.943'],[0.0606,'-1.09'],[0.3004,'-6.31'],[0.3112,'-6.54']],
[[0.8245,'0:55.036'],[0.0560,'-1.00'],[0.3051,'-6.41'],[0.3139,'-6.59']],
[[0.8259,'0:55.129'],[0.0597,'-1.07'],[0.3104,'-6.52'],[0.3165,'-6.65']],
[[0.8273,'0:55.222'],[0.0316,'-0.56'],[0.3261,'-6.85'],[0.3179,'-6.68']],
[[0.8287,'0:55.315'],[0.0592,'-1.06'],[0.3418,'-7.18'],[0.3193,'-6.71']],
[[0.8301,'0:55.408'],[0.0548,'-0.98'],[0.3331,'-7.00'],[0.3198,'-6.72']],
[[0.8315,'0:55.501'],[0.0589,'-1.05'],[0.3217,'-6.76'],[0.3203,'-6.73']],
[[0.8329,'0:55.594'],[0.0455,'-0.81'],[0.3242,'-6.81'],[0.3211,'-6.74']],
[[0.8343,'0:55.686'],[0.0617,'-1.11'],[0.3315,'-6.96'],[0.3221,'-6.76']],
[[0.8357,'0:55.779'],[0.0041,'-0.07'],[0.3358,'-7.05'],[0.3226,'-6.77']],
[[0.8370,'0:55.872'],[0.0593,'-1.06'],[0.3379,'-7.10'],[0.3227,'-6.78']],
[[0.8384,'0:55.965'],[0.0220,'-0.39'],[0.3300,'-6.93'],[0.3221,'-6.76']],
[[0.8398,'0:56.058'],[0.0000,'+0.29'],[0.3088,'-6.49'],[0.3205,'-6.73']],
[[0.8412,'0:56.151'],[0.0000,'+4.14'],[0.2910,'-6.11'],[0.3191,'-6.70']],
[[0.8426,'0:56.244'],[0.0000,'+1.75'],[0.2817,'-5.92'],[0.3183,'-6.68']],
[[0.8440,'0:56.337'],[0.0000,'+3.38'],[0.2737,'-5.75'],[0.3177,'-6.67']],
[[0.8454,'0:56.430'],[0.0000,'+1.16'],[0.2749,'-5.77'],[0.3182,'-6.68']],
[[0.8468,'0:56.523'],[0.0008,'-0.01'],[0.2761,'-5.80'],[0.3188,'-6.69']],
[[0.8482,'0:56.616'],[0.0145,'-0.25'],[0.2905,'-6.10'],[0.3181,'-6.68']],
[[0.8496,'0:56.709'],[0.0000,'+0.27'],[0.3055,'-6.42'],[0.3174,'-6.67']],
[[0.8510,'0:56.802'],[0.0000,'+0.70'],[0.3035,'-6.37'],[0.3175,'-6.67']],
[[0.8524,'0:56.895'],[0.0000,'+0.07'],[0.2973,'-6.24'],[0.3177,'-6.67']],
[[0.8538,'0:56.988'],[0.0000,'+0.33'],[0.2919,'-6.13'],[0.3172,'-6.66']],
[[0.8552,'0:57.081'],[0.0000,'+0.87'],[0.2870,'-6.03'],[0.3164,'-6.65']],
[[0.8565,'0:57.174'],[0.0000,'+0.93'],[0.2804,'-5.89'],[0.3153,'-6.62']],
[[0.8579,'0:57.267'],[0.0222,'-0.39'],[0.2724,'-5.72'],[0.3139,'-6.59']],
[[0.8593,'0:57.360'],[0.0000,'+0.55'],[0.2681,'-5.63'],[0.3124,'-6.56']],
[[0.8607,'0:57.453'],[0.0000,'+0.21'],[0.2712,'-5.69'],[0.3110,'-6.53']],
[[0.8621,'0:57.546'],[0.0000,'+0.87'],[0.2746,'-5.77'],[0.3097,'-6.50']],
[[0.8635,'0:57.639'],[0.0000,'+0.81'],[0.2797,'-5.87'],[0.3093,'-6.49']],
[[0.8649,'0:57.732'],[0.0000,'+0.24'],[0.2846,'-5.98'],[0.3088,'-6.49']],
[[0.8663,'0:57.825'],[0.0000,'+1.64'],[0.2874,'-6.04'],[0.3085,'-6.48']],
[[0.8677,'0:57.918'],[0.0000,'+2.57'],[0.2902,'-6.09'],[0.3083,'-6.47']],
[[0.8691,'0:58.011'],[0.0000,'+0.76'],[0.2801,'-5.88'],[0.3062,'-6.43']],
[[0.8705,'0:58.104'],[0.0000,'+0.78'],[0.2681,'-5.63'],[0.3039,'-6.38']],
[[0.8719,'0:58.197'],[0.0000,'+1.07'],[0.2693,'-5.66'],[0.3029,'-6.36']],
[[0.8733,'0:58.290'],[0.0000,'+1.00'],[0.2759,'-5.79'],[0.3025,'-6.35']],
[[0.8747,'0:58.383'],[0.0000,'+0.22'],[0.2833,'-5.95'],[0.3023,'-6.35']],
[[0.8760,'0:58.475'],[0.0483,'-0.86'],[0.2914,'-6.12'],[0.3023,'-6.35']],
[[0.8774,'0:58.568'],[0.0476,'-0.85'],[0.3004,'-6.31'],[0.3017,'-6.33']],
[[0.8788,'0:58.661'],[0.0558,'-1.00'],[0.3108,'-6.53'],[0.3002,'-6.30']],
[[0.8802,'0:58.754'],[0.0357,'-0.63'],[0.3137,'-6.59'],[0.2986,'-6.27']],
[[0.8816,'0:58.847'],[0.0000,'+2.00'],[0.2937,'-6.17'],[0.2967,'-6.23']],
[[0.8830,'0:58.940'],[0.0000,'+1.47'],[0.2752,'-5.78'],[0.2949,'-6.19']],
[[0.8844,'0:59.033'],[0.0000,'+1.16'],[0.2722,'-5.72'],[0.2940,'-6.17']],
[[0.8858,'0:59.126'],[0.0000,'+1.20'],[0.2693,'-5.65'],[0.2931,'-6.16']],
[[0.8872,'0:59.219'],[0.0000,'+1.00'],[0.2643,'-5.55'],[0.2935,'-6.16']],
[[0.8886,'0:59.312'],[0.0000,'+3.12'],[0.2593,'-5.45'],[0.2940,'-6.17']],
[[0.8900,'0:59.405'],[0.0000,'+3.63'],[0.2658,'-5.58'],[0.2940,'-6.17']],
[[0.8914,'0:59.498'],[0.0000,'+0.97'],[0.2756,'-5.79'],[0.2939,'-6.17']],
[[0.8928,'0:59.591'],[0.0000,'+0.60'],[0.2786,'-5.85'],[0.2935,'-6.16']],
[[0.8942,'0:59.684'],[0.0000,'+0.80'],[0.2774,'-5.83'],[0.2931,'-6.16']],
[[0.8955,'0:59.777'],[0.0000,'+0.71'],[0.2805,'-5.89'],[0.2929,'-6.15']],
[[0.8969,'0:59.870'],[0.0000,'+0.91'],[0.2886,'-6.06'],[0.2930,'-6.15']],
[[0.8983,'0:59.963'],[0.0000,'+1.29'],[0.2927,'-6.15'],[0.2930,'-6.15']],
[[0.8997,'1:00.056'],[0.0411,'-0.73'],[0.2882,'-6.05'],[0.2930,'-6.15']],
[[0.9011,'1:00.149'],[0.0000,'+0.65'],[0.2851,'-5.99'],[0.2933,'-6.16']],
[[0.9025,'1:00.242'],[0.0082,'-0.14'],[0.2902,'-6.09'],[0.2949,'-6.19']],
[[0.9039,'1:00.335'],[0.0000,'+0.45'],[0.2954,'-6.20'],[0.2966,'-6.23']],
[[0.9053,'1:00.428'],[0.0016,'-0.03'],[0.2994,'-6.29'],[0.2972,'-6.24']],
[[0.9067,'1:00.521'],[0.0000,'+1.62'],[0.3034,'-6.37'],[0.2978,'-6.25']],
[[0.9081,'1:00.614'],[0.0000,'+1.34'],[0.2987,'-6.27'],[0.2977,'-6.25']],
[[0.9095,'1:00.707'],[0.0000,'+3.21'],[0.2923,'-6.14'],[0.2974,'-6.25']],
[[0.9109,'1:00.800'],[0.0381,'-0.68'],[0.2942,'-6.18'],[0.2979,'-6.26']],
[[0.9123,'1:00.893'],[0.0539,'-0.96'],[0.3000,'-6.30'],[0.2986,'-6.27']],
[[0.9136,'1:00.986'],[0.0617,'-1.11'],[0.3085,'-6.48'],[0.3003,'-6.31']],
[[0.9150,'1:01.079'],[0.0607,'-1.09'],[0.3194,'-6.71'],[0.3029,'-6.36']],
[[0.9164,'1:01.172'],[0.0759,'-1.37'],[0.3295,'-6.92'],[0.3049,'-6.40']],
[[0.9178,'1:01.264'],[0.0520,'-0.93'],[0.3381,'-7.10'],[0.3059,'-6.42']],
[[0.9192,'1:01.357'],[0.0596,'-1.07'],[0.3419,'-7.18'],[0.3066,'-6.44']],
[[0.9206,'1:01.450'],[0.0570,'-1.02'],[0.3283,'-6.89'],[0.3062,'-6.43']],
[[0.9220,'1:01.543'],[0.0568,'-1.02'],[0.3153,'-6.62'],[0.3057,'-6.42']],
[[0.9234,'1:01.636'],[0.0000,'+1.95'],[0.3121,'-6.55'],[0.3056,'-6.42']],
[[0.9248,'1:01.729'],[0.0000,'+1.57'],[0.3088,'-6.48'],[0.3055,'-6.42']],
[[0.9262,'1:01.822'],[0.0000,'+2.21'],[0.2989,'-6.28'],[0.3062,'-6.43']],
[[0.9276,'1:01.915'],[0.0000,'+1.42'],[0.2883,'-6.06'],[0.3070,'-6.45']],
[[0.9290,'1:02.008'],[0.0000,'+2.75'],[0.2860,'-6.01'],[0.3077,'-6.46']],
[[0.9304,'1:02.101'],[0.0407,'-0.72'],[0.2864,'-6.01'],[0.3084,'-6.48']],
[[0.9318,'1:02.194'],[0.0000,'+0.61'],[0.2833,'-5.95'],[0.3083,'-6.47']],
[[0.9331,'1:02.287'],[0.0970,'-1.77'],[0.2778,'-5.83'],[0.3075,'-6.46']],
[[0.9345,'1:02.380'],[0.0000,'+3.64'],[0.2690,'-5.65'],[0.3064,'-6.44']],
[[0.9359,'1:02.473'],[0.0000,'+1.62'],[0.2559,'-5.37'],[0.3048,'-6.40']],
[[0.9373,'1:02.566'],[0.0000,'+0.83'],[0.2444,'-5.13'],[0.3033,'-6.37']],
[[0.9387,'1:02.659'],[0.0000,'+0.84'],[0.2369,'-4.98'],[0.3024,'-6.35']],
[[0.9401,'1:02.752'],[0.0000,'+2.32'],[0.2326,'-4.89'],[0.3016,'-6.33']],
[[0.9415,'1:02.845'],[0.0000,'+1.25'],[0.2506,'-5.26'],[0.3020,'-6.34']],
[[0.9429,'1:02.938'],[0.0000,'+0.13'],[0.2686,'-5.64'],[0.3024,'-6.35']],
[[0.9443,'1:03.031'],[0.0058,'-0.10'],[0.2684,'-5.64'],[0.3003,'-6.31']],
[[0.9457,'1:03.124'],[0.0000,'+2.42'],[0.2675,'-5.62'],[0.2981,'-6.26']],
[[0.9471,'1:03.217'],[0.0000,'+2.08'],[0.2519,'-5.29'],[0.2957,'-6.21']],
[[0.9485,'1:03.310'],[0.0000,'+2.26'],[0.2329,'-4.89'],[0.2932,'-6.16']],
[[0.9499,'1:03.403'],[0.0000,'+1.53'],[0.2287,'-4.80'],[0.2913,'-6.12']],
[[0.9513,'1:03.496'],[0.0000,'+4.07'],[0.2322,'-4.88'],[0.2897,'-6.08']],
[[0.9526,'1:03.589'],[0.0000,'+0.67'],[0.2381,'-5.00'],[0.2888,'-6.06']],
[[0.9540,'1:03.682'],[0.0000,'+0.94'],[0.2464,'-5.17'],[0.2886,'-6.06']],
[[0.9554,'1:03.775'],[0.0000,'+0.90'],[0.2504,'-5.26'],[0.2870,'-6.03']],
[[0.9568,'1:03.868'],[0.0000,'+2.25'],[0.2459,'-5.16'],[0.2825,'-5.93']],
[[0.9582,'1:03.961'],[0.0000,'+1.92'],[0.2408,'-5.06'],[0.2784,'-5.85']],
[[0.9596,'1:04.053'],[0.0000,'+1.74'],[0.2326,'-4.88'],[0.2759,'-5.79']],
[[0.9610,'1:04.146'],[0.0000,'+1.60'],[0.2248,'-4.72'],[0.2735,'-5.74']],
[[0.9624,'1:04.239'],[0.0000,'+1.65'],[0.2300,'-4.83'],[0.2723,'-5.72']],
[[0.9638,'1:04.332'],[0.0000,'+1.20'],[0.2351,'-4.94'],[0.2711,'-5.69']],
[[0.9652,'1:04.425'],[0.0000,'+0.78'],[0.2542,'-5.34'],[0.2699,'-5.67']],
[[0.9666,'1:04.518'],[0.0000,'+0.62'],[0.2753,'-5.78'],[0.2688,'-5.65']],
[[0.9680,'1:04.611'],[0.0000,'+0.81'],[0.2858,'-6.00'],[0.2690,'-5.65']],
[[0.9694,'1:04.704'],[0.0000,'+0.39'],[0.2922,'-6.14'],[0.2696,'-5.66']],
[[0.9708,'1:04.797'],[0.0583,'-1.04'],[0.2997,'-6.29'],[0.2702,'-5.67']],
[[0.9721,'1:04.890'],[0.0587,'-1.05'],[0.3082,'-6.47'],[0.2707,'-5.69']],
[[0.9735,'1:04.983'],[0.0629,'-1.13'],[0.3159,'-6.63'],[0.2714,'-5.70']],
[[0.9749,'1:05.076'],[0.0631,'-1.13'],[0.3226,'-6.78'],[0.2723,'-5.72']],
[[0.9763,'1:05.169'],[0.0631,'-1.13'],[0.3302,'-6.94'],[0.2731,'-5.74']],
[[0.9777,'1:05.262'],[0.0637,'-1.14'],[0.3405,'-7.15'],[0.2734,'-5.74']],
[[0.9791,'1:05.355'],[0.0628,'-1.13'],[0.3502,'-7.35'],[0.2741,'-5.76']],
[[0.9805,'1:05.448'],[0.0775,'-1.40'],[0.3534,'-7.42'],[0.2789,'-5.86']],
[[0.9819,'1:05.541'],[0.0439,'-0.78'],[0.3567,'-7.49'],[0.2838,'-5.96']],
[[0.9833,'1:05.634'],[0.0952,'-1.74'],[0.3623,'-7.61'],[0.2873,'-6.03']],
[[0.9847,'1:05.727'],[0.0551,'-0.98'],[0.3680,'-7.73'],[0.2907,'-6.11']],
[[0.9861,'1:05.820'],[0.1014,'-1.86'],[0.3883,'-8.15'],[0.2948,'-6.19']],
[[0.9875,'1:05.913'],[0.0645,'-1.16'],[0.4127,'-8.67'],[0.2991,'-6.28']],
[[0.9889,'1:06.006'],[0.1010,'-1.85'],[0.4301,'-9.03'],[0.3034,'-6.37']],
[[0.9903,'1:06.099'],[0.0590,'-1.06'],[0.4431,'-9.30'],[0.3078,'-6.46']],
[[0.9916,'1:06.192'],[0.1366,'-2.55'],[0.4476,'-9.40'],[0.3126,'-6.56']],
[[0.9930,'1:06.285'],[0.0628,'-1.13'],[0.4424,'-9.29'],[0.3178,'-6.67']],
[[0.9944,'1:06.378'],[0.1190,'-2.20'],[0.4335,'-9.10'],[0.3234,'-6.79']],
[[0.9958,'1:06.471'],[0.0536,'-0.96'],[0.4166,'-8.75'],[0.3297,'-6.92']],
[[0.9972,'1:06.564'],[0.0610,'-1.09'],[0.4023,'-8.45'],[0.3350,'-7.03']],
[[0.9986,'1:06.657'],[0.0590,'-1.06'],[0.4023,'-8.45'],[0.3350,'-7.03']],
[[1.0000,'1:06.750'],[0.2544,'-5.10'],[0.4023,'-8.45'],[0.3350,'-7.03']],
],
xmaj:[
[0.0000,'0:00'],
[0.0749,'0:05'],
[0.1498,'0:10'],
[0.2247,'0:15'],
[0.2996,'0:20'],
[0.3745,'0:25'],
[0.4494,'0:30'],
[0.5243,'0:35'],
[0.5993,'0:40'],
[0.6742,'0:45'],
[0.7491,'0:50'],
[0.8240,'0:55'],
[0.8989,'1:00'],
[0.9738,'1:05'],
],
xmin:[
],
yrange:[
-21.00,
-0.00,
],
ymaj:[
[0.0000,'+0'],
[0.1429,'-3'],
[0.2857,'-6'],
[0.4286,'-9'],
[0.5714,'-12'],
[0.7143,'-15'],
[0.8571,'-18'],
[1.0000,'-21'],
],
ymin:[
0.0476,
0.0952,
0.1905,
0.2381,
0.3333,
0.3810,
0.4762,
0.5238,
0.6190,
0.6667,
0.7619,
0.8095,
0.9048,
0.9524,
],
markers:[
[0.0000,'0:00.000','C minor','#567272', '#FFFFFF'],
],
};
var canv_0=document.getElementById('chart_0');
draw_chart(canv_0, data_0, -1, -1);
canv_0.addEventListener('mousemove', function (evt) { draw_chart(canv_0, data_0, evt.offsetX, evt.offsetY); }, false);
canv_0.addEventListener('mouseleave', function (evt) { draw_chart(canv_0, data_0, -1, -1); }, false);