forked from Akhileshkumarkc/CrimeDataset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.arff
2047 lines (2045 loc) · 889 KB
/
data.arff
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
@relation 'crimepredict-weka.filters.unsupervised.attribute.Remove-R4_principal components-weka.filters.unsupervised.attribute.PrincipalComponents-R0.95-A5-M-1'
@attribute 0.177medFamInc+0.175medIncome+0.174PctKids2Par+0.171pctWInvInc+0.171PctFam2Par... numeric
@attribute '0.21 PctRecImmig10+0.21 PctRecImmig8+0.208PctRecImmig5+0.206PctForeignBorn+0.205PctRecentImmig...' numeric
@attribute 0.204HousVacant-0.193PersPerOccupHous+0.193numbUrban+0.192population+0.192NumInShelters... numeric
@attribute -0.243PctSameCity85-0.242PctSameHouse85+0.207PctImmigRec5+0.204PctImmigRec8+0.202PctImmigRecent... numeric
@attribute '-0.238agePct65up-0.203pctWSocSec+0.2 agePct12t21+0.186pctWWage+0.179householdsize...' numeric
@attribute -0.371PolicPerPop-0.371LemasSwFTPerPop-0.367LemasSwFTFieldPerPop-0.32PolicBudgPerPop-0.251LemasTotReqPerPop... numeric
@attribute '0.278PctEmplProfServ-0.235MedYrHousBuilt-0.213PolicBudgPerPop+0.21 MalePctNevMarr-0.196LemasSwFTPerPop...' numeric
@attribute -0.302racepctblack-0.216PctIlleg+0.214racePctWhite-0.186PctPolicBlack+0.183RacialMatchCommPol... numeric
@attribute 0.287PctEmplManu+0.284PctHousOccup-0.231MedYrHousBuilt+0.217PopDens+0.192PctOccupManu... numeric
@attribute -0.413PctPolicMinor+0.412PctPolicWhite-0.285PctPolicHisp-0.251PctPolicAsian-0.251PctPolicBlack... numeric
@attribute -0.303PctImmigRec8-0.298PctImmigRec5-0.295PctImmigRec10-0.278PctImmigRecent+0.209MalePctNevMarr... numeric
@attribute 0.259PctPolicHisp-0.257MedRentPctHousInc+0.228PctPolicMinor+0.222state-0.22PctPolicWhite... numeric
@attribute 0.311MedOwnCostPctIncNoMtg-0.272PolicReqPerOffic-0.255pctWRetire-0.231pctUrban-0.23PctHousOccup... numeric
@attribute 0.359PolicReqPerOffic+0.259LemasTotReqPerPop+0.254LemasPctPolicOnPatr-0.253pctWRetire-0.235PctPolicBlack... numeric
@attribute '0.479PctWorkMomYoungKids+0.441PctWorkMom+0.21 pctWFarmSelf+0.195LemasPctOfficDrugUn-0.134PctHousOccup...' numeric
@attribute -0.368PolicReqPerOffic-0.283state-0.266LemasPctPolicOnPatr+0.248PolicAveOTWorked-0.236LemasTotReqPerPop... numeric
@attribute 0.266MedOwnCostPctIncNoMtg+0.239PctEmplManu+0.212PctImmigRec5-0.208PctEmplProfServ-0.202county... numeric
@attribute 0.482county+0.348community+0.287PctEmplManu-0.196LemasGangUnitDeploy-0.168NumKindsDrugsSeiz... numeric
@attribute '-0.462RacialMatchCommPol+0.32 PctPolicAsian-0.254LemasPctPolicOnPatr+0.224PolicAveOTWorked+0.221LemasGangUnitDeploy...' numeric
@attribute 0.354PolicAveOTWorked-0.309PctPolicBlack+0.254PctPolicHisp+0.242LemasPctPolicOnPatr+0.213PctPolicAsian... numeric
@attribute -0.769fold+0.321PolicAveOTWorked-0.233RacialMatchCommPol+0.217LemasPctPolicOnPatr-0.204county... numeric
@attribute '-0.643community-0.342LemasGangUnitDeploy-0.231PolicAveOTWorked-0.23OtherPerCap+0.19 LemasPctOfficDrugUn...' numeric
@attribute 0.592indianPerCap+0.356LemasGangUnitDeploy-0.338community+0.318NumKindsDrugsSeiz-0.184fold... numeric
@attribute -0.424OtherPerCap+0.371indianPerCap-0.323NumKindsDrugsSeiz+0.319PolicAveOTWorked+0.298county... numeric
@attribute -0.442fold-0.407PolicAveOTWorked+0.283PctPolicAsian+0.254NumKindsDrugsSeiz+0.231county... numeric
@attribute -0.516OtherPerCap-0.401indianPerCap+0.395LemasGangUnitDeploy-0.212PctPolicAsian-0.169NumStreet... numeric
@attribute 0.463NumKindsDrugsSeiz+0.459LemasPctPolicOnPatr-0.293OtherPerCap+0.229community+0.209LemasPctOfficDrugUn... numeric
@attribute -0.433indianPerCap+0.395county-0.393community+0.325LemasPctPolicOnPatr+0.218OtherPerCap... numeric
@attribute -0.483NumKindsDrugsSeiz+0.427LemasGangUnitDeploy+0.285LemasPctPolicOnPatr-0.263PolicAveOTWorked+0.219PctVacMore6Mos... numeric
@attribute '-0.349PctVacMore6Mos-0.261PctVacantBoarded+0.236MedYrHousBuilt-0.231indianPerCap+0.21 PctSameState85...' numeric
@attribute 0.436AsianPerCap-0.283pctWFarmSelf-0.273LemasGangUnitDeploy-0.245PctHousOccup-0.221MedNumBR... numeric
@attribute 0.687AsianPerCap-0.271PctWOFullPlumb-0.244blackPerCap-0.176pctUrban+0.175RacialMatchCommPol... numeric
@attribute 0.533PctWOFullPlumb+0.236blackPerCap-0.231state-0.227pctWFarmSelf-0.168pctUrban... numeric
@attribute -0.328racePctAsian-0.243blackPerCap+0.234pctWFarmSelf+0.212NumStreet+0.209PctLargHouseFam... numeric
@attribute 0.427RacialMatchCommPol+0.411PctPolicAsian-0.341PctPolicHisp+0.298PctPolicBlack-0.224MedNumBR... numeric
@attribute -0.471state+0.346MedNumBR-0.269PctEmplManu-0.214MedRentPctHousInc+0.201county... numeric
@attribute 0.385LemasPctOfficDrugUn-0.35LandArea+0.304OfficAssgnDrugUnits-0.231PolicCars+0.203MedRentPctHousInc... numeric
@attribute -0.617blackPerCap+0.358PctWOFullPlumb-0.239PctVacantBoarded+0.224LemasPctOfficDrugUn+0.208OfficAssgnDrugUnits... numeric
@attribute 0.486PctWOFullPlumb+0.306MedRentPctHousInc+0.244pctUrban+0.212pctWFarmSelf-0.2MedOwnCostPctIncNoMtg... numeric
@attribute 0.414blackPerCap+0.274pctWRetire+0.261pctWFarmSelf+0.219racePctAsian+0.218state... numeric
@attribute 0.397PctHousOccup-0.325MedNumBR+0.283pctWFarmSelf+0.268PctVacantBoarded+0.211MedOwnCostPctIncNoMtg... numeric
@attribute -0.427MedNumBR-0.225MedOwnCostPctIncNoMtg-0.211state+0.197PctVacMore6Mos+0.176PctHousLess3BR... numeric
@attribute '0.669HispPerCap-0.348NumStreet-0.319OtherPerCap+0.18 PctPolicAsian-0.151PctVacantBoarded...' numeric
@attribute 0.556NumStreet+0.419HispPerCap-0.296PctPolicAsian-0.22pctUrban-0.208OtherPerCap... numeric
@attribute '-0.399PctUsePubTrans+0.341MedOwnCostPctInc+0.26 pctUrban+0.215MedNumBR+0.206pctWRetire...' numeric
@attribute 0.443ViolentCrimesPerPop-0.288pctUrban+0.264LandArea-0.25racePctAsian-0.208MedOwnCostPctIncNoMtg... numeric
@attribute -0.424PctVacantBoarded+0.349pctUrban+0.227pctWFarmSelf+0.217NumStreet+0.194MedOwnCostPctIncNoMtg... numeric
@attribute '-0.437PctVacMore6Mos+0.386PctVacantBoarded+0.265MedOwnCostPctIncNoMtg+0.24 racePctAsian-0.238PctHousOccup...' numeric
@attribute PolicOperBudg numeric
@data
1.903125,-1.233235,1.443943,3.164863,-0.071784,5.136149,-1.414676,-0.298211,0.619966,2.599199,0.403098,-0.448658,-0.91641,2.548412,1.18685,0.245896,-1.349376,-0.690716,-2.332863,0.582103,1.211187,-0.038605,0.62143,0.036168,0.508327,-0.400165,-0.200345,0.296591,-0.031169,-0.726875,-1.065011,0.508504,0.543285,0.12471,0.351466,0.749475,0.13134,-0.518322,-0.281651,0.147781,-0.630945,-0.52703,0.424635,-0.329109,-0.274244,-0.10491,0.015438,-0.377846,0.04
-1.668873,0.378509,2.370041,4.586513,-1.686591,2.025334,-3.277839,-1.573049,2.404322,-1.574176,-0.686709,1.230644,0.124589,0.906011,-3.080205,-0.497856,0.102246,-0.697012,-0.516676,-0.557326,0.936291,-0.632346,-0.014242,-0.164727,0.858329,0.577487,-0.441025,0.333463,0.193522,0.240504,1.189955,-0.136417,-1.522067,-0.343759,-0.218883,-0.270762,-0.75538,0.310878,-0.250008,0.364627,0.16052,-0.347865,0.049618,0.451622,-0.610834,1.558181,0.451475,-0.203838,?
-2.121458,-2.422482,-0.08967,-0.280045,-0.523091,0.781149,-1.92919,-2.256511,-0.205466,-0.892027,1.585272,-1.005875,-0.312664,0.410181,-0.719148,0.897751,-1.754405,0.491215,-0.072686,0.927327,1.384039,0.423712,-0.129959,-0.946535,0.693661,0.646485,-1.040909,0.009251,-0.069544,-0.97434,-0.313262,-0.413858,0.992903,0.226083,-0.472508,-0.100263,-0.538044,0.227582,-0.002911,0.827556,0.35057,-0.667913,0.002962,0.342009,0.123748,1.01641,-1.072713,0.104092,?
2.963251,2.0241,-2.282789,-2.834913,2.321809,-0.545828,0.195492,-5.044093,-0.317488,0.569354,1.682693,-2.101056,-1.680713,-2.098303,2.174066,-0.784505,-1.41106,0.110508,-1.101122,2.956372,1.431908,-1.61299,-0.334088,-0.217441,1.96604,0.372353,-1.161765,-0.447721,0.695887,-1.757295,0.647137,-0.194742,-0.417724,0.956497,-0.817998,-1.897477,0.144338,-0.833767,0.41287,1.635934,1.232617,-0.714068,0.129479,0.23556,-0.696705,0.15256,-0.123567,-0.811616,?
5.698151,-2.441365,-1.206745,-2.622232,1.908218,0.149022,-0.592896,0.252855,0.391106,-0.080492,0.364001,0.281832,-0.717801,-0.66076,-0.603602,-0.344313,0.302072,0.999948,-0.117617,-0.208262,1.203935,2.274611,1.000558,-1.746929,-0.6243,1.20434,-0.996176,1.498588,-0.407572,0.319225,1.027886,0.687323,-0.099642,0.399226,0.100493,0.120055,0.190572,0.294348,0.274029,-0.027006,0.249047,0.440082,-0.734571,0.148679,0.823617,-0.354926,-0.543965,-0.766057,?
5.488252,6.803819,2.164087,2.431859,-4.25098,-0.140794,0.334866,0.011655,0.141896,-1.678082,-0.653235,0.423485,0.007652,2.086335,-1.668986,1.531991,-2.5672,-0.629843,-0.483626,-2.059295,0.584295,-0.604504,0.000353,-0.415843,0.562435,0.216172,-0.949889,0.418029,0.017959,-1.018468,0.32302,-0.381592,-0.380744,-1.714184,0.210438,0.034049,-0.414327,-0.361977,-0.863006,-0.134772,-0.089092,1.510101,-0.38995,0.095847,0.831309,-0.972981,0.382497,1.021128,?
4.121797,-3.25459,0.188436,-2.907007,-0.953295,-0.02071,0.876468,1.067354,0.734122,-0.702796,1.01163,0.231573,-0.130683,0.648087,0.308939,0.943473,-0.945596,0.300004,-0.170165,-1.104981,1.259283,0.802717,0.694347,-0.253001,0.202127,0.896205,-0.0222,-0.71216,-0.461495,0.695939,0.975752,1.326248,-0.229068,-0.245953,0.09164,-0.26385,0.137594,-0.146928,-0.411986,0.102263,-0.115101,0.033222,-0.443845,-0.311728,0.920934,-0.156473,-0.405539,-0.62248,?
-8.156155,5.898298,-7.410498,-1.647026,-0.720155,-1.260363,-0.806255,2.351973,-0.725445,-0.117435,-2.287013,-0.736968,-0.048768,-0.175035,0.312813,0.963438,-1.370498,-0.559589,-0.963613,-1.942765,1.157855,0.136145,0.099004,0.193547,0.187225,-0.257412,0.161242,0.065869,-0.690412,0.174771,-1.419762,0.886383,-0.653527,0.782612,0.546395,-0.399265,-0.011383,-0.859732,-0.898681,-0.396707,1.332933,-0.896612,0.528889,0.02893,0.875903,0.941577,-0.180652,-0.700693,?
-3.419806,-4.77858,0.115785,-0.809732,-0.674858,1.237658,-1.54587,-0.225302,0.743753,-0.853364,0.720968,0.137694,0.106144,0.900644,-0.359794,1.060202,-0.94773,0.318758,-0.33572,-0.872113,1.349341,0.076884,0.118097,-0.936511,-0.143023,0.152792,-0.239856,-0.115572,-0.235043,0.225292,-0.16376,-0.503458,-0.841489,-0.088573,0.401443,0.329073,0.046804,-0.148046,0.391235,-0.47119,0.289386,0.511548,-0.55927,-0.782311,-0.350055,-0.296811,1.100145,-0.633444,?
5.507726,1.644168,3.896771,6.675781,0.028417,-2.716482,3.627681,1.448258,0.392375,-1.421939,1.303058,0.671113,-0.127996,1.422202,0.107541,0.840732,-2.264465,0.797748,-0.234187,-0.539281,1.019957,0.423514,0.171586,-1.181985,-0.370453,1.990816,-0.402154,0.166518,0.948359,-1.83311,1.117795,-1.691506,-0.974301,1.647912,-0.260768,0.105096,0.503847,1.244872,-1.095808,-1.171559,-0.477521,-0.513669,1.266109,0.139316,-0.210494,-1.730853,0.877654,0.878359,?
0.048212,12.831101,-2.765375,-0.741794,-2.380775,0.406167,-1.21617,0.159958,2.589099,-0.615803,0.945396,-0.765323,-0.936203,-2.050554,2.165732,-0.412633,-3.052558,-0.888741,0.180384,0.360436,1.300012,0.217838,-0.108866,-0.4023,1.253403,0.201984,-1.56884,0.255798,0.36918,-1.748455,-0.215078,0.989597,0.403397,0.483776,-0.414408,-0.029039,-1.247395,-0.185014,0.730449,1.323248,-0.714419,1.504505,-0.158763,1.191947,-1.232637,-0.560048,0.677659,-0.089167,?
7.150568,0.826919,1.105102,-3.331916,-2.546059,-1.696953,4.120918,0.094046,0.84537,-0.079449,0.341161,0.578799,-0.148456,1.02142,-0.461429,-0.779903,-0.912768,-1.216966,-0.070982,-0.41224,0.709415,-0.100797,1.740782,1.889049,1.642667,-0.718538,-0.099745,-1.146932,-0.265203,-0.064861,-0.997139,-0.028036,-0.280124,1.849155,0.354588,1.136878,-1.078488,0.862438,-0.995553,-0.054439,-0.681536,0.830074,-0.346797,-0.739202,-0.77974,-0.283002,0.251689,-0.089019,?
9.438607,1.151277,1.703101,-1.753575,-1.576064,-1.421993,3.015758,0.255574,-0.571687,-0.37373,-0.495034,-0.098733,-0.57824,0.388614,-0.387009,0.226008,-0.369024,-0.380185,-0.764843,0.066872,1.388204,0.407739,-0.2244,0.547627,0.834845,1.533478,0.04571,-0.202817,-0.818253,0.703771,-0.013676,-1.166438,0.705283,0.642531,0.27243,-0.340296,-0.269963,-0.065583,-0.50436,0.407158,-0.428763,0.42475,-0.50446,-0.552015,-0.76511,0.182263,-0.052234,-0.352112,?
4.598489,-2.635133,-0.549199,0.043123,3.400525,0.739126,-1.598025,-0.388123,2.124239,-0.69135,0.599864,1.32129,0.343198,0.893791,-0.784131,0.048574,-0.315253,0.665494,0.50488,-1.259711,1.251755,1.030828,1.519054,-0.030781,-0.028997,0.231405,-0.152528,-0.102194,-0.667171,0.842695,-0.472616,-1.319857,-1.132741,-0.365238,1.158932,-0.070636,-0.340231,0.108158,0.488185,-0.502543,-0.119927,-0.121832,1.271059,1.081479,0.418474,0.406265,-0.44925,1.009651,?
5.194961,6.789741,1.835819,3.253953,-2.673488,0.251609,-1.88695,-0.326464,-1.718703,-0.461098,-2.216785,-0.945438,1.175011,0.311261,-1.426697,0.511175,1.259189,-0.070324,-0.972054,-1.309874,0.925138,0.137315,-0.538213,1.75564,1.489885,0.387101,0.724064,0.394093,0.313378,0.32332,0.616655,0.375899,-1.184999,1.072127,-0.620136,1.604649,0.563762,0.702831,-0.055167,-0.435008,-1.272574,-0.907825,0.135166,-0.359798,0.552349,0.242256,0.071715,-0.146877,?
-1.342216,-5.568815,0.165215,-1.216922,0.202313,0.219447,-0.078144,1.011216,0.145469,-1.00463,0.082057,0.317422,-0.128217,1.386736,1.083817,0.965909,-2.527876,1.395297,1.132944,-0.917664,1.512064,-1.360265,-1.056893,-0.154246,1.309223,-0.544726,0.084112,-0.310845,-0.232958,-0.876244,-0.926501,1.228542,0.409046,0.511498,-0.090038,0.735627,0.120709,-0.628077,1.006957,-0.385506,0.354398,-0.033901,-0.406554,-0.952242,0.180121,0.713258,-0.293515,1.099595,?
-4.483845,0.314435,4.3085,3.214201,-2.287375,-2.758715,3.4824,-1.555257,2.930662,3.962441,2.044429,0.031239,-0.905714,1.510093,0.781969,0.335728,-1.351466,-1.829962,-0.344617,0.158818,1.696806,1.668276,1.772177,-0.932919,0.648343,-0.040382,1.330463,2.55467,1.553402,0.354813,0.17154,-0.786634,0.085088,-0.572205,-0.895626,0.213792,0.208218,-0.338789,-0.071696,0.439747,0.316845,0.347354,-0.037399,0.11439,-0.303972,-0.042446,-1.955595,-0.448952,0.06
8.31048,0.959258,0.303761,-2.272736,-0.517923,-0.747594,1.519071,-1.133737,0.005448,0.12444,0.489338,-1.243289,0.580757,-0.209402,-0.002806,-0.354041,1.572329,-0.074711,-0.757206,-0.412625,0.962535,-0.034658,0.322455,-1.851029,0.07616,-0.504625,-2.014842,2.36887,-0.251174,0.252854,0.276821,0.252238,-0.098525,0.302853,-0.712058,-1.002286,0.667377,0.313808,0.057476,-0.709077,0.1619,-0.688046,-0.918216,-0.556356,-0.692774,0.214447,-0.450811,-0.326503,?
1.694868,-2.039359,0.724831,2.969206,1.96645,-1.331665,1.119513,0.911772,0.124324,-0.834843,0.874353,0.049135,-0.38063,0.662395,-0.828833,0.912822,-0.68138,0.628748,-0.420991,-0.857412,1.102501,0.177764,1.315779,-1.456486,-0.27289,-1.302935,-0.606274,-0.702487,0.271907,-1.093745,0.383645,2.022729,0.537323,0.774717,-0.797142,0.189902,0.324703,-0.361386,-0.737769,-0.734937,-0.0427,-0.141275,-1.002275,-0.735465,-0.28375,0.13056,-0.758533,0.477268,?
0.533361,-6.437367,-1.353289,-4.37203,0.450386,0.059019,1.088399,2.693026,-0.255029,0.270009,0.49088,0.552421,-1.813841,-0.549345,-0.444465,-0.382354,-0.685085,0.552006,0.857881,-0.459376,1.090115,-0.36188,-0.473253,0.182495,1.441056,0.26499,0.158434,0.050529,0.640223,-1.224134,-0.013772,-1.154254,-0.868543,-1.401032,0.324949,0.916742,-0.516911,-0.294453,-0.158591,-0.277334,0.430332,0.414353,0.13232,0.906947,0.463123,0.302237,-0.039627,-0.039347,?
-1.953624,4.26702,-1.81604,0.878927,-0.008693,5.636625,0.274478,1.283614,-0.727362,1.937729,-0.775381,-0.36647,-2.144014,1.043436,-0.711688,1.356436,0.280514,-0.121912,-1.133671,1.074645,1.468624,0.788749,-0.017236,0.215357,1.226428,-1.212116,0.679367,0.70925,-0.496657,0.924763,-1.749122,0.37275,0.228486,-0.685285,-0.414264,0.468964,0.412048,0.368945,0.502142,0.454966,0.174097,0.116577,0.214789,-0.076862,0.346246,-0.587237,-0.140148,0.40447,0.05
-5.729391,4.130694,13.389637,-5.691931,8.704263,5.571421,-0.270184,0.849102,-0.975996,3.47315,-0.478031,-0.153749,0.485947,-1.66585,0.124329,3.144616,1.401079,1.101373,-0.7344,0.767919,3.387104,-1.127628,-0.041659,2.181925,-3.475026,-0.202229,-0.513617,1.517722,-2.297199,-3.974,1.850741,1.752019,0.077401,-1.026797,4.068446,0.444442,-3.80569,-0.061952,-0.658104,-1.228621,-0.592381,-3.026697,-0.258059,-0.205173,-0.131237,1.513893,1.255288,-0.335336,0.35
-4.559218,-2.291764,-0.009383,2.758035,-0.215135,-0.122962,-0.597892,1.811402,-0.098984,-0.320103,-0.465326,0.182398,0.548137,0.441058,-1.912169,-0.318571,0.971915,-0.263085,0.14805,-0.428184,1.220675,0.046416,-0.38545,-0.127197,0.936333,0.264196,-0.243475,0.130088,0.132245,-0.745964,0.115984,-0.137884,0.549742,0.523859,-0.133685,-1.384306,0.244233,0.061844,-0.415891,-0.559127,0.301991,-0.235015,-0.20998,-0.234695,-0.845781,0.012781,0.26287,0.550423,?
-2.067069,-2.673099,-0.961464,2.551612,0.556214,4.643186,1.651136,0.75611,1.851379,3.572089,-2.715808,-1.320885,-2.669145,1.382878,2.629287,-0.48793,-0.580624,-0.273538,-0.005718,-0.231221,0.92965,-3.476988,1.355501,-1.102099,1.782545,1.590786,1.817651,0.192284,-0.299178,-0.622985,-0.946422,-0.136673,0.797552,1.286038,-0.295806,0.308386,1.48108,-0.166531,0.140326,-0.568007,1.334159,0.922657,-1.138738,0.058767,-0.186036,0.271002,0.158356,0.619909,0.01
-8.077856,9.714405,-9.722273,-2.649842,0.11187,-1.48278,-0.869957,2.517067,-0.459815,0.151049,-1.55329,-0.328388,-0.287834,-0.919119,1.913104,0.180886,-3.38065,-0.320897,0.046217,-0.683672,1.3741,0.299924,0.399625,-1.295553,0.142831,0.368259,-1.084352,-0.079429,-0.556317,-1.104065,-0.232536,-0.257899,1.800091,-1.851729,0.965957,-0.23485,-1.276153,1.349099,-0.053337,0.544817,0.106119,0.123401,-0.463627,0.971442,-0.776634,-0.621741,-0.487109,0.328077,?
0.218122,0.044106,1.661018,6.04557,0.784926,-0.327115,-0.871458,1.000352,0.243816,-1.081979,-0.162606,-0.064288,0.600781,-0.436085,0.066916,-0.03171,0.459016,-0.723041,-0.928818,-0.788387,1.29319,-0.492305,-0.359012,0.006573,0.657094,-0.453424,-0.088673,0.234763,-0.086554,-0.380081,0.078038,-0.485305,0.314899,0.336312,0.222228,0.439623,0.561264,-0.605708,0.355161,-0.578686,1.073668,-0.426743,0.147973,-0.467782,0.086236,-0.183834,1.061536,0.084068,?
-2.708043,9.084522,-1.821398,0.761433,-4.132649,0.982806,-1.974816,-0.649569,2.35282,-1.718232,-0.922639,-0.6987,-1.013368,-0.809614,0.06637,0.482592,-2.159338,0.112682,-0.711272,-0.698072,0.853134,-0.08074,0.329448,-1.065226,0.252281,1.156959,-0.786073,0.034866,0.16281,-0.755933,0.338659,0.507833,-1.280545,-1.865254,-0.081079,0.452238,-1.02542,-0.002768,1.267095,0.284162,-0.253409,0.822997,-0.31357,-0.036089,-0.162122,1.273257,0.095939,0.86319,?
-0.534876,-5.687856,-0.82266,-2.823257,-0.431107,0.428949,-0.187564,1.609737,0.408953,-0.685175,-0.746327,0.199979,-0.545483,0.837842,-1.671812,0.606994,0.371953,1.020511,0.563709,-0.75194,1.2338,0.149615,0.037806,-0.612221,0.552487,-0.249473,0.36886,-0.833001,0.308041,-1.03053,-0.095871,0.827203,0.029572,-0.159953,-0.37578,-0.430891,-0.034797,-0.088284,0.81288,-0.115608,0.273372,-0.149502,0.773147,0.322972,0.441696,0.699799,-0.169629,0.210513,?
-2.903395,-5.523898,1.697996,-1.982396,-3.413142,-0.881332,2.120508,1.200905,-3.764342,-0.006013,-0.358771,0.180402,-0.511916,1.274792,-1.27209,0.323547,-1.974894,0.091,0.134826,0.27543,0.865408,0.488801,1.166586,-0.661368,0.748871,0.362415,-1.004867,-0.749805,-0.319885,-0.028428,2.0893,2.566358,0.08149,-0.775131,-0.789438,0.048829,-0.119048,0.454103,-0.178845,0.190166,0.091898,-0.075777,2.101231,1.919058,0.97908,0.353963,-0.60139,-0.375176,?
5.643505,-1.805131,-0.024111,-1.218324,1.430652,0.296412,-0.839842,-1.233217,0.417463,-0.623472,0.540471,-0.775705,2.105603,0.934503,1.356141,0.939165,0.668645,-0.587699,-0.112434,-0.780714,1.735815,1.15617,-0.575799,-0.662859,0.416326,0.610885,-0.442936,0.992803,0.277333,-0.960436,0.41603,-0.274349,0.883824,-0.471794,-0.195072,0.649766,0.320442,-0.066042,-0.937069,-1.134188,-0.661707,1.183461,0.066935,-0.009294,-0.050087,0.164593,-0.426838,-0.47594,?
-2.76131,-4.62668,0.261725,1.901146,-0.56369,-0.034877,-0.216389,2.967932,0.000277,-1.651992,-4.14107,-0.620606,-0.988317,-1.56989,-0.527271,0.370167,2.184132,-0.468136,-1.577779,-0.404426,1.030428,0.642899,-0.828943,0.829269,0.975348,-0.069976,0.877082,-0.396106,-0.652207,0.776649,-0.64018,0.698611,0.446036,0.201452,-0.055334,1.339212,-0.163671,0.067362,-0.53275,-1.161013,0.105662,-0.029793,-0.41567,-0.282411,-0.809112,-0.768524,-1.363298,-0.267529,?
-2.536509,-1.408239,3.288786,0.069132,0.961396,1.814545,0.380305,-0.543863,1.35498,0.803794,0.460541,0.775884,-0.280444,-0.129176,1.154412,0.469833,0.528737,-1.189129,-0.638098,-0.99641,1.047568,-0.927789,-0.434543,0.296015,1.210038,-0.541213,-0.514237,0.848875,0.432112,-0.979101,0.692838,-0.110894,0.361526,0.08271,0.509622,-0.502057,-0.593884,-1.052201,0.862036,-0.807182,1.075556,-0.264198,-0.336032,-0.541441,-0.264715,-0.884026,-0.699772,0.415503,?
-2.799988,1.672975,1.111895,10.442931,4.882983,-3.732729,3.607506,2.124692,-0.563285,-0.613186,1.25494,-0.92862,-0.563568,-0.596387,0.887014,1.21638,-0.096149,0.719105,-1.425053,-0.463822,1.373041,0.079815,0.694496,-1.040005,-0.491703,0.501984,0.055445,-1.009274,-0.61952,0.598513,0.121818,-0.028014,-0.512702,-0.74388,0.862653,0.559176,0.526722,-1.214853,1.106036,-1.303873,0.576602,0.80152,-0.06677,-1.112836,-0.020414,-0.343069,0.301977,-0.180141,?
-3.644591,-3.200895,0.51343,3.607509,0.15679,0.590962,3.072832,-1.801386,1.075793,2.502449,-2.431175,0.569427,-2.2616,-1.770551,0.274895,-2.50044,-2.058847,5.195206,-0.151947,-1.039629,-0.884769,1.836558,0.463498,1.926786,2.523856,-0.906619,-0.811765,2.697491,-0.744811,0.118002,0.202436,-0.33953,0.380789,0.304062,0.286898,1.228472,0.548304,-0.62877,-0.946114,-0.954153,-0.260645,0.397616,-0.100098,-0.232982,-0.306024,-0.262231,0.208002,0.212097,0.01
8.892551,8.351683,1.865455,2.865104,-2.852343,0.601325,-2.009437,-1.71309,0.383113,-1.765832,-1.091209,-0.873975,1.079532,0.548425,-0.35426,0.775778,-1.010007,0.610505,-0.166393,-1.245782,0.835551,-0.077096,0.58185,-0.193704,0.67861,-0.578664,-0.986861,0.413155,0.025787,-1.423133,-0.359095,0.113503,-0.017073,-1.102852,-0.364631,0.535686,-0.292652,0.225076,1.00492,0.904185,-0.361378,-0.319048,0.354136,0.368956,0.426905,-0.941592,-0.072292,1.110424,?
-3.275386,-3.792316,1.342766,1.554942,-1.775267,3.895219,1.197849,0.336538,2.060832,3.180104,-1.162927,0.36628,-0.010196,-0.424588,0.137209,2.374898,0.180816,0.053768,-1.323124,1.727242,2.567862,-0.816678,-0.246375,1.74849,-1.939938,-1.190339,-0.315121,1.48519,-1.883691,-2.336205,1.532926,0.720723,-0.662593,0.014296,2.021631,0.31267,1.118136,-0.046714,-0.36252,-0.265475,0.138992,0.282656,0.001787,0.021515,-0.50559,-0.11144,0.295071,-0.191288,0.02
4.763288,2.612409,-0.899915,-1.341456,-0.575902,0.028906,-0.54663,-0.668626,-0.52637,-0.445781,0.675963,-1.500977,-0.639971,-0.45942,0.488542,1.311365,-0.736751,-0.043653,-1.028853,-0.864838,1.010195,-0.20802,-0.111555,0.348717,1.072871,-0.069364,-0.396708,0.455304,-0.204343,-0.064471,-0.009579,-0.044691,-0.088579,0.075893,-0.056851,0.220836,0.075289,-0.024524,0.121347,0.006486,-0.009359,0.127329,-0.029887,0.023494,0.399535,-1.205244,-0.189009,0.542034,?
-4.945449,3.093622,-4.49217,-0.644709,-2.740187,-0.863016,-1.003807,5.635625,-0.67193,-0.418941,-3.358074,0.007456,-0.68907,-3.342291,0.4696,-2.026836,0.306673,0.990752,-0.029226,-0.494771,1.203003,0.848211,0.5714,-0.334529,0.015336,0.936122,0.288005,0.009261,-0.630809,0.077848,-0.276937,0.887495,-0.498407,1.320285,0.345662,-2.02192,-0.102559,-0.264834,-0.288354,0.359611,0.693468,-0.368576,-0.232864,0.311017,0.84976,1.179864,-0.755985,-0.624807,?
-2.841412,-1.803311,-1.312833,2.116225,2.245898,-1.099525,-0.661941,1.555667,-2.821547,0.744627,-0.730473,0.84352,1.395841,0.764873,-0.731547,-1.0137,-0.650314,-0.240413,1.327517,0.539625,1.732061,0.999584,-0.30936,-0.305384,0.877203,0.288156,-0.184677,0.154141,0.166742,-1.93798,-0.48943,0.18611,-0.146215,0.634161,-0.349032,0.796547,-0.206825,-0.361092,-0.155825,1.343623,0.649307,-0.209807,0.034647,-0.419858,1.115587,-0.41457,-0.17812,-0.48335,?
5.927566,5.976738,3.255416,7.410603,-0.759375,-0.241467,-1.823853,-0.916687,0.09104,-0.860615,-1.216034,1.410877,3.965688,2.038105,-1.916743,-1.789859,0.768111,1.13211,1.453798,-0.43945,1.925951,-0.875463,-0.613814,-2.635337,-0.243022,0.794956,-0.957194,0.018982,-1.016601,-0.231601,-0.387699,0.827697,-0.733965,-1.192375,0.715129,-1.084717,-0.638486,0.540097,-0.628561,-1.115158,-0.028017,1.11692,-0.384855,0.707814,-0.329449,0.0688,-1.066992,0.843513,?
2.934508,-2.39021,-0.600415,-3.228649,-0.944815,0.260719,-1.310578,1.06264,-3.447517,1.756835,2.40531,-1.680092,1.927816,-1.033006,-0.312452,-1.179812,2.089542,0.876875,0.845065,-0.246999,1.740223,-0.149547,1.058043,0.167027,1.051688,-0.848603,-0.256179,-0.105119,-0.603062,0.755049,0.213594,-0.039351,0.523446,-0.577368,0.256356,0.401921,-0.966038,0.733485,-0.186747,1.566227,-1.178221,-0.039154,0.457406,0.37647,-0.195299,0.413802,-0.438832,1.82683,?
0.485162,-1.719582,-0.253636,-2.349086,-2.176687,0.628369,0.141557,1.478993,2.508025,-0.700385,1.615415,-0.061972,0.541818,-0.66813,0.875474,-0.308475,0.295225,-0.159939,-0.200417,-1.121195,1.081226,0.653084,0.943895,-0.487157,-0.00377,0.372275,-0.796365,0.36209,-0.370951,0.223865,0.005505,-0.629342,-0.119204,-0.133548,0.676218,-0.814128,0.014139,-0.182119,-0.168936,-0.191224,0.412292,-0.043567,-0.201661,-0.224381,0.488317,-0.385807,0.363409,-0.589916,?
-5.314348,-3.461885,0.34733,-1.378129,-1.579779,-0.228353,0.982201,-3.535936,-0.716655,-0.899028,0.224561,-1.24506,-1.241178,-0.305504,1.882048,0.802022,-2.475035,-1.019835,-1.79476,1.677362,1.041901,0.337994,0.779444,0.069458,1.148237,1.01659,-0.701092,-1.549513,-0.162736,0.115817,1.481887,1.378544,-0.168765,-0.224887,0.291934,1.443602,-0.405635,-0.858026,-0.240814,0.154652,0.53179,0.58002,-1.140212,-0.253529,0.397631,-0.54974,-0.223756,1.020861,?
3.76995,5.059116,3.57241,1.605846,-1.396052,1.52033,-2.357574,0.866653,-2.175172,-0.055267,-0.705348,-1.108185,-0.093273,-0.265425,-0.650662,1.133504,0.669666,0.428438,0.25787,-0.31691,1.749014,1.948306,-1.199172,0.826789,1.820875,-1.106021,0.133923,-1.18964,0.666768,1.896253,0.869654,-0.449588,0.540481,2.162358,-0.242918,0.86862,1.335005,-0.955844,0.268597,-0.685213,-1.539323,-1.498809,-3.719483,4.781995,1.969353,0.737418,1.831201,0.200537,?
8.641279,4.847308,-1.805507,-3.250652,-1.108171,-1.297943,1.922803,0.986793,-0.482516,0.472353,-1.606562,-0.784669,-1.865812,-1.424375,-1.503558,-0.793529,1.02998,0.721705,-0.592082,0.251092,1.293552,-0.387484,-0.438456,-1.042406,0.56085,0.848142,-0.187943,0.59652,-0.353231,0.376001,-0.098858,-0.209736,-1.344497,0.239728,-0.369964,-0.2779,-1.146259,1.200477,0.483538,0.994013,0.567944,-0.812626,-0.103091,0.529699,-1.42458,0.146997,-0.115717,0.457807,?
0.360134,1.771117,1.080011,6.631569,3.971035,-1.294964,0.948275,1.532434,-0.008683,-0.015368,-0.164933,0.072863,-0.361757,-0.680668,-0.212833,0.248857,1.32606,-0.125552,-1.104905,-0.330305,1.372695,0.089015,-0.08696,-0.145718,0.475321,-0.055369,0.175648,-0.521655,-0.587246,0.080583,-0.383268,0.399516,0.732638,-0.161546,0.123865,0.807945,0.424154,-0.79902,0.687979,-1.166369,0.350862,-0.820135,0.0914,-1.125038,0.488698,-0.238807,0.663502,0.171586,?
1.471758,-0.484523,-1.158243,-1.787497,2.225026,-0.615144,0.527284,-2.515584,-1.095789,1.314673,0.853768,-0.783675,1.3782,0.060719,1.483527,-1.129361,0.81895,0.107874,0.279921,1.416844,1.786652,-1.335613,-0.28772,0.320798,2.12029,0.035905,0.030349,-1.698122,-0.14155,-0.336996,0.334243,1.203471,-0.112429,-0.605263,0.236459,-0.324641,-0.146683,-0.574427,-0.095262,-0.577394,1.253563,-0.259592,-0.62751,0.017962,-0.506009,-0.193108,0.620388,-0.764913,?
-3.816715,-2.596295,-3.30523,-2.424561,0.45427,-0.847223,0.085597,2.639445,-2.369786,0.761161,-2.226775,1.308626,0.667303,0.736559,-0.645032,-0.854031,-0.420926,-0.513413,0.372074,-0.49994,1.240199,0.177985,0.067821,-0.322665,0.574089,-0.160178,-0.025235,0.512733,0.171713,-1.07447,-0.499721,-1.094969,-1.20406,-0.331172,-0.314155,1.343738,0.39655,-0.444282,-0.98704,-0.565224,-0.733731,-0.090029,0.308769,0.096585,-0.562601,-0.263615,-0.995315,-1.27849,?
2.530186,-1.289598,1.918743,2.273809,0.155868,0.996578,-2.061847,-0.336727,-0.415023,-0.766412,0.526126,0.447839,-0.383376,-0.340707,-0.470284,0.262808,-0.888524,-0.745406,-1.124274,0.009839,1.376463,-0.069247,-0.02103,0.011062,0.560089,-0.087916,-0.422097,-0.440366,-0.687916,-0.039824,-0.335862,-0.457951,1.190312,-0.065937,-0.03986,0.194144,0.700601,-1.003244,-0.472146,-0.640891,-0.44319,-0.147764,0.136168,-0.625436,0.095168,-0.282506,0.42323,-0.010634,?
-1.988615,-3.700065,-0.249344,-0.89045,-1.451255,0.61972,-1.067937,0.806219,0.467576,-0.345645,1.696654,-1.446287,1.958703,0.127244,-0.405106,0.214117,2.041362,0.459485,0.375779,-0.57042,1.341531,1.656804,0.607056,-0.100252,0.39646,1.108056,-0.520882,0.226149,-0.251962,-0.35146,0.064946,-1.212102,1.570994,-0.247866,0.640638,-1.580711,-0.03473,0.130642,-0.240069,-0.380552,0.410653,0.268023,1.089515,0.657019,-0.060934,-0.335957,0.401048,0.643682,?
-2.802409,-5.002074,-0.554153,0.263496,-2.745045,3.000181,-0.013552,-1.033397,1.29807,3.236226,0.481665,1.076105,-1.594793,1.882046,-0.697459,0.722576,-0.156229,1.289601,-2.687192,-1.056117,1.255471,0.866444,-0.653443,-0.132086,-0.213382,-0.361086,-0.610974,0.20555,2.958784,-0.232057,-0.969936,0.360842,-0.012807,-0.87926,0.246281,-0.652599,1.482102,-0.187052,0.126439,0.903661,0.414512,0.627836,-0.419647,-0.110772,-0.761113,-0.173796,0.618243,-0.189867,0.01
-2.552499,7.012776,1.53367,-1.938347,2.259411,-2.951997,-2.986985,0.527295,-0.341199,0.549264,0.15309,3.965085,-0.386623,-3.582426,-0.527831,7.014376,2.25277,0.177665,0.078185,1.074318,-0.594966,-1.119595,1.216378,-1.047842,3.762071,0.911644,-2.326154,-0.280649,-0.128342,0.419234,0.09213,0.379697,-0.377984,0.057439,0.585211,0.812757,-0.38246,-0.521417,-0.542792,-0.019617,-0.121062,0.046433,0.88405,-1.32253,0.052065,1.150766,0.012253,0.390763,0.28
1.609929,-1.756532,-0.783208,-3.382499,-0.374023,-0.116565,0.879552,-0.930977,0.440369,0.58376,1.051151,-0.185682,-0.865921,-0.608559,-0.516133,-1.071433,0.387753,-0.302112,-0.403931,0.909386,1.215815,-0.589747,0.415623,-0.21643,1.218473,0.118963,-0.206543,-1.011669,-0.003917,-0.393243,0.00243,0.099885,-0.59047,0.122487,0.074623,-0.017161,-0.023691,-0.691399,0.073845,-0.333983,0.801861,-0.461165,-0.453876,-0.148833,-0.518728,0.112056,-0.229137,0.064002,?
8.518607,0.56888,-0.308842,-2.147771,1.640301,-1.116509,1.409031,-0.66229,-1.842998,0.968832,0.890931,-0.415417,0.015084,0.829025,-0.951432,0.440954,0.510204,-0.131444,-0.378842,-0.273967,1.423688,0.314479,0.321219,0.63801,0.99683,0.656714,0.245772,-0.403993,-0.213013,0.28563,-0.105387,-1.337542,-0.743245,-0.239382,0.268987,-0.685556,0.215023,-0.39585,-0.555606,-0.523283,0.131748,0.082136,-0.208503,-0.158258,-0.433763,0.692068,0.343444,-0.402606,?
-2.803131,-4.036031,-2.144756,-1.769585,0.730127,0.702858,-1.031684,0.223439,1.390176,-0.332513,-0.087819,-0.188917,-1.080598,0.544066,-2.877532,0.61282,1.108017,0.663231,-0.442896,-0.607079,0.928679,0.21872,-0.336605,-0.046901,0.609725,0.665519,0.191489,0.010477,-0.006805,0.126835,-0.095563,-0.865866,-0.711249,-0.398056,0.296699,0.063001,0.548732,-1.495179,0.361301,0.449234,0.64772,-1.027312,0.47917,0.03791,-0.039388,-0.558578,0.518665,-0.290271,?
-5.256186,-3.565594,-2.094871,-1.668068,-0.459091,-0.14357,-0.395336,0.905815,-1.611292,0.364077,-1.760777,-0.188152,1.107106,1.126654,-1.439666,-0.301012,1.240341,0.408342,0.486266,-0.179777,1.034098,0.330242,0.02661,-0.126666,1.114556,0.237853,-0.415524,0.288632,-0.003781,-0.382514,0.818846,1.208085,-0.262527,-0.412211,-0.750925,-0.437444,0.259075,-0.054411,-0.14525,0.380942,-0.369344,-0.62173,-0.351482,-0.046325,-0.257045,-0.65041,0.339432,0.269371,?
2.771028,4.748252,-0.135834,3.323453,-1.521454,5.071726,-0.448293,-0.243789,0.448024,1.462212,-0.938265,-1.906237,-2.695352,1.316535,0.534815,0.460633,0.470449,-1.629154,0.36336,0.419925,1.259789,-0.776909,1.211234,-0.364256,1.499071,0.391364,-0.351295,0.386533,0.572075,0.474726,-1.391405,0.789016,0.824804,-0.37515,-0.606337,0.974649,0.517147,0.004061,-0.117833,0.92666,0.290123,-0.193166,0.673661,-0.198762,-0.804676,0.022179,-0.514206,-0.715623,0.03
-3.674785,-4.038634,-0.075081,0.148725,-1.444669,0.647526,-1.412133,1.468186,-0.468844,-0.310549,0.090769,0.27812,-0.054722,0.728859,-2.741222,-0.070916,0.03182,-0.318643,0.315969,-0.54688,1.070005,-0.104239,-0.188615,-0.222279,0.956323,-0.190715,-0.584609,0.539089,-0.101246,-0.200478,0.032363,0.616668,-0.325869,0.433127,-0.715147,-1.465391,0.007366,0.289637,-0.389324,0.213873,0.05903,-0.046572,-0.416129,-0.029971,-0.950887,0.238747,0.281584,-0.299031,?
-0.151181,-0.449578,2.798679,2.252928,1.82578,3.484974,1.093246,-1.65487,-0.044768,3.636319,-2.21929,0.107394,-1.170884,-0.438906,0.177451,0.81216,-1.726668,1.322709,-1.020479,-0.502252,2.453338,0.831193,0.861565,-1.596793,-1.46434,-0.563825,1.034221,0.338991,1.698114,0.729197,-0.36344,-0.329577,0.958499,-0.568904,-0.651569,0.772966,-2.310328,0.156906,-0.816977,-1.152084,0.594416,-0.785689,-0.33228,-0.558391,0.555197,0.590821,0.500679,0.214409,0.04
2.355083,-1.866456,-0.38176,-2.393967,-2.411644,0.323227,0.155896,0.408194,2.602518,-0.874695,0.968395,-1.503375,0.082234,-1.710306,0.599635,-0.793325,1.884136,0.682662,-0.533051,-0.034817,0.851868,0.015591,0.826947,0.580898,1.159405,0.081535,-0.090537,-0.361747,-0.114252,0.207095,0.396884,0.223616,0.366735,0.640306,-0.197933,0.305919,-0.046776,1.316956,0.103816,-0.109301,0.475756,-1.482559,0.470145,0.155891,0.317639,-0.586359,-0.172804,-0.323071,?
5.980562,0.415877,0.564416,-2.582562,-3.186243,-0.417503,1.367737,0.31401,1.064738,-0.334305,0.526657,-0.587076,1.447169,0.208512,-1.117985,-1.140551,1.757803,0.517586,-0.07542,-1.504073,0.542723,-0.466945,2.794929,0.140703,0.303533,-2.399712,-0.829275,-0.519866,-0.4047,0.144064,-0.346184,-0.871117,0.351443,-0.510604,0.700768,0.559148,0.145345,-1.715784,-0.494889,1.167211,0.347356,-0.131822,0.722748,0.458233,1.455126,0.182454,0.185215,0.084981,?
-2.409675,-4.470048,1.00476,2.038429,0.554068,0.059887,-0.210877,0.711331,0.272109,-1.359014,-2.688564,0.002758,-1.802501,-0.465035,-0.338563,-2.038076,-1.654037,5.091738,1.945867,0.194194,-0.686954,-0.893648,0.33552,2.926217,3.604773,0.497845,-1.859403,3.340711,-0.616779,-0.355975,-0.274539,0.134704,1.264994,0.6105,0.127227,1.316885,0.568411,-0.796754,-1.491909,-1.21472,-0.037341,0.535932,-0.261842,0.40769,-0.547423,-0.051,-0.039987,-0.365242,?
-2.980984,-2.150413,-0.261622,4.645965,1.76971,-1.17674,0.563945,2.152405,0.827958,-1.256185,-2.342064,0.339426,0.377671,-0.469413,0.031206,-0.680268,0.794727,-1.010389,-0.469266,-0.300934,1.300241,-0.27126,-0.28272,-0.085213,0.802048,-0.969557,-0.535618,0.509091,-0.335195,-0.379588,-0.26482,-0.014807,1.017998,0.865122,-0.131722,-0.887854,0.197493,0.086311,0.006466,0.294856,0.541949,0.272144,0.164762,-0.114222,-0.247383,-0.222057,0.459119,0.505268,?
-3.890705,0.1884,-2.730954,-0.344835,1.279633,0.066471,-2.327708,-0.235724,-2.259179,0.544727,-0.004343,-0.367219,1.164295,0.86598,0.060203,0.78859,-0.782063,-0.008724,-0.38,-0.478173,1.957522,0.472487,-0.196573,-0.617039,0.107943,0.3632,0.082838,-0.319481,-0.403876,0.446781,0.003475,0.686556,-0.147588,1.852943,0.236229,-0.399537,0.210668,-0.783695,-1.264793,-0.304913,0.506049,0.159834,-0.433743,-0.025336,-1.17131,-0.057588,0.492644,0.608052,?
-5.336846,1.921117,-2.622522,-0.987165,-3.472447,-0.143733,-1.35069,3.029524,-3.731652,0.487531,-1.361616,-1.794465,-1.217724,-2.272573,-1.614886,-0.18132,0.523543,-0.043781,-0.632702,-0.258306,1.035254,-0.049544,-0.228139,-0.122617,1.005415,-0.237866,-0.349914,0.388916,-0.296797,-0.17902,-0.522391,-0.157932,0.044346,-0.312698,0.16369,-1.237581,-0.992871,0.231599,-0.972389,0.325067,0.383351,0.629378,-0.438302,0.820714,-0.327164,-0.119936,-0.705948,0.432685,?
10.432084,3.944666,4.148991,1.194345,-3.546717,0.359237,-0.176681,-2.520698,-0.089101,-1.696138,-1.146621,-0.377523,1.240153,2.730368,-1.529658,1.909906,-0.697646,0.931856,-1.007215,-2.010264,0.733301,-0.430095,0.164016,-0.421251,0.017244,-0.065791,-0.396636,0.75337,0.058661,-0.432412,0.814414,-0.007217,0.004717,1.594459,-0.436273,0.614279,0.933453,0.173864,0.091527,-0.047295,-0.663183,-0.077029,1.067395,-0.597164,0.968565,-0.548572,-0.501535,0.314573,?
-4.086561,-2.675838,0.223194,-0.47247,-0.222086,1.039683,-0.783998,-1.997568,1.740016,-0.847586,-1.284403,-0.311592,-0.396668,0.139337,-0.345402,0.392296,0.715086,1.066708,-0.966881,-0.094853,0.937523,0.205085,0.94478,-0.403101,0.072004,0.43303,-0.073059,-0.419541,-0.023549,0.59523,0.412644,-0.573322,-1.812064,0.69754,0.760617,-0.454818,-0.498743,-0.051266,0.204237,-0.124516,0.53073,0.168929,-0.325827,-0.008928,-0.000236,-0.124778,0.480542,-0.438223,?
8.108154,4.014547,1.217394,1.37754,-0.450409,-0.815468,0.308938,-0.919573,-1.277893,0.305561,-0.165796,-0.698389,1.106623,0.915442,-1.979116,0.114804,1.621418,0.7687,-0.354231,-0.64539,1.310443,-0.024316,-0.224401,0.04693,0.64695,1.374177,0.267882,0.369987,-0.727992,1.294597,0.081421,-1.110488,-1.647642,-0.159597,0.396578,-0.090511,-0.189191,0.399673,0.160356,0.114758,-0.091729,-0.982146,-0.267886,-0.057728,-0.579459,0.100642,-0.676507,0.238943,?
-7.135405,6.754715,-5.434292,-1.23325,-5.449012,-1.097284,0.534645,-1.024216,4.326286,3.161521,-0.435304,1.802431,2.485613,-1.456707,1.962033,0.67685,0.195018,2.472295,1.922061,0.459494,1.373711,0.453122,1.218688,-1.388728,1.333745,-0.438992,2.523442,0.213192,-2.60571,-0.224985,1.367781,-1.927426,1.474212,0.012396,-3.140485,-0.696179,1.401748,0.039494,-0.2936,-0.341039,1.470375,-1.164914,0.027194,-1.082566,0.892906,-0.047928,-0.18197,-0.17695,0.02
-0.787885,-4.728971,-0.543575,-2.305009,-0.757373,-0.229104,0.945141,0.628687,0.967458,-0.684186,0.854096,-0.485096,0.812701,1.616751,-0.581825,0.714551,0.146673,0.771771,0.77768,-0.352187,1.398858,0.089658,-0.300385,-0.254427,1.174359,0.650057,-0.188871,-0.67712,-0.430124,-0.055301,0.914714,1.629076,2.512588,-0.269686,-0.329847,-0.238262,-0.218221,0.724584,0.236304,0.397558,0.091727,-0.122683,0.319111,0.023202,0.391902,0.311028,0.308971,0.361534,?
9.821996,1.778031,0.617659,0.107586,2.369487,-1.013559,0.831511,-0.377029,-2.016807,0.166956,-2.637222,1.109625,-0.896744,0.512461,-1.603609,-0.149517,0.083526,1.269394,-0.785342,-0.1619,1.299079,0.332196,1.045748,-1.512437,-0.793531,-0.197446,-0.352535,-0.1599,-0.67355,0.217481,-0.382676,-0.959239,-0.327268,0.200389,0.348055,0.254823,0.421842,-0.567879,0.328841,-0.280991,-0.74637,-0.567376,1.346519,-0.058257,0.513794,0.59138,-0.028184,0.804573,?
3.572389,1.320419,0.260781,0.098426,-0.559522,0.591562,-1.754703,-0.548011,-0.428414,-0.849117,0.369673,-1.628939,0.070196,-0.123553,-0.374949,1.373778,-0.205402,-0.445856,-0.429059,-0.697143,1.230982,0.382415,-0.322449,1.349302,1.749669,-0.636127,-0.022679,0.015941,-0.095785,-0.245995,-0.697264,0.487222,0.723934,0.475189,-0.6774,0.321202,-0.263859,-0.142622,-0.092294,0.016941,-0.259053,0.087569,0.110773,0.754372,-0.267912,0.669083,-0.945871,-0.413674,?
0.30955,-1.855174,-0.479513,4.293359,4.547116,-2.39953,3.311198,2.618696,1.146029,-0.586254,0.364066,-0.303336,-2.080297,-0.815009,0.176706,0.995103,0.296652,-0.149513,-1.155173,-0.818713,0.998012,-0.041127,0.030203,-0.156162,0.456098,-0.09092,0.250698,0.09895,0.352986,-0.041769,0.607039,-0.149813,-0.590185,-0.570164,-0.324728,1.436774,-0.021023,-0.850723,0.472466,0.089947,0.385027,-0.676632,-0.351526,-0.647692,-0.017968,0.258569,0.523186,-0.124174,?
8.60792,0.149309,1.078265,-1.251923,0.406443,-0.548406,0.909041,-1.552366,-1.180862,-0.399522,-1.230225,-0.943619,1.704629,0.789991,0.93593,0.593896,1.38258,-0.044869,-0.865578,-1.077778,1.065607,-0.281207,0.951273,-1.244483,0.070913,-2.084086,-1.258066,0.679424,0.601012,-1.504187,0.17334,-0.15357,0.588549,-0.648277,-0.525074,-0.277434,0.750396,-0.732338,-1.616027,-1.638418,-0.361822,1.138895,0.235899,0.199007,0.340372,0.456111,0.155226,-0.974884,?
0.49091,-1.275477,-1.326433,0.584213,-2.850443,3.043546,0.275718,-0.213949,1.129529,1.857297,1.285231,0.896931,0.138679,0.511417,1.506254,1.93979,1.610754,0.769056,-2.031126,-0.564197,1.77094,-0.959262,0.505279,1.384719,-0.165615,1.560092,-1.950553,-0.674588,3.367759,0.812071,-2.127767,-0.445596,0.781087,0.142483,1.271821,0.360185,1.165781,0.838531,-0.124886,0.736627,0.32235,0.690486,-0.573929,0.501301,0.101474,-0.561091,-0.526682,-0.632431,0.01
0.348702,-3.257991,3.107988,-0.688943,-4.811701,0.525067,-0.095,2.999837,-3.86711,1.02331,1.321427,-1.94558,0.194187,-2.767202,1.311904,-0.92772,1.742,0.176114,-0.465864,-0.077998,1.515794,-2.132297,-1.038312,1.016387,1.934828,-0.211807,0.669659,-0.157776,0.210343,0.245692,0.805814,-0.006977,-1.797117,-0.540281,-0.471008,-0.516064,-0.071677,0.754166,0.155023,-0.020893,-1.10267,0.779788,0.543676,-0.411858,0.865605,0.090389,0.240396,-0.723609,?
-2.731595,-3.875532,-0.331598,-1.770415,0.150366,0.841842,-0.810923,-0.990773,-0.685162,0.635359,1.152872,0.282235,-0.73098,-0.053778,-0.613195,-0.496234,-0.520027,-0.868338,-0.23395,0.351324,0.777401,-0.671778,-0.163309,-0.355787,1.446834,0.009778,-0.94747,0.964221,1.441684,-2.245359,1.930334,-0.580814,-0.446741,-0.862537,-0.708124,0.391642,0.952702,-0.242077,1.721745,0.01781,0.086598,-0.861633,0.001589,-0.33078,0.158321,-0.131858,-0.906452,0.449645,?
-7.695543,-2.003406,-1.545724,-1.390937,-2.128269,2.052516,3.034623,-2.755788,-1.9431,1.226157,-1.117716,1.036203,-0.730888,-1.558013,0.486975,-1.384186,-0.868123,-0.072634,1.190149,-0.965288,2.750837,0.117858,0.671023,-0.40341,-0.238081,-0.339925,2.083319,1.703469,1.091083,0.179637,1.052273,-1.228929,-0.384722,-2.143759,-1.36146,-1.184748,-0.79795,0.276983,0.149256,-0.576651,0.575221,0.306886,-0.456217,0.072173,0.009021,-0.337538,1.013554,0.513229,0.01
-5.076586,-2.113918,-1.062961,-0.812688,-1.808791,3.838203,1.899087,1.573494,-2.839681,0.151813,1.643697,3.311577,-1.454883,2.079929,0.46713,0.60062,1.514892,0.536758,-5.084836,0.151006,0.705354,-0.64342,-0.662781,1.20341,0.903571,0.795469,-3.646691,-0.687501,4.688501,1.590439,-1.816664,-0.097123,0.473588,0.648317,-1.493225,0.467563,0.139197,-1.234971,0.466133,-0.508037,1.598962,1.015453,-0.795034,1.048128,0.625003,-0.306187,-1.159458,-0.187746,0.02
-0.688322,1.73143,5.040915,2.155381,3.219703,4.785457,-3.577498,-0.191319,-0.863467,2.231623,0.847317,-3.062871,-3.182373,5.647599,2.721465,-4.671722,0.440949,-0.888124,-2.132861,-1.316983,1.393981,0.094256,-0.166458,-0.461836,-1.440357,0.237715,0.088212,-0.147428,-2.564846,-2.532221,0.635352,-0.180365,-0.212795,-0.502569,-0.420113,0.529604,-1.076508,0.161302,-0.483087,-0.333032,1.013953,0.639105,0.268734,-0.728324,-0.035664,1.115776,-0.051458,-0.188788,0.09
-1.767641,5.039857,2.580708,-2.304698,-4.094006,-1.554773,2.390323,1.077323,3.204387,3.945284,-0.657285,1.617614,-0.060813,-0.148912,-0.611079,1.315613,-1.015125,0.825826,2.397925,1.462476,2.184975,-2.471277,0.71273,0.375411,1.274995,0.422997,1.012272,0.45823,-0.765627,0.458885,-0.882288,0.541288,-0.106848,0.312604,0.159475,1.03815,-0.176879,0.498811,-0.514878,0.537667,0.474207,1.449081,0.041079,-0.277466,-0.415499,-0.247699,-0.46418,-0.980778,0.14
-3.543685,-2.21432,-2.007857,1.536487,-0.936068,4.245032,1.424347,0.3908,0.385572,3.166615,-0.526703,0.976176,-1.526602,1.164123,0.011439,0.06233,0.550216,-1.192742,0.266734,0.900756,3.168066,-1.064517,-0.832303,2.386851,-1.269191,0.270748,-4.313604,0.232866,5.821425,0.124267,0.919543,0.33966,0.031536,1.314003,2.013572,-1.046252,0.572833,-0.656696,0.411819,0.083529,-0.015583,-0.401062,-0.476319,0.379806,0.32999,-0.98148,-0.772,0.697828,0.01
-4.833478,-4.386163,-1.151964,-0.845643,-0.28152,-0.912578,0.903812,1.430088,-0.941021,-0.58922,-1.151478,0.165471,2.433215,0.949987,3.761499,-0.41952,-1.437605,-0.706087,0.95165,-0.75281,1.517501,-0.077851,0.289094,0.048614,1.068656,-0.599104,-0.696871,0.829961,0.119839,-0.470108,0.581665,-1.048092,-0.462813,0.435906,0.286629,0.314615,-0.20133,0.708066,1.525377,0.44983,0.163634,0.265231,-1.084489,-0.318692,0.178365,0.682092,-0.041923,0.90424,?
4.394493,-4.600033,-1.19204,-3.738891,1.572145,-0.54095,1.788903,2.289913,0.147332,0.283865,0.168436,0.733084,-2.554745,-1.577918,0.306573,-0.893166,-0.459782,-0.058137,-0.046272,0.550525,1.211055,-0.203141,-0.395893,0.253186,1.417612,0.714448,0.125567,-0.366528,-0.138794,-0.291665,-0.36279,-1.011774,-0.523715,-0.764082,0.230612,0.355517,-0.40116,1.311273,-0.435149,-1.997207,0.147523,0.498464,0.310476,0.901305,0.319944,-0.108478,-0.440791,-0.286754,?
-2.31623,-0.013105,-0.523414,9.675937,5.863034,-4.358089,3.97723,3.473258,0.099446,-0.629396,0.732744,-0.597024,0.099149,-0.052479,0.504589,0.28629,0.23745,-0.405535,-0.330042,-0.550983,1.539191,-0.912406,-0.424329,0.26816,1.017187,-0.699838,0.184055,-0.582384,-0.558024,0.409229,-0.548957,0.45513,-0.651258,0.255981,-0.105231,-0.730408,0.679518,-1.437928,0.157836,0.125895,0.421126,0.354669,0.304722,-0.168804,0.588076,0.450744,0.152528,-0.616031,?
-2.455268,-5.233196,-0.902882,-0.451013,-0.310672,0.57564,-1.049874,2.26918,1.32893,-1.497716,-2.872675,0.006081,-0.229486,-0.790275,-0.260772,-0.330764,1.261957,0.240623,0.062708,-0.19747,1.259006,0.979971,-0.23967,0.231565,0.644421,0.342958,0.568746,-0.014964,0.333272,-1.092014,-0.706547,-0.69122,-0.748857,0.070374,-0.341733,0.362331,-0.110353,-0.840103,-0.396703,0.293672,-0.789057,0.623929,0.531467,-0.056349,-0.417328,-0.260465,0.587863,0.228661,?
1.197882,-3.899651,1.550527,0.226925,-1.659308,1.595572,-4.471433,3.169472,-4.627315,0.706759,1.747729,-0.888632,0.038956,-3.360893,0.444528,-1.161595,0.056504,1.491199,0.525761,0.954556,2.101494,1.359188,0.100673,-0.461989,0.19342,0.917995,0.450298,-0.437473,0.248532,-1.713449,-0.373631,-0.974756,0.590261,0.93999,-0.223353,0.220099,-0.251519,-0.51225,-0.432634,0.757756,-1.250189,0.326778,0.416542,-0.411917,-0.285065,0.017246,-0.918346,0.716894,?
6.304583,-0.615608,4.962029,-0.020708,-7.691128,0.586244,-0.216146,3.229679,-3.180961,-1.390266,-0.710469,-1.453227,-0.330556,-1.162497,-0.473464,1.046974,-0.251749,1.491112,-0.61343,-2.003584,0.761388,0.038507,0.214188,-0.016816,0.235879,0.120151,0.217977,0.859614,0.197054,-0.179294,1.019677,-0.536869,-0.872277,1.368697,0.028281,-0.444457,-0.443587,0.108715,-0.584943,1.299802,0.790018,0.655039,-0.378056,0.086284,0.995054,-0.792224,-0.109001,-0.194918,?
-3.160121,-4.589771,-0.575434,-0.987192,-1.408109,0.601743,-1.531401,1.268669,-0.530936,-0.277087,1.818713,-0.761041,0.190061,0.070165,-1.558133,0.287503,-0.044591,0.618583,0.531701,-0.272887,1.45896,0.515503,0.198556,-0.576649,0.491165,0.154885,-0.545132,-0.277139,-0.573118,-0.239907,-1.192171,0.71917,-0.263164,0.65126,-0.16931,-2.285546,0.189766,-0.296553,-0.820651,-0.313589,0.581263,0.312378,0.08455,0.191276,0.198906,-0.290838,0.854378,0.277015,?
0.18208,-1.931403,0.435132,-1.657523,-3.090371,0.80742,-1.408781,2.598544,-2.74772,0.316172,0.834997,-1.21906,-0.910867,-1.877087,-0.508712,0.305696,0.220458,0.144914,-0.846738,-0.96182,1.12626,-0.225896,0.258793,0.401324,0.827526,-0.491355,0.12028,-0.077532,-0.582583,0.864637,0.273959,0.090056,0.338129,0.291824,0.471666,-0.390782,-0.196213,-0.154574,0.058886,0.201787,0.89025,0.627648,-0.557931,-0.151673,-0.052562,-0.57318,0.306697,-0.546779,?
-0.913878,1.751561,2.023452,3.389641,-2.02173,1.248006,-3.987299,-0.159446,-1.658213,-0.213786,2.160381,-0.620913,3.275894,0.925568,0.141525,-0.308884,-0.60117,0.12313,1.121028,-0.497397,1.756296,0.364465,0.072259,0.336939,1.359465,-0.74835,-0.297154,-0.653856,0.384387,-0.729861,0.55675,-0.564617,1.789052,1.688825,-0.007255,0.888193,0.666512,0.671234,1.027643,-0.298481,-0.370511,-0.429631,-0.296292,1.174996,0.019622,1.007708,-0.992649,0.230794,?
1.474159,-0.478101,-0.238608,3.488343,3.999751,-1.21475,0.994705,-0.938753,0.447993,-0.709124,-2.257288,0.323093,-1.042166,-1.117866,0.892387,-0.419001,0.294487,-0.883079,-1.948801,0.860667,1.248897,-0.386755,-0.269482,-0.415105,0.656794,0.096087,-0.621727,0.307624,-0.746814,0.942297,0.836764,0.265061,0.590416,0.07843,0.015055,0.699315,0.047695,0.746595,-0.296092,-0.463661,0.092952,-0.072141,-0.161342,-0.297828,0.294076,-0.139269,-0.389117,-0.667246,?
6.687003,-0.505153,0.844527,-1.330348,-0.290174,-1.079206,1.384388,0.177054,-2.026179,0.476011,-0.083784,0.468272,0.196212,1.479904,-2.290115,0.259803,0.639955,-0.28342,-0.082148,-0.35758,0.723222,2.363774,2.799785,1.73783,1.005301,0.548801,0.620987,-2.212654,0.142255,-0.41577,0.691864,-0.015298,0.138305,-0.072904,0.506187,-0.524059,0.216253,1.193638,0.355626,-1.245313,0.223407,-0.245332,0.00224,0.066519,-0.080981,0.074413,-0.395669,0.097986,?
1.803183,-2.246035,-0.462186,-0.190145,0.976441,0.47575,-1.077817,-0.14309,1.237127,-0.479636,0.604435,0.506824,-0.830473,-1.015523,-0.183232,-0.93289,-0.396022,-0.800068,-0.456143,0.63896,1.132711,-0.018674,0.502567,0.152921,1.265819,-0.224566,-0.609573,-0.258207,-0.181239,-0.341982,0.346596,0.515122,0.758979,0.535968,-0.557477,0.067618,0.167262,1.575504,0.806509,-0.551341,0.165123,-0.890248,0.109063,0.030393,-0.696413,-0.507648,0.295822,-0.020239,?
1.797949,3.118155,-0.183569,2.447429,0.303708,0.522045,-2.22364,-1.396451,0.132298,-0.424646,1.641092,-1.812204,0.288651,-0.172407,-1.194647,1.002982,0.561458,-0.235835,-0.852905,-0.824255,1.13818,-0.525652,-0.012084,0.943297,1.529544,-1.040514,-0.173163,-0.005806,-0.590449,0.614678,-0.472281,0.380991,0.812033,-0.018712,-0.168144,1.120853,-0.006658,0.151029,1.491674,0.477541,-0.180069,-0.392856,0.313425,-0.256397,0.694142,0.276207,-0.088361,0.192734,?
1.147489,2.054281,-1.034979,2.598218,-5.538809,1.155783,3.495789,0.177729,4.826737,4.414461,0.482544,1.497192,1.457937,-1.143486,-0.658929,0.014683,-0.868102,0.19936,-1.887121,1.311638,2.862148,1.103072,-2.010495,1.985538,-0.53047,-1.998671,-1.85896,0.479973,2.249413,0.791483,-1.049444,1.278673,0.233658,0.122286,1.754854,0.726004,-1.25707,-0.478245,0.593816,0.66348,-0.212487,1.248391,0.591728,0.062829,-0.715502,0.335603,-0.370006,0.343883,0.01
-4.174772,-1.560567,1.056021,0.870505,-2.467551,0.545845,-0.692523,0.748459,-1.268528,-0.50857,0.464061,-0.837695,-0.516206,1.03263,-2.26752,1.558951,-0.607623,-1.261099,-0.330292,-0.676891,1.080073,-0.246565,-1.080569,0.221675,1.573328,-0.494455,-0.480378,0.2974,0.09563,-0.654838,-0.053651,-0.463401,1.782035,-0.02446,-0.23024,-0.602421,-0.168298,0.569006,0.673796,-0.764747,0.387046,0.325504,-0.373472,0.513448,-0.250963,0.322854,-0.409891,0.601766,?
-0.031442,3.729524,-0.082797,10.186334,5.106744,-4.084253,3.982614,4.501723,1.226054,-1.180302,-0.632063,0.238671,-0.325774,-0.479671,0.833089,0.219086,-0.419735,-0.708057,0.223054,-1.175004,1.376135,0.509799,0.044155,0.015709,0.653762,-0.134324,0.137678,-0.255071,0.118382,-1.257047,-0.609639,0.960151,-0.276307,-0.701359,0.072694,0.450187,-0.747239,-1.008229,1.404075,-0.294756,1.364729,0.32728,-0.357652,0.017776,-0.604106,1.065366,-0.16363,0.352163,?
5.67971,-2.337168,-1.606923,-4.351661,1.036457,0.059717,0.467833,-0.852931,1.062782,-0.483859,0.738045,-1.211329,-0.322299,0.052513,1.35559,1.026485,0.133216,1.767444,-0.46949,-0.53965,1.829324,-1.904463,-1.398219,-1.893795,0.151401,-0.179776,0.249067,-0.43151,0.432096,-0.638568,0.524367,-0.711199,0.095521,-0.420853,0.092818,0.61229,0.311616,-0.650754,-0.333211,-0.499464,0.123768,0.393694,2.166474,1.421376,0.444522,0.218822,0.571289,-0.632937,?
-0.116955,-0.993828,-0.194522,2.908438,-2.376775,3.841553,0.904162,0.41957,3.104284,4.750554,0.985441,0.023108,2.062713,0.463899,0.616527,1.734642,0.215231,0.986837,-1.551221,1.2897,2.066884,0.251769,-0.573867,1.312169,-0.444142,-0.71954,-0.492829,0.544314,-1.022061,-0.641354,0.328318,0.342184,-0.107136,0.063431,1.936361,-0.536919,0.91856,0.6783,-0.5757,0.49892,-0.233555,-0.446614,0.015708,-0.063613,-0.127042,-0.614522,-0.106758,0.166336,0.02
-2.712361,-0.793244,-0.353058,2.03644,1.521956,2.254797,-0.168898,-0.699821,-2.821117,2.707763,1.4764,0.87268,-1.712162,1.491005,0.29039,-2.981795,0.013364,1.110446,-0.7024,-0.811322,0.569555,2.995251,-2.504138,-0.706214,0.62037,-0.80632,-2.053623,-1.732299,-1.416947,-1.725404,0.570353,-1.130471,-0.263385,-0.831412,-1.01576,0.347652,-0.124036,0.794226,0.180322,1.157463,0.096058,-0.00925,0.757038,-1.074038,0.835748,0.267333,0.181004,-0.08831,0.01
0.992765,2.991756,-0.568588,-0.926941,-5.312565,0.024138,0.380326,2.400127,3.757708,-1.040926,-0.440478,0.812724,2.321819,0.201355,-0.753051,-2.374954,1.206734,1.175736,1.117986,-1.462085,1.167432,-1.709839,0.576386,-0.494324,0.504703,-0.561842,0.435045,-1.68972,-0.174431,-0.635197,-0.118036,0.425436,-0.20622,-0.97351,0.807047,1.150761,-0.407825,-0.460998,-0.240329,0.862155,0.900968,-0.262804,-0.122742,0.227675,1.47592,-0.127161,0.84927,-0.153851,?
-2.094462,1.395245,3.789533,0.289375,-3.479218,2.60886,-2.150578,2.758654,-0.998817,3.308373,0.350004,0.939921,0.622747,-1.181025,2.645341,0.150464,0.195682,0.278541,-1.40962,0.16619,0.067615,0.332211,1.855122,-2.415511,2.980285,0.029443,1.964869,0.289951,-0.008547,0.38195,-0.728148,0.616942,-0.14093,-0.217296,0.020239,0.220916,2.694486,0.195188,-0.147344,-0.277655,-0.494779,0.481297,0.134658,0.684272,-1.179874,0.540252,1.083841,0.913989,0.08
-2.907779,-0.862633,0.934004,1.055607,2.090249,4.919357,0.707221,0.619093,0.155711,4.463422,-2.425792,1.166899,0.161803,0.704612,1.364272,-0.429801,-0.043479,-1.017424,-0.554002,-1.247567,0.049485,-0.45776,2.118871,-1.72241,3.151348,1.350224,1.544593,0.677268,1.125295,1.371685,-1.786466,-0.263742,0.218217,-0.68173,-2.84675,0.647046,1.568944,0.761074,-0.454586,1.1323,0.487456,0.254099,0.101553,0.001753,0.272185,-0.339741,0.127505,0.077916,0.03
-0.22047,-5.043508,-0.430211,0.91895,1.838656,-0.110579,-0.716741,2.003972,1.458102,-1.271471,0.85194,0.619897,1.455549,0.537376,2.815673,-0.124508,-2.094607,0.690805,1.702942,-0.90333,1.915343,-0.416049,-0.614256,0.410961,1.10783,0.020486,0.0247,-0.066969,-0.87997,-0.054607,-1.888155,-0.019682,-0.834075,0.962407,0.683333,-0.825893,-0.13399,-0.216192,0.13149,-0.371878,0.958928,0.546982,0.02446,-0.220408,0.245183,-0.155046,0.677614,0.407782,?
-8.024222,-5.32038,-0.689011,-3.088859,-3.039937,-1.068662,1.849853,-0.616385,-3.704169,0.177336,0.334068,-2.15509,0.659897,1.687913,-0.225169,1.541125,-0.792803,0.519777,-0.049436,0.763449,1.248939,0.67064,0.164378,-0.625414,0.990419,0.775924,-0.871757,-0.858053,-0.988841,0.483175,0.328326,2.560256,0.861438,-1.231526,-0.427091,0.010496,0.519469,-0.422677,0.825123,-0.031088,0.212233,0.081229,0.333494,-0.178284,0.386747,-0.40214,0.966827,-0.442701,?
0.123539,3.448358,1.172945,6.437191,0.618344,-2.038841,1.833578,2.224752,-0.543306,-0.56985,3.548042,-2.696499,-0.48031,0.061723,-0.600566,2.773596,-0.198836,0.673232,-0.806333,-2.40163,0.784322,-0.541658,0.092843,0.803971,1.001367,-0.478267,0.28863,0.48096,0.070372,0.798379,0.351425,-0.113405,-1.005854,0.071167,-0.143833,0.929975,-0.0988,0.00566,1.666025,0.56545,-0.180511,-0.108911,0.153733,-0.305542,0.410835,-0.250278,-0.126093,-0.571875,?
6.694256,0.156317,0.39714,0.354957,1.803345,-0.267394,0.310359,-1.050855,1.188505,-0.785459,-1.099198,0.64406,-0.796689,-0.214518,0.390848,-0.331564,-0.277381,0.542629,-0.917286,-0.057335,1.200467,-1.364884,0.652189,0.674322,1.078344,-0.441905,0.454721,-1.880339,-0.033999,0.014292,0.688495,-0.457336,-0.325901,0.297171,0.498203,-0.575287,0.257956,0.308323,0.015345,-0.603449,-0.774278,0.276971,0.177599,0.091651,0.054028,0.062849,-1.385961,0.302379,?
-4.436159,-2.44054,-3.862183,-2.325113,0.938674,-0.851282,0.310824,1.276033,-0.164399,-0.286007,-2.029151,0.416871,2.23076,1.570133,1.624414,-0.107098,-0.698302,-0.322599,0.888513,-1.211066,1.333993,-0.217957,-0.416095,-0.165904,0.863892,-0.495983,-0.590223,1.39338,-0.602371,0.186266,-0.983997,-0.685678,-0.836086,0.063138,0.084332,0.792434,0.07838,0.131427,0.770729,0.625988,0.034358,-0.966153,0.067769,-0.171691,0.527197,-0.00455,-0.677187,-0.464761,?
-6.683091,5.662968,7.980596,-1.299246,4.623306,5.21985,-0.194887,4.733333,-1.876948,0.77282,1.870727,2.090664,0.068197,1.208215,1.793592,0.785614,1.685387,1.29381,-4.3341,0.611308,0.431571,-0.567011,0.755853,-0.044472,0.579997,0.657385,-0.868706,0.028446,-0.286764,-0.117937,-0.523597,0.128338,0.635239,-0.000101,-0.713746,0.091927,-2.18938,-1.376767,-0.272319,-0.525115,-0.384373,0.117672,0.788036,-0.511062,-0.456121,-0.208884,0.562439,-0.070899,0.15
-1.283902,-0.211221,2.86569,0.773499,-4.696818,1.104352,-2.23589,1.953344,-3.594363,0.242274,-0.19604,-0.675557,0.057671,-3.516801,2.322963,-1.603899,-0.437331,0.626233,-0.999283,0.332485,1.534999,-0.080906,1.046876,-0.579856,-0.125805,0.319619,-0.129145,-0.113139,-0.181058,0.248677,1.211364,-0.201565,-1.207514,0.988127,0.352122,0.048839,0.164632,-0.11751,0.607597,0.07315,-0.883751,0.661213,0.023811,-0.500906,-0.11567,0.524811,-0.482762,0.343966,?
3.303195,-4.846329,0.075032,-2.134927,-0.050462,1.114336,-0.790861,1.797459,1.91332,-1.087563,0.377243,0.047851,-1.640916,-1.345468,0.375103,-0.193764,-0.206442,2.086556,0.242955,-0.440304,1.299238,-1.073644,-0.87217,0.263835,1.194698,1.098852,0.568608,-0.435313,-0.521875,0.874934,-0.04783,-0.864449,-0.594644,-0.721618,0.440854,-0.115866,-0.192911,0.155599,0.285741,-0.447312,-0.550736,-0.069197,-0.330167,0.151456,-0.126338,0.374083,-1.004805,0.01202,?
6.254205,0.391053,-0.879994,-0.647649,2.616749,-1.248462,1.351027,-1.090242,0.110216,-0.036122,1.234305,-1.080743,0.56135,0.569789,0.429986,1.110605,0.497714,-0.47719,-0.780561,-1.237744,1.027443,0.774424,1.873721,0.204019,0.380272,-1.407532,-0.521842,0.18843,0.29882,-0.151702,0.427282,-0.411747,-0.118236,0.227467,0.061508,0.596166,-0.227459,0.398495,0.075958,0.12502,-0.184036,0.339201,-0.181533,-0.070091,-0.107711,0.288715,0.13438,-0.279669,?
2.5259,8.200751,0.160249,3.432219,-2.933887,4.113059,-1.496709,0.44436,2.094149,-1.743071,-0.984946,-2.785823,-3.338661,3.160431,0.969101,0.475454,1.020926,-0.526758,2.140573,-0.97372,0.506385,-0.592741,2.54889,-2.475625,1.096624,1.13844,1.487959,0.954568,-0.376223,-1.117666,0.435346,-0.67093,-0.693034,-0.66859,-1.179231,-0.6384,-0.18282,0.037888,0.049177,0.245218,0.607726,0.304797,0.116917,-0.554478,0.057812,-0.894846,-0.147033,0.661214,0.04
-5.745494,0.106087,0.347262,2.048518,-2.049881,0.472777,-1.129297,0.700281,-1.828158,-0.127582,-1.133173,-0.032402,-1.708852,0.540713,-3.57632,1.153683,-0.906503,-2.002718,-1.150519,-0.890896,0.862123,-0.541927,-1.024558,0.1812,1.176903,-0.990126,-0.343772,0.662103,0.034915,-0.125558,-0.470356,-0.100843,-0.85583,0.347477,-0.06604,0.120652,-0.276886,-0.938473,0.127317,0.087854,1.925565,-0.629757,-0.53455,0.354768,0.473567,-0.140938,0.302191,0.437986,?
10.935983,6.413283,-0.024696,1.508127,1.794986,-2.250752,1.128964,-0.298475,-2.817168,0.525949,-2.58158,0.789643,1.398814,1.352938,-1.060329,-1.351087,-0.452657,1.474534,1.852374,1.345084,2.334652,-0.00157,-1.187982,-1.762276,0.643892,0.856237,-0.383789,-0.564443,-1.115893,-1.1694,-2.711904,0.414419,-0.420089,0.161905,-0.034279,-0.400505,-1.461124,0.827365,0.57579,0.462958,-0.503433,-0.152213,-0.729761,0.065561,-1.311158,-0.562485,-0.650556,1.032011,?
-8.250624,13.275688,-2.864708,-0.414166,-2.92717,0.977666,0.942188,-4.60738,-0.621441,-5.667766,1.701307,2.570471,-1.161264,-2.048089,0.698882,-0.498509,-0.740926,-0.38311,4.167085,-0.219302,3.275146,2.363469,-0.290021,-0.321104,1.443708,-2.632776,1.706768,-0.693748,2.4832,3.295473,1.625785,0.151581,0.506014,-0.269916,0.028167,0.007361,-0.372588,-1.058001,-1.106961,-1.744274,-0.227305,0.038422,1.770699,-2.469091,0.498696,1.256407,0.279972,-0.204021,0.07
6.772814,-1.235303,-0.001163,-3.120823,-0.702919,-0.747032,2.117649,1.864454,-0.170084,-0.194065,-0.05337,0.050659,-1.832143,-0.764226,-0.099808,0.013091,-0.696669,-0.290267,-0.580053,-0.413138,1.28845,-0.093476,-0.301186,0.227174,0.851362,0.958687,-0.130172,0.437782,-1.090679,1.715104,0.0499,-0.431211,-0.425426,-0.160795,0.203791,-0.126193,-0.528094,-0.026445,0.31737,0.776855,-0.027,-0.149162,-0.108211,-0.002207,-0.204374,0.792297,-0.260072,0.147318,?
3.320676,-3.184135,2.76846,-0.278805,-2.713653,0.655155,-1.431333,2.170993,-3.846185,0.186664,1.002593,-0.157585,-0.919618,-2.10259,0.177088,-0.445863,-1.033761,0.870805,-0.567925,0.35209,1.316999,0.675802,1.470297,-0.430446,0.001563,-0.089475,-0.218671,-1.142001,-0.559889,-0.378016,0.171065,0.441756,0.504025,0.517105,-0.006333,-0.11518,0.275657,-0.08465,0.216053,-0.286437,0.475644,-0.866844,0.91676,0.051708,0.255395,-0.770038,0.018363,0.096361,?
1.050792,6.829253,6.134973,1.440866,-6.214185,2.846851,0.189051,0.596243,-0.970601,-4.31027,1.035313,3.987542,-0.181822,5.113531,0.647304,1.21192,-0.412281,-0.564808,0.297114,-1.111544,0.118731,2.238626,-1.878756,-1.624193,3.343205,-0.763799,-0.252822,-0.766257,1.354322,0.456937,0.497681,-0.4256,-0.819692,2.769331,-0.178875,1.947347,1.180947,-0.629951,-0.100136,-2.370782,-1.124842,0.333768,-2.906005,3.850903,2.145745,-0.166296,0.745722,1.154394,0.05
1.430156,1.633376,0.500601,2.059841,0.486541,1.33578,-3.3203,-0.552202,-1.207076,0.29121,-0.020214,0.400812,0.669237,-0.546725,-0.186992,-0.392179,0.20392,-0.403769,-0.948664,-0.70017,1.208466,-0.458629,0.477444,0.097281,0.694302,-0.409387,-0.107605,-0.173984,0.085312,-0.398734,1.092897,-0.184225,0.023358,-0.415013,0.370456,0.377298,0.568073,0.361643,0.720586,-1.604842,0.47587,0.020012,0.357599,0.127734,-0.893183,-0.165485,-0.17871,-0.408931,?
8.491757,1.575246,0.62339,-2.165886,-0.858888,-1.236437,2.278253,-0.781568,-0.249329,-0.207427,-1.423977,0.334922,0.590141,0.80565,0.653281,-0.760578,-0.38591,0.287615,0.223431,-0.224557,0.982883,-0.549856,1.501072,0.830113,1.238204,-0.929575,0.001052,-1.270148,0.184988,-0.973219,-0.273721,-0.18397,-1.045377,0.206734,0.193509,0.204362,-0.378802,-0.031514,0.17761,0.511614,1.0548,-0.579237,-0.292784,-0.099635,-0.318201,-0.110855,0.368384,-0.162402,?
4.069477,-2.203933,-2.129232,-2.082979,3.429823,-0.378616,0.897338,0.587621,2.314818,-0.401369,-0.091893,0.579166,-2.187024,-1.723159,0.917257,-0.383249,-0.283807,-1.506689,-1.314143,0.158299,1.245671,1.154059,0.607164,0.480954,0.589083,0.809269,-0.217265,0.401656,-0.533217,1.003608,0.361613,-0.684233,0.117099,0.397788,0.399832,0.545755,-0.322368,0.633572,0.099181,-0.377407,-0.565683,0.48653,0.373515,0.164455,-0.822727,0.120726,-0.107326,0.375528,?
3.763916,-2.455772,-0.291149,0.590762,3.254478,1.06395,-2.625525,-1.582544,1.448993,-0.802655,0.970096,1.177057,-0.555341,0.094764,-0.157696,-0.042962,-1.524571,0.772508,-0.058461,0.746538,1.734175,1.257828,0.30638,-0.602354,-0.017976,2.256995,0.050954,-0.915381,-0.377328,-0.02492,0.377349,-0.794876,-0.843762,-0.22125,0.479275,-0.37012,0.461857,-0.367433,0.178371,-0.375949,-0.696635,0.285249,0.237116,0.068851,-0.13055,-0.497983,-0.150286,0.188315,?
1.04857,-1.957671,0.408014,2.307635,1.026909,-0.879051,0.497763,0.978266,0.310217,-0.342416,2.338941,-1.64092,1.119125,-0.116333,0.263887,0.628867,1.298275,0.574492,0.136378,-0.186447,1.557277,0.68357,-0.104829,-0.309911,0.712448,0.649611,-0.312023,-0.116736,-0.274718,-0.165067,-0.611966,0.44941,0.581551,0.630448,-0.689784,-0.863064,-0.058026,0.81096,-0.570404,-0.575316,0.130267,-1.74668,0.016229,-0.573467,-0.475527,0.13925,0.378533,0.79865,?
1.725199,-4.343403,-0.742006,-2.890642,0.550944,0.402622,0.043751,0.484753,0.804097,-0.356886,0.787469,0.441157,-1.002348,0.248398,-0.061861,0.455713,-0.921461,1.19306,-0.166148,-0.890306,1.081567,-0.242454,1.128889,-0.593694,0.28032,-0.351761,-0.160978,-0.781098,0.090385,0.163636,1.459657,1.753079,0.033511,0.073681,-0.107182,0.541418,-0.113702,0.138837,-0.102127,0.44768,0.28795,-0.663441,-0.613689,-0.477611,0.160693,0.059399,0.5847,0.122945,?
4.354381,-2.331671,1.677787,0.529145,0.826708,0.96611,-1.019986,-0.246126,1.009023,-0.819054,0.051574,1.323499,-0.734615,-0.209547,-0.415747,-0.14222,-0.853565,-0.418107,-0.702356,-0.695203,0.888857,0.05011,1.998562,0.824519,0.725034,-0.830659,-0.121936,-1.235769,-0.273369,0.524579,0.973405,0.019126,-0.055298,-0.552594,0.28819,0.565704,-0.834669,0.72219,-0.230726,0.338957,-0.474184,-0.110119,-0.540963,0.045959,0.273421,0.65938,-1.412096,0.095405,?
0.165954,6.764057,-0.759809,3.983733,-1.542666,-0.76134,-0.856261,2.357563,-1.408249,-0.767666,-0.788467,0.634103,-0.28358,-0.340179,-0.133024,0.042513,-2.905319,-0.574916,0.319921,-0.447483,1.321284,0.499991,0.144954,-0.834924,0.439113,0.550151,-1.071912,-0.45737,-0.96322,-0.651769,-0.551921,0.383622,0.31995,-2.573106,0.656822,-0.437626,-1.215637,0.529335,0.08025,-0.01083,0.792975,0.585474,-1.652419,0.568586,1.092914,-1.517513,0.900215,1.209813,?
-5.41735,10.653468,-7.01006,-2.191679,-2.5078,-0.428797,-1.738337,2.172011,0.359838,0.132668,-0.226859,-1.113581,0.298623,-1.575345,1.940282,0.026933,-1.677543,0.170918,-0.491378,-1.651059,1.03079,-0.044829,0.061116,-0.078365,0.585986,0.746089,-0.222272,0.272076,0.321728,-0.448902,0.987834,0.073526,0.113301,0.456771,0.704212,-0.067587,0.234588,0.339768,-0.263517,-0.534292,0.111423,-0.450595,-0.379934,0.480066,1.505001,0.272656,-0.337243,-1.183627,?
1.643064,-5.770103,-0.279289,-3.50509,-0.848461,0.501347,-0.027034,1.315093,0.533457,-1.119716,-0.091706,0.510813,-0.873325,0.916658,-1.533712,0.713522,-1.216303,1.12949,0.352159,-0.989256,0.945701,1.75024,1.153007,-0.957517,-0.180319,0.91801,-0.768222,0.243639,-0.573775,0.169158,1.45784,1.950275,1.676731,-0.228816,0.027258,0.21493,0.239916,-0.354087,0.444613,-0.037635,0.243784,0.519775,2.481578,1.816183,-0.018178,0.046338,-0.390657,0.683018,?
-6.509149,-4.361505,0.274172,-1.813785,-2.031301,-1.242137,2.219671,-2.500357,-2.685879,-0.22596,-0.138591,-1.525414,0.937919,1.499169,0.659329,0.751428,-1.410031,0.441196,-0.113333,1.524067,1.251988,0.046367,0.587973,-1.297922,0.557431,0.255822,-1.680482,-0.458719,-1.193817,0.104341,-0.99967,0.370195,0.464012,-0.887671,0.143513,-0.171273,-0.250631,0.417116,-0.15979,-0.17636,0.067734,-0.102352,1.3932,0.569861,0.648489,-0.460257,0.431201,0.126943,?
2.988126,-1.424823,-0.342683,0.194955,1.660309,-0.629077,0.507644,0.004487,-0.040615,-0.467283,-1.035687,-0.478623,1.767182,0.31521,0.758065,0.072115,1.536087,-1.886231,-0.312191,-0.563878,1.430167,1.786672,0.493348,1.116631,1.172967,0.133673,-0.46542,0.409224,-1.001988,0.611961,-0.778674,-0.873418,1.795457,-1.019489,0.924776,0.12681,-0.577881,-0.89525,-0.436184,-0.063785,1.480672,-0.157001,0.214419,0.660628,0.612565,0.995366,0.106083,0.820786,?
-3.579882,-1.215919,-2.362885,1.284403,1.048294,0.264952,-2.095958,1.39551,0.74631,-1.176345,-1.612933,-0.071471,0.632699,-0.635669,0.925703,0.061425,-0.035206,-0.217203,-0.571964,-0.875237,1.345552,0.317911,0.361603,0.104014,0.317431,-0.666704,0.081984,-0.257601,0.330678,-1.2763,-0.042108,-0.196102,0.586864,0.783655,0.115872,-0.556927,0.531819,-1.727971,-1.147595,0.330825,0.411288,0.633388,0.298192,-0.016844,-0.362022,-0.213271,0.486699,-0.594141,?
3.952518,4.533846,-2.834133,-2.042853,-0.05419,-0.012659,-0.702019,-0.250392,0.430262,-0.34147,0.284419,-2.035154,-2.255462,-1.864744,-0.015595,1.110696,-0.158079,0.40532,-1.675461,-0.574996,0.826033,-0.180277,0.389297,0.157202,0.763287,-0.252048,-0.313801,0.593119,0.384639,-0.362279,0.311697,0.019558,-0.282221,0.557837,-0.855388,0.177426,-0.181204,0.377868,0.307757,0.702949,-0.699376,-0.467674,0.396753,-0.271233,-0.611547,0.053555,0.048371,0.504958,?
3.349984,0.562733,-0.490468,-0.582342,-4.936363,1.934888,1.241581,2.370124,3.62336,4.051975,0.074017,-0.506528,-0.838357,1.638362,1.966641,-2.665797,0.386703,1.312546,-2.577815,-2.111093,0.06885,3.727035,-1.19034,-0.561327,-0.148112,-0.566587,-1.428173,-0.018685,-0.920274,-0.203347,-0.551405,-0.110667,-0.928247,-0.204343,-0.05909,0.103711,0.401738,0.753239,-0.628227,1.331998,0.959884,0.89634,0.09555,0.280865,-0.122929,0.023965,-0.460501,-0.285672,0.02
5.219183,1.401073,0.108806,-1.981091,-2.67272,-0.542111,1.662866,1.143482,1.943381,-0.253337,0.393965,0.505243,0.447622,-0.433271,-0.379365,-1.843368,0.40228,-0.582868,0.212097,0.07068,1.578625,-0.806975,-0.503702,-1.161839,0.572936,0.48558,-0.654967,-0.084671,-1.148361,0.642138,-1.136485,0.31089,-0.407312,-0.1955,0.303308,0.708472,-0.759422,-0.361198,-1.08045,0.343818,0.306268,-0.317898,-0.299453,0.044632,-0.156927,-0.793206,0.776584,1.303339,?
6.832092,-2.398736,-0.333111,-3.053466,0.806291,-0.524608,1.18618,0.74445,-0.357607,-0.487194,-0.677642,0.342965,-1.313199,0.175581,0.407732,0.676323,-0.914299,0.674463,-0.304375,-0.133268,1.456425,0.00443,0.716681,0.986417,0.949848,0.27985,1.255035,-2.797049,0.21778,-0.715025,-0.197528,-0.860294,-0.291407,-0.65958,0.481364,-0.290279,-0.161013,-0.847199,-0.867695,-0.264082,-0.122234,0.527924,-0.068141,0.204536,-0.083288,0.513807,0.139542,0.185363,?
2.678388,4.419644,2.174661,2.9829,-3.217143,1.527494,-2.424773,-2.138709,1.746231,-1.854698,-0.168988,-0.91698,0.480986,1.134056,-1.631519,1.6204,-0.164214,-0.273642,-1.121628,-1.699652,0.533308,-0.791752,-0.29632,0.635086,1.128631,0.029975,-0.407333,0.642482,0.209761,-0.58465,0.511692,-0.279812,-0.362321,-0.217641,-0.147476,-0.571832,0.23364,-0.080218,0.408528,-0.198713,0.250247,0.23793,-0.046898,-0.29821,0.139501,-0.798391,-0.182709,0.707238,?
-3.600251,-5.122222,-0.849283,-0.962446,-0.369261,0.232591,-0.61521,0.175437,0.794721,-1.102423,-0.41703,-0.506301,1.280708,1.014596,-0.067757,0.305147,0.115702,1.671568,0.812143,-0.991661,1.325036,-0.249114,0.418476,-2.547794,-0.710721,-1.305573,-1.291917,1.197578,-0.293762,-0.101784,-1.855832,-0.499406,-2.094366,0.532756,0.132794,-0.936134,-0.320806,0.150013,0.451573,-0.033644,0.204245,0.41223,-0.835628,-0.464004,-0.098226,0.285393,0.771957,-0.045913,?
12.849802,2.614576,2.987512,-2.463761,-3.394628,-1.207746,2.473208,-0.569915,-3.716871,-0.476931,-1.641787,-0.919649,-0.629221,1.227098,-1.123782,1.38915,-1.103371,0.404159,-0.859789,-1.090351,0.678053,-0.167957,1.058442,0.205134,0.53121,-1.517487,-0.901075,0.304935,-0.339576,-0.530004,-1.121432,-1.389001,0.372867,0.176127,-0.004424,-0.481466,0.163544,-1.276379,0.452059,0.462702,0.2384,0.433699,0.246461,0.058069,-0.590904,0.008545,0.393871,-0.940614,?
4.358689,1.391288,-0.118079,1.149893,0.991948,-0.472881,-0.980471,0.395435,-2.46822,0.296441,1.586942,-1.635834,-0.3454,-0.994626,0.00815,0.957188,-0.170589,0.722131,-0.448402,-0.317649,1.343027,0.550289,-0.130932,0.312793,1.022432,0.37491,0.010409,0.105422,-0.696086,0.590285,-0.51473,0.333915,-0.444673,0.138981,0.074069,0.649241,-0.212547,0.666822,0.769329,-0.440364,0.032794,-0.243301,-0.876984,-0.190418,0.340182,-0.977692,-0.834507,-0.584019,?
4.659904,-0.129493,-0.531761,-1.221943,1.005841,0.457575,-1.464598,-1.02755,-0.142351,0.496255,1.154045,-0.199298,1.119922,0.216898,0.14576,-0.572417,0.810753,1.139267,0.239568,0.288503,1.906814,-0.238652,-0.66482,-0.798196,0.640961,1.377404,0.428279,-0.831104,0.55932,-1.371994,1.191306,0.195735,-0.06823,0.39855,0.044839,-0.840918,1.308117,-1.594104,-0.10721,-0.099594,0.63098,-0.437491,-0.061737,-0.65518,-0.018305,-0.272924,0.705632,0.110132,?
-6.104459,-1.682911,-1.557439,-1.082708,0.822129,-0.200981,-0.42381,-4.148098,-1.243322,0.142275,0.47311,-1.278638,0.387225,1.213304,0.394806,1.106608,-1.351155,0.191625,-0.896216,1.122126,1.304312,-0.114432,0.218031,-1.013926,0.467016,0.1891,-1.000032,-0.405674,-0.809631,0.142405,-0.638428,-0.1465,0.38913,0.542655,0.679677,0.614449,0.27315,-0.12743,1.377658,-0.208953,1.090831,-0.722727,-0.324425,-1.085665,-0.421871,-1.322464,0.468302,0.361156,?
7.064826,-0.034028,-1.894784,-3.983961,2.621889,-0.537561,0.018843,-1.436536,-2.583268,2.130642,0.851691,-0.70367,2.588982,1.464935,-0.267612,-0.880885,2.092209,1.715955,1.03122,-0.577288,2.102771,-2.18546,-1.031106,-2.36658,0.610411,-0.993997,-0.562161,0.940907,0.34465,-0.34448,1.674681,1.747339,-0.266662,-0.713357,-0.503779,0.3275,0.164007,-0.153497,-0.882687,0.1871,-1.391464,2.180229,-0.075721,-0.079579,0.375737,0.983635,0.372906,-0.350209,?
-0.416362,1.598383,-1.09275,1.847736,1.689031,0.608587,-1.855522,-0.652023,0.322187,-0.36764,-0.30434,-0.037419,-0.740331,-0.207629,-0.973757,0.806448,-0.459426,-1.470369,-1.307115,-0.599097,1.19327,-0.507763,-0.555377,0.399802,1.13533,-0.680038,-0.413459,0.153955,-0.952122,0.669892,-0.757013,0.700105,0.291471,-0.670889,-0.003527,0.983313,-0.295384,-0.070418,-0.213922,-0.421359,0.189919,-0.168607,0.090218,-0.117713,0.552064,-0.910533,-0.212951,0.015689,?
-4.948099,5.202229,-2.018839,1.649186,-3.142281,1.912424,2.407961,0.788833,3.34693,3.450191,-0.3071,0.019061,-0.841496,0.962597,0.141306,0.781862,1.217498,1.169382,-1.213622,0.471216,1.469823,2.120769,-1.292376,0.988187,-0.329842,-1.034235,-0.894673,-0.361747,-1.262944,-0.73865,0.155889,-0.945686,-0.438979,-1.190524,-0.738706,-0.104243,1.094843,1.180859,0.577302,1.007784,0.107908,1.075243,-0.347826,-0.026895,0.367551,-0.100353,0.086168,1.309044,0.02
-7.696478,1.440548,5.987361,-0.089506,2.909327,-0.951939,4.066079,-4.336153,-1.924811,1.548137,-1.113521,1.753337,0.183873,-3.747677,0.388329,1.598259,-0.054574,-0.659436,-0.167854,-3.356245,0.927416,-1.342961,0.870362,-0.330401,-0.058596,0.589731,-0.841761,-0.372662,0.835066,-1.237417,1.289418,-0.076238,-1.227157,-0.705048,0.727013,0.139387,-0.518058,-0.617259,0.706847,-0.889538,-0.588754,0.44705,0.969381,-0.41286,0.325669,0.395948,-0.864351,0.790582,0.07
-2.229196,-6.240833,-0.522455,-3.836154,-1.875375,-0.501731,2.038794,1.213725,1.04147,-0.682235,0.484049,-0.057544,0.015298,1.775046,-0.875453,0.454563,-0.558761,1.451282,0.948313,-0.150603,1.221605,0.059313,-0.020064,-0.774351,0.845303,1.013087,-0.073622,-0.828233,-0.272479,-0.299081,1.21905,2.541616,1.30584,-0.413066,-0.61099,0.489839,0.348963,0.533749,0.628553,-0.252094,-0.645511,0.54127,1.090053,0.14231,0.275549,0.075435,0.393235,-0.235289,?
-5.965442,-3.057357,4.96228,-3.279477,-2.10699,-20.489059,-12.880408,-1.730961,2.656395,3.611435,-1.839657,1.220388,-7.036236,3.997808,4.536393,1.575769,1.509316,0.088912,-0.388886,0.268704,3.078635,0.395527,0.817549,-0.117572,-0.181734,-1.127865,3.053223,3.428684,0.524889,0.008251,-0.650381,-1.00331,1.298776,-1.714274,-1.478171,0.028957,-2.471013,-0.140622,0.093924,0.504417,0.145616,-0.84972,0.107161,0.354047,-0.533527,0.956964,0.530101,0.365668,0.12
-3.906541,-0.804396,-1.332752,0.164068,0.027146,-0.015944,-1.884306,-1.072724,-2.642665,-0.101837,-2.506256,-0.737602,0.941146,0.76663,-0.448034,0.464941,0.244473,0.747635,-0.523304,0.305868,1.680026,1.1783,0.295561,-0.392637,0.359028,0.780276,0.51888,-1.019008,-0.604783,0.892064,0.881784,2.462257,0.003992,1.183674,-0.133047,1.16625,-0.141963,-0.299624,0.750453,0.517618,0.482877,-0.185809,-0.537469,-0.578488,-0.345425,1.332681,-0.272298,0.313415,?
-3.078677,-0.848251,-1.23654,0.556618,1.498494,2.940767,0.202717,1.902632,-0.407821,1.947067,1.44117,2.439582,0.483583,2.063319,2.438518,0.493623,-0.286815,0.76493,-1.412561,-0.621828,0.417093,0.746844,0.250291,0.471237,0.917128,-1.103565,0.432885,0.615854,-3.823116,-1.119689,0.276328,-1.098653,-1.644269,0.173955,-1.094348,0.115872,1.175663,0.840142,-0.473495,1.645982,1.00215,0.112831,-0.115975,0.071153,-0.218448,0.268094,0.487621,-0.103206,0.02
-4.150114,-0.58455,2.246899,1.16073,0.710194,-0.851171,0.450143,-4.325213,-3.672574,-3.2441,1.70936,1.509715,-3.01785,0.177353,-0.089102,-2.020963,1.523092,-0.31504,1.124222,-2.545949,0.675017,1.228865,-0.946871,-2.126736,1.568335,1.106941,-2.384259,-1.97899,2.541221,1.125126,-1.822845,0.888913,-0.191689,-0.523976,3.442221,0.093828,0.146867,0.377418,-0.254065,0.854367,-0.806303,-2.036379,-0.013212,-0.292554,0.793883,0.19362,-0.254721,-0.853338,0.03
2.271744,-3.696129,-0.535071,-1.345572,0.68257,0.348257,-0.243439,1.432354,0.886296,-0.545755,-0.871713,0.928895,-1.858039,-0.440673,-2.07915,-0.163714,0.349913,0.010136,-0.519053,-0.430411,0.770442,0.964752,1.747767,1.313085,0.842447,-0.058978,0.735875,-1.863969,-0.109078,0.150484,0.216298,0.104242,-0.592496,-0.635531,0.300371,0.016582,-0.110171,-0.375135,0.037802,-0.087915,-0.044821,0.202568,-0.455878,-0.1546,-0.069549,-0.190294,0.123915,0.114677,?
3.801699,-2.269147,-0.869662,-2.739971,0.387847,0.107499,0.249194,1.031987,1.309971,-0.39086,0.275984,0.438541,0.26703,-0.043412,0.660314,0.093969,0.320474,0.354238,-0.196124,-0.682753,1.517258,2.001313,0.524153,-0.910349,-0.394361,2.028131,-0.016507,-0.135556,-0.495201,0.659629,0.955045,0.621681,-0.146107,-0.087142,0.608376,0.05392,0.317852,-0.425671,0.0364,-0.452971,0.306039,-0.482275,0.049512,0.067727,0.757635,-0.113365,-0.328001,0.12807,?
-7.419904,-3.348638,0.452045,0.000759,-2.302322,-0.232546,-0.226435,-1.750594,-3.145585,-0.456333,-0.930062,-1.469404,0.106864,0.506508,-0.395763,0.509106,-0.821139,-0.135937,-0.556445,1.633498,1.030073,0.398377,1.310805,0.373731,1.422384,-0.829794,-0.785941,-1.447372,-0.152468,-0.350676,-0.223392,-1.833943,1.697003,-0.305248,0.012997,0.970801,-0.821783,1.793421,0.678906,-0.032193,-1.005495,-0.231404,-0.043023,0.710829,-0.468126,1.057651,-0.170052,0.90004,?
-8.752278,11.508649,-5.584264,-1.171222,-4.30588,-0.5235,1.791289,-1.542902,3.041993,-4.260148,1.217902,4.697239,2.130416,-1.817151,0.965381,-0.073931,1.601929,3.108011,0.400373,3.338203,4.884265,-0.058882,-0.541551,3.095026,-3.259225,-0.546818,1.13072,2.081386,-1.413438,-2.618329,0.097835,0.976383,0.387684,-0.315738,0.415123,-0.592478,0.87072,0.885276,-0.062994,-0.117312,-0.147174,-0.239385,-0.150684,0.241693,0.74207,0.417903,1.048333,-0.658532,0.02
10.390475,2.793645,2.974056,-0.586148,-2.632699,-0.862522,1.724702,-0.873746,-2.107021,-0.761919,-1.173324,-0.479969,-0.446051,1.313698,-0.894405,1.45353,-1.110098,-0.024305,-0.891871,-0.824333,0.620205,0.372432,0.818055,1.151519,1.127607,-0.309625,-0.155125,-0.329337,0.101608,-0.785409,-0.437167,-0.761016,0.24903,0.706205,-0.112114,0.544773,-0.255043,0.848808,0.292855,-0.727346,-0.325003,0.177791,-0.137448,-0.335031,-1.013637,-0.49606,-0.295333,-1.133732,?
-8.236702,-3.490824,-0.674615,-0.845601,-1.665182,-0.571015,0.73707,-3.732728,0.252865,-1.594087,-1.856969,-1.925248,0.951256,1.484716,0.750443,1.045273,-0.342755,1.89225,-0.448411,1.618446,1.132233,0.960955,0.595095,-1.132054,0.390891,1.723291,-0.781827,-0.748247,-0.66464,0.546907,0.651189,1.026514,0.361118,0.21847,-0.04762,-0.259502,-0.021043,0.386357,1.243032,0.725395,-0.192031,-0.256594,-0.432425,-0.497547,0.362802,0.833714,-0.529522,-0.61462,?
-1.392138,-1.669732,4.420122,1.740239,-3.748633,2.783599,-3.15322,2.553083,-2.918023,1.869958,1.2968,-0.69625,-3.164004,1.816968,2.432672,-1.715801,1.35022,-0.135953,-0.992149,0.579792,3.650485,-1.137529,0.309813,1.746278,-3.480213,1.255475,-2.215818,0.301097,1.354612,-0.817839,-0.934085,0.699055,-0.643649,0.978204,2.211198,0.386585,0.976171,0.341062,0.28725,0.49084,-1.311877,0.209223,0.177282,0.626123,-0.336883,0.2418,0.069552,0.10297,0.04
1.960802,-2.795417,-1.756336,-0.419729,3.374961,0.150234,-1.684556,-0.200029,-0.555532,0.227674,0.048853,0.07142,0.571552,0.000569,-0.22458,-0.500426,0.328033,-0.65366,0.46878,-0.107499,1.549542,0.139701,-0.361713,-0.092229,1.128482,-0.699775,-0.464237,0.527857,-0.006749,-0.857825,-0.933209,0.249507,-0.937546,-0.492911,-0.237152,-0.292586,0.783343,-1.236158,0.684092,-0.806961,0.391321,0.419671,0.763188,0.579463,0.039987,0.329177,-0.75583,0.013278,?
-3.0019,-0.200934,0.130922,7.771821,2.357757,-2.800719,2.462532,4.125197,-0.116854,-0.967623,-0.920683,-0.158673,-0.724723,-0.956211,-1.13837,-0.237287,0.8603,0.582744,-0.648895,-0.696181,0.987476,-0.334567,0.560662,-1.707165,-0.258477,-1.008916,-0.650595,0.165244,0.171724,-0.559558,0.922559,0.494012,0.279688,-0.554394,-0.364438,0.491859,-0.290963,0.063515,-0.733463,0.204374,-0.110323,0.081201,-0.109277,0.657424,-0.4341,-0.29793,-0.355828,0.005557,?
5.409475,-0.76263,2.686472,-0.377482,-2.100085,0.575954,-0.261555,-0.2156,-0.583103,-0.245682,1.000931,-0.471405,1.635646,0.590334,-0.116952,0.635224,0.977017,-0.946646,-0.825532,-1.590536,1.132328,0.945591,1.031152,-0.395321,-0.017808,-0.241058,-0.624393,0.729061,-0.144959,0.81384,1.383616,-0.042599,-0.127076,0.085933,0.431159,0.266401,0.200771,0.376407,-0.758961,-1.029719,0.385598,0.820799,-0.176543,0.493502,-0.015109,-0.812902,0.388179,-0.294737,?
4.934871,-1.230747,-0.167043,-3.4948,-0.727503,-0.567008,2.223428,0.168152,0.897113,0.063719,1.69075,-0.671981,-1.438578,-0.749596,-0.640057,0.301982,0.200422,-1.464701,-1.263378,-0.514753,0.965009,0.922398,0.686003,-0.51164,0.300782,0.280688,-1.000096,1.212235,-0.026165,0.384419,0.568879,-0.334934,0.211389,0.462493,-0.022754,0.723448,-0.573061,0.022507,-0.614061,0.094809,0.027279,0.232192,-0.04996,0.012095,-0.677186,0.559396,-0.307681,0.014139,?
4.708903,-0.632002,-0.283456,-2.603136,-0.662923,-0.945069,2.073216,0.252367,0.687792,-0.049985,0.938215,-0.577822,-0.561368,-0.424077,-0.067784,0.107071,0.335148,-1.346023,-0.8231,-0.463749,0.686587,1.583011,2.398254,1.75896,1.13876,-0.44633,0.062999,-0.906613,0.26243,-0.34851,0.02583,-0.203289,-0.149995,0.504947,0.139646,1.157651,-0.708831,0.824668,-0.438293,-0.200214,-0.010501,0.041559,-0.208705,-0.237788,-0.622199,-0.089739,-0.036682,-0.519906,?
7.774965,-0.345336,2.100236,-2.164613,-3.866377,-0.320846,1.509673,1.429801,-0.013997,-0.827787,-0.217567,-0.126527,0.509752,-0.268844,1.209427,-0.527752,-0.520918,0.667821,0.034858,-0.669853,1.240318,-0.844109,0.078348,0.458072,1.093715,0.462386,0.043367,-0.866107,-0.815387,0.834653,-0.041545,0.726034,-0.539225,-0.135426,0.076017,-0.169826,0.151545,-0.102993,-0.322972,-0.228644,-0.024738,-0.648321,-0.557613,-0.332344,-0.165266,-0.304078,-0.449073,-0.286554,?
4.883524,4.163539,-0.771088,-0.502617,-0.324748,0.385304,-1.312801,-1.811323,-0.752823,-0.448852,0.066346,-1.559969,-0.830967,-0.113339,-0.333884,1.637459,-0.432207,0.138997,-1.51886,-0.817007,0.794925,-0.370505,0.318599,0.131264,0.909034,-0.362189,-0.644188,0.357864,-0.051125,0.039364,0.382558,0.177531,-0.316948,-0.764871,-0.504169,0.038979,0.240707,0.364018,0.161471,-0.742008,-0.675294,-0.094103,0.175033,0.11758,-0.430688,-0.546345,-0.039656,-0.034425,?
-0.842729,4.160342,-0.172328,10.797881,4.871299,-4.530448,4.09661,4.635649,-0.503265,-0.34664,0.660576,-0.031277,-0.423732,-0.232258,-1.2787,-0.167756,0.084811,0.647015,0.504465,-0.402697,1.308735,0.446592,0.509985,-1.068088,0.229653,0.484562,-0.719972,-0.316697,-0.527494,-0.437587,-0.458148,0.567978,-0.332134,-1.905299,-0.131263,-1.201253,-0.013966,-0.483752,1.682424,-0.611262,-0.126256,0.466921,-0.161607,0.23533,-0.658551,0.771989,-0.064658,-0.400078,?
-2.426481,-3.103023,-1.127333,0.027496,0.282475,-0.133236,-0.691552,1.835449,-1.212272,-0.06975,-1.635226,0.049324,1.061209,0.396272,-0.766754,-0.542333,0.944568,-0.074159,0.632329,-0.346561,1.314299,-0.101451,-0.36875,0.399841,1.302654,-0.304867,-0.233415,0.793516,-0.604525,0.529097,-0.221417,-1.05692,0.557903,-0.600541,-0.134381,0.257554,-0.374304,1.211461,1.376027,0.926997,-1.226621,-0.376093,-0.153206,-0.289548,-0.392005,0.554534,-0.296087,0.564615,?
-4.794454,-3.440406,1.135537,2.214881,-1.133148,-0.366104,0.6326,-0.695229,0.929591,-1.844961,-2.65032,-0.993497,-0.247018,-0.775239,0.557998,-0.109154,0.798279,0.757158,-0.963185,0.799275,0.885003,0.387981,0.679416,-0.163562,0.572693,0.610368,-0.350411,-0.183106,0.152481,-0.169152,0.447864,-0.682438,-0.895717,0.526786,0.000971,-0.905388,-0.790975,0.399418,-0.775482,0.251255,-0.252736,0.962236,-0.72413,0.145071,-0.323977,0.530432,-0.693314,-0.418843,?
-2.288114,-4.474718,0.3247,-1.533167,-0.715639,1.004745,-0.619402,0.16427,0.147989,-0.289178,0.445192,0.532797,-1.135452,1.020723,-1.960809,0.815525,-0.843928,0.411407,-0.353749,-0.516972,1.067883,-0.228049,-0.143226,-0.569373,0.57203,0.417883,-0.385422,-0.090449,-0.389503,0.53125,1.021759,1.515303,0.330375,-0.135555,-0.521136,0.420442,0.128475,0.013406,0.481067,0.375594,-0.242073,-0.517135,-0.073132,-0.727397,0.533916,0.238102,0.648375,-0.324134,?
-4.031831,-4.774775,0.30795,2.911269,-3.386822,1.572844,4.387235,2.323712,-0.276231,5.469318,-0.557885,0.844394,-1.345076,1.430562,-0.809539,-0.262263,-0.438468,1.317033,-2.628072,0.389141,1.404256,1.615433,-1.346696,1.047148,-0.415418,-1.70653,-0.914726,0.277159,0.618057,-0.035961,1.430931,0.966652,-0.045147,-1.208329,0.146335,-0.576679,1.899299,0.856049,0.11468,1.100889,-0.168249,0.66019,0.370737,-0.001679,-0.19887,-0.010462,0.26577,-0.852335,0
3.722249,-1.778709,-0.258119,-0.833186,0.542364,0.063363,-1.175864,0.862371,-1.777176,0.483562,-0.961571,-0.065253,0.511344,-0.836964,-0.475268,-1.576495,1.400153,1.661488,0.566381,0.057612,1.186017,-0.690688,1.773152,0.838512,1.261546,-1.580398,0.45837,-1.779743,0.462694,-1.046917,0.06537,-0.157374,-0.327325,-0.082443,0.085334,0.093332,-0.247637,0.71174,-0.152241,-0.225126,-1.362451,0.282166,0.723109,0.319651,-0.798928,0.562453,-0.679595,0.888982,?
-2.188072,-5.596553,-1.416121,-1.333934,0.483395,1.051288,-1.47393,0.529776,3.083919,-1.956424,-0.613041,-0.774636,-0.25328,-0.236728,0.480202,1.033168,0.435853,0.721054,-0.103052,-0.358884,1.226266,0.897589,-0.33401,-0.427072,0.360942,0.358193,-0.002458,0.116541,0.560289,-1.45997,-0.812121,-0.302658,0.088313,0.333231,-0.837851,-0.042982,0.18906,0.097611,0.054068,-0.804259,-0.581948,-0.209217,0.631968,-0.210095,-1.189077,-0.429837,0.4857,-0.061595,?
-7.436279,5.62655,-7.959605,-2.087289,2.292525,-2.339537,1.228808,1.941651,-1.194534,1.302577,-1.003869,1.859189,0.754334,1.421966,0.996444,-0.22523,-2.521003,-0.906898,-0.746484,-1.710957,0.372817,-0.206901,4.355013,1.928955,0.569847,-1.991072,-0.304462,-2.632171,-0.392122,-0.027041,1.324367,-0.574993,1.344552,-0.217624,1.309385,-0.655475,0.379816,1.551071,-1.066141,-0.427469,-0.625607,-1.02663,-0.151904,-0.376527,0.10249,-1.675347,0.751261,-0.676615,?
-4.406719,3.615874,0.207846,0.508209,-4.157788,2.569838,2.392282,0.74293,2.019433,1.259453,-0.032249,-0.740791,-1.290869,0.875676,0.042076,1.612343,2.832677,-2.42117,1.180155,3.120533,3.998442,-2.756721,2.406465,1.927471,-1.369797,1.061957,1.184983,2.212281,-0.839522,-0.699128,-0.810969,0.552553,0.440502,0.969406,1.336733,0.941582,1.986188,0.627825,0.371075,-0.291668,-0.725295,0.102521,-2.40969,3.043039,0.801772,1.106403,0.774252,0.884424,0.02
4.702389,0.884374,-1.447926,-0.389639,-2.339052,2.486801,1.964802,-0.155396,2.910522,4.652687,-0.674798,-0.909942,0.518929,-0.282004,0.676282,-1.32097,-0.659815,1.86395,-1.54809,0.218364,0.301514,-0.06097,-0.570373,-1.188246,2.66486,-1.385196,1.314238,-1.000207,-0.756168,0.125732,-0.151105,0.154374,-0.573243,-0.206349,-1.050114,-0.090243,-1.216122,-0.307356,0.31343,0.665122,0.535263,-0.487097,0.244812,0.578141,-0.447738,-0.378225,-0.450589,0.276137,0.02
5.899277,-1.737737,0.135668,-0.149382,2.192196,0.146536,-0.638044,0.505867,-0.074385,-0.269787,-0.705001,1.161627,-1.048748,-0.533869,-0.650298,-0.3866,-0.417522,-0.341446,-0.50715,0.000988,1.391688,0.913104,0.133841,-0.682999,0.216917,0.821744,-0.320087,0.647309,-0.452917,0.531424,0.796062,-0.321353,-0.150882,-0.115989,-0.022309,0.511179,-0.278216,1.095575,0.610082,0.124021,-0.207887,-0.063508,-0.361071,0.184019,-0.07144,0.344768,-1.043423,-0.462516,?
-9.186031,11.259157,5.960285,-4.103215,-1.653758,-5.692585,-0.20757,-0.910282,4.421425,3.084828,-0.563366,0.505031,-0.202811,0.328307,0.176331,-2.498547,-0.431849,-0.557711,3.120068,-0.723896,1.68859,2.720835,-0.974682,-1.067398,0.596635,-1.503652,-0.928563,-2.191966,-2.048339,-0.254527,1.427764,-1.365225,-0.337569,0.554429,-3.589428,0.692287,-0.873511,-0.826859,1.195124,-0.471474,0.017607,0.810726,-1.116817,1.466226,0.420396,-0.539187,0.312691,1.628232,0.19
-1.553501,-4.044704,0.918395,0.203089,-1.577078,0.678294,-1.244773,1.413115,-0.670302,-0.619249,0.305433,0.134895,-0.787996,-0.402889,-1.920695,-0.191108,-0.410815,-0.208532,0.194482,0.264328,0.856236,0.574411,1.229457,0.903402,1.377032,-0.676038,-0.524348,-0.873593,0.004875,-1.075479,-0.584832,-0.065176,0.972667,-0.041846,-0.789373,-1.290656,-0.184603,0.87988,-0.013934,0.060062,-0.853499,-0.853398,0.03247,0.008858,-0.468708,0.51545,-0.50881,0.178888,?
1.386535,-4.365392,2.034098,0.366085,-0.813147,1.2149,-1.582145,-0.371525,0.092578,-1.002003,0.26982,1.005208,-0.147921,-0.367653,0.927265,-0.590931,-2.096054,-1.543806,-0.268473,0.300859,1.103971,-0.258556,0.16091,0.057873,1.141507,-0.440757,-1.137458,0.55304,-0.080258,-0.814233,-0.00019,0.143659,-1.07731,-0.651607,-1.03854,0.614683,0.405431,-0.005021,-0.130738,-0.242343,-0.275391,-0.363581,0.511637,0.04961,1.04193,-0.144026,0.166833,-0.915906,?
-3.910752,-4.624075,-0.021907,-0.818549,-0.933448,0.847848,-0.6423,-0.511006,1.784396,-1.198864,0.184058,-0.474984,0.063918,0.436631,-0.021883,0.467949,-0.296941,0.422165,-0.036721,-0.026342,1.296276,-0.949168,-0.515358,-0.28565,0.951626,0.220241,-0.223597,-0.35339,0.583462,-1.021886,0.342384,0.087191,-0.395203,0.136062,-0.640148,-1.18371,-0.213343,0.195652,-1.281316,0.125061,-0.873564,0.943403,0.560291,0.016646,-0.675585,0.179498,0.678559,-0.367677,?
-4.784293,-1.948619,-2.632196,-0.701363,0.299289,-1.055948,0.222254,2.588705,-3.2922,0.951244,0.865145,0.528592,-0.771316,0.806439,-2.290715,0.593291,-1.504357,-0.699929,-0.454969,-0.352652,1.156845,-0.127737,0.094426,0.075547,0.827021,0.064421,-0.524986,0.06798,-0.657284,0.082492,-0.442639,-1.005922,0.538737,-0.416339,-0.697266,0.111359,0.1525,0.046612,-1.787145,-0.232304,-0.885903,-1.23495,0.309505,0.387843,-0.314698,0.10991,-1.025526,-0.600388,?
-4.53377,-3.1728,-3.124074,-2.593174,0.225995,-0.69963,0.197195,0.668191,-0.452458,-0.547693,-1.338875,-0.148438,2.462704,1.783217,2.766275,0.708866,-1.325082,0.612648,0.610673,-1.433844,1.528072,0.387565,0.046961,-0.559206,0.209647,0.777162,-0.280451,0.835705,-0.371719,0.657105,1.429418,2.026899,-1.340247,0.862743,0.065985,-0.532648,0.382021,-0.618842,0.346874,1.287236,0.54482,0.283998,-0.244468,-0.322069,-0.002095,-0.329366,0.027172,-1.015842,?
10.970405,3.189658,-0.304109,-3.00567,-0.160603,-1.990973,2.93848,-0.387934,-1.457207,0.529623,-1.377996,-0.307655,-0.056446,0.529474,-0.912401,-0.330733,0.447439,-0.559207,-0.205229,0.009555,1.121785,2.144678,0.32674,-0.013869,0.508967,1.955732,-0.620534,1.859134,-0.33799,0.035367,0.297682,-0.851507,-0.808469,1.204662,0.126154,-0.080337,-0.385364,0.590378,1.014577,0.710705,1.53133,-0.562567,0.426552,0.579488,-1.148918,-0.469678,-0.278511,-0.294854,?
3.17353,-1.01782,1.789096,-0.286475,-1.432032,0.83859,-0.535622,-0.70092,0.93426,-0.87233,1.337747,-0.899839,0.110268,-0.344158,0.763234,0.969231,-0.167462,-0.118088,-0.861491,-0.527865,1.219381,-0.171162,-0.197863,-0.262338,0.612772,0.148675,-0.326152,0.150321,0.145078,-0.578443,0.389449,-0.402244,0.395869,0.07323,-0.327574,0.643553,-0.248882,0.293589,-0.172145,-0.132852,-0.04995,-0.341978,0.212313,-0.330646,0.756387,-0.067725,-0.474788,-0.85723,?
-2.325497,-0.322255,2.50982,3.773575,1.557501,4.289623,3.305758,-4.454145,-0.04794,0.329026,-1.44749,2.429665,0.891861,-5.19816,0.757485,2.35461,1.395289,-0.466753,2.542236,-4.878198,-1.025602,-1.223634,1.504559,-2.33627,2.235943,3.12463,-2.533639,-2.663255,-0.510943,-0.058624,-0.293612,-0.878736,-0.580356,1.133438,-0.570053,0.257314,1.484793,0.342928,0.009045,0.97846,0.542941,0.505591,0.212329,0.135068,-0.247319,-0.139041,-0.662989,-0.097249,0.04
4.722786,3.327538,-1.151562,3.744745,1.209195,2.28889,-1.688063,-0.707268,-0.662526,5.657501,0.239362,-0.171762,0.363636,-0.362689,0.705391,-0.008709,0.791567,0.551793,-0.602971,-0.093455,0.424991,0.843326,1.227882,-0.709762,1.496315,0.721805,-1.136374,-2.439041,-0.731229,-0.646114,-1.102921,0.515225,0.588373,0.446127,0.127014,0.67781,1.846503,0.369966,-0.174728,-0.251359,0.008954,0.490336,0.420692,-0.138805,-0.402139,-0.475406,0.071949,0.310657,0.05
4.882114,-1.066224,-0.479874,-0.439917,2.165768,0.583626,-1.676293,-0.316205,0.496125,-0.115473,0.706477,1.543857,-0.513514,1.129336,-2.107628,0.489134,-0.871896,0.846628,-0.276063,-0.897631,1.587752,0.45718,0.518014,-1.608246,-0.728402,0.648621,0.285776,-0.796298,-0.609018,0.547271,0.46032,1.030405,-0.333816,0.573532,0.548528,0.780993,0.109302,0.163184,0.200213,-0.940875,0.238355,0.283058,-0.151904,-0.52954,-0.357245,-0.275164,-0.27946,0.370232,?
7.183477,-0.953231,0.953052,-1.990457,-0.58778,-1.29359,2.730318,0.063104,-0.448634,-0.006705,-0.977856,0.463424,-0.226481,-0.13987,0.218455,-1.360142,0.1887,-0.499822,-0.384427,0.754724,1.230194,-0.418276,-0.050984,0.021337,1.169326,0.675566,-0.584711,-0.122382,-0.74102,0.465237,0.25813,-0.1044,-0.125142,-0.018786,0.013411,-0.274668,0.144951,0.172513,-0.980793,-0.676492,0.024572,0.358426,0.41999,0.585753,0.216632,-0.609482,0.30774,-0.720948,?
3.670428,-2.497416,-2.492156,-2.746219,3.840825,0.57067,-1.175112,-1.162529,1.578134,0.164103,1.384744,0.322494,-1.178658,-0.150957,-0.32564,-0.017569,-0.298391,0.75404,-0.108527,-0.172703,1.100415,-0.066832,1.346084,0.485103,0.978671,-0.508868,0.097628,-1.122826,0.226126,-0.371267,-0.005488,-0.811367,-0.302279,-0.465951,0.506208,0.212787,0.073186,0.083771,0.585459,-0.71998,-0.041143,-0.12059,0.223047,0.362824,-0.711971,0.093838,0.282158,0.135411,?
-1.314978,6.894223,-3.889374,-0.890649,-2.550958,-0.067414,-1.097229,0.356521,3.339881,-0.622208,0.045897,-0.540387,1.163832,-1.474426,0.748065,-1.573195,0.871914,0.276142,-0.522691,-0.382968,0.670816,0.898998,1.061631,-0.392788,0.25649,1.400382,-1.075259,0.719406,0.42237,-1.394513,0.884318,-0.290843,1.038524,0.062583,-0.346114,-0.469153,1.057952,-0.332648,-0.543898,-0.449665,-0.404473,-2.468539,0.134291,-0.342305,1.183887,0.492192,-0.58868,-0.584498,?
2.77832,2.282504,0.429675,1.834809,-0.485049,0.291536,-0.49994,-0.396187,2.119658,-1.073436,-1.419428,-0.423796,0.719666,-0.289618,-0.16386,0.094643,1.980194,0.102372,-1.347991,-1.215383,1.080552,-0.139142,0.450207,-0.023008,0.205756,0.178272,0.083043,-0.0223,0.01049,0.509204,1.542891,-0.148395,0.308324,0.067821,0.594345,-0.638781,0.276797,0.117993,0.046767,-0.188188,0.077808,0.393846,-0.256951,-0.491478,0.44671,0.486314,-0.040822,0.103178,?
-2.851388,3.164317,-0.849408,10.19678,4.522358,-4.875037,4.936521,4.776898,0.005729,-0.689609,0.366138,-0.986504,-0.973412,-0.751568,-0.639055,0.381367,0.323671,0.160584,-0.156534,-0.459938,1.016207,0.292572,0.32081,-0.529968,0.636626,0.033373,-0.641662,-0.175412,-0.117503,-0.441364,0.126643,0.848731,-0.098816,-1.76323,-0.583242,-0.823463,0.286636,-0.463057,0.92265,-0.756334,-0.461205,0.752318,-0.44829,0.336262,0.002472,0.410701,-0.223108,-0.618926,?
4.380418,0.766988,-3.457779,-1.267774,4.937334,0.944752,-3.053617,-2.799957,1.648943,0.395334,0.047053,0.261749,0.315557,-0.683562,-0.140686,-1.448811,0.856833,-0.478612,-0.290931,0.761924,1.412454,-0.285434,0.320354,0.096913,1.271029,-0.524984,-0.751967,0.359304,-0.253155,-0.112565,0.526495,-0.116498,-0.084535,-1.085632,-0.309554,0.075432,0.9413,-0.301734,1.21755,0.454449,-0.718574,0.690636,0.087904,0.319574,-0.04431,-0.593829,-0.183153,-0.807139,?
4.380182,0.679369,-5.508267,-2.977681,6.890653,-1.685199,1.280048,-0.708253,0.266599,1.126051,-1.258016,1.016437,-2.415733,-0.856732,-0.196506,-1.057959,-0.345662,-1.794883,-1.096584,0.48758,1.528341,-0.26996,0.036107,0.095831,0.992112,-0.585955,-0.262712,0.54985,0.204608,-0.207655,0.925423,-0.50973,0.036762,1.938196,0.674859,-1.103846,0.200587,-1.173647,-0.776096,1.44026,-0.019369,2.18557,-0.115172,-0.23461,1.42473,0.566268,1.407273,1.160715,?
6.887533,-0.950378,-0.995418,-2.710299,1.883812,-0.331129,0.772835,-0.984285,0.863348,-0.180111,0.91348,-0.566867,-0.544396,0.349519,0.956405,1.233208,-0.460344,-0.728335,-0.796106,-0.656842,1.563705,0.119857,-1.317457,0.36309,1.136318,1.620259,0.391966,0.427019,-0.122539,0.541353,0.700025,0.227614,-0.734423,0.943915,0.216794,0.120405,0.169744,0.939217,0.521877,-1.244647,0.698369,-0.316298,0.961449,0.361757,-0.653128,-0.305337,-0.821116,0.543993,?
2.171851,-0.579778,-0.017251,3.412211,3.785191,-1.053219,0.52364,-0.603268,0.78047,0.166623,0.638129,-0.048239,1.901044,0.151816,1.165323,-0.643498,1.786928,-1.219169,-0.266944,-0.189929,1.185798,1.206793,0.757043,0.612739,1.089226,0.753994,-0.303248,0.681442,1.1795,-1.423278,2.109146,-0.466,-0.515479,-0.514687,-0.310602,0.778841,0.697161,0.272632,0.081756,-0.478328,-0.211007,-0.854482,0.375214,-0.147315,0.20185,-0.194275,-0.079487,0.320287,?
-7.583125,-0.393783,2.073366,0.247401,-0.080599,3.772806,5.641915,-6.469011,-3.188828,-0.180112,1.69596,2.475996,1.437827,-3.539428,-0.603448,-1.669193,-1.41221,1.524039,-1.863948,-2.844623,1.897419,2.540684,-2.730424,0.496636,0.390796,-1.595293,1.29844,-0.068718,2.126711,-0.902548,-0.625544,0.598025,-0.282069,-1.182892,1.444916,-0.884819,0.869565,0.431678,-0.335181,0.400201,0.825129,0.501447,0.193557,-0.022538,-0.733902,-0.936633,-0.600035,0.046437,0
-2.629661,-0.289969,2.268387,0.654554,0.040773,1.653241,-1.740018,0.929033,-2.060177,0.434973,-0.217195,-0.593006,-1.669256,-0.012957,-2.270653,1.710378,0.065611,-0.966157,-0.167854,-0.081402,1.471457,0.98463,-1.394455,0.357532,1.821336,-1.936962,-0.382014,-0.509038,0.096295,1.385864,-0.474687,-0.599402,0.932354,0.879913,-0.208938,0.803674,0.170013,-0.002533,0.793834,-1.064641,-0.44713,-1.215124,-2.36231,3.530053,1.200225,-0.543437,1.500673,-0.15267,?
-6.520877,-3.844043,-0.021177,0.880425,-1.585479,0.759539,-1.071801,-1.590138,2.128752,-2.039671,-2.772336,-1.049985,0.732731,0.392077,-0.460229,0.2276,1.508902,1.534874,-0.428056,0.307118,0.805937,0.473184,0.425571,-0.544887,0.28765,0.862525,-0.262738,-0.000412,0.327031,-0.479553,0.025193,-1.171502,-1.723736,-0.183559,0.029197,-0.841179,-0.35832,-0.136652,-0.418355,-0.132006,0.054358,0.534114,0.154483,0.653957,-0.786213,-0.111189,-0.008305,-0.859141,?
0.471034,4.730803,-1.900615,2.392253,1.233389,0.686093,-3.467495,-1.431478,0.724301,0.198447,0.731962,-0.067959,0.640669,-1.700084,0.245093,-1.735223,-0.064832,-0.688863,-0.543641,1.025973,1.362583,-0.203674,-0.172596,-0.407409,0.664638,0.726164,-0.474799,-0.303631,-0.385178,-0.474951,-0.079097,1.00433,-0.078043,-0.58937,-0.318326,0.859947,0.895587,-0.793202,0.300506,-0.973113,0.043082,-0.705988,0.490951,-0.258288,-0.754427,-0.078782,0.369542,0.358947,?
5.336357,-0.261476,0.708943,-0.511826,-1.012454,-0.965463,1.917887,1.087999,1.177802,-0.226598,1.951627,-0.623395,0.259815,-0.145901,-0.040684,-0.247095,0.425634,0.09244,-0.005162,-0.850315,0.910637,-0.506023,-0.293123,-0.726911,0.412307,0.321315,-0.503424,1.101806,-0.217483,0.873124,-0.110651,-0.111323,-1.429973,0.886468,-0.374344,0.993204,-0.405932,1.06871,-0.434086,-0.241774,-0.163661,-1.410443,-0.231946,0.038997,-0.89357,-0.436828,-0.063955,0.727139,?
-2.643592,-3.41827,-3.093458,-3.986969,0.851596,0.774895,-0.933716,-0.486466,0.889072,0.76815,1.282432,0.078922,-1.411241,0.152158,-2.542043,-0.122934,0.688452,-0.137759,-0.464363,-0.201229,0.696462,-0.579574,-0.599989,-1.083629,0.47491,0.362772,-0.154517,0.596944,1.225612,-1.472372,0.570242,-1.33984,-0.873746,-0.115192,-0.115885,0.722451,0.600821,-1.535509,-0.534921,-0.671154,0.98617,-0.830434,-0.368949,-0.119286,-1.072548,-0.202376,0.232603,0.471248,?
-2.78266,11.653957,-7.57877,-2.63588,-2.057807,-0.554803,-1.395106,0.772475,1.872538,-0.507158,-0.156398,-1.136327,-1.126,-1.336721,0.869574,0.234804,-2.352926,0.318572,-0.652345,-1.037657,0.712848,-0.025662,0.581336,-0.779064,-0.008057,0.95436,-0.4523,0.035241,0.299738,-0.913049,0.473901,-0.350708,0.141523,-0.072495,0.63785,-0.341969,-0.588518,0.889572,0.45066,0.315623,-0.395331,0.394046,-0.043729,0.150191,-0.000635,-0.105294,0.421113,1.189403,?
0.981966,-3.992272,-0.664612,-0.700404,0.46148,1.109531,-1.659111,0.008492,3.999986,-2.040363,0.41817,-0.661568,0.650022,-0.208008,0.439231,0.456084,0.735355,0.62185,0.287982,-0.827407,0.818551,1.438034,0.651287,0.235463,0.310262,0.419882,-0.310471,0.455388,-0.224568,-0.018588,-0.7622,-0.14699,0.184039,0.136566,-0.083047,-0.186427,-0.071742,0.118819,0.138184,-0.092066,-0.82737,-0.063227,0.597851,0.305682,0.290885,0.177183,-1.03931,0.38562,?
-1.138439,0.701485,2.531328,6.163022,1.053207,4.506449,1.475455,2.442163,0.681855,2.53191,-0.337389,-2.340393,-3.856057,3.638469,1.358641,-2.234947,0.886739,-1.901985,-0.468159,-0.423582,0.494589,-0.223876,2.183832,-1.513752,1.309634,0.554311,2.195539,0.007005,-1.356675,0.538676,-1.538293,0.313496,1.352397,0.679079,-0.333534,-1.303416,2.376749,0.650076,-0.019401,0.445911,0.483069,-0.527311,-0.871586,1.395403,-0.41751,0.003186,0.705017,-0.53361,0.04
4.827136,8.395266,0.384906,2.478784,-4.347808,4.703199,0.123512,1.188578,1.066988,-1.078462,-2.141122,-0.611054,-2.07176,1.076911,0.017827,3.139168,0.967673,-0.165994,2.666703,1.911537,2.970173,-1.173299,2.144617,0.641157,-1.054499,-0.242787,0.265782,2.025821,2.36806,-0.100129,0.410457,0.398547,-0.345126,-1.754215,0.725951,0.043139,0.164112,-0.186804,0.166828,0.208466,0.757679,0.724559,0.208035,-0.581557,0.260363,-0.377538,-0.10541,0.90806,0.07
-0.117854,-6.125877,-1.038246,-2.49515,0.573973,0.595264,-0.784073,1.241723,1.581322,-1.401278,-0.387678,0.312836,0.339356,0.973701,0.49776,0.792885,-0.895708,0.674759,1.150077,-0.860858,1.256558,1.118195,0.144511,-0.541937,0.075529,-0.073862,0.096224,0.11627,0.594732,-1.581434,-0.54924,0.359915,-0.222599,0.363888,-0.625591,-0.074152,0.086377,-0.815477,0.892264,0.959925,-0.322219,0.283257,-0.103578,-0.76714,0.560809,1.022751,0.760344,0.260409,?
5.861116,-0.370327,1.281314,-1.974526,-1.88665,-0.968517,2.992257,0.439718,1.680738,-0.535708,0.778022,0.220651,-0.460343,0.137281,-0.539066,-0.461063,-0.294245,-1.448963,-0.542907,-0.531284,0.839451,-0.612604,0.388832,-0.047407,0.563772,-1.059795,-0.643809,0.052302,-0.400126,0.0145,-0.896618,-0.008232,0.718664,1.306821,0.134094,1.018722,-0.749119,0.048891,-0.234899,0.146985,-0.30098,0.743582,0.430389,-0.482833,-0.29435,0.263675,0.033362,-0.066488,?
0.354303,1.140283,0.606141,8.641671,3.436246,-4.189858,4.260945,4.087586,-0.925777,-0.668814,0.788191,-0.683702,-0.760622,-0.73496,-0.522007,-0.009196,0.301432,1.398597,-0.075722,-0.170782,0.819667,0.485736,1.099565,-1.146781,-0.284214,0.651859,-0.34587,-0.677219,-0.041907,-0.134814,0.660327,-0.088925,-0.529151,-0.858679,-0.008156,-1.320644,0.323992,-0.356271,0.370729,-0.758319,0.409807,0.087295,0.743128,1.012825,-0.580859,0.685155,-0.068067,-0.164982,?
-0.705613,3.784538,1.391759,3.190551,-2.447762,0.286259,-1.118097,-1.977846,2.231716,-1.351224,0.455161,0.500673,0.117642,-1.43455,0.909527,-2.083623,-2.255072,-1.259433,-0.585172,1.553494,1.081911,-0.404071,0.385061,-0.493943,0.615785,0.669474,-1.277725,-0.346297,-0.037509,-1.261921,0.043327,0.09231,0.657714,1.064161,0.07745,0.148289,-0.56984,-0.803044,-0.345502,0.319134,0.662497,0.37989,0.037108,0.121976,-1.55314,1.023342,0.162549,-1.353402,?
3.371262,-5.900869,0.547827,-2.984114,-0.500762,0.509866,0.236034,1.482853,0.743931,-0.935979,0.260234,1.557276,-1.10038,0.281127,-0.278374,-0.098025,-1.791459,1.061561,0.086208,-0.123369,1.147205,0.60281,0.55349,-1.847949,-0.804412,1.521969,-0.388399,-0.582776,-0.537052,0.623286,2.381084,1.35793,0.809136,-0.56015,0.003205,0.132969,0.647979,-0.144522,0.922801,0.450355,-0.1795,-0.111585,2.30826,1.353521,0.256295,-0.469288,0.501289,0.038751,?
-3.297889,2.59099,2.346038,4.790781,-3.548003,1.802298,-4.041744,-0.671415,0.199691,-0.895208,-0.019229,0.347493,1.644029,-0.629468,0.091908,-1.118056,-0.390678,-0.67472,-0.686007,-0.127072,1.064055,-0.630337,-0.186124,-0.15068,0.422127,0.857253,-0.25065,0.001583,-0.069929,-0.20272,0.673784,-0.059668,-0.747112,-0.353078,-0.128988,0.793154,0.640402,-0.603363,0.184554,-1.22131,0.220987,-1.071473,0.345429,-0.419442,-0.576067,1.339139,0.294229,0.014697,?
5.050029,2.459699,0.459293,-1.075705,-2.619266,-1.256457,2.848828,1.1843,2.109752,-0.194806,0.305419,0.228877,0.278243,-0.68265,0.189166,-2.159287,0.453299,-0.278916,0.414167,0.439254,1.179188,-1.51253,-1.030822,-1.197693,0.788788,0.511484,-0.603413,0.278693,0.154957,-1.001192,-0.325369,0.264761,-0.306928,0.599267,-0.383307,0.73695,-0.678448,-0.104421,-0.28134,0.400519,-0.14863,-0.598839,0.14958,-0.125299,-1.310144,-0.247125,0.234333,0.447817,?
1.90599,-0.573467,-3.100506,-0.183504,4.509319,-0.295955,-1.800082,-0.329631,-1.101261,0.620365,-1.387703,0.044415,1.320218,0.428355,0.001656,-0.453342,1.027606,-0.111791,0.688686,-0.236283,1.324559,0.783361,0.124329,0.9016,1.140906,-0.294947,0.277445,0.095213,-0.309919,0.073551,-1.010954,0.637054,-1.336347,0.105738,-0.044951,-0.420729,0.023539,-0.224313,0.575765,-0.098736,0.387366,-0.102252,0.007246,0.025423,0.200249,0.801618,0.127958,-0.035855,?
-2.389872,1.879685,-0.744378,0.115517,-1.407255,1.000396,-1.992408,1.023637,-0.188088,-0.322386,-0.72667,-0.266923,-0.934972,-0.149056,-1.746398,1.037783,-0.223237,-0.289083,-0.744422,-1.102408,0.869108,0.095019,-0.460864,0.237271,0.541373,-0.352006,0.333493,0.023518,-0.398889,0.879365,-0.269507,-0.291764,-0.010312,0.87629,0.382117,0.437256,-0.325339,0.69535,1.075972,-0.206798,0.536736,-0.129606,-0.872195,0.213397,0.21943,-0.286067,-0.135083,-0.207857,?
0.816454,-0.293249,-2.038861,1.405165,4.098831,0.60431,-3.193342,-1.718875,0.351805,0.133269,0.891665,0.597247,1.967284,0.894593,0.034251,-0.471369,-0.23895,-0.091342,0.639823,0.070337,1.257708,0.373322,0.434647,0.44771,1.033965,0.225788,-0.479967,-0.314553,-0.429653,-0.072802,0.21911,1.358308,-0.219644,-0.373307,-0.352921,-0.59764,0.192261,-0.106183,-1.060732,-0.076166,-0.740813,-0.275549,-0.055024,0.523967,0.074737,-0.676381,-1.12583,0.299926,?
0.0004,-1.398166,-6.636429,-3.917779,5.740205,-1.244624,0.407397,0.59211,0.994702,0.821183,-1.446142,0.108519,-1.550401,-0.777625,-0.258123,-0.578921,0.665663,-1.631681,0.180541,-0.314662,1.071629,0.578241,0.185078,1.336474,1.521856,-1.319782,0.666645,0.380015,1.186899,-1.576428,-0.838295,0.595247,-1.721933,3.343105,0.163151,-0.771737,-1.070681,0.865015,-0.734671,0.554552,0.6033,1.731778,0.89401,0.084905,1.258563,0.633147,1.062021,1.679479,?
-6.149787,-5.144683,0.907746,-1.743896,-1.223547,1.00584,0.090905,-1.810142,1.083592,-0.885563,-0.764644,-0.089523,-0.92225,0.636658,0.080802,-0.657425,-1.794612,4.127021,1.212858,-0.217346,-0.910078,1.138333,2.153146,1.143195,1.169603,1.642378,-2.175491,3.137483,-0.294381,-0.256985,0.700268,-1.18108,0.087778,0.31965,1.562143,0.290408,0.257273,-0.748193,0.635752,-0.860378,1.072554,0.753651,0.424507,0.33115,-0.359005,-0.924187,0.899422,-0.368943,?
1.765543,-2.591771,1.354133,0.185057,-1.167511,0.386628,0.029615,0.278652,1.228546,-0.780131,1.958598,-0.454921,0.067393,-0.338077,0.774265,0.176815,-0.424942,-0.400022,-0.387985,-0.310682,1.068796,-1.604685,-0.282666,0.613198,1.217123,-0.473673,0.213631,-1.108825,0.130001,-0.370433,0.686631,-0.88219,0.617702,-0.406624,0.235411,-0.105089,-0.201172,0.099722,-0.091724,0.300241,0.790494,0.255177,1.078089,0.709684,0.388203,-0.277671,0.553965,-0.85285,?
-0.157561,-4.242117,-1.540203,-0.478805,1.652274,-0.292755,0.246015,1.170558,3.457621,-1.558048,0.767442,-0.183678,0.251555,0.381175,1.013953,0.304438,-0.401222,2.133189,1.174984,-0.107482,1.345281,-0.551002,-0.504451,-0.319642,0.788623,0.507462,0.32848,-1.228968,-0.21743,-0.439917,-0.355918,0.654738,1.059853,1.14262,-0.171235,-1.117057,-0.335574,1.484328,0.258277,0.38444,-0.654615,-0.767513,-0.194066,-0.241953,0.326804,-0.453875,-0.654424,0.576141,?
-0.882822,2.641374,0.84029,1.122746,-3.028791,-0.501011,0.830843,-1.226701,0.796886,-0.396791,-0.082883,-0.579116,0.69231,0.072565,-0.475068,-1.184452,0.053064,-0.079725,-0.314404,0.173329,0.644834,-1.416961,-0.437311,0.429606,1.459005,0.750308,-0.646037,0.580837,-0.477798,0.834034,0.76204,0.872179,-0.671962,0.284948,0.216242,0.183988,-0.197104,0.097068,-0.216411,-0.359818,0.012469,1.262991,0.207321,0.050183,0.160423,0.771642,-0.070089,-1.686992,?
-6.755733,-0.590945,-1.725156,1.230122,-2.765613,0.91995,2.071209,-2.257939,2.944085,3.242318,0.551415,-0.077572,0.223112,0.516793,-2.63294,0.48946,-1.76805,0.866741,-0.59485,0.159542,0.735773,1.301179,-0.057608,0.159589,0.986026,-0.576156,1.509619,0.663468,-0.073308,0.37231,0.393569,-1.498521,-0.270056,1.262586,-1.110184,-1.183915,-1.242545,-1.174797,1.170849,-0.603647,-0.952714,-0.147984,0.205476,-0.733595,0.358348,-0.477104,-0.629316,-1.174515,0.01
3.353349,-4.653607,-0.98528,-3.182857,1.113515,0.309238,0.320321,1.142876,1.534584,-0.723576,0.327854,0.766255,-2.198832,-0.923403,-0.353811,0.296621,-0.810665,-0.380801,-0.765877,-0.349038,0.626801,2.315695,0.900218,-1.209245,-0.659099,1.390861,-0.903189,1.462712,0.085514,0.032459,1.103271,0.221457,-0.407778,0.022114,-0.293681,0.406917,0.193153,0.481515,-0.264798,-0.897621,-0.204611,0.250793,-0.354601,0.149204,-0.173483,-0.370703,-0.093617,-0.338018,?
-0.011434,-4.421046,-0.809753,-1.471958,0.673749,0.230002,0.116366,0.983964,2.391562,-0.936721,0.779273,-0.042973,-0.009637,-0.061321,-0.117829,0.106737,0.37866,-0.514193,0.364571,-0.557922,0.793813,1.140275,0.906757,0.248364,0.636773,-0.101434,-0.518121,0.184819,-0.108854,-0.250289,-0.832037,0.15844,-0.236737,-0.146075,-0.329105,-0.728085,-0.219831,0.782738,-0.015064,-0.857703,-0.927511,0.154993,0.373812,0.175292,0.199659,0.639002,-0.787923,0.337542,?
-4.993783,-3.894272,0.039226,0.977884,-1.226692,-0.425403,0.991262,0.129064,0.381676,-1.497854,-4.502307,-0.974235,-1.12982,-1.813239,0.330077,-0.400524,2.090634,-0.352656,-2.275315,0.90551,0.432352,-0.064631,0.057485,0.173921,0.552174,-0.365808,0.227446,-0.570733,-0.198817,0.28722,0.53059,0.176944,0.537759,0.06554,0.232634,1.809925,0.14308,-0.394282,-0.029925,-0.162101,0.76631,0.040273,0.913211,-0.041114,0.364493,-1.125647,0.289249,-0.791138,?
-6.842058,-3.274088,0.05338,1.572231,-0.731173,-0.84324,1.431071,0.124891,-0.927911,-0.629515,-4.506825,-0.717422,0.691202,-0.483264,0.714473,-0.967826,2.277347,-0.644682,-0.945686,0.104845,0.406991,-0.746803,0.117858,0.226518,1.139356,-0.985579,-0.710508,0.82557,0.392618,-0.250243,0.963227,-0.345582,-0.706882,0.174441,0.198759,-1.05979,0.142312,-0.305391,0.967558,-0.148726,1.031028,-0.052386,-0.100432,0.368233,-0.050886,0.519864,-0.887136,1.143444,?
-2.758575,-0.097779,-1.47998,0.525417,-4.325734,2.572709,0.444293,0.933372,5.327997,4.073735,0.070555,-0.187971,-0.068035,1.536802,1.67008,-1.283391,0.137802,1.327048,-0.560799,-0.836843,1.151946,0.584023,0.042701,-0.475844,-0.096234,0.401725,0.541784,-0.527731,0.997813,-0.154228,-1.405007,-0.361636,0.45864,-0.705852,-0.386821,-0.644079,1.871102,0.783097,0.159015,0.511,0.227944,0.035905,0.339451,-0.313409,0.640576,-0.399362,-0.24333,-0.020789,0.01
-7.431441,-4.085528,-1.027032,-0.18281,-0.479118,-1.443491,2.109614,-2.350841,0.644129,-1.370093,-1.12014,-2.192947,0.774509,0.276315,1.826434,0.316858,0.198629,1.820728,-0.220349,1.849825,0.855838,0.662818,0.602364,-1.269245,0.196279,1.526208,-0.991616,-0.350582,-0.264026,0.05174,0.243849,-0.445428,-0.816686,-0.214735,-0.088576,-0.319006,-0.026145,0.008672,-0.01147,0.101578,-0.531991,-0.024236,1.249661,1.292736,0.260633,-0.351991,-0.078824,-0.153356,?
-4.350196,-0.104845,10.555087,-1.776977,-4.168902,-22.595033,-9.437276,-4.697027,1.944075,1.669855,0.259735,2.534921,-4.145881,4.603424,2.710078,-1.637947,0.748022,-0.655523,-2.173219,0.064999,1.514771,-0.260977,-0.03475,-1.094007,0.726059,-1.854366,3.212842,3.169053,-1.581836,-1.076888,1.780339,2.013486,2.408259,-1.098501,0.993647,-1.393933,-1.87755,-0.052299,0.668236,-1.190584,1.083426,-0.295759,-0.93956,0.370886,0.514167,-0.961781,-0.006425,-0.218497,0.15
-2.382649,-5.7803,-0.029761,-1.862697,-1.63364,0.38473,-0.408117,0.908286,0.29779,-1.014482,0.113782,-0.376821,1.509713,1.413911,0.535032,0.850762,-0.041108,0.898255,0.604844,-1.025274,1.153685,0.529659,0.335023,-1.094332,-0.068725,0.003583,0.014599,-0.406083,0.533281,-1.276904,1.719576,2.422459,1.512627,0.462261,-0.340415,-0.501256,0.874985,-0.449768,1.157175,0.132002,0.510174,0.90933,0.022953,-0.761171,-0.279172,-0.012361,0.884539,0.160586,?
0.295808,-5.571284,-1.44902,-3.017744,1.585457,-0.069453,0.950868,1.693073,0.754711,0.232052,1.109043,0.307566,-0.951447,-0.600723,0.338124,-0.120352,0.133269,-0.538602,0.183663,-0.176982,0.990955,0.078187,-0.202268,-0.547133,0.737239,0.248173,-0.16695,0.232437,0.551607,-0.629455,0.314021,-0.965084,-0.612859,-1.333474,-0.114385,0.812224,-0.497062,1.09807,0.382753,-0.919848,-0.2023,-0.254547,-0.805001,0.036712,-0.686137,-0.033906,-0.168188,0.127426,?
-2.839696,-2.304531,-0.080828,1.320397,-0.807911,0.248531,-1.03256,2.333031,-0.396184,-0.996737,-1.16917,0.58252,0.299147,0.408948,-0.416465,0.264936,-1.265364,-1.257162,0.235302,-1.143505,1.005532,0.019726,-0.430668,0.94787,1.024219,-0.485286,-0.332769,0.657065,-0.412228,-0.03166,-0.485755,-0.318444,0.384645,0.251625,-0.139506,-1.575014,0.349992,-1.264575,0.480466,1.272257,0.284566,-0.085503,-0.105696,-0.10693,0.195894,1.19829,0.004645,-0.214033,?
-8.064387,4.923284,4.94544,1.145438,-2.264536,-3.347856,3.806846,-3.797969,0.193636,1.373175,1.491266,0.480702,-0.483836,-0.0629,-1.345278,1.262953,0.418275,-0.531252,1.029591,0.123198,2.922214,-0.598736,0.194392,0.142465,-0.469438,0.169995,2.778327,0.643997,-0.250068,0.087828,-0.831833,-0.40311,-0.028642,1.512377,-0.124765,-0.606506,-0.301923,-1.586729,0.234174,-0.854341,-0.498156,-0.083085,-0.971813,0.246235,0.622371,-1.041595,-1.423944,-0.358765,0.05
3.855783,-0.846562,-1.558319,-2.58812,1.078663,0.090952,0.266267,-1.006652,1.861041,-0.305613,0.598772,-0.867509,0.782911,0.135368,0.434376,0.517881,1.49042,-0.555207,-0.762859,-1.133424,0.972058,0.603367,0.092928,-0.453966,0.044626,0.297161,-0.433442,1.141089,0.002212,0.410964,0.835764,-0.667156,-0.185092,-0.561574,0.474465,0.460561,0.2317,-1.20716,-0.661535,0.336646,0.367116,0.177523,-0.167147,0.192905,0.731342,-0.151077,0.074516,0.332511,?
-4.018601,-0.98328,-4.299475,-2.103621,1.387398,-0.453478,-0.610515,-0.405343,0.699328,-0.49405,-2.349465,-0.482486,1.317064,0.232115,1.279265,-0.318508,0.511986,0.586268,0.240612,-0.263735,0.421124,0.644361,2.337942,1.428899,0.968989,-1.016237,-0.013053,-1.005483,0.334227,-0.587161,-0.079397,0.028509,-1.022752,-0.035988,-0.12128,-0.38988,-0.37244,0.616366,-0.370825,0.482679,-0.754756,-0.345447,-0.029207,0.043177,-0.735342,-0.453145,0.00116,-0.362704,?
0.293575,6.919788,-2.685171,3.965972,1.792706,-0.084842,-3.298125,-0.027726,-1.147964,0.64488,2.998177,-1.172012,-0.841369,-1.432574,-2.390128,-0.243642,-0.973653,0.521301,0.507509,0.495755,1.228769,0.303311,-0.249724,-0.938053,0.696476,0.851122,-0.452103,-0.191581,-0.298374,-0.589632,-0.60168,0.233728,-0.645779,-1.034331,0.560544,0.055658,-1.733333,0.685415,0.757987,1.374919,1.820141,0.901839,-0.86689,0.478548,-0.130332,-1.159257,-0.612901,0.116322,?
4.570544,-2.731737,-1.979339,-2.661942,3.463579,0.416867,-0.508492,-0.174182,2.159535,-0.401395,-0.152434,0.734539,-0.76396,-0.156287,-0.06288,0.051013,0.213253,0.352277,-0.041553,-0.788284,0.783942,2.032774,1.664235,0.063355,-0.192378,0.624793,-0.329097,0.720352,-0.108354,0.290929,0.032629,-0.654169,-0.508439,0.152209,0.590638,-0.362331,-0.286398,0.034384,0.41029,0.033414,-0.155478,0.058915,-0.262408,-0.276939,0.055993,1.007642,0.142463,0.512822,?
0.950466,-1.373913,-0.414579,-0.538711,0.438672,-0.295661,1.115754,0.660064,1.172615,-0.245902,0.357888,-0.994591,-0.898398,-0.492182,-0.078564,0.689904,1.359563,0.89246,-0.744686,-0.418393,1.065991,-1.332983,-0.907269,-0.031493,0.857117,0.148608,0.719461,-0.776132,0.064587,0.424776,-0.139138,-0.378581,-0.438425,-0.117829,0.009062,0.330413,-0.392652,0.353852,-0.13042,-0.431437,-0.082559,-0.804948,-0.381254,-0.787135,0.627799,0.657644,0.312468,-0.067536,?
-1.546553,-1.380796,0.898444,1.91096,-0.408681,1.980946,-3.368477,-1.012094,1.257932,-0.683543,0.516804,0.632377,-0.049809,0.807094,-2.867949,0.273351,0.093461,-0.009344,-0.178251,-0.762889,0.734374,-0.370511,-0.056509,0.152545,0.615766,0.21761,-0.339837,0.457685,-0.117298,0.238981,0.067811,-0.324077,-1.021472,0.458736,-0.001577,-1.58983,-0.133063,-0.013126,0.131043,0.502979,0.496984,-0.572726,0.000786,-0.159789,-0.136578,0.167173,0.744787,-0.140863,?
8.951891,1.575045,0.860248,-1.428193,-0.042,-1.363555,2.543475,-0.87885,-0.692418,-0.338687,-0.942483,-0.152854,0.43359,1.041964,-0.517084,0.711438,0.673362,-0.529963,-1.185918,-0.950537,0.450371,1.531493,2.627835,-0.51961,-0.688412,-1.024801,-1.295959,0.118216,-0.522435,0.27672,-0.090987,-0.927572,1.161748,-0.35336,0.618724,-0.65019,0.006941,-0.126521,-1.005781,-0.344585,-0.462679,0.521469,-0.675391,-0.502622,0.507124,-0.140944,0.556624,0.752996,?
-4.203865,-4.253624,-0.246668,-0.500531,-1.661409,0.555771,-0.086928,0.641676,3.250289,-1.761527,-0.781412,-0.280002,-0.104449,0.229221,-0.907939,0.082441,0.714612,0.091631,0.058227,-0.158694,0.472503,0.430597,0.060553,0.686806,1.139944,0.231052,-0.191372,0.12034,0.2801,-1.125334,-0.335744,-0.353864,1.305415,0.402497,-0.611538,0.047886,0.016265,0.479458,0.190003,0.185607,-0.977213,-0.417206,0.248351,-0.402638,0.610879,0.393819,-1.087999,0.149325,?
-2.384705,3.299698,-1.954215,0.297222,0.734685,0.004286,-0.703569,0.945703,-1.501685,0.422829,-1.377381,-0.055045,-1.490221,-0.508054,-0.975397,0.950021,-0.608436,-1.377421,-1.190283,-0.662421,0.724676,-0.144125,-0.250449,0.879009,1.004856,-0.644218,-0.131243,-0.028065,-1.073749,0.829472,-1.480545,0.443891,-0.302672,-0.698449,0.118006,0.300168,-0.316414,-0.38066,0.454282,-0.639643,0.376301,-0.698179,-0.173117,-0.457956,0.602106,-0.477138,-0.172511,0.019741,?
-8.62567,15.10319,-8.196786,-2.430519,-0.530824,4.23486,1.27337,1.781087,1.360409,-1.491208,0.929638,0.956913,-2.001628,1.766151,0.346301,0.36958,2.49006,1.43989,1.361061,1.151031,1.099432,0.517378,2.269753,-2.445563,1.572038,0.308952,2.883537,0.580673,0.987013,1.326894,-0.81512,-0.939832,0.598259,1.593556,-2.552656,0.603085,1.419882,-0.124298,0.986186,-0.323166,0.860799,1.572181,-0.376567,1.267986,0.470292,-0.482572,-0.0805,0.053299,0.04
-2.129005,-3.70651,-1.355504,-1.174387,0.936701,0.141577,-0.386228,-0.367362,0.153092,-0.527927,-0.09597,-0.452035,-1.547741,0.625633,-1.920215,0.939529,-0.617762,0.71036,-0.078376,0.508928,1.057085,-1.162605,-1.180465,-0.104896,1.325581,0.116846,0.146938,-1.010893,-0.16862,-0.099972,-0.347615,1.367112,-0.107674,-0.37781,-0.959443,-0.860257,-0.050085,-0.105112,-0.274071,0.068703,-0.446522,0.087013,-0.24294,-0.041874,-0.34897,0.535344,-0.223649,-0.584569,?
0.740032,2.31361,0.559899,0.950611,-2.287222,0.775082,-1.322865,0.919819,-0.40601,-0.549116,-0.522329,-0.941927,-0.820978,-1.236588,-0.784069,0.557487,0.504246,-0.663847,-1.418649,-1.108075,0.440747,-0.555306,-0.193473,1.219,1.166574,-0.488233,0.047792,0.355941,0.174817,-0.074282,0.74399,-0.174975,0.361539,-0.233714,-0.145443,-0.126169,0.07714,-0.890653,-0.568197,0.161904,0.587614,0.431239,-0.226928,0.01527,0.782908,0.31349,-0.016733,-1.535117,?
-2.876867,6.906661,-0.96913,1.610097,-3.36436,1.437152,-2.798186,-0.576804,1.953501,-1.193859,-0.496214,-0.632469,-0.442382,-0.270557,-1.62163,0.604558,-0.468231,-0.291656,-0.951902,-1.135515,0.501898,-0.506857,-0.190954,0.053119,0.645461,0.235311,-0.208248,0.193956,0.234069,-0.555465,0.397843,0.198244,-0.008604,-0.243912,-0.149413,0.577268,-0.404791,0.505788,0.922527,-0.06288,-0.50815,0.821564,0.201775,-0.292725,0.608118,0.643274,-0.122879,0.398913,?
-2.533471,-4.920114,2.724071,0.612113,-4.887393,1.551912,-3.175092,3.611116,-3.886184,0.052046,2.313742,-0.446191,-0.272945,-2.483684,-0.012706,-0.706418,-1.188534,0.370173,-0.321652,-0.31578,1.233812,-0.342874,0.209745,-1.262858,-0.326753,-0.602673,-0.523453,0.286889,-0.391782,0.037841,0.500685,0.051737,-0.079392,0.870636,-0.051363,-0.158061,0.687629,-0.59391,0.267149,0.195426,-0.1754,0.727587,-0.46539,-0.602554,0.342545,-0.746864,0.412715,-0.418883,?
-7.371127,-1.84105,1.4187,1.277068,-2.121305,-1.41589,1.181202,-5.499939,0.834181,0.584928,-0.731381,-0.725577,-2.619957,1.434851,0.962983,-1.787778,-1.037409,1.532891,0.037381,-0.647867,2.644152,2.193295,-0.564508,0.4053,-2.327828,-1.769454,2.003619,0.296299,-2.094282,0.153112,1.138004,-1.618689,-1.230457,-0.585069,-1.107378,-1.135764,0.504453,1.47792,-0.05561,-0.023797,0.625983,0.318341,-0.183968,-0.104079,0.661265,0.974047,-0.13342,-0.125761,0.01
-2.94203,-0.648143,0.279619,4.724065,1.296569,-1.463678,2.572514,2.802739,2.777355,-0.872285,-0.764832,0.063031,-0.815987,-1.430247,-0.177587,-0.968833,1.80486,-0.589915,-0.69957,-0.401604,0.487639,-0.449874,0.278533,0.633126,0.948802,0.038936,-0.253379,0.382199,-0.32492,0.679049,0.627124,-0.361304,0.091449,-0.094037,0.344566,-0.56389,-0.581126,0.507346,0.132486,0.703063,0.308447,-0.374832,0.371262,0.125698,0.314825,-0.664932,0.512829,0.263362,?
-2.642598,2.104745,5.125789,1.777088,3.055646,8.891274,4.269419,-3.966041,0.341387,4.223366,-1.612963,2.300968,1.532629,-2.9305,0.329779,0.491305,-0.95805,2.071128,-0.478493,-1.06611,1.186089,2.562166,-0.538938,-1.40439,0.808291,-0.961073,2.053524,-0.087824,-0.401356,0.778856,-0.330137,-0.123435,0.126317,0.146153,-0.62991,-0.208402,-1.9071,-0.295328,0.320386,-0.583952,-1.032269,-0.796449,0.565313,0.341471,0.138095,0.638029,-0.264566,-0.242723,0.02
-3.355027,-2.724672,2.73081,1.713009,-3.014367,1.626378,-1.500477,0.039433,-1.975421,3.017895,0.120594,0.353153,-2.149622,-0.457332,1.899668,0.866243,-0.157451,0.155797,0.982406,0.178959,2.0209,-0.172766,2.202891,-1.462988,-0.219974,0.490071,0.959948,0.212837,1.960981,1.185348,-0.998196,-0.708759,-0.19837,0.246255,0.194505,0.537758,1.491257,0.730854,-0.724258,0.882157,0.518524,0.730488,0.561296,0.202574,-0.274371,0.121687,0.236777,0.25107,0.02
7.939987,0.871669,0.722403,1.872664,2.745003,-0.266106,-1.014885,-0.236824,-1.217997,-0.356853,-1.936669,1.538242,-0.372037,0.348649,-1.336969,-0.349697,-0.53543,0.058926,-0.667585,-0.144293,1.325669,0.433057,0.808374,-0.087098,-0.424684,-0.231562,0.282781,-0.935465,-0.861947,0.412734,-0.472972,-1.92652,0.545977,-0.131075,1.116458,0.077023,0.438257,-2.225038,-0.181029,0.952006,-0.301513,0.899808,-0.011927,-0.256498,0.492036,0.322605,0.132193,0.689546,?
1.066699,2.670864,0.820041,1.657945,-2.883957,-0.470454,0.805175,0.027725,2.286911,-0.908591,-0.427387,-0.589088,1.008002,-1.101976,0.856172,-1.762504,1.176616,0.018329,-0.295876,0.258223,0.800058,-1.528712,-0.078563,0.572334,1.410031,0.069862,-0.257317,-0.8001,-0.143068,0.189502,0.551321,0.255721,-0.099214,0.60981,0.2549,-1.080152,0.03598,0.230387,-0.991732,-0.118917,0.902646,-0.828731,-0.813333,0.290858,0.372318,-0.390375,0.143223,0.675063,?
6.86113,-2.581663,-0.739928,-3.453617,1.934983,-0.740175,1.646888,0.439983,-0.486101,0.60757,0.576814,1.294565,-0.745088,0.605028,-0.894517,-0.452751,-0.566799,-1.088076,-0.106915,0.218172,1.392731,0.698326,-0.102583,-0.569003,0.184546,1.427138,-0.208632,-0.144008,-0.971434,1.091415,0.402044,-1.106195,0.202303,-1.262917,0.773299,-0.008183,0.108622,-0.783305,0.098847,-0.284622,0.35648,0.721812,0.663207,0.908633,0.18579,0.444725,0.127398,-0.311858,?
-5.841944,0.515206,0.495212,4.63689,2.038213,1.108601,-0.341393,-5.321651,-1.867351,0.897921,2.554415,-0.205225,0.261598,2.090143,-1.135301,-3.767799,0.734811,1.491871,-0.120864,-2.187581,1.006586,-1.285951,2.252723,-4.278813,-0.62011,0.027015,0.766849,1.012579,2.443474,-0.436801,-1.134323,-0.075259,-0.209486,0.743447,-0.866587,0.132784,-0.661387,0.733319,0.852854,0.508076,0.007975,-0.232644,-0.456341,1.174764,1.211531,-0.179557,0.041908,-1.30746,0.01
-6.25267,-5.245519,0.114765,-0.148512,-1.990987,-0.067914,-0.184166,1.465088,-1.845618,-0.725432,-0.791867,-0.292691,0.977013,1.22238,-0.255381,0.899268,-0.918494,-0.12377,0.201803,-0.506037,0.845994,0.291071,0.318707,0.210549,0.670408,-0.508311,-0.414641,-0.526965,-0.514155,-0.316902,0.2581,0.148908,1.672415,-0.094603,0.353467,-0.44366,0.09698,0.553609,0.791388,0.095367,0.796414,0.073476,0.897106,0.716329,-0.237613,-1.27865,-0.022662,-0.43633,?
2.728847,-1.957268,-1.35153,-0.605517,1.659283,0.059845,-0.567304,1.147685,1.453248,-1.077003,-2.884491,0.576304,0.627708,0.172683,0.143755,-0.059279,0.836697,-0.068888,-0.015278,-1.53663,1.023943,0.996378,-0.096666,-0.394781,-0.259858,-0.15781,-0.088192,2.01051,-0.580093,1.131236,-0.402212,-0.393804,-0.874719,1.128364,0.424975,0.95756,-0.512957,-0.147303,0.884199,1.287284,0.719055,-0.393479,0.359745,-0.220471,0.641012,1.062567,-0.141713,-0.339193,?
-3.500571,-6.880361,0.828805,-2.500747,-3.273446,-0.032101,1.318906,3.178842,-1.118733,-0.169163,1.606394,-0.242925,0.393589,-0.001621,0.249976,-0.397264,-0.706342,-0.542348,0.989017,-0.278644,0.843518,-0.419592,-0.265681,-0.08612,1.193935,-0.225309,-1.07071,0.727585,0.23264,-1.095427,0.60766,-1.13357,1.464418,-1.058083,-0.283479,-0.836871,0.038046,1.105559,0.501118,-0.084724,-0.76711,0.824497,1.591321,1.109257,0.156391,0.111755,0.159179,-0.505397,?
-6.139682,0.883887,-7.749035,-5.205179,1.994905,-1.754682,1.167508,2.665014,-1.630261,2.196422,-1.276122,1.697563,1.920609,1.610917,0.326665,-1.5076,-0.484408,-1.885653,0.623731,-1.662581,0.816163,-1.095859,0.277839,0.322658,0.934372,-1.38877,-0.545521,0.779936,0.080057,-0.614831,-0.306274,-0.461189,-0.735874,-0.369477,0.444763,0.952294,1.027288,-1.500359,-1.100649,-0.770492,-0.266901,-1.518997,0.347101,-0.017283,-1.410097,-0.706921,-1.333815,0.052026,?
-2.021336,-5.334252,-0.267827,-1.808868,-0.787393,1.204417,-1.371219,0.271361,1.851483,-1.159178,1.004265,-0.193552,0.249218,0.714066,0.04947,0.911343,-0.547785,0.061852,0.318237,-0.945418,1.132325,0.309069,-0.320626,-0.570709,0.214217,0.337436,0.019973,0.12411,0.742566,-1.28673,-0.299814,-0.256655,-0.574571,0.739002,-0.146832,-0.383484,-0.232495,-0.516694,-0.670898,-0.655812,0.782175,0.332799,-0.167642,-0.086078,-0.861196,0.584008,0.40238,0.8946,?
-3.770095,-3.322266,2.760614,1.022867,-4.087101,0.845378,-1.637846,0.855207,-3.246237,-0.401869,-0.144088,-0.52611,-0.372973,-1.646408,0.74609,-0.274505,-1.247815,0.098737,-1.025435,0.466818,1.060723,-0.13143,0.535083,-0.726654,-0.152505,-0.197626,-0.418642,-0.022938,-0.42883,0.397503,0.346893,-0.596237,-0.618639,1.079254,0.263411,0.087201,-0.047293,0.19449,0.474739,0.16125,-0.05792,0.58873,-0.586581,-0.79223,0.501926,0.398949,0.11524,-0.423561,?
-9.050274,0.937592,10.234573,-1.993977,1.256325,-4.178992,-0.409868,-5.368494,-0.906561,-2.737129,0.653287,-2.454847,-5.397811,4.351136,1.338024,-9.142274,-1.145666,4.017825,0.679161,-5.015317,-0.667132,-0.993693,0.123713,3.616741,0.094366,0.394026,-1.031253,2.333598,-3.417942,-1.468086,-0.04895,0.122462,0.090688,0.491226,0.145276,0.317709,-0.785839,-0.76741,-0.009331,-0.794234,0.027618,0.407401,-0.143373,-0.087859,-0.893218,-0.548922,-0.610511,-0.228048,0.1
7.776799,0.420641,0.174053,-0.792163,1.402706,-1.291925,1.708622,-0.135111,-0.948399,-0.25675,0.200755,-0.936064,-0.211812,0.130381,1.017623,1.587489,-0.078503,-0.822983,-1.173522,-0.685897,0.904104,2.100922,0.921421,0.867296,0.286486,1.084011,0.292278,-0.132071,-0.155427,0.262996,0.407443,-0.077351,-0.002045,0.517537,0.201706,0.404896,0.079628,0.635085,0.259046,-1.199126,0.754911,-0.415422,0.682474,0.050668,-0.619717,-0.325127,0.167603,0.016014,?
2.797616,-3.171274,-1.056646,-3.430632,0.749786,0.597685,-0.131286,0.029222,1.064345,0.240268,1.567248,-0.783867,0.413737,-0.471388,0.471934,0.215558,1.613084,-0.35578,-0.217476,-0.61529,0.805674,1.293218,0.789028,0.203276,0.646478,0.543122,-0.321269,0.287263,0.188699,0.157898,0.655766,0.494964,-0.363147,-0.93247,-0.048784,-0.140172,-0.052123,0.4023,-0.306549,-0.961921,0.080509,-0.197724,-0.272199,-0.071978,0.13908,0.03142,0.444275,-0.806911,?
1.472771,-3.155558,2.61379,1.575285,-0.866665,0.229824,0.054015,1.274767,-1.177102,-1.180972,-3.368494,1.290748,-1.012764,-0.746883,-0.366591,-0.465519,-0.294581,0.214633,-0.686576,0.105339,0.055891,1.099582,3.470844,1.087282,0.458418,-1.665412,-0.314228,-2.246801,0.733294,-2.114815,0.695596,0.964202,1.062603,-0.193133,-0.625918,-1.290394,-0.913246,0.740832,-1.654442,-0.175039,-0.040371,-0.563613,-0.032522,-0.013398,0.48346,1.079576,-0.291034,-0.132124,?
-4.65926,-0.581111,1.978919,-0.409719,2.669333,3.937628,5.222979,-6.926963,-4.396924,-3.78159,1.681941,6.472019,1.907597,-8.029436,-0.355554,2.575361,0.58219,1.395599,-1.638454,-5.371524,-1.154124,1.90206,-3.552848,-0.140359,1.932044,0.965117,-2.230454,-2.489001,-0.732407,-2.842449,-1.645147,0.746169,-0.41698,-0.25777,3.579356,1.06288,1.063227,1.245811,-0.444215,1.611169,-1.014693,-0.597014,0.032304,0.464174,-0.906036,0.197339,0.156835,0.211341,0.01
-1.219856,-3.573589,0.202945,-0.410869,-1.136078,1.271056,-1.295935,-0.158538,2.554197,-1.553531,-0.353437,-0.470212,-0.626436,-1.548811,1.256901,-0.235018,0.018701,-0.672269,-1.265298,-0.400778,0.666016,-0.876009,-0.004763,-0.251124,0.417496,-0.85198,-0.794712,0.876424,0.022082,0.142596,0.367837,-0.231696,-0.257038,0.438062,-0.165243,-0.56556,0.440581,-0.417788,0.223322,0.147069,0.336168,0.188416,-0.377104,-0.525981,-0.788053,-0.173702,0.497846,-0.768166,?
-3.0178,-1.437735,-0.823378,8.389682,5.134768,-3.703185,3.149143,3.707756,1.040841,-1.439285,0.245418,-1.431634,0.846453,-0.71496,2.872125,0.754957,0.581114,0.349708,-0.164108,-0.736257,1.428404,0.315953,-0.39773,-0.260288,0.245069,-0.263957,0.309123,0.317262,0.064975,-0.30379,0.432609,0.162088,1.332561,1.365806,0.026733,0.119142,0.944774,-0.246371,2.405467,0.695162,0.396102,-0.045019,0.244938,-1.004167,-0.224228,0.213685,0.332299,0.025279,?
-1.040467,-2.903823,1.527008,0.587368,-2.077426,-0.039561,0.473767,-0.079809,-0.1286,-1.058778,-0.007879,-1.083679,0.042523,0.366508,-1.044136,1.010692,0.53917,-1.147977,-0.940012,-0.231184,0.783419,0.539979,0.385277,0.077979,0.611903,-0.57991,-0.737636,-0.094184,-0.449783,0.114231,-0.673577,-0.128494,1.251109,0.164031,-0.378134,0.03549,-0.559326,0.919641,-0.679897,-1.166291,0.110875,-0.761538,2.313865,1.298025,0.871635,1.108961,-0.334103,0.693825,?
4.23551,-0.215365,-1.140109,-2.656047,0.335166,-0.225806,0.561135,-0.554278,1.0402,-0.196275,0.994535,-0.483474,0.116297,0.280499,0.671046,0.421682,-0.309749,0.633854,-0.330185,-0.868646,1.220971,-1.411432,-0.258639,-1.103166,0.215671,-0.912808,-0.303832,-0.113892,-0.169081,0.303384,0.10752,1.183764,-0.300423,0.563011,-0.088779,0.273519,-0.021933,-0.566202,-0.376944,0.529297,-0.105509,-0.050065,-1.296608,-0.999895,0.16184,0.186502,0.088436,-0.430498,?
-1.825581,-5.059387,1.026015,-1.274919,-1.676254,0.672235,-0.130864,1.705984,-0.784669,-0.325404,-1.834222,1.192021,-0.865347,0.634175,-2.313758,0.011493,0.216961,1.124543,-0.153887,-0.219144,0.763627,0.683647,0.143623,-1.078543,-0.404858,1.234971,0.077571,-0.291814,-0.56843,0.633244,0.851412,0.808908,-0.638564,-0.122836,0.015219,0.118565,0.033081,-0.261588,0.19278,0.243201,0.360743,-1.009499,0.504759,-0.030339,0.551012,-0.809962,0.776562,-0.473403,?
-1.860872,0.77628,2.595235,3.673143,-3.997733,1.793855,-3.571531,-0.138191,0.326236,-1.304046,-0.281112,0.503923,1.031443,-0.995669,0.504868,-1.089184,-0.981352,-1.573282,-1.002614,0.047943,0.93116,-0.651764,-0.269969,0.280969,0.817253,0.395995,-0.508463,-0.011829,-0.263259,-0.313637,0.351489,0.394111,0.116857,-0.065962,-0.453548,0.147819,1.264668,-0.456866,0.193772,-1.875292,0.215897,-0.709696,0.453886,-0.567784,-1.131058,0.495351,0.634048,-0.394072,?
-4.797625,-3.87219,-0.241215,-1.429259,-0.960871,0.81276,-0.767579,-2.053314,0.989568,-0.559517,1.131129,-1.084187,0.481731,0.733536,-0.087839,0.727844,0.059902,0.274633,-0.262624,0.032858,0.862305,-0.257316,0.11925,-0.628472,0.475364,0.503269,-0.542415,0.039569,0.685561,-1.20193,0.376185,-0.228171,-0.446993,0.295936,-0.078646,-1.143458,-0.005841,-0.540693,-0.658111,-0.812427,0.311334,0.435535,0.101603,-0.039857,-1.580487,0.006348,0.259322,1.210155,?
3.438866,-1.038205,-2.386922,-2.726779,2.154664,-0.48826,0.682211,-1.57362,1.566301,0.069401,1.367478,-1.472343,0.649783,-0.164762,0.782593,0.349225,1.624132,-1.295598,-0.806993,-0.235014,1.092212,0.663702,0.187714,0.449118,1.014904,-0.067806,-0.497343,0.548401,-0.202201,0.545501,0.260969,-0.299452,1.196334,-0.206364,0.359347,0.37667,0.047357,0.17075,-0.509914,-0.275918,-0.050336,0.309314,-0.745898,-0.27067,0.01068,0.038873,0.361407,0.779265,?
-1.635087,6.627628,-2.640802,-0.358771,-0.214612,0.395331,-1.593364,-1.547119,-0.025428,0.247563,-0.782274,-0.885024,-0.812335,-1.015392,-0.260029,-0.078335,-0.460672,-0.705826,-0.703118,0.444746,0.852181,-0.152378,-0.287792,-0.135606,1.173854,0.048397,-0.740351,0.058445,-0.119032,-0.270511,0.137145,0.678421,0.151669,-0.662546,0.117672,0.515075,-0.629381,-0.036244,0.770145,0.221001,0.212388,-0.687869,-0.602755,0.828502,-0.05425,-0.758748,-0.662484,1.439827,?
-6.222437,-3.174071,-0.343466,-0.606212,-1.074067,0.688075,-1.121002,-2.099305,-0.608804,-0.438557,0.256619,-0.920421,-0.514674,0.017962,-0.585929,0.733035,-0.539832,0.882133,-1.09838,0.523307,0.757088,-0.160902,0.925024,-1.359104,-0.493387,-0.119487,-0.533574,-0.697762,-0.029461,-0.22749,-0.464157,-1.428542,-0.832082,0.006803,0.865885,0.530141,-0.492472,0.094031,-0.193226,-0.655726,0.611749,0.633105,-0.062033,-0.382078,-0.918486,-0.908604,1.191207,-0.468028,?
4.250153,-2.349897,-0.734707,-2.37553,-3.922656,1.905423,2.598935,-0.690142,0.877078,2.077713,0.808943,-0.317797,-0.10254,-0.956654,1.495572,0.851953,-0.166053,2.210919,-1.176115,1.098609,2.215361,0.015238,-1.196139,0.5973,-0.064352,-1.967827,2.204645,0.550907,0.13016,-0.490235,0.957964,-0.046293,-0.093292,-0.057464,-1.258295,-0.324385,-0.11961,-0.467545,-0.274435,-0.399675,1.246341,-0.446737,-0.421455,-0.303798,0.463821,-0.588041,-0.532835,0.473846,0.01
0.498207,-2.312978,-2.4127,-2.668231,1.145562,0.153261,-0.662629,-0.311643,0.668063,0.136327,1.198224,-1.737355,0.613796,0.487683,-0.930223,1.008943,1.957651,0.95586,0.324575,-0.629463,1.215979,-0.002144,-0.540177,0.403256,1.017145,-0.022247,0.965039,-0.869108,0.744983,-1.37249,-1.058926,-0.895332,-0.354897,-0.472875,0.191576,0.294151,-0.297791,-1.029478,-1.034769,-0.448033,0.278454,0.440652,0.289299,0.134583,0.231354,0.387366,0.259502,-0.113041,?
1.773687,-3.343556,0.139641,0.643343,2.741706,0.186195,-0.438771,0.83282,1.088831,-0.797692,1.007586,1.157718,0.757796,0.558876,2.205118,1.140366,-2.208909,-2.362361,-0.221453,-1.35158,1.396641,1.881584,0.32823,0.477768,0.02276,0.386428,-0.451238,0.955798,-1.319611,1.371967,-0.618778,0.670832,-0.31248,0.16073,0.475844,1.00176,-0.283887,-0.164014,0.740344,0.443971,0.537129,-0.54298,-0.037209,-0.742247,1.217189,-0.304616,0.026475,-0.253439,?
-2.775225,-2.767796,-0.789697,4.095029,2.262495,-2.37034,2.183122,4.057378,-0.931468,-0.043731,0.623888,-0.402086,1.323444,1.174033,-0.692789,0.459537,0.835155,0.243926,0.958816,-2.087245,0.939196,-0.443568,0.208308,0.439038,0.656929,-0.934235,0.310369,0.72987,-0.352188,1.247283,-0.002237,-0.017524,-1.614933,-0.34767,0.014818,0.488123,-0.516139,0.08937,1.030629,1.416768,0.086741,-0.417409,-0.143577,-0.129089,-0.468445,0.498091,0.690174,0.863803,?
1.102164,-4.549385,3.104074,-2.115886,-4.384656,0.502336,0.03872,2.28785,-4.304035,0.919252,1.618751,-1.681706,0.875437,-1.609404,1.05965,-0.064473,0.912674,-0.986894,-0.186473,-0.223714,1.212652,1.109317,-0.251408,0.181503,0.680299,0.821505,-0.408727,1.638582,0.261246,-0.365387,0.890068,0.562092,-1.091104,-0.71577,-1.007921,0.575493,-0.018339,-0.37845,-0.61106,0.794939,-1.685878,0.745677,1.134235,-0.0684,1.757514,-0.018939,0.142582,-0.564218,?
0.749996,-5.45452,-0.129747,-2.938123,-0.93401,-0.705194,2.754859,2.437141,1.854539,-0.385825,1.150761,0.559538,-1.057934,-0.553293,0.0382,-0.644199,-0.170191,-0.934948,0.047325,-0.237215,0.71582,0.878011,0.25254,-0.141586,0.465384,1.159062,-0.497666,0.822055,-0.229963,0.185272,-0.032392,-1.364607,-0.450786,-0.224774,0.487851,1.148227,-0.639235,0.441664,-0.933928,-0.486683,0.095082,-0.082089,0.550605,0.480732,0.740525,-0.631365,0.109931,0.767813,?
-1.71326,-1.784005,2.429784,2.863788,-2.060076,1.705923,-2.715525,-0.155985,0.747065,-0.974126,0.641147,0.248861,0.666208,-0.432274,-0.340006,-0.389517,-0.059924,-1.208774,-0.91478,-0.423963,0.964945,-0.90242,-0.437784,0.157133,0.749483,-0.449022,-0.335911,0.265818,-0.13204,-0.181835,0.50507,-0.192743,0.777806,0.390685,-0.1157,0.739574,0.25559,-0.290698,-0.205222,-0.370028,-0.157625,0.407697,0.216174,-0.477561,-0.229139,-0.256902,0.374881,-0.236568,?
0.342595,1.460617,-2.671926,-3.256864,-1.582098,-0.685465,1.201118,0.492716,1.428266,0.450261,-0.110326,-0.797684,-0.176351,-1.202742,-1.123152,-1.389433,2.19878,-0.413521,-0.424589,0.10587,0.548015,1.126344,0.236544,-0.6839,0.402795,1.280242,-0.58803,1.386642,0.149807,-0.155666,0.374097,-0.191483,-0.886915,0.086676,0.103787,0.804791,-0.148337,-0.092405,0.058124,-0.007519,0.964394,-0.941439,-0.349303,0.324229,0.444638,-0.159281,-0.925564,-0.022251,?
-2.965751,-3.052129,-0.763595,-1.706725,-0.363091,-0.05991,0.434651,-1.461858,-1.038998,0.017951,-1.663468,0.202856,-0.010992,0.114808,0.323997,-0.772825,-0.223857,-0.620081,-0.679892,0.884067,0.511731,-0.618378,0.12581,-0.544459,0.993389,0.075889,-1.261012,0.729197,0.321739,-0.496272,2.097345,0.335398,-0.021105,-0.970667,-0.596868,0.003341,0.531219,0.355963,0.218008,0.36675,-0.016912,-0.44073,-0.323453,-0.056136,0.33639,-0.625419,0.38539,-0.696009,?
-3.104471,2.295658,0.900743,0.67033,-4.001172,-0.593849,0.917699,-1.366582,-0.082102,0.350141,0.698945,-0.654481,2.779246,0.561953,0.612009,-1.528466,0.961979,-1.30053,-0.269719,0.142573,0.751884,-0.771803,0.948459,1.2375,1.462461,0.086532,-0.415308,-0.538584,-0.278705,0.279064,0.4822,0.389485,-0.923584,0.098066,0.298412,0.408939,0.044062,0.335602,-0.943076,-0.435351,-0.161452,0.146935,0.1464,-0.636215,0.956168,-0.048425,0.694038,-0.24239,?
10.543352,0.288664,-0.556294,-2.57947,2.244338,-0.930876,0.533755,-1.524737,-1.51192,0.067165,0.667188,-1.006444,1.35965,0.31412,1.533951,0.692545,0.007044,0.331974,-0.534487,-0.620854,1.237345,1.446513,1.218246,-2.469673,-1.283218,-0.654764,-2.051141,2.001279,-0.287361,-0.231794,0.17851,0.103783,0.558654,0.565154,-0.489201,-1.449239,1.061838,-0.436108,-0.619281,-0.519899,-0.250224,0.254012,0.151816,0.283426,-0.200074,0.239213,-0.17761,-0.925454,?
-3.566704,-2.427772,-1.048305,0.10678,0.407313,-0.301804,-0.18997,-0.517195,-0.228775,-0.53627,-3.393532,-0.008594,1.680608,0.706035,0.549033,-0.770989,1.398144,0.270329,0.311337,0.126783,0.9072,0.462764,0.666377,0.423712,0.838381,-0.017663,0.069508,-0.136825,0.244855,-0.384759,0.55906,0.392562,-0.73543,0.462647,-0.075645,-0.116215,-0.288743,0.44215,0.708708,0.573431,-0.330772,-0.262705,-0.014667,-0.475977,0.420231,0.911314,-0.029417,1.309749,?
2.266374,-3.764658,-2.026749,-4.214027,1.228323,-0.319258,0.959867,1.238504,0.318203,0.336133,1.086298,-0.721534,1.779885,0.521803,3.762721,0.484226,0.003296,0.062038,1.218776,-0.902299,1.771333,-0.865629,-2.290537,0.410846,1.518381,1.050349,1.03468,0.35794,1.187641,-1.599551,-0.06773,-1.262017,-1.532201,-0.266964,0.069122,1.246241,-0.148283,0.706427,0.026945,-0.758124,-0.036505,-0.558367,0.152362,-0.612893,-0.104772,-0.286862,0.636594,0.4926,?
0.34201,-4.098403,0.460927,-2.555409,-2.1763,0.026831,-0.423115,2.136253,-3.549912,1.617338,2.281027,-1.868836,1.729642,-2.113931,1.134707,-1.709881,2.096724,0.128009,0.623589,0.566811,1.506985,-0.179266,0.103182,-0.519316,0.846396,-0.345175,-0.595071,0.485809,-0.128056,-0.206527,-0.038248,0.998942,-0.590414,-0.616194,-0.763867,-0.140768,0.107443,-0.474955,-0.947717,0.184304,-0.788605,-0.13253,0.818927,0.039934,-0.471795,-0.023211,0.191843,-0.088596,?
-1.976785,0.522494,1.999587,9.101188,2.416879,-3.794727,3.681789,2.277909,-1.825231,-0.163861,2.155753,-1.08004,-2.229359,-0.581848,-0.626242,-1.864464,-2.653867,7.146536,2.195918,0.192743,-0.998497,-1.729591,1.39304,2.291055,2.749299,1.352734,-1.445738,2.56775,-0.160176,-0.200334,1.463562,-1.064542,-0.121011,0.881302,0.975344,1.634309,0.97133,-0.607161,-0.559552,-0.824029,0.076746,1.055322,0.627963,0.687076,0.747886,-0.529637,0.802347,-0.375639,?
4.86373,-1.698954,-0.033938,2.743439,3.90136,-1.480357,1.401394,1.95324,0.531453,-0.40288,0.815248,0.499436,-1.708156,-1.103275,0.363033,-0.212895,-0.644166,1.124022,-0.242199,0.258945,1.280836,-0.981545,-0.630857,-0.748258,0.420639,0.471861,0.392852,-0.603433,0.147061,-0.052571,0.68109,-0.943736,-0.599568,-0.095598,-0.339672,0.360144,-0.099966,0.516705,-0.411289,0.159152,-0.527573,-0.755588,-1.138806,0.052197,-0.266011,-0.017182,-0.633857,-0.49815,?
-2.915588,-1.092077,0.025172,0.503755,-2.378662,2.822956,2.337881,0.720492,1.923674,1.549736,1.02938,1.821719,0.07178,0.115503,-0.343507,-0.804732,1.172824,1.140703,-4.329015,0.934812,0.035534,3.38133,-0.525529,1.213589,0.730843,-0.402568,-0.605601,1.609847,-0.094754,0.137928,-1.261696,0.083444,0.082977,-0.206644,0.020332,0.235065,0.67268,0.292529,0.327572,0.835841,-0.601906,-0.327916,0.020905,0.030834,0.549246,0.514059,-0.949899,0.214705,0.02
0.833299,-4.10665,0.126158,-2.477773,-1.108106,-0.125538,1.36279,1.724821,-0.109137,-0.208662,-1.268893,1.025111,-1.8062,-0.036025,-2.025861,-0.498095,0.082313,0.878182,-0.450528,-0.224153,0.475163,0.436012,0.931349,-0.308439,0.301134,0.864706,-0.101684,-0.522031,-0.710876,1.229948,1.956978,2.156003,0.906694,-0.520444,0.214409,0.814287,-0.143433,-0.008948,-0.392974,0.071804,0.453785,-0.003373,-0.24017,0.102802,0.206723,-0.030891,0.327146,0.245324,?
4.821474,0.122857,-0.309092,-2.1042,-0.377394,0.191068,0.143067,-0.338256,1.490231,0.078949,0.684928,-0.05117,-0.145707,-0.552059,-0.857414,-1.026215,0.975461,1.081069,-0.115435,-0.267585,1.16156,-1.584758,-0.161207,-1.384896,0.092404,-0.512234,-0.292014,-0.030545,-0.386655,0.553726,-0.258092,-0.109826,-0.806658,0.592868,0.389557,0.486195,-0.837563,-0.324718,-0.371699,0.892982,0.338954,-0.55803,-0.315583,0.138688,-0.495833,-0.055473,-0.727136,0.326564,?
-6.31521,13.818881,5.560759,-1.682925,0.088867,4.505253,0.449915,2.740549,0.763251,-0.668895,-0.163738,-0.706009,-3.484257,2.384078,0.262734,0.566631,1.274671,0.423286,1.66224,1.1014,2.982828,0.676724,-0.491223,2.223601,-2.613954,-0.834027,-0.982472,0.080876,-1.232009,-0.770377,0.334459,0.147051,-1.286826,-0.67803,-1.103332,-0.084274,-1.365067,-0.014264,0.80771,-0.305537,-0.582802,1.438422,1.409307,-1.545162,0.224218,-1.00559,-0.98165,0.329974,0.28
10.106299,3.352639,-1.513343,-2.973447,1.121349,-1.5421,2.002862,-0.786025,-1.027899,0.379413,-1.5945,-0.850978,-0.023233,0.784637,-0.213301,0.488668,0.726684,0.561311,-0.132172,-0.339613,1.167791,0.274878,-1.152935,-0.412644,0.620849,1.471645,0.118064,1.452647,0.334333,-0.139561,0.65923,-0.613512,-1.397667,0.428351,-0.231421,-0.13681,-0.115092,0.52978,0.436533,0.858104,0.456141,-0.142511,0.087127,0.154231,-0.65087,-0.064179,0.568621,-0.473953,?
-2.881877,7.816079,-8.481722,-3.228388,0.088622,-0.921214,-1.91582,2.11362,-0.009279,0.167677,0.26478,-1.783662,0.166199,-1.345824,1.588006,0.832039,-1.162718,0.270408,-0.806833,-2.02508,0.889872,-0.178595,0.036137,0.49824,0.433865,0.032667,0.273052,0.57279,0.040155,0.219234,0.087441,0.152431,0.641933,2.184434,0.355454,-0.495995,0.098862,1.422851,-0.869818,-0.721151,-0.357087,-0.139262,0.621991,0.119533,-0.586252,0.512384,-1.270286,-1.164142,?
-4.400857,-1.804496,2.211787,2.442883,-2.059001,1.679314,-2.33926,0.507049,0.148111,-0.313336,0.49708,0.950928,-0.872081,0.530272,-3.803893,-0.040889,-0.253561,-0.442663,-0.079849,-0.064126,0.733312,-0.019975,0.087971,0.215909,0.760014,0.109323,-0.323583,-0.14339,-0.139503,0.029085,-0.171374,-0.628681,-0.132155,0.719273,-0.251623,-1.453309,-0.069481,0.262408,0.739045,0.213136,0.212733,-1.007209,-0.19562,-0.179617,-0.542295,0.344552,1.017147,-0.467846,?
-0.752381,-2.437008,-0.435589,3.084562,2.601197,-0.4596,-0.262521,0.19168,1.754017,-1.284859,-0.3639,-0.460323,-0.076377,-0.158825,-0.485796,0.355361,0.849264,0.384541,-0.390873,-0.231872,0.732749,0.185689,0.792987,0.271281,0.576422,-0.764135,-0.207726,-0.331914,0.432256,-0.745621,0.00447,-0.173266,0.231432,0.18377,-0.693149,-0.050372,-0.142938,0.229708,-0.865883,0.150814,-1.096536,-0.327749,0.370943,0.203019,-0.382362,0.146962,-0.285166,0.44129,?
-3.389653,-4.795448,-1.278804,0.462292,0.905827,1.071207,-1.996387,0.690385,2.150688,-2.010685,-4.551033,-0.998676,1.099771,-0.942775,1.399675,0.242532,3.165873,1.014177,-0.660056,-0.34193,0.960779,0.890568,-0.632675,0.15153,0.32445,0.105093,0.882193,-0.112282,0.257082,-0.577955,-0.218676,-0.109153,0.540937,-0.107204,0.069107,1.333523,-0.279678,-0.371581,0.04669,-0.32034,0.053223,0.162395,-0.454307,-0.635561,-1.063694,-1.210746,0.674563,-0.144569,?
-1.365839,-2.361727,0.0856,0.943493,0.948868,-0.908247,1.1097,-1.276152,-0.800289,-0.740386,-1.200988,-0.36941,-0.819018,-0.215056,0.262648,0.4857,-0.674715,-0.164377,-1.481976,0.375248,0.691979,-0.65873,0.880465,-1.736148,-0.396193,-2.015709,-1.241216,-0.16067,-0.601374,0.02105,-0.858192,-0.186006,0.103081,-0.223009,0.229301,1.554726,-0.301663,0.525002,-0.155796,-1.129751,0.793947,0.300347,0.273974,0.236719,1.176154,-0.811423,0.333751,-0.807791,?
-4.139745,-0.838232,-0.400151,3.236051,-0.261597,0.798954,-2.446465,-0.365334,2.069651,-2.294069,-4.328666,0.117438,1.502299,0.884142,-0.555474,0.621246,1.55094,1.942041,-0.928989,-0.708061,0.935611,0.921165,0.181771,-1.215846,-0.968138,1.317016,0.569235,-0.686298,0.111097,0.110406,2.30196,1.789104,0.784996,1.086576,0.003762,-0.202068,0.29482,-0.241844,-0.919579,0.332905,-0.048534,0.084418,-0.55739,-0.366752,-1.529398,-1.062417,0.077458,-0.191876,?
-0.242022,-3.152534,0.412162,1.467207,0.99706,0.549133,-1.139117,0.717817,0.348332,-0.471823,0.205696,0.9022,-0.727839,-0.538674,-0.343039,-0.412675,-0.75958,-1.079293,-0.672991,0.004634,0.934174,-0.259744,-0.118575,0.222027,0.694165,0.124549,-0.292683,0.215289,0.047864,-0.105423,0.865555,-0.015508,-0.366463,-0.470169,-0.573363,0.882846,0.467383,-0.498118,-0.242801,0.579795,-0.944009,-0.479474,0.252363,-0.54583,0.03599,-0.280277,0.425443,0.273323,?
7.581298,8.202879,3.389582,1.640103,-9.749253,-5.519958,-2.506742,1.40573,-0.774617,-0.009332,-0.514858,3.205236,-1.915544,5.873175,1.157328,0.832755,1.475784,2.469302,-1.558176,0.938739,0.891732,2.563488,-2.793572,-1.62281,0.595156,-4.045788,-2.993279,1.124034,4.016226,1.989497,1.182429,1.975693,-0.363845,-1.585034,4.45119,-0.924409,-0.937913,-1.474476,-0.915615,-1.152563,-0.844412,-0.879375,2.00503,-2.417578,-0.435154,0.626329,0.298171,0.273005,0.05
-3.550577,0.613668,-2.106231,-1.479547,1.175074,0.294152,-0.463338,-0.079484,-0.409644,1.171772,-1.161041,2.010536,0.077287,1.593304,-1.889422,-0.467458,-0.134022,0.128956,-0.19357,-0.81706,0.672071,-0.247111,0.490768,-0.667815,0.115169,1.002021,0.024331,0.016147,0.455038,0.162892,3.082899,0.835152,-0.751837,0.117187,0.356186,-0.11088,0.133491,0.288885,0.205403,0.253355,0.247475,-0.159225,-0.964203,-0.174739,-0.407344,-0.399336,-0.269001,0.068146,?
-6.738638,-5.186542,-0.499064,-1.672586,-2.072951,0.191717,0.702373,0.391102,0.050633,-0.59918,-0.467502,-0.695127,-0.515039,1.510893,-1.840164,0.811807,-0.072089,1.002281,0.301048,-0.323207,0.569606,-1.889934,-0.843813,0.199641,1.53813,-0.586359,-0.215123,-0.561414,0.434107,-1.040746,0.059597,0.156179,0.483323,-0.389317,-0.435258,-1.446828,0.2839,0.055729,-0.126978,-0.487006,-0.348042,0.932563,0.518134,0.064884,-0.365785,0.150527,0.838254,-0.462136,?
7.390603,0.320984,1.592386,0.400428,0.460005,0.356497,-1.381374,-1.189253,-1.292531,0.056236,0.364772,0.577936,0.931616,0.518094,-0.673052,-0.343603,-0.149363,0.412521,-0.182951,-0.009578,1.277806,0.292094,1.238018,0.077093,0.256238,0.451622,0.28454,-1.504845,-0.707891,0.736873,1.146076,0.652631,0.00028,-0.229601,0.387761,-0.373233,0.178962,-0.360419,0.400549,0.550966,0.309178,-0.236571,-0.044128,0.106094,-0.538521,-0.074925,-0.443344,-0.034565,?
8.431649,3.377658,2.433869,0.030202,-3.534993,-1.925457,3.892315,1.002155,0.499224,-0.790867,-0.732098,0.170929,0.084388,0.191282,-1.129028,-0.563774,0.164687,-1.513197,-0.733794,-0.506289,0.376463,1.33166,1.233811,0.109406,0.161038,0.272645,-1.113209,0.825277,-0.2388,-0.577548,-0.345277,-0.576338,0.69228,0.930642,-0.064052,0.431469,-0.545268,0.315275,-1.225262,-0.089833,-0.334303,0.613518,-0.377935,-0.567743,0.384135,-0.254871,-0.291709,-0.389797,?
1.202141,-3.322727,-1.79669,-1.745784,2.336086,0.839946,-1.721412,-0.698289,1.285961,-0.382648,1.29663,-0.095711,-0.618787,0.056663,-0.121654,0.780982,-0.607873,0.114946,-0.491847,-0.462142,1.053506,0.129615,0.040443,-0.219692,0.390543,0.112116,-0.014126,0.01771,-0.083005,0.456211,0.675445,0.51763,-0.10205,-0.049232,-0.203764,0.966634,0.344471,0.251072,0.800271,-0.050131,-0.034667,-0.498775,0.18537,-0.222297,-0.901911,-0.113462,0.299873,-0.867949,?
3.063612,-0.341042,-0.583746,-1.602579,1.941412,-0.031865,0.164418,-1.686754,0.25005,1.123802,0.991887,0.347784,0.934988,0.068462,-0.244179,-1.277288,1.307804,-1.378286,-0.231235,0.367248,1.137882,0.160743,0.457466,-0.695384,0.62134,-0.358512,-0.78053,0.417649,0.245289,-0.673302,0.718879,0.430877,-0.080886,-0.128513,0.103569,0.626072,0.238452,-0.757705,-0.083052,-0.542741,0.628957,0.158606,-0.27579,-0.067806,-0.172685,-0.331341,0.256526,-0.283453,?
0.155537,-0.183407,-0.077967,-0.771823,-5.940615,-0.681934,1.818343,1.360177,4.592955,4.589533,0.712663,1.496633,0.517986,0.747041,-0.766538,-1.169777,-0.119616,-0.641227,-1.779341,-0.220655,-0.349243,2.543316,1.090228,-0.514187,1.229704,-1.136888,0.319401,0.805863,-0.228467,-0.761242,-0.702449,0.086973,-0.413787,1.286156,0.556423,1.534637,-1.42403,0.264353,0.060375,0.85065,0.333386,1.230746,0.073767,0.428327,-0.155004,-0.07351,-0.778582,-0.437013,0.03
-5.613944,-4.214821,0.007279,-1.821689,-2.384032,2.094871,2.424009,-1.929873,0.267222,2.257355,0.97132,2.07143,-1.155889,-0.389131,-2.589482,0.768421,-0.227363,1.185147,-2.66392,-1.494274,-0.76962,2.893183,-0.471251,-0.94577,1.175495,-0.302648,-0.0974,1.46269,-0.691889,-1.085092,-1.27554,0.83811,-0.123589,-0.857485,1.090322,0.389241,1.825468,0.733629,-0.028024,0.999225,-0.967389,-0.160577,1.108778,0.715573,-0.248327,0.942487,1.046349,0.309989,0.02
3.4453,2.29203,0.230703,0.215319,-1.901004,-0.102351,0.028726,-0.017936,2.066714,-0.46419,0.748751,0.179299,1.749035,0.080909,0.395075,-1.532441,0.393792,-0.27089,0.398221,-0.386203,1.024984,-0.779268,0.148784,0.315928,0.965147,0.431628,-0.236555,-0.278081,-0.405336,0.171487,0.229857,0.349577,-0.529773,-0.103554,0.243329,-0.276311,-0.013169,-0.243827,-0.497737,0.034534,0.497269,0.402941,-0.476878,-0.131984,0.182667,-0.328885,0.438489,-0.206741,?
-4.690916,-4.724333,0.27657,-2.127866,-4.382345,0.21855,2.493931,-0.753404,1.407382,4.964568,1.024208,0.18351,-1.595989,0.44466,-0.71594,0.994566,0.130278,0.654695,-0.145558,0.513044,0.879802,0.357265,-1.040932,0.167729,0.130646,-1.234879,-1.036595,0.006514,-1.353734,-1.33595,0.255972,0.414645,-0.879518,-0.90993,-0.370474,-0.240873,1.493409,-0.839014,0.108325,-0.427763,0.469375,-0.689584,0.158612,-0.380579,0.227968,0.118922,-0.582385,0.901017,0.02
-5.572892,-2.363904,-1.160814,0.227607,0.532256,-0.13455,-0.620287,-3.819439,0.844373,-1.097384,-0.543032,-1.71427,0.678133,0.866564,-0.1078,0.785109,0.015483,1.531498,-0.315958,1.274007,0.856385,0.435854,0.557257,-0.840613,0.23785,0.998855,-0.788684,-0.224507,-0.396747,0.312927,-0.674076,-0.144091,-1.294259,0.490192,-0.152093,-0.778123,-0.365586,0.20432,-0.561141,0.036687,-0.636397,0.022331,0.228609,0.081402,-0.442078,0.120458,-0.670471,-0.087791,?
-7.573505,6.694331,-9.102829,-3.527606,0.346805,-1.238963,-0.851951,1.374151,0.258241,0.087961,-1.315953,-0.764528,0.458217,-0.135782,1.616395,0.739207,-1.797834,-0.090693,-0.660062,-1.572977,0.902784,0.061231,0.275702,-0.244988,0.004128,0.239793,-0.089603,-0.059274,-0.168826,-0.456007,0.023719,0.357441,0.8607,0.695216,0.828111,-0.634453,0.287396,-0.225313,-0.882644,-0.365404,0.75001,-0.495049,0.18904,0.267793,0.075738,-0.013749,-0.814169,-0.73747,?
1.558338,-4.839809,0.306329,-3.109478,-2.663078,1.090784,-0.182227,2.441899,2.524559,-1.160848,0.961687,0.464425,-1.695324,-1.489421,-1.479652,-0.308299,0.199004,0.017618,-0.604266,-0.920881,0.667185,1.20342,1.133338,-1.586608,-0.969301,0.472921,-0.758507,0.891048,-0.65566,1.318049,0.098877,0.158393,-0.362588,0.117494,0.039941,0.719818,-0.8489,0.250733,-0.172707,0.553296,0.034164,-0.883538,-0.258199,0.04107,-0.477729,0.396156,-0.290569,0.607319,?
-4.06221,0.369461,-0.236086,2.535198,-1.983681,0.473904,-1.759491,0.967215,-0.529894,-1.248788,-2.119651,-1.285242,-0.702608,-0.450736,-2.199885,1.254625,0.818373,-1.38817,-1.450042,-0.828434,0.639959,-0.239099,-1.257386,1.275054,1.473056,-0.499145,0.077075,0.423932,-0.507976,0.479025,-0.577639,0.940049,0.856909,0.602603,-0.434906,-1.119938,-0.111591,0.003651,-1.064227,-0.624983,0.580151,0.441981,-0.031601,0.409168,0.066703,-0.130771,-0.422199,-0.455037,?
-3.648776,-3.018839,-0.997044,2.447928,1.968092,-0.827052,-0.03409,0.022062,0.409914,-1.246787,-1.845806,-0.698357,0.566442,1.092123,-0.309395,1.187892,0.438961,0.38519,-0.348121,-0.695664,0.959016,0.432106,-0.281913,-0.085279,0.316014,-0.343585,0.362936,0.118863,0.08957,-0.148836,-0.175256,0.400253,-0.61188,0.816382,-0.15568,1.492526,0.097533,-0.963164,1.014085,0.726677,0.397293,-0.601017,0.33639,-0.096904,0.168108,0.170386,-0.923981,0.57867,?
-2.226487,-5.002569,-0.257558,-0.615911,-0.30655,-0.241077,0.194566,2.964333,-1.910931,0.096116,-2.456655,0.700858,0.495565,-0.25301,-0.355181,-1.067583,0.875437,-0.629439,0.597744,0.067443,0.999715,0.460434,-0.415421,0.224313,1.015317,-0.007017,0.028495,0.329988,0.091285,-0.806792,-0.360846,-0.133113,-0.493869,-0.995101,-0.475404,0.69749,-0.068771,0.105363,-0.170596,-0.316776,-0.568043,0.235961,-0.084062,-0.178535,-0.319277,-0.065114,-0.027948,-0.347501,?
-1.724767,-2.674281,-0.907551,-0.927612,-0.908892,0.126098,-0.152954,1.065135,1.702417,-0.690537,1.786262,-1.39299,2.094172,0.712032,0.450804,1.053252,1.42587,0.154953,0.348066,-1.733007,0.792205,1.820969,0.506737,-0.062802,-0.042803,0.826917,-0.300185,1.216835,0.777794,-1.238147,0.424499,-1.059137,-0.015995,-0.352624,0.315418,0.263949,-0.066326,-0.177184,-0.698472,-0.468132,-0.064817,0.818753,1.00258,0.44317,0.536552,-0.397805,-0.558178,-0.830053,?
-2.773504,1.930579,-2.34405,5.407492,2.281535,3.689274,0.113571,-1.300304,-1.478202,2.797787,2.389387,2.18571,-0.055383,-1.130878,-1.53644,-1.053501,-0.894864,1.401126,3.295401,1.996638,2.192262,3.344257,-1.159439,-1.502047,0.856276,-2.698422,-0.311211,-1.040316,0.597263,1.597206,1.865453,-1.239565,-1.208908,-1.891431,-0.231865,-0.225426,-0.030604,0.494118,-1.804155,0.544023,1.794904,0.803869,1.382166,-1.938649,-0.064548,-0.779766,-0.709149,0.269387,0.01
1.202647,2.439766,-0.904816,-0.240968,0.714711,1.055209,-2.361849,-1.568158,-0.863313,0.35939,0.629897,-1.381912,-0.733171,-0.315875,-1.455557,1.222136,0.484891,-0.464643,-1.179732,-0.467928,0.929206,-0.30016,-0.462292,0.740292,1.147782,-0.602047,-0.128241,0.224922,-0.537221,0.947023,-0.465686,0.56818,-0.030035,-0.01816,-0.285234,0.512838,0.016051,-0.286395,0.559793,0.041203,-0.336692,-0.317269,0.165536,0.009454,0.041316,-0.166272,-0.033435,-0.056901,?
-7.726581,8.772291,-9.991469,-3.298874,0.742102,-1.717238,-0.89857,2.952342,-1.55749,1.526785,-0.920651,0.001824,0.551601,-0.39737,0.369783,-0.363144,-1.1526,0.067686,-0.413961,-1.288275,0.922643,0.142366,1.358397,-0.418817,-0.27266,-0.149667,-0.042616,-1.415229,-0.362932,-0.146266,-0.295252,0.488653,0.969135,-0.748755,1.033007,-0.054398,0.429898,-0.051541,-1.395201,-2.336542,0.280866,-0.849808,0.264141,0.479318,-1.473644,0.659024,0.507462,-0.729544,?
-2.421405,-5.332507,-0.59682,0.092004,0.222893,-0.154408,0.049244,2.157552,1.051944,-1.4989,-1.181267,-0.154566,0.25738,0.867465,0.826106,0.851038,-0.77259,1.260206,0.877287,-1.159844,1.311923,-1.362867,-1.13921,0.452039,0.954094,-0.677419,0.900994,-0.792545,-0.297081,-0.428902,-1.761377,-0.214694,-0.67045,0.263786,0.428873,-0.460002,0.064943,-1.089242,0.41144,-0.02135,0.474337,1.09077,-0.396352,-0.742514,-0.499745,-0.117506,0.774011,0.429042,?
3.033138,-1.196232,-0.303331,1.97368,3.548599,0.398307,-1.803113,-0.602693,0.269605,-0.077253,-0.883014,0.648747,0.043407,-0.959177,0.263442,-1.098026,0.699884,-0.500601,-0.563508,0.490468,1.130609,0.121903,0.01818,0.468061,0.828807,-0.018389,-0.196106,0.177775,-0.187914,0.11742,0.290433,-0.235047,-0.454117,-0.062214,-0.105639,0.186232,0.585076,-0.616479,0.194211,0.114195,-0.286582,-0.347211,0.145347,-0.185189,0.163389,-0.093532,0.094577,-0.638082,?
-1.141275,0.141799,-1.203122,1.887431,1.908945,-2.08634,2.135739,-0.800394,0.024159,0.388885,2.440459,-1.485858,-0.911866,-0.625095,-1.336542,0.118463,0.904585,0.285431,-1.083468,0.519581,0.298734,0.758064,3.024909,0.453506,0.327602,-0.742184,-0.296119,-1.472066,0.497741,-0.231545,0.699581,-0.755783,-0.552285,0.164216,0.053582,0.710671,-0.566975,0.723362,-0.648036,0.588574,-0.509777,-0.9368,-0.2582,-0.030949,-0.193885,-0.414064,0.122817,0.430466,?
-1.969482,11.697909,-4.262167,-0.018936,-3.812379,-0.411321,-0.866089,2.145501,0.913741,-0.528637,-0.770818,-0.545396,-0.864802,-1.205444,-0.323291,-0.109375,-1.688007,-0.328231,-0.319733,-1.233271,0.351293,-0.218975,0.26342,-0.281596,0.565598,0.533071,-0.648571,0.175028,0.158148,-1.264367,-0.289088,0.464796,-0.632487,-1.227714,0.100029,-0.159975,-0.630815,0.472416,0.124562,-0.389986,-0.126064,0.599807,0.103787,0.214246,0.423252,-0.566253,-0.12051,0.193576,?
2.795279,-0.805097,-0.838811,0.853204,3.263791,0.784645,-1.845687,-1.250964,1.430723,-0.405732,-1.041679,0.609868,-1.462038,-1.50182,-0.978905,-1.041722,0.663604,0.024538,-0.999388,0.690385,0.562157,0.553176,1.515683,0.684437,0.63509,-0.449462,-0.378142,-0.303984,0.208435,-0.533249,0.874396,-0.64287,0.822475,-0.09306,0.026359,0.434933,-0.19578,-0.074021,-0.094191,0.926979,-0.056287,-0.283207,0.430958,0.296549,-0.16582,-0.00437,-0.246629,-0.27794,?
1.464338,-1.374344,0.208523,1.433999,1.737497,1.008363,-2.113601,-0.84588,0.851767,-0.547518,-0.955786,1.070261,-0.181975,-0.16727,-0.465145,-0.586431,-0.166029,-0.701208,-0.57994,0.173209,0.899653,0.023177,0.266637,0.297059,0.679359,-0.077609,-0.335601,0.163464,-0.003682,-0.052892,0.380263,-0.053743,-0.716975,-0.094902,-0.653031,0.340145,0.451107,0.304908,0.337788,0.002253,-0.751466,-0.75418,0.226473,-0.400038,0.080908,0.413543,0.275516,-0.440865,?
10.078386,2.818597,1.34623,-1.31197,-1.195958,-1.72807,3.085117,-0.354338,-0.188043,-0.346747,-2.330403,0.555749,0.114465,0.718392,0.137524,-0.976536,-0.142618,0.435349,0.018812,0.212973,0.734181,-0.768502,0.952548,1.240296,1.241435,-0.563109,0.52323,-1.79483,0.225122,-1.181697,-0.594529,-0.247297,-0.568321,1.132711,0.038926,-0.011469,-0.101542,0.206847,0.002836,-0.127878,0.253971,-0.112079,0.424198,-0.244455,-0.523723,-0.132851,0.409786,-0.778868,?
-10.673329,1.90199,2.954144,0.059644,-4.933828,0.026542,1.371614,-3.773783,-1.323899,1.450961,0.820911,-0.223283,2.686525,1.115347,0.453341,-1.602683,-0.415318,-2.493119,-0.043376,1.650784,1.109532,0.607167,0.750932,-0.927166,0.474162,1.215163,-1.68472,1.344434,0.560035,-0.234401,1.579077,-0.878331,-1.385465,0.956413,0.447605,1.207926,-0.871606,-1.189011,0.53757,1.062141,-0.407614,-0.626179,-0.660299,0.019837,-1.293496,0.540323,-1.098449,0.125555,?
-4.758295,-2.640292,-1.643571,-0.13238,0.63908,-0.679519,0.020565,-0.297699,-1.508164,-0.076966,-1.896136,-0.40329,1.63876,0.449021,1.200837,-0.649664,0.12347,-0.496202,0.28269,0.759882,1.191566,-0.053542,-0.239471,0.09849,1.266517,0.185193,-0.699795,0.534026,-0.622266,0.714113,0.485959,0.340477,0.16407,-0.776945,-0.413623,0.549602,-0.328919,1.091804,0.55334,0.75793,-1.161516,0.104429,-0.30894,-0.096774,-0.276035,0.434365,-0.01217,-0.083199,?
6.807267,-0.550024,0.513867,-2.431339,0.045191,-1.38444,3.348839,1.450722,0.446158,0.170156,0.460483,0.325116,-1.428306,-0.783138,0.092374,-0.766547,-0.423605,-1.329797,-0.350457,0.209052,0.811256,0.549132,0.697702,0.987556,1.054609,0.300898,-0.365133,0.090003,-0.517208,0.436528,-0.365229,-0.654415,0.112261,0.334634,0.011699,0.012987,-0.327705,-0.457365,-0.094449,0.212846,-0.367411,0.390761,0.173622,-0.051509,-0.44668,0.450625,0.048631,-0.428798,?
-2.269273,5.102678,-4.066382,5.671888,8.021034,-3.809665,3.479279,3.173625,-0.065713,2.017976,0.755171,0.81191,-2.369054,-1.568234,-1.83051,-1.271521,1.189969,-0.588,-0.560417,0.26491,1.070974,-0.047428,0.223576,-0.346456,0.481795,0.269177,0.23473,-0.145595,0.413262,-0.506742,0.902119,0.177428,-0.283182,2.518389,0.844987,-1.246446,-0.762148,0.716162,-0.721791,0.005483,0.458617,1.794339,0.312839,-0.314396,1.297233,-0.735973,1.336538,0.292258,?
5.518097,-1.031458,-0.343997,0.670178,3.571042,-0.451616,0.244977,-0.242135,0.466881,-0.239876,0.005203,0.938795,-1.593543,-0.093416,-0.332736,-0.042911,-1.019132,0.086899,-0.724128,0.439143,1.33004,-1.465632,-0.669715,0.145336,0.885889,0.083752,0.295121,-1.172532,-0.779343,0.975597,0.150771,-0.377148,0.207095,-0.31504,0.028032,-0.29895,0.408019,-0.230756,0.082043,0.011041,-0.854661,0.122254,-0.502943,-0.312738,-0.281466,0.077092,-0.116331,0.028193,?
1.36175,-0.287227,-0.890242,1.744189,-3.709229,1.824306,1.217155,-1.254348,2.676335,3.683848,0.624812,0.246596,0.877758,-0.261969,0.690735,-0.321157,-0.666879,2.363643,-2.933195,-0.42288,1.690047,0.172157,-2.589119,0.819649,0.629331,-2.497198,0.577508,-1.088205,2.023632,1.453522,-0.912207,0.394907,-0.112379,-0.536985,0.987684,-0.219516,-0.953265,0.03107,-0.223383,0.480381,0.314039,0.608065,0.447696,0.070189,-0.350386,-0.561713,-0.064238,0.145814,0.01
2.779369,-1.16118,-2.712538,-1.066234,4.118992,-0.517456,-1.139438,-0.048847,-1.305445,0.992869,0.232999,2.059933,0.808459,1.854606,-1.014242,-0.351624,-1.560837,-0.802614,0.923132,-1.077684,0.750826,0.707856,2.989733,2.01716,0.945505,-2.144846,0.634536,-1.561099,0.508846,-1.170478,-0.438259,-0.123763,-1.910493,0.249896,0.010975,1.266077,-0.149761,0.184048,0.485291,1.044345,0.144694,-0.238918,-0.154096,-0.572476,0.978396,0.124697,0.417949,-0.522764,?
3.886446,-0.910933,0.794096,-3.366699,-0.512866,-0.393866,1.526397,0.791144,-2.906837,2.539008,2.019191,-1.175714,2.031624,-0.68053,1.179619,-1.225312,2.708965,-0.266467,0.186205,-0.46558,1.179714,0.14209,0.488918,-0.628143,0.541433,0.057373,-0.820559,1.700213,-0.1122,0.751339,1.78675,1.883364,-0.774519,-0.472335,-0.371433,0.929889,-0.031247,0.422183,-0.230912,-0.090389,-0.915624,0.28725,1.40057,0.000731,0.635437,-0.939439,1.054034,0.163326,?
2.82485,-4.363606,-1.246886,-2.967712,1.247239,0.082828,-0.191423,0.861893,-0.044056,-0.979906,-1.697346,-0.036491,-0.87386,-0.188493,1.153821,0.751557,-0.792277,0.615429,0.079338,-0.231163,1.111477,0.713819,0.489842,0.52563,0.696859,0.060068,0.545321,-1.107667,0.157563,-0.48447,0.262179,1.045022,0.155189,0.065206,-0.343273,-0.855685,-0.040123,-0.176062,0.966232,0.380696,0.314542,-0.175822,-0.067492,-0.018964,-0.646106,1.111088,-0.088345,-0.044631,?
6.276383,4.525535,-1.757003,4.388285,5.886478,-3.061036,1.241149,-0.653318,-0.594902,0.490908,1.435043,-0.262893,1.42255,1.733399,-1.621824,0.264937,-0.021207,0.644648,1.480044,0.603549,1.646449,2.344632,-0.434642,-0.574806,0.337137,1.778854,0.276586,0.312101,0.955475,-2.842523,-1.258754,-1.184277,0.005546,2.397808,-0.016703,0.718029,-1.125715,0.899879,-0.521068,0.583018,0.042023,1.33731,-0.647613,-0.650825,-0.140525,-0.39444,-0.275835,-1.045426,?
1.362884,-4.364172,-0.444247,-2.816147,0.246653,0.384806,0.848519,0.699321,2.426201,-0.403583,1.527918,0.285912,-1.008553,-0.491893,0.279899,-0.284345,-0.05663,-0.25495,0.012451,-0.220714,0.696853,-0.303775,0.304198,0.501163,1.139703,0.102088,-0.087616,-0.675237,0.224869,-0.689605,0.055244,-0.468519,0.02327,-0.880132,0.225934,-0.016083,0.294192,-0.543108,-0.042487,-0.904988,0.133977,0.030335,-0.370997,-0.121391,0.659505,-0.443261,-0.367337,0.531867,?
-0.436403,-4.330419,-0.622339,-0.812222,0.562086,1.012286,-0.900285,0.029235,3.764172,-1.101605,0.616198,0.15852,-0.383169,-0.205462,-0.528489,-0.589866,0.799195,0.867605,0.502456,-0.112669,0.520379,0.005854,0.155759,0.650736,1.216107,0.610283,-0.257804,0.266099,-0.284435,0.235457,-0.658994,-0.103016,-0.902409,-0.21455,-0.120955,-0.362286,0.280314,0.931984,0.561437,-1.106035,-0.59924,-0.46359,-0.251892,-0.48226,0.29421,-0.7427,0.380562,0.096994,?
-0.861691,-2.439165,-1.213451,3.157834,0.058018,4.951295,2.115506,0.52976,3.349792,3.803879,-1.580278,1.311727,-0.818361,-1.284932,0.673675,2.882279,2.555089,-1.619106,1.289673,-0.283745,1.395058,-1.294423,1.325289,0.920944,-0.556083,1.801122,-3.104574,-0.622435,-0.248861,1.11823,-1.302464,-0.465281,-0.314992,-0.060885,0.931363,0.039358,2.716603,1.556539,-0.501385,1.486348,0.623388,1.410335,-0.483147,0.446411,-0.214348,0.795785,-0.342109,-0.37947,0.02
-3.487201,7.271821,12.447019,-0.420454,1.879509,8.175597,3.001191,3.349448,2.154866,1.467346,-0.874072,0.176185,-2.248637,1.882422,0.862487,0.702236,-0.889289,-1.255719,4.29184,1.511917,1.077825,3.491425,-1.374953,-2.728483,3.001654,-3.172195,-1.852656,-1.124763,2.784001,2.374743,0.59535,-0.177658,0.271968,2.248477,2.707877,-1.642614,-1.985396,-1.70851,1.585589,-0.470135,-2.819627,-1.784311,0.077784,1.973253,-0.714726,-0.754954,0.563052,-1.591177,0.13
-2.305174,0.106619,-0.508955,3.269836,2.473179,-0.457867,-0.202388,1.20027,0.178424,-0.129949,0.069305,-0.013069,-0.195722,-0.258153,0.08599,0.78101,0.158908,-0.159939,-0.9071,-0.680607,1.014831,-0.024076,-0.245568,0.126338,0.261684,-0.052467,0.228039,-0.046405,-0.512148,0.247175,-0.602278,-0.152507,0.034277,0.194493,0.044135,1.120868,0.275656,-0.979374,-0.09898,-0.385509,0.086022,-1.162896,0.074687,-0.894473,0.297297,-1.02833,0.258916,-0.438849,?
5.841812,1.424239,-0.085241,-2.822167,-3.038614,-0.793298,2.16273,1.101203,1.742582,-0.162141,-0.351748,0.160395,0.284528,-0.598711,-1.638067,-2.00526,1.710879,-0.124777,-0.190182,-0.214279,0.970742,-0.693195,0.215896,-2.099969,-0.313763,-0.573193,-1.109257,0.970007,-0.991205,0.948391,-0.355837,-0.453902,1.371083,0.734022,0.397483,1.206204,-0.76462,1.343887,0.722459,0.581175,-0.207751,-0.154209,0.410365,0.242624,-0.321329,0.16415,-0.237615,0.953356,?
-0.880098,4.006351,-0.445791,10.952357,5.04639,-4.613436,4.351134,4.674771,0.763968,-0.93936,0.307734,0.308265,-0.664531,-0.396916,-0.580977,-0.287651,-0.469868,-0.260962,0.434963,-0.606328,0.762007,0.244241,1.172559,-0.411734,0.460838,-0.580869,-0.690283,-0.650522,-0.21611,-0.631267,-0.421892,1.156688,-0.226507,-1.746179,-0.364382,-1.037742,-0.127578,-0.080584,1.820936,-0.65872,0.079592,0.5066,-0.566983,0.100392,-0.638702,1.244874,-0.071981,-0.161485,?
5.980381,-1.433605,1.110041,-0.58586,-0.69883,0.196578,-0.71555,0.196723,-0.546416,-0.656268,0.97093,-0.941491,1.649581,-0.113508,1.56998,0.614298,0.070147,-0.760117,-0.07264,-0.97349,1.374159,1.181782,-0.616527,-0.336488,0.170822,0.737626,-0.345769,1.469299,-0.367667,0.132296,-0.197208,-0.460772,-0.379392,-0.011668,0.091449,0.481807,0.426389,-1.231565,0.060904,0.18253,1.056405,-0.076254,-0.321902,-0.230213,1.021882,-0.094438,0.158071,-0.701903,?
-0.790441,-2.669449,0.243643,2.625694,1.223215,-0.637607,0.680842,0.977751,1.196727,-1.31695,-2.066706,0.13812,-1.215172,0.031713,-1.53536,-0.232671,0.583573,1.968986,-0.05264,0.049198,0.583132,-1.402936,-0.200327,0.229882,1.108414,-0.440833,0.224816,-0.897866,0.042177,-0.618017,0.003831,0.01795,0.77541,0.332647,-0.166138,-0.173688,-0.034926,0.273789,-0.572304,-0.489246,-0.430166,-0.352218,1.475447,0.986949,-0.000712,0.058739,-0.444034,0.858841,?
-0.599088,-4.254002,-0.135916,1.889282,1.950276,-0.963902,0.792053,2.605842,1.364775,-1.152095,0.350666,0.774096,1.641752,0.566767,2.036776,0.453675,-1.03142,-2.072838,0.425175,-1.561281,1.297425,2.347525,0.81717,0.314908,-0.156887,0.278411,-0.278293,1.007766,-0.57784,0.438309,-0.418908,0.778804,-0.76299,0.956004,0.323549,0.156392,-0.283112,-0.022353,0.369137,0.288043,0.91291,0.327243,0.141707,-0.299427,0.07513,0.048171,-0.22549,0.218493,?
2.312043,-2.797656,-1.911568,-1.921962,3.082205,0.676831,-1.20603,-1.046485,1.29271,-0.404945,-0.321921,0.101146,-0.602218,-0.220114,0.235041,0.323128,-0.130645,-0.113101,-0.549404,-0.829123,0.851936,-0.665745,0.730904,-0.787983,0.147307,-2.268529,-0.894644,0.773628,0.254436,-0.34433,-0.308307,0.097692,-0.060766,0.32489,-0.316368,0.347731,-0.496972,-0.095904,0.207981,0.991733,0.476003,-0.717459,-0.040941,-0.217279,0.186346,1.119651,0.634687,-0.313117,?
1.360674,1.745808,-5.447109,-1.102603,7.037454,-1.684472,1.087713,0.58413,0.344109,1.535193,-0.459569,1.249787,-2.976469,-1.284199,-1.185932,-0.970956,-0.293855,-1.954504,-0.935753,0.75295,1.23652,0.086512,-0.345646,0.348991,1.028926,0.117996,0.081095,0.231414,-0.288371,0.282709,-0.093113,0.48108,-0.420469,2.462274,0.483436,-0.705524,-0.740682,1.462629,-0.770729,-0.223434,-0.464391,2.105392,0.581661,-0.386021,1.08291,-0.473734,1.180615,0.683418,?
-2.749695,-3.093241,0.111857,1.874381,0.003909,-2.122453,3.206251,1.449383,0.600589,-0.566507,2.29707,-1.795864,-0.287383,-0.496699,0.172201,0.282964,0.365744,-0.199439,-0.261652,0.386924,0.614555,0.525552,0.470809,-0.020573,0.883328,0.322284,-1.160285,0.510939,-0.185404,-0.135252,-0.264327,0.214137,0.47296,-0.152636,-0.989948,-0.120786,0.03164,-0.272982,-1.386001,-0.239779,-0.5434,-0.785225,0.072602,0.083937,0.104199,0.070795,-0.274499,0.399477,?
3.257552,-0.514996,-0.299181,-2.285966,-0.816255,0.227586,0.597558,0.412584,1.817238,-0.410271,0.708457,-0.581148,0.055035,-0.565907,0.850203,0.210291,0.770303,0.006143,-0.488333,-0.650887,0.825351,-0.291797,0.286419,0.369431,0.765992,-0.152847,0.136796,-0.738995,0.032852,0.065197,0.025908,0.159932,-0.312164,-0.615304,0.023103,0.576764,0.021035,0.294592,-0.521062,-0.933774,-0.261861,-0.411361,-0.327674,-0.245707,0.234942,-0.625343,-0.183045,-0.478291,?
5.796808,0.508799,-0.569655,-3.252408,-1.838964,-0.46179,1.254187,0.598293,0.729157,0.104281,0.18964,-0.333322,-0.084978,-0.086238,-1.071098,-0.678444,0.911537,0.453426,-0.070457,-0.665235,0.987053,-1.11297,-0.107286,-0.017003,0.842257,-0.070007,0.467354,-0.664158,-0.153558,0.331033,0.631129,0.565012,-0.340606,0.519097,0.254794,0.375436,-0.11152,-0.436559,0.468579,1.092226,0.820195,-0.498888,0.020278,0.079335,0.161466,-0.004715,-0.828813,0.447,?
-3.636064,-6.345173,-0.272059,-1.50457,-1.071838,1.095154,-0.929529,0.367328,2.082905,-1.685568,0.183219,-0.609216,-0.311945,0.608755,-0.264395,1.454585,-0.339139,-0.043006,-0.158549,-0.237615,0.857893,0.694847,-0.778358,-0.169121,0.661336,0.793297,-0.125449,0.042586,0.71398,-1.632358,0.450136,0.886187,0.883469,-0.190186,-1.291903,0.012342,0.490669,-0.35247,-0.745198,-0.382072,-0.766379,-0.012301,0.523291,-0.200362,-0.536398,-0.611518,0.734283,-0.17375,?
2.853787,-2.746411,-2.375694,-0.563283,5.083266,0.447081,-2.138158,-0.855481,0.475062,0.389738,0.993625,0.771765,0.184353,-0.314979,0.712841,-0.69114,-0.515411,-0.707968,0.374144,0.295466,1.378917,0.119087,-0.291609,-0.285499,0.779184,-0.436061,-0.408844,0.680716,0.475527,-1.094063,-0.152003,-0.753976,-0.868784,-0.458762,-0.228736,0.940315,0.488163,-0.077883,0.616784,-0.101519,0.133163,-0.054563,-0.165672,-0.068729,0.168434,-0.336189,0.44407,-0.895028,?
-1.455384,-2.093536,-0.570833,1.598919,1.724161,-0.320101,-1.171953,0.101801,-1.905351,-0.193503,-1.53889,-0.25456,-0.024741,-0.426789,-0.729378,-0.12678,0.362465,0.76419,-0.154121,0.950704,1.438685,0.905829,-0.197217,-1.402146,-0.21973,0.159342,-0.037125,-0.397094,-0.228004,-0.902216,-1.309475,-0.571303,0.311337,0.242458,0.154584,1.284561,-0.828162,0.122292,-0.507542,-0.287496,0.26499,0.340464,-0.294859,-0.15044,-0.002568,0.294771,-0.514999,0.139107,?
-0.53121,-3.35364,0.779932,-1.129495,-1.159196,0.887218,-0.547374,-1.302388,0.926705,-0.883772,0.829688,-0.271265,-0.957076,-0.779881,0.523621,-0.055445,-1.129239,-0.493953,-0.983541,0.031743,0.627402,-0.8303,0.564939,-0.586493,0.391667,-0.501323,-1.000451,0.377891,0.139071,-0.120517,0.857174,-0.493804,-0.557135,-0.04413,0.192466,-0.533606,-0.0166,-0.027081,0.39788,-0.165149,0.486946,0.898369,0.22338,0.275591,-0.210035,0.272958,-0.019915,-0.564782,?
-10.404695,1.526301,9.412344,-3.227635,3.081813,-0.264881,2.303191,-5.228193,-1.987017,-2.783781,-1.044107,0.488265,-1.455839,-2.822784,1.23662,-1.337761,0.966284,-0.612793,-0.594456,-3.852526,2.461716,0.217883,-1.237573,-0.214359,-1.115837,-1.266328,2.098278,0.491658,0.5377,0.102384,0.310239,0.533473,0.756974,-0.08162,1.720825,0.414546,-1.436362,-0.02081,-0.302868,-0.965662,-1.080553,-0.525818,-1.112632,2.880439,0.703644,-0.091087,1.265851,-0.107765,0.13
-0.655315,-1.233901,-1.733523,1.854658,2.166058,0.041524,-1.877204,0.795487,0.977449,-0.806075,-0.565096,-0.002753,-0.103525,-0.653256,-0.974358,-0.392784,0.445665,0.166491,0.076405,0.229268,1.065404,0.72688,0.280747,0.387396,0.748236,0.032046,0.051591,-0.492231,-0.267469,-0.366057,-0.420124,0.35506,0.664495,0.603315,-0.350304,-0.696812,0.025045,0.033728,-0.096304,0.432737,-0.450606,-0.192022,-0.289537,0.037189,-0.110494,-0.07672,-0.490825,0.41019,?
0.603963,-1.981065,-0.290342,0.652375,0.9021,1.109618,-2.34527,0.077775,0.680039,-0.78664,-0.314946,0.816437,-0.723574,-0.821818,-0.315992,-0.430654,-1.00961,-0.972708,-0.589128,0.276671,1.041541,0.013649,-0.036528,0.655131,0.911739,0.026436,-0.399897,-0.043965,-0.70527,0.325783,-0.067166,-0.722816,0.872092,-0.161601,-0.096587,-0.242896,0.245781,-0.562594,0.050249,1.026957,-0.201197,-0.669889,-0.23837,-0.171548,0.14569,-0.136696,0.22959,-0.148492,?
-3.990061,-2.003748,2.682057,-0.922802,-0.226149,1.140958,0.312561,-1.31192,0.449136,0.131767,0.463312,-1.195579,-4.313175,2.153062,2.225637,-3.073831,1.004188,-0.448687,-2.299208,-1.647782,0.864705,0.763149,-0.759493,0.305276,-1.129743,0.693372,0.312643,-0.590451,-2.129343,-2.315473,-1.08945,0.406086,-0.027367,-0.367469,0.131989,0.307631,2.260293,1.190177,-0.869134,1.030414,-0.218859,-0.14784,-0.595587,0.22199,-0.657624,0.538001,-0.130846,0.016006,0.03
-4.381768,-3.932918,-0.250457,-0.931201,-1.5279,2.356884,3.709599,-0.433031,2.013266,4.467289,0.908616,-0.202292,-0.903043,0.770902,-1.341809,-0.23679,-1.030199,-0.147724,-2.137582,-0.477836,-0.489654,2.570921,-0.454165,-0.457152,1.51325,-0.085152,0.065803,-0.100847,-0.432704,-1.136844,-0.35373,-0.300654,-0.256789,-0.305396,-0.351974,-0.287537,0.205153,-0.386596,0.367699,0.122228,-1.180498,0.023251,0.116045,-0.477115,0.453207,-0.076928,-0.150703,0.050092,0.01
-7.091728,1.590094,-7.265008,-3.938421,1.247372,-1.931482,1.168629,2.544733,-2.238489,1.045802,-1.555989,1.370268,2.111234,2.537066,0.703105,-0.192507,-2.255941,-0.768459,0.623156,-1.855677,1.00308,-1.036336,0.163801,-0.158653,0.245094,-0.623845,-0.854531,1.031418,-0.44271,-0.129188,0.96877,-3.129276,1.883893,-1.193548,1.222417,-0.503478,0.835421,-2.712285,-0.716768,2.942182,-0.353481,0.01637,-0.380986,0.204458,0.485139,-0.048369,-0.241845,-0.517008,?
-1.785471,4.126843,-0.162863,10.117371,5.519079,-4.121335,4.273421,3.80427,-0.074833,0.289336,1.322366,0.37458,0.383999,0.213858,0.202973,-0.063572,0.158805,-0.457358,0.236643,-1.37954,0.894427,-0.395678,0.584427,0.041426,0.585784,-0.042516,-0.235716,-0.083484,-0.445428,0.601568,0.349824,1.186602,-2.022132,-2.20371,0.374699,0.128558,-0.005943,-0.678786,1.678717,-0.866737,-0.000855,1.107894,0.085758,-0.296059,1.095707,0.259999,0.711515,-0.720699,?
3.408297,-3.168511,0.004182,-1.905576,0.752786,0.861058,-0.498173,0.029866,1.990832,-0.920147,-0.004329,0.494921,-1.77174,-1.097358,-0.127957,-0.039029,-0.469495,0.179051,-1.034383,-0.439046,0.653809,-0.278848,1.398992,-0.561261,-0.184708,-1.290239,-0.359939,-0.315291,0.003609,-0.051661,0.235149,0.008865,0.16353,0.336041,-0.177773,0.669003,-0.022823,0.019903,0.633924,0.262475,-0.340833,-0.124021,0.281981,-0.434126,-0.371017,0.566074,-0.319212,-0.231961,?
-5.124582,-3.049903,0.789765,0.477556,-0.727892,-0.029984,0.084955,-1.609819,-1.600178,-0.020005,-0.997738,-0.101164,-0.031795,-0.013475,-0.028572,-0.630803,-0.274118,-0.094146,-0.46823,1.376796,0.704459,0.107282,1.158899,0.131083,0.851382,-0.018397,-0.737471,-0.564164,-0.03333,-0.208274,0.340437,-0.753601,-0.535588,-0.156108,-0.038898,0.129235,-0.24456,0.87382,0.568655,0.421776,-0.734143,-0.39281,-0.427203,-0.789828,0.871286,0.197367,0.764993,0.085011,?
0.343139,1.039305,3.322333,6.556592,-0.272537,1.315605,-3.310408,-1.477467,0.626195,-1.073605,-0.30975,0.957474,1.840586,0.089552,-0.374952,-0.941291,0.081228,-0.204355,-0.811438,-0.176929,1.184489,-0.792107,-0.053172,-0.831859,-0.136087,0.393143,-0.369209,-0.046496,-0.563477,0.628883,1.164445,-0.191306,-0.053787,-0.00151,0.563165,0.721435,0.257121,-0.347997,-0.541357,-0.159156,0.242981,-0.285921,-0.143122,-0.277222,-0.600641,-0.392123,-0.401789,0.364797,?
2.703695,-2.887964,-0.871323,0.22804,2.810876,0.681299,-1.790147,-0.788779,2.594727,-1.131054,1.429235,0.255495,0.218482,0.19806,0.718835,0.287615,-1.149607,0.426138,0.472636,-0.048385,1.508564,-1.071517,-0.726521,-0.007382,0.983286,0.021624,-0.070346,-0.725609,-0.492229,0.160541,-0.793771,0.442981,-0.252252,0.485063,-0.369882,-1.42709,-0.114705,0.678784,-0.371817,-0.119837,-0.704222,-0.454476,0.326829,0.335247,-0.147515,0.414261,-1.478069,0.356697,?
5.593304,0.799107,-1.245526,0.044665,2.645898,0.255995,-2.052949,-1.747827,0.524026,0.0305,0.951577,-0.947068,1.818209,-0.152689,0.57322,-0.187804,1.629208,0.810536,0.058221,-0.03004,1.373327,1.106542,1.124587,0.294132,0.304791,0.078434,0.185975,-0.969411,0.008098,-0.72103,-0.159747,-0.127107,0.353738,0.557524,0.412547,-1.190691,0.887279,-0.738838,0.504059,0.046273,0.789333,-0.53926,0.240977,-0.456231,0.362443,-0.175852,0.504817,0.072998,?
-4.899307,1.070212,0.219502,4.424219,-0.906173,-0.406049,-0.696607,-0.626439,0.599653,-1.958954,-3.98522,-0.763474,0.631831,-0.563773,0.951963,0.189357,0.576947,0.271329,-1.384886,0.368776,0.855956,0.45208,-0.010676,-0.031582,0.124163,1.001395,0.003006,-0.316811,-0.268813,0.306369,0.067606,0.115615,-0.674955,0.145,0.076535,-0.054546,-0.453534,0.221512,-1.453686,-0.867736,-0.292887,0.360393,-0.139036,0.104794,-0.427681,0.577274,-0.154591,-0.380132,?
11.39578,5.33709,1.009127,-1.984582,-2.312789,-1.398483,2.537875,-0.648594,-2.613972,-0.772057,-2.880802,-1.276992,-1.434264,0.485534,0.147103,1.568353,-1.053522,0.158688,-1.411187,-0.757136,0.819942,-0.224686,-1.053162,-1.069379,0.093124,0.620902,-0.884704,1.728647,0.067272,-0.093723,0.219,-1.770479,-0.580885,-0.589681,-0.257067,-0.216086,0.313587,-1.341677,-0.176942,0.445717,-0.304624,0.722929,-0.518236,0.059445,0.693109,0.970049,0.458223,0.917292,?
8.256517,0.234684,1.414927,-0.950891,-0.098732,-0.35925,0.830661,-0.188374,-0.98385,-0.335646,-0.72799,-0.213447,0.53948,0.394754,0.542068,0.765043,0.272639,-0.510813,-0.650001,-0.5554,1.101039,0.989026,-0.163314,0.123098,0.309832,1.027562,0.103741,0.149747,-0.117062,-0.233793,0.070312,-0.93185,0.157097,-0.446636,0.2474,0.314893,-0.210104,-0.457393,-1.022382,-0.58717,0.636358,0.039819,-0.123457,0.02596,0.090829,-0.001417,0.082433,-0.480675,?
-1.111036,-3.471984,-2.648932,-2.507294,1.964491,0.400648,-0.952122,0.103885,0.291994,0.294596,0.367167,-0.079057,-1.521204,-0.841862,-1.411495,-0.34721,0.424042,-0.261397,-0.163968,0.39833,0.823423,0.091812,-0.29872,-0.484783,0.875213,-0.01063,-0.626454,0.809721,1.239208,-2.036513,0.580424,-0.247302,-0.071804,0.918124,-0.8433,-1.390999,0.028826,0.117714,-1.348887,0.143697,-0.198675,-0.371725,0.467877,0.75276,0.048238,0.330071,-0.692768,0.934754,?
1.554494,6.111952,0.298848,-0.413078,-3.887966,-1.374053,1.876122,-2.249981,0.433916,-0.40331,-0.789649,0.000116,1.538093,0.109276,1.035884,-1.844789,-1.045538,-0.993079,0.019308,1.959762,0.985492,1.300565,0.669748,-0.614578,0.448803,2.395543,-1.552289,-0.15247,-0.731291,-0.566405,-1.377662,-0.098563,-0.094412,0.34871,0.208525,-0.411873,-0.53304,0.131536,-1.038526,-0.524526,0.264288,-1.224166,-0.403663,-0.629296,-0.635437,-0.033435,1.392814,0.054083,?
1.261478,-2.8812,1.527559,1.201359,0.600856,0.584208,-1.459433,-1.330514,-0.500873,-0.478113,-0.117358,1.449612,-0.366451,0.300499,-0.871317,-0.619169,-1.477052,0.864822,-0.354165,0.706553,1.030272,0.178971,1.10531,-2.142512,-0.889528,0.217432,-0.914459,-0.323113,-0.02273,-0.712329,0.677993,0.324693,-0.570506,1.074113,-0.121206,-0.074252,0.292134,0.212867,-0.159836,-0.164363,0.632914,-1.220103,1.025467,-0.004677,0.432236,0.019548,0.289148,0.121172,?
-6.649567,-1.383011,-0.871477,0.046341,-3.153286,2.429821,2.122651,-1.209257,2.909421,2.854707,-1.589006,0.096282,-2.296816,0.655295,-0.282701,1.062792,1.452879,-0.959013,2.089367,1.584771,2.170419,-2.236661,2.184509,0.867844,-0.476578,0.79971,0.170414,-0.507559,1.111406,-0.572927,-0.54156,-0.531863,0.117486,0.533577,-0.766332,0.5615,2.239825,-0.370971,0.305687,0.809054,-0.326945,-0.898193,0.182605,-0.997536,0.068535,0.223946,-1.477175,-0.09857,0.02
3.471885,-0.327971,-3.392276,-0.166041,5.798176,-0.872247,-1.253208,-0.54994,-0.880951,0.775131,-1.54366,0.582424,0.130412,0.097053,-1.228742,-1.019032,0.977368,0.13304,0.694885,1.234652,1.810687,1.451783,-0.891193,0.214381,0.828473,1.545811,0.78181,-0.141908,-0.556145,-0.057049,-1.582198,-1.151672,-0.76312,0.749215,0.668496,-0.293313,0.123748,0.21419,0.747413,-0.655779,-0.061251,1.06643,0.126982,0.061867,-0.31925,0.661207,-0.56186,-0.225241,?
7.868501,-0.04711,0.678615,-3.171403,-1.458074,-0.718588,2.05615,-0.404535,0.832618,-0.147216,1.139753,-0.511368,0.233345,-0.234318,0.026156,-0.730011,0.463586,-0.423468,-0.309172,-0.065937,0.743776,0.446313,0.72567,-0.85824,0.181844,-0.160477,-1.406609,1.527764,-0.395198,0.083229,-0.101561,-1.093059,0.988493,0.62025,-0.122265,0.338764,0.109975,0.64201,0.687282,0.005516,-0.414595,0.190784,-0.158657,-0.341671,-0.158778,0.415528,-0.478385,-0.813912,?
-2.044239,-0.371121,0.474687,6.696474,2.303023,-1.938975,0.964626,1.649258,0.080061,-1.061655,1.19055,-1.488056,0.513723,-0.557312,1.073036,0.984858,0.124976,-0.239628,-1.018238,-0.568094,1.191365,-0.424351,-0.362732,-0.160966,0.489277,-0.592738,-0.095624,0.335437,0.003661,-0.150019,0.441558,-0.063345,1.606436,1.504808,-0.468669,0.395875,0.55061,0.366808,0.194858,-0.124422,-0.07365,-0.535228,0.483923,-0.201439,-1.358772,0.05753,-0.544387,0.121559,?
-6.914237,9.134157,-2.005762,-1.555835,-4.27589,-0.091507,-0.588155,0.624696,4.083677,1.224773,0.12205,0.960864,0.177244,1.174187,1.404195,-1.167846,0.561027,-0.1042,1.94321,-0.013435,1.422813,-0.252343,4.366035,-2.329407,-0.29552,2.307587,2.38256,1.407169,-0.797532,-0.018155,-1.279552,-0.174597,1.157339,-0.268187,-2.65799,0.506388,1.213196,-0.000513,0.020258,-0.640023,0.882607,-0.362059,-0.46433,0.837962,0.956314,0.257142,-0.237505,-0.262057,0.05
-3.879431,-3.296276,-1.097026,1.65565,1.227546,-1.481068,1.283067,1.022252,0.480811,-1.639687,-1.496406,-0.844471,1.311425,-0.047124,3.97984,0.618097,-1.470164,0.106624,0.170195,-0.863737,0.989086,0.285426,0.759263,0.582237,0.465397,-0.423062,-0.263656,0.568522,-0.254673,0.60151,0.098658,-0.136308,-2.153379,0.630255,0.289486,0.023194,-0.700167,-0.198298,0.44913,1.719193,0.265187,0.343615,-0.510484,0.243177,0.017019,-0.176054,-0.3642,-0.175632,?
0.213095,6.453219,-5.078629,-0.803949,2.83702,-0.840048,-0.907064,-0.98286,-0.051935,0.744393,1.713348,-1.971882,-0.83435,-0.692348,-0.087167,1.286434,-0.136979,0.598476,-1.094974,-0.704766,0.900445,-0.139743,0.218087,0.38496,0.736896,0.327933,0.14082,0.093577,-0.26512,0.939775,-0.118807,0.120621,-0.569172,0.770348,0.111587,0.687155,-0.231092,0.425531,0.287098,-0.143651,-0.322536,-0.783385,0.074446,-0.280994,-0.532747,0.225928,-0.122118,0.207486,?
-2.944107,-3.562608,-0.525956,0.778347,0.265791,-0.690606,0.606654,1.263464,-0.501236,-0.377997,-2.545442,-0.039649,0.614152,-0.628733,0.107579,-1.453336,1.50825,-0.222554,0.161218,0.427798,0.834036,-0.303441,-0.544769,-0.651163,0.926164,-0.377068,-0.692876,1.250703,0.400923,-0.683915,0.222121,-0.777162,-0.741172,-0.316002,-0.611024,0.539525,-0.037064,0.468531,-0.179675,-0.221319,-0.562709,-0.207249,-0.292906,0.468698,0.090317,0.61196,-0.771749,-0.040717,?
0.875293,6.131081,-3.396084,-0.778516,3.703433,0.674884,-2.802702,-2.070589,-2.250092,1.86231,0.760582,-1.451233,-1.206232,-1.583623,-0.881501,0.394948,0.777655,0.182732,-1.065992,0.515235,1.12526,0.059633,-0.06041,0.196719,1.040636,-0.04571,-0.333476,0.062518,-0.552436,0.39018,-0.177835,0.656082,0.113901,-0.490823,0.183989,-0.2115,-0.639323,0.015944,0.561419,-0.07505,-0.640999,1.056007,0.123565,0.113756,0.51561,-0.198986,-0.617468,-0.072079,?
5.499894,-2.012315,0.352162,-0.612509,1.661711,-0.159936,0.276618,-0.064726,0.157781,-0.419627,0.191908,1.38557,-0.742192,0.547159,-0.369343,-0.040759,-1.431802,-0.418781,-0.502278,-0.04043,1.192905,0.051866,0.321705,-0.586695,-0.020259,0.453589,-0.559526,-0.414998,-0.939661,0.814568,0.361692,-0.256032,0.652026,-0.597616,0.332942,-0.660455,0.756133,-0.878242,-0.428061,-0.23179,-1.077176,0.866004,-1.053519,-0.759916,0.342656,-0.163421,0.180836,0.602937,?
11.634605,8.805339,-0.420789,-1.608579,-3.106672,-2.275162,3.232013,0.632931,-1.729474,-1.102671,-4.583981,-0.472371,-1.255133,-0.231303,0.568227,0.2483,-1.776527,0.998339,-0.676141,-0.33334,0.649029,-0.051767,-0.45378,-2.741756,-0.872702,0.648026,-1.704365,2.13492,0.485493,-2.133845,0.436916,-0.786649,-0.671746,-1.354651,-0.899024,-0.142245,-0.234099,-0.90947,-1.23947,1.588221,-0.461962,0.494324,-0.242609,0.695402,0.747163,-1.183797,1.503377,0.612242,?
0.758995,1.570872,-1.99667,4.066478,3.425157,-0.213772,-3.039852,1.776855,-0.983889,0.397094,0.777038,0.39423,-0.40104,-1.417865,-2.81979,-1.578612,0.122697,0.264684,1.404267,0.955099,1.364252,1.12414,-0.374827,-0.549906,0.949049,0.264779,-0.365481,0.01455,-0.209789,-1.474252,-1.387014,0.665931,-0.170388,-0.15204,-0.269016,-0.654983,-0.800335,0.458989,0.249922,0.939049,0.501872,0.646545,-0.051534,0.773681,1.690658,0.104577,-1.747525,-0.735892,?
-1.306774,0.118626,-0.167962,3.596426,2.49276,-0.26658,-1.565669,-0.772255,-1.587865,0.781311,1.15988,0.540577,-0.355525,-0.839516,-1.70365,-1.48755,-0.362451,-0.116794,0.012188,1.86685,1.19698,0.317788,0.117632,-0.636957,0.676999,0.711525,-0.748093,-0.631713,-0.690951,-0.309698,-0.538408,-0.295663,0.050744,-0.402832,0.24734,0.33074,-0.325248,0.076906,-0.146314,0.326953,0.7296,-0.599598,-0.477431,-0.19562,0.971683,-0.880337,-0.583909,-0.082372,?
-5.256169,1.320711,-1.960397,2.026233,0.691804,-0.256103,-1.101517,0.127979,-0.486734,0.079887,-2.527319,1.09549,1.842541,1.177443,-0.527361,-1.062273,0.359084,-0.831531,0.127725,-0.431255,0.902654,-0.471393,-0.0971,0.176988,0.990178,0.3351,-0.308744,0.441455,-0.024761,0.344483,1.551683,0.209565,-0.44817,-0.679863,0.031018,0.370133,-0.510745,1.035731,-0.501028,-0.028938,-0.301655,-0.200818,-0.551356,0.444446,-0.525175,0.855899,-0.463249,0.261945,?
10.447441,1.987792,-1.045138,-0.326694,4.227062,-1.375642,-0.036968,-1.387724,-2.707418,0.686317,-3.633028,1.159513,0.290917,0.886407,-1.202818,-0.926726,0.763136,0.753825,-0.175033,0.887357,1.195277,1.94805,1.361877,1.251285,0.536099,1.009342,0.99013,-1.697417,-0.224853,-0.06171,0.880677,0.504558,-0.123141,0.045404,0.220405,0.202951,1.485606,-2.608295,0.069535,1.686582,-0.177338,-0.308225,-0.447857,-0.577257,1.007071,0.284456,0.344711,-1.00618,?
-0.403113,-4.320187,0.180014,1.158093,1.075941,0.676981,-1.586747,1.595942,0.578315,-1.339904,-1.32482,0.408986,-0.408048,-0.605619,0.125262,0.377345,-0.32847,-0.451951,-0.18897,-0.447318,1.273248,0.607251,-0.571443,-0.39551,0.194288,-0.414452,0.059046,0.158297,0.205942,-1.400287,-1.204489,-0.099051,0.580544,0.781431,-0.343136,0.191135,0.061446,-0.975324,-0.357862,-0.16844,0.369799,-0.250806,0.251434,-0.421897,-0.286671,0.356259,0.030673,0.696292,?
-10.018832,8.603034,-9.704793,-5.711385,2.62752,2.330002,4.224782,3.865096,-4.701397,-5.900264,4.076247,10.158146,2.54999,2.300057,0.717838,1.30409,2.235288,4.029283,-6.197162,3.849104,1.619803,-0.085824,0.021004,2.983819,-1.109614,-1.469113,-1.284477,1.429428,-1.093862,0.840383,1.026751,-0.183882,0.706785,-0.035413,-1.625379,-0.465052,0.080536,0.570068,0.859716,0.062989,0.639127,0.951899,-0.261578,-0.029626,-0.512249,-0.629579,0.444344,0.74056,0.02
1.045185,-2.703658,0.452769,-0.976539,-1.098933,0.763928,-0.557629,-0.388903,2.060853,-0.412263,2.180996,-0.286585,0.092916,0.052299,-0.992267,-0.454452,0.356878,0.071284,0.253932,0.072373,0.986327,-0.948269,-0.894412,0.164849,1.265914,0.89026,-0.140417,-0.022637,-0.402992,0.452381,-0.442321,-0.581874,-0.890082,-0.353362,-0.057027,-0.073623,-0.0108,-0.05055,-0.371167,-0.137906,-0.36937,-0.560154,-0.289958,-0.308964,0.596408,-0.244617,-0.565942,0.088006,?
-3.141805,-0.236436,2.024849,5.923969,0.781936,-0.850192,0.405923,-0.622479,0.529127,-0.838102,0.791947,-0.808918,-0.812705,-0.116743,-0.910884,-1.310622,-1.203927,3.742259,0.847358,-0.445853,-0.984228,-0.018867,1.851403,2.261658,2.190716,0.404991,-2.08535,3.295671,-0.267516,1.231952,1.468151,-1.006018,0.094389,1.698486,0.910411,1.473993,0.625264,-0.268055,-0.555726,-0.362496,0.179694,0.000805,-0.584936,1.019528,-0.616537,-0.301423,0.166399,0.102299,?
-3.430128,-0.769943,4.273289,-0.228766,-8.898899,1.303545,-1.88372,3.264432,-4.767793,0.78687,0.34852,-0.113772,1.254172,-1.875821,0.240388,-1.9858,-0.130236,0.56759,-0.117121,-0.333171,1.059586,-0.117274,1.764148,-0.285936,-0.258876,0.125826,0.307654,-1.171336,-0.782623,0.775504,0.010572,0.996283,-2.156993,-0.635213,0.351045,0.88863,0.945928,-1.04837,2.227434,-1.491883,-1.212574,0.807091,0.748227,-0.999835,-0.412357,1.375611,0.08546,0.285339,?
-4.455191,-4.031227,0.816465,-1.762973,-1.238751,0.666582,0.448442,-1.291035,0.057619,-0.039258,0.148345,0.224611,-1.163848,1.470429,-1.819131,0.78205,-0.507761,1.148469,-0.238919,-0.021936,0.22481,0.472989,0.519766,-0.450918,0.271891,1.569716,-0.090498,-0.421334,0.372765,0.155547,1.969579,1.855187,-0.773932,-0.064424,-0.247714,0.570036,0.222832,-0.828876,0.62165,-0.357057,0.077174,-0.697142,-0.847182,-0.788606,0.358101,0.912869,-0.041048,0.755585,?
-10.379608,4.563462,11.861721,-6.237488,4.783571,0.692099,2.936702,-0.999502,3.486295,4.033285,-0.026208,0.882663,0.82938,-3.043795,-2.038465,3.545091,-0.000361,-0.014652,1.618368,1.043556,1.654503,-2.510419,2.121228,1.254113,-0.102375,1.207143,1.033968,1.465174,-1.535567,-0.754161,-0.953292,0.319357,-0.219233,0.309079,0.077272,-2.302444,-0.117279,-0.81816,1.305989,0.849899,-0.230044,0.791335,1.621973,-2.158905,0.131459,-1.48278,-2.059055,-0.494742,0.38
-4.083829,-2.284404,-0.092157,2.564057,0.614651,-0.752803,0.936879,0.207281,-0.149221,-0.341895,-1.100703,0.317603,-0.366007,-0.613485,0.010981,-0.746558,0.077885,-1.696771,-1.206647,0.224311,0.127601,-1.193903,0.19926,0.113708,0.745147,-1.049455,-0.870967,0.328798,0.10369,0.001885,0.947138,-0.601904,-0.824976,-0.796015,0.105076,0.661855,-0.526517,0.330565,-1.761067,-0.122926,0.623827,0.505674,-1.357006,0.124392,-0.590059,-2.395288,0.675615,-0.05034,?
-5.198261,2.638449,-7.743394,-4.813932,1.462249,-0.547932,-0.520465,1.238182,0.602697,1.35696,-1.09972,1.245863,-1.207157,-0.949491,-0.930076,-1.862181,-0.32089,-0.330553,-0.322752,-0.215587,0.077446,-0.525053,0.475186,-0.604885,0.242336,0.660415,-0.311928,0.683503,1.335882,-1.358043,1.290158,-0.991965,-1.923531,0.270356,-0.043098,0.166344,0.444114,-0.521413,-1.922098,-0.52586,-0.210828,-1.141209,0.155946,0.394,-0.28776,-0.197976,-0.445428,-0.838639,?
-4.068319,2.52672,-4.70015,-1.720544,-0.161241,-0.670628,-1.341734,1.211736,-2.342321,0.122981,-1.338642,-0.765835,0.226302,0.735836,-0.426453,1.471978,-1.501462,-0.531566,-0.378009,-1.164687,0.994884,0.472774,-0.38293,0.325331,0.251224,-0.20363,0.261546,-0.075552,-1.104587,1.13063,-1.861859,1.350771,-0.437437,0.515859,-0.042141,0.858345,-0.359312,-0.573627,-0.695306,0.211825,0.409202,-1.25942,0.141784,-0.277541,0.198879,0.947312,-0.159101,0.091407,?
-7.284619,4.020848,-6.438423,-1.526241,1.654313,-0.941935,-1.522243,-0.414852,-2.412015,1.459227,-0.714322,-0.695033,0.977566,0.535395,-0.857916,0.089936,0.245642,-0.052913,-0.776266,0.223156,0.891681,-0.110215,-0.058188,-0.255983,0.194126,0.411956,-0.134001,-0.575598,-0.759722,0.81454,-0.585947,-0.259121,0.700474,0.703594,0.432309,0.117983,0.309548,-0.326532,-2.484565,-0.908631,-0.423447,-1.613863,-0.105375,0.203145,-1.498019,-1.063556,-0.477626,0.704453,?
0.199029,-2.151149,0.616642,0.663321,-1.02796,0.633947,-0.646446,0.35733,2.317979,-1.302374,0.236235,-0.812582,-0.927485,-2.013348,-0.094521,-0.19941,0.958048,-1.943829,-1.444178,0.047755,0.46905,1.033716,0.248206,0.460086,0.38077,-0.046316,-0.498172,0.751674,-0.594529,0.925971,-0.750023,0.556104,-0.033882,0.420687,-0.451841,0.36716,0.133814,-0.40247,1.174337,-0.295332,-0.147112,-0.3756,0.285773,-0.439122,-0.630079,0.689816,-0.48464,-0.690193,?
-7.148971,-0.05976,-2.663248,-1.069219,-0.957488,0.680411,-1.747929,-1.462358,-0.882472,0.761361,0.113797,-1.298339,0.495074,0.494729,-1.851703,0.323859,1.768647,-0.802249,-1.409012,-0.24877,0.414776,-1.327316,-0.700533,0.179496,1.05462,-0.518648,-0.232072,0.542562,0.209009,0.285051,0.86004,-0.588771,1.014079,0.016309,-0.018552,0.283055,0.81143,-0.01788,0.507062,-1.016985,0.360725,-0.243585,0.197886,-0.442123,-1.06712,0.299151,0.660255,-1.343625,?
-5.3012,-2.384334,-0.371738,0.588993,-0.199066,0.83899,1.421505,-6.32144,-0.278008,-2.290604,-0.926274,0.215616,-0.558931,-0.875538,0.555565,-1.771166,-0.222599,0.867653,0.805055,-1.640991,2.055898,0.534834,1.81534,-1.150997,-0.332091,2.010652,3.83709,0.342834,1.239464,2.748209,-1.94674,0.32477,0.418932,-0.594954,-1.162547,-0.363494,-0.806038,0.347669,0.560363,0.229849,-0.464168,-0.431714,-0.481545,0.26274,0.717932,-1.228232,0.38716,-0.365567,0.01
5.629977,4.873854,3.639112,1.864864,-5.01843,-0.150789,0.210594,-0.459878,-1.49135,-1.589066,-1.264286,-1.003686,0.361892,0.931229,0.247416,1.892921,-1.706643,-0.092836,-0.637151,-1.063748,0.226648,0.595206,-0.289761,1.56935,0.948409,1.162713,0.198473,0.19286,0.068037,-0.227314,-0.278918,-0.841199,-0.689433,1.466494,0.154948,-1.103465,-0.181584,1.446951,-0.188542,-1.12465,0.105948,0.460957,-1.06153,-0.694034,0.619108,-0.28742,-0.025191,-0.584767,?
-9.880984,0.753068,1.115176,1.12169,-3.864917,0.159098,-0.890192,-1.613623,-3.446172,0.229641,-0.901093,-1.645896,0.071712,-0.975472,0.936408,0.203348,-1.167616,0.150762,-1.43193,1.459358,0.928591,0.015375,0.511525,-0.482029,-0.148883,0.646017,-0.419297,-0.495159,-0.735428,1.747941,1.059499,0.550909,-0.531266,1.428369,0.1491,0.030011,-0.008618,-0.239657,0.937904,0.828436,-0.599776,-0.122308,-0.248843,-0.513287,-0.607659,0.726969,0.715882,-0.640087,?
-2.568159,1.058055,-0.495326,0.63225,-1.839624,-0.729749,0.744456,-0.401329,1.080137,-0.571394,0.861312,-1.421202,1.239642,0.217143,0.235409,-0.119887,0.252627,-0.381133,-0.075808,0.079445,0.501532,-0.520752,-0.053833,0.964947,1.372145,0.283697,-0.652995,0.091255,-0.530062,0.499179,0.158424,0.971698,0.947117,0.17749,-0.372724,-1.021069,0.089189,0.339154,-0.758293,-0.259826,-0.152723,0.191859,0.252558,0.201333,-0.290461,0.374507,-0.577148,-0.81387,?
-2.546676,-4.894446,1.012281,0.993182,-0.883413,0.29236,-0.431704,0.402367,1.062062,-2.038643,-2.255023,0.175703,0.8694,0.727489,0.909528,0.605167,-0.442489,0.702479,0.156356,-0.443462,0.702597,0.769925,-0.168127,-0.31953,-0.108024,0.903847,0.115931,0.255503,0.064895,-0.405473,0.611192,0.207935,-0.806357,0.671006,0.128178,-0.514484,-0.594697,-0.034036,-0.688481,0.572157,0.8446,0.651799,-0.283347,0.320829,0.627756,-0.193753,-0.008581,-0.61932,?
-14.275739,7.220499,20.829387,-12.181754,8.13381,-4.938262,0.824866,-2.475021,2.80905,1.031612,-1.3077,-3.351755,0.521199,-2.64744,-3.435637,-2.578364,-4.15525,1.446176,0.264972,-0.908312,0.822372,3.129504,-0.686354,1.878672,0.293704,-2.107631,-1.137801,2.738217,0.633346,1.275761,0.199203,0.430905,0.892383,1.553471,0.158936,1.466061,0.927754,-2.140398,0.593764,-0.92965,-1.227428,0.124142,0.269403,0.737329,-0.199294,-1.376148,-0.340315,0.362745,0.58
3.073724,0.306632,-0.378979,1.054101,2.772511,0.007331,-1.087792,-1.263188,-0.670926,0.738695,2.236855,-0.905693,1.471514,0.076362,0.038593,0.262293,0.9904,0.126005,-0.081743,-0.606824,0.828537,0.331688,0.908954,-0.219041,0.226038,0.003975,-0.299193,0.483574,0.308275,0.327906,1.659097,-0.231897,-0.266906,-1.073929,-0.01499,1.148039,-0.939555,0.204832,-0.201621,1.203537,-0.256725,-0.338095,-0.023698,0.451632,-0.390397,0.681421,-0.388434,-0.375378,?
1.214202,-3.921639,0.587157,-0.265299,-1.975558,1.087461,-4.017133,3.524135,-4.33052,0.334518,1.577153,-1.097937,-0.434931,-3.545115,-0.102484,-1.030081,-0.36203,1.580539,0.543213,0.443694,1.302834,1.01661,0.61206,-1.143569,-0.471921,-0.452091,0.066028,-0.262735,-0.23457,-0.753263,-0.323579,0.584471,0.17229,1.490838,-0.009681,-0.96837,-0.362791,0.17751,0.384701,0.823975,0.91197,0.988208,-0.849906,0.488208,-0.557828,-0.452233,-1.576545,-0.580673,?
0.661652,-4.238859,-1.298558,-1.120208,1.526872,0.625005,-1.573253,0.296866,1.221989,-1.192473,0.054085,-0.137429,0.19833,-0.009698,0.50042,0.620273,-0.669506,0.157053,0.25899,-0.891306,0.630748,-0.18856,0.538036,-1.150874,-0.199674,-2.534983,-0.837319,0.630539,0.663431,-1.787164,-1.038206,0.09874,0.680822,0.803656,-0.756859,0.581702,-0.29684,0.654992,-0.178587,0.099867,-0.063533,-0.04179,-0.249276,-0.272881,-0.105897,0.013313,-0.143233,-0.257724,?
0.18342,5.560738,-1.422827,-0.136138,-5.015236,-0.961447,0.982338,3.114315,3.08119,0.045353,1.451426,0.387322,2.757699,-0.901198,-0.481187,-3.256882,1.24195,-0.880654,1.045699,-0.848231,0.901048,0.143433,0.331614,-0.685673,-0.12972,1.020718,-0.465367,0.241545,-1.075794,0.720553,-1.196943,1.43233,-0.680321,-0.042375,0.733945,1.447638,-0.380275,-0.660897,0.273615,-0.334882,0.552266,-0.294943,0.377735,-0.139259,-0.90376,0.09749,0.279044,-0.2303,?
5.413078,-1.280142,0.144929,-1.443671,0.424421,-0.268081,-0.752509,0.848698,-3.931448,1.539368,1.180385,-1.216256,1.451622,-0.729013,0.270233,-0.68922,1.499239,-0.234503,0.515349,-0.069961,1.507249,-0.862718,-0.597489,0.660315,1.164861,-0.58527,0.436309,-0.123381,-0.429161,0.7654,-0.56785,-0.181373,-0.710974,-0.209752,0.052375,0.067458,-0.721299,0.423855,-0.402664,0.50264,-0.991529,0.373702,0.295709,-0.109435,-0.066717,0.930827,-0.398176,1.99752,?
-2.559977,-3.07377,-1.815171,-1.132382,-0.069296,-0.292605,-0.08865,2.837293,-0.741915,0.149899,-2.441618,0.955248,0.399976,-0.422678,-0.572004,-1.594217,1.123639,-0.156523,0.571022,-0.327022,0.494924,0.13983,0.290331,-0.047123,0.495486,-0.103238,0.22958,0.283089,0.882502,-1.137583,1.257022,-0.56978,-0.552565,-0.533208,-0.04354,-0.205372,0.313892,0.120963,0.640771,-0.115172,-0.093463,0.89059,-0.416743,0.249182,-1.234007,0.441613,-0.700433,-0.417833,?
-5.960726,-3.367757,1.052512,-0.702202,-2.056917,0.095232,0.335857,-2.672042,-2.061178,-0.246953,-0.941798,-0.993737,-0.473315,-0.003221,-0.115784,0.279858,-0.421591,0.507829,-1.194584,1.140002,0.401478,-0.44629,1.092941,-2.236971,-0.64849,-1.510928,-1.368186,-0.337732,-0.002377,-0.416869,-0.898283,-0.434922,-0.938889,-0.044591,0.056644,1.434003,-0.488301,0.185248,-0.333916,-0.854689,-0.260043,0.064498,-1.500351,-0.907032,0.981409,0.071385,0.466984,0.271573,?
-0.917478,1.43348,0.737724,-0.795343,-4.221079,-0.499718,1.991302,0.745401,2.564189,-0.073171,1.74126,0.001562,0.358685,0.121189,-2.45281,-1.34206,1.00027,-1.872997,-0.222935,-0.69617,0.361404,-0.044728,1.040291,0.556753,0.59543,-0.646432,-0.106826,-0.268054,-0.099688,0.264105,-0.433224,0.054122,-0.100403,0.828828,0.554634,2.333297,-1.389655,0.095052,0.241784,0.459072,-0.077057,1.668586,-0.134479,-0.317544,0.131902,1.391475,-0.431156,-0.55717,?
3.660303,-0.56781,0.341058,-2.496218,-3.719908,-0.186402,1.378085,2.952051,1.53962,-0.172243,0.687539,0.687221,0.332597,-0.670699,-0.858927,-1.757367,0.592252,0.047044,0.491885,-0.994171,0.954012,-1.235611,-0.422062,-1.033857,-0.262202,0.274194,0.137844,0.362216,-0.184811,0.577992,0.206543,-1.386245,-0.776789,0.09574,0.922259,0.959838,-1.291617,-0.428908,-0.953881,1.786725,0.102331,0.8227,-0.106868,0.247525,-0.04089,0.263332,-0.005398,0.658268,?
-6.188015,-3.114946,0.722671,-0.745844,-1.605396,0.785688,-0.015079,-1.483169,0.789073,0.247328,0.94438,0.400952,-0.020878,1.214221,-1.541044,-0.06413,-0.114604,-1.069488,-0.602287,-0.33706,0.334129,-1.303807,-0.352453,-0.753024,0.385467,-0.493642,-0.62448,0.566216,0.810591,-1.113073,0.691227,-1.002593,-0.142424,1.187395,0.470616,0.400096,0.287034,-0.510215,0.561105,-1.166443,0.678255,0.171208,0.265767,-0.45579,-0.752527,-0.074041,-0.395,0.455448,?
4.924894,-3.224601,0.273652,-1.605533,0.529336,0.397375,-0.064793,0.902814,0.734693,-0.743554,0.00171,0.191278,-1.505033,-0.977542,0.229282,0.101079,-0.338896,0.472577,-0.38715,0.249675,0.998565,-0.861834,-0.962545,-0.223546,0.492401,0.712642,0.290585,-0.474686,-0.515103,0.818144,-0.039249,-0.623431,-0.331922,-0.859648,-0.208019,-1.010465,0.079328,-0.117598,0.162187,0.133787,-0.792331,0.142321,-0.82079,-0.369917,0.280474,0.80967,-0.565422,-0.708699,?
-2.973597,-2.662466,-0.963401,0.604975,0.83415,1.325468,-2.787257,-1.017782,1.366264,-0.196569,0.673438,0.918684,0.788049,0.819952,-1.646469,-0.638623,0.063436,-0.175253,0.216736,-0.037219,0.620849,-0.565492,-0.041062,-0.479075,0.325504,0.090209,-0.442807,0.568858,0.330286,-0.400065,0.915919,-0.745159,-0.502522,0.080442,-0.245011,-0.15078,0.244499,0.92716,0.444158,0.45114,0.107645,-0.210329,-0.181682,-0.364614,-0.807947,-0.674154,0.866509,-0.493205,?
6.477572,-1.564507,-0.812043,-0.968773,3.027865,0.018246,-0.946567,-0.765296,-0.357567,-0.041485,-0.288643,0.618992,0.834141,0.498194,-1.72757,-0.53004,0.860968,-0.278973,-0.082347,-0.747697,0.910443,0.247441,1.653273,-1.719724,-0.951065,-2.259714,-1.434734,0.599865,-1.057901,0.911911,-0.437309,-0.966644,1.481391,-1.224649,0.698491,-0.370032,-0.211379,-1.162837,-0.262989,0.833724,-0.451559,1.142896,0.931788,1.691713,0.39161,1.328539,-1.023049,0.701118,?
-6.069544,-3.895643,0.726689,0.221993,-1.660228,0.028263,0.43737,-1.563696,0.641357,-0.928851,0.147799,-0.804635,0.171798,-0.027059,0.853109,0.035421,-0.427586,0.863338,-0.522626,0.685243,0.473918,-0.022652,0.843334,-0.700953,-0.132286,0.757001,-0.58073,-0.252987,-0.154911,0.64722,0.272696,-0.81727,-2.131272,0.441941,0.486482,-0.489547,-0.211318,0.152421,-0.414937,-0.243268,-0.208625,0.607801,-0.184456,0.067739,0.800624,-0.0874,0.409405,-0.653369,?
-2.403154,-1.231663,-2.229495,-0.930544,0.216263,-0.083497,-0.8581,2.308776,-0.762281,-0.307827,-1.005194,0.245381,1.064695,-0.158711,1.815967,-0.060179,-0.660552,-0.147316,0.126078,-1.42643,0.756949,-0.115869,0.589399,0.743969,0.394631,-0.515406,-0.010624,0.437573,-0.341812,1.024346,0.304384,-0.957225,-0.591923,0.455111,0.34296,-0.844497,-0.299142,0.138621,-0.08281,0.510889,-0.445825,-0.140252,-0.625474,0.339328,0.041553,1.323599,-1.010545,0.04437,?
-1.402524,6.889724,0.766375,1.13557,-0.803057,5.647672,-1.389127,2.995488,-2.866492,-0.851387,1.758119,-0.66354,-2.609628,0.958093,1.719162,0.276117,2.495731,0.814392,0.439774,2.664407,1.895721,2.410161,-1.3304,1.03279,0.87487,-2.587984,-0.682837,-0.748061,0.978565,1.728065,0.524226,-0.150008,-0.500144,2.387071,0.909925,0.367192,1.31915,0.067812,0.31967,-0.052151,-0.176541,-0.208835,-2.780554,4.488882,1.188981,1.086813,1.235036,-0.00542,0.05
2.324651,-2.710555,0.267718,-1.243029,-0.573889,0.109387,-0.561432,1.191937,-1.249583,0.390371,1.388805,-0.659643,1.635842,0.169679,0.367259,-0.423454,0.884265,1.633565,1.290776,-0.223923,1.138328,-0.996076,-0.349569,-0.804579,0.413524,-0.448138,0.110921,-0.530509,0.967285,-1.76319,0.05811,-0.067623,-0.900823,-0.539401,-0.660221,-0.625189,0.265451,-0.053703,-1.093637,-0.054248,-1.872803,0.650242,0.314819,-0.391841,0.917516,0.220023,0.036853,-0.407179,?
-6.646171,8.601814,7.958101,-2.746401,2.002643,5.830022,0.922434,1.905385,-1.608752,-1.86335,0.211838,0.344699,-3.62892,1.893145,0.466416,2.452065,0.667711,-1.376916,3.233303,2.399485,0.082199,2.94797,-0.612703,-3.623208,4.904821,-4.239815,1.945407,0.652195,1.340325,2.998856,0.924138,-0.664578,0.209911,-0.504208,1.335922,-0.962422,-0.090445,-0.507523,-0.347265,-0.01496,0.37849,-0.553866,0.036736,0.185462,-0.531809,-1.45735,-0.61363,-0.151503,0.19
5.482756,-2.220063,0.622356,-0.757965,0.605743,0.4931,-0.145811,-0.298264,2.582267,-1.238172,0.137493,0.910256,-0.009098,-0.316733,0.435509,-0.650192,-0.205063,-0.649708,-0.422392,-0.410338,0.499044,1.144781,1.524212,0.131796,-0.159581,0.680687,-0.932478,0.710882,-1.115891,1.801693,0.486871,-0.694481,0.186088,-0.696114,0.478152,-0.40066,0.081832,0.029113,0.135618,0.221904,-1.025367,-0.044471,-0.812769,-0.363499,-0.233886,0.573793,-0.507296,0.92386,?
-6.666228,-3.606126,0.710111,-0.328494,-0.845993,-0.511476,1.287832,-2.337963,-1.430405,-0.646315,-1.594437,-0.98232,0.155561,0.911213,0.37837,0.903179,-0.795719,0.371363,-0.526674,1.470502,0.581296,0.291415,-0.001787,-0.972343,0.333446,0.689866,-1.018074,-0.197777,-0.412821,0.096478,0.648371,0.870654,0.739488,-0.377848,-0.347984,0.037797,-0.436441,0.567361,-0.238688,0.164279,-0.538747,0.273183,-0.035362,0.444682,0.015954,-0.406818,-0.327085,-0.531919,?
2.411885,-2.72282,-0.782544,-1.066097,2.010833,0.302634,-0.84068,-0.74742,0.185739,-0.2425,0.109308,-0.620481,1.925838,0.464971,2.255993,0.035148,0.71046,0.669654,0.71945,-0.282081,1.277768,-2.560432,-1.970555,-1.835425,0.867751,-1.897506,-0.51841,1.085367,1.338102,-2.268771,0.706534,-0.942396,1.300337,-0.504682,-1.006038,0.701654,0.157169,2.350074,0.983434,-0.860633,-1.633582,0.921453,-1.572813,-0.980001,0.219643,0.829083,-0.517334,-0.991103,?
5.133566,1.477336,-0.31637,-1.550354,-1.967474,0.097841,0.049044,0.220317,1.651587,-0.628772,0.094558,-0.066056,0.918258,0.597376,-0.936241,-0.611242,0.561781,1.489672,0.31689,-0.931228,0.950473,-2.239672,-1.033968,-0.661923,0.219332,0.103432,0.173807,-0.18155,-0.765655,1.170161,-0.230488,-1.379036,-0.347272,-0.928343,0.624307,0.53268,-0.160322,-1.762103,-1.122136,1.843995,-0.32787,-0.494626,-0.259009,0.214892,1.133281,0.377314,-0.002701,0.148366,?
-1.38556,-2.449264,-0.07401,-0.028413,0.620739,-0.229273,0.856264,1.259452,0.043953,0.560275,1.865506,-0.003478,-1.014574,-0.494372,-0.937793,-0.221164,0.028877,0.724316,0.243765,0.548806,0.58772,-0.544147,-0.158653,0.222463,1.006085,0.737172,-0.049055,-0.873634,-0.303568,-0.05383,-0.005805,-0.118704,1.080179,-0.555484,0.061774,0.124694,-1.269883,0.952515,-0.944349,0.355808,0.398258,-1.031892,-0.860562,-0.784712,0.616173,-0.231126,0.425815,-0.361438,?
6.661977,-0.088577,2.26098,0.647413,-1.367677,1.167391,-1.94852,-0.753329,0.26882,-1.170201,1.348654,-0.28829,1.257469,0.229403,1.360307,0.871147,-1.134662,0.464119,-0.573288,-1.678487,0.963786,-1.855342,-0.06255,-0.811512,-0.338943,-1.164318,-0.218432,0.073589,0.058231,0.135333,0.879699,-1.060225,-0.029661,0.28801,0.36309,-0.230252,0.086553,-0.082363,-0.094512,0.324472,0.323561,0.225283,0.224606,0.232515,-0.555832,0.052118,-0.525143,-0.431731,?
1.607133,10.473682,1.939506,-1.456075,-1.526985,2.469725,-0.942995,1.264039,1.836629,0.06314,0.065956,-0.26837,-1.479922,-1.041165,2.475605,1.488151,-1.406365,1.374828,1.029538,-0.132198,0.79794,-1.122006,-1.627336,0.117639,1.674107,-0.810544,-0.618394,-0.688689,0.644077,-1.206754,-0.125985,0.637129,-0.041127,-0.456471,-0.720974,-0.20017,-1.725994,0.032569,0.834909,0.960585,-0.568109,0.764856,-0.676037,1.869414,-0.837023,-1.229711,0.607409,-0.544654,?
-4.249095,-2.973062,1.949931,2.497266,-1.883168,0.881791,-1.600253,1.58512,-1.714624,-0.239349,0.715023,0.271132,-0.497368,0.2231,-1.979412,0.755179,-0.658707,-0.975169,-0.592168,-0.535962,0.563664,-0.262365,-0.49991,0.211874,0.541088,-0.513509,-0.080315,-0.091728,-0.291028,0.060991,-0.374942,-0.69862,0.343959,0.168139,-0.022375,0.105608,0.263466,-0.16896,-0.070064,-0.733961,0.650969,-0.488351,-0.646639,-0.103484,0.192727,-0.793011,0.79304,-0.317083,?
2.257006,1.151286,-0.84745,1.9235,1.344669,0.352696,-2.748994,-0.353445,-1.164058,0.137186,-0.238324,-0.610802,-0.310377,-1.92904,-0.422693,-0.953929,0.934619,-0.262094,-0.944318,0.989153,0.735235,0.619045,0.570603,0.840821,0.848235,0.027337,0.338732,-1.079429,0.118651,-0.599477,0.706954,1.126356,0.492978,0.020447,-0.579466,0.298887,1.189246,-0.855614,0.265188,-0.49575,0.35094,-0.433523,-0.239971,-0.369565,-0.384673,-0.363868,0.121798,-0.981682,?
-3.609798,-3.860093,-0.280086,0.804709,0.714688,0.401871,-0.940555,-0.733828,1.113809,-1.503961,-2.8531,-0.502259,0.393731,-0.276159,0.625556,0.089899,0.801693,0.657522,-0.152261,0.58418,0.775152,0.70465,-0.47941,0.059021,0.316464,0.80152,-0.060779,0.441931,-0.263843,0.066726,-0.86245,-0.78797,-0.660405,0.549379,-0.034409,-0.392811,-0.504899,0.000544,0.064402,0.696353,-0.243102,-0.499787,0.038193,-0.157436,0.198341,0.534675,-0.730169,0.038664,?
-2.781068,-6.146507,-1.318179,-1.937779,0.272031,1.15067,-2.146857,1.125673,0.216996,-1.128162,0.200105,-0.784244,0.662517,0.76669,0.19586,1.839893,-0.266775,1.211387,0.561512,-1.206025,0.841902,0.769721,-0.161569,-0.631757,-0.373475,-0.443577,0.137663,-0.190332,-0.038144,-1.015054,-1.962443,-1.00583,0.162884,-0.555624,0.252834,0.187113,0.365872,-1.303618,0.880893,-0.705964,0.251556,-0.536899,0.150882,-0.348724,-1.027009,-0.925931,0.250022,0.498776,?
2.569849,-3.973551,0.490012,-0.185475,1.04969,1.690017,-2.260176,-0.524591,2.28867,-1.49692,0.13767,1.043643,-0.8434,0.431074,-0.313945,0.458239,-1.581522,1.010462,-0.011489,-0.75972,0.694811,-1.654027,-0.483786,-0.332882,0.241575,-0.669151,-0.169823,-0.162693,-0.422211,0.501956,-0.482649,-0.521198,-0.598927,-0.318406,0.018974,0.288485,-0.042742,-0.438952,-0.20359,0.2701,-0.262018,-0.863367,0.384641,0.155877,-0.052216,-0.040229,0.487459,0.090047,?
-7.180751,0.174679,1.988209,0.931184,-1.96612,-0.018114,0.517364,-1.668545,-3.26194,-1.810078,1.879159,4.130383,0.614259,3.305537,2.344336,-0.450367,0.83038,-0.811688,-0.838796,1.227859,1.208415,-1.795752,1.686912,-0.245756,1.48896,0.766207,0.460783,2.195212,2.627197,1.678187,0.206582,0.272446,-0.120386,-1.117298,-0.341483,-0.106778,-0.321258,0.361537,-0.428304,-0.104736,-0.640941,0.091494,-0.553153,0.351394,0.614101,-0.500307,-0.024105,0.693364,0.03
-1.068982,-4.638523,-0.548767,-0.404727,0.890242,0.225793,-0.816663,0.88116,-0.061478,-0.686107,-0.764509,0.345549,0.234398,0.482131,-0.50828,0.14014,-0.19205,0.5021,0.619667,0.261547,0.787421,0.926698,-0.005364,-0.189333,0.233757,0.655884,-0.29965,-0.215112,-0.520633,-0.197953,-1.174804,-0.050457,-0.436497,-0.492783,-0.243603,-1.053867,0.01482,-0.199148,-0.499158,-0.464699,-0.567951,-0.157054,-0.34279,-0.128461,-0.421201,-0.591321,-0.00551,0.017616,?
-2.935266,-4.013613,-0.711046,-0.465753,0.635708,-0.111797,-1.040381,-0.225084,-2.202384,0.071913,1.019776,-0.457738,0.312988,0.522617,-0.273239,0.540672,-1.291517,0.429726,0.5394,0.805775,1.209116,1.059759,0.094058,-0.938453,-0.073999,0.554644,0.079207,-1.003117,0.119307,-1.046569,-0.932743,-0.404054,-0.40065,-0.244428,0.131313,1.94966,-0.957024,-0.269725,-0.994202,-0.164918,0.381074,0.160692,0.040477,0.390059,-0.251917,-0.026763,-0.077562,0.594916,?
-6.814247,5.844191,-0.904503,0.336114,-4.294623,-1.9924,2.273749,-7.714857,2.933917,0.028197,1.814036,0.887522,2.099788,-2.684997,0.383156,-2.880919,-1.935477,-0.535841,2.351328,-0.886119,2.299854,1.892725,-0.224704,-0.488446,0.069797,-1.01226,1.698885,-0.877444,-1.166147,1.330852,1.143079,0.027484,0.611117,0.696998,-2.362172,-0.271906,-2.541197,-1.195759,0.459599,-0.842642,-0.241069,0.728816,0.229033,-0.870898,-0.052031,0.397618,0.939624,1.035231,0.03
11.041065,5.779749,1.253028,-1.25573,-2.404292,-2.409746,3.999664,-0.341028,-1.173865,0.401752,-2.627972,0.471129,0.103417,0.79944,-2.049386,-1.648064,1.043565,0.533496,-0.153292,0.406706,0.450253,-1.408316,0.417524,-1.58635,-0.077594,-1.07968,-0.925778,-0.034006,-0.245737,-0.643925,-0.921035,0.000874,-0.095978,1.347748,-0.244833,-0.533343,-0.387427,1.387788,0.104671,-0.409604,0.144094,-0.632706,-0.239928,-0.39304,-1.131887,-0.334456,0.269685,0.278562,?
6.197628,-1.94175,1.715042,0.321492,0.495651,0.001845,0.06568,0.317428,-0.101727,-0.837395,-0.815733,1.486508,-0.677955,0.191598,-0.533596,-0.248938,-1.043553,0.384471,-0.298603,-0.066633,0.603032,0.394736,1.338186,-0.463979,-0.40338,-0.06537,-0.218692,-0.825387,-0.402434,0.039694,0.641157,-0.238267,0.234649,-0.209255,0.176411,-0.308906,0.211595,0.310051,0.152658,-0.072234,-0.498034,0.264336,-0.104241,-0.005707,0.843757,-0.006625,-0.427588,0.053649,?
-7.508474,-3.941563,-2.387175,-2.175069,-0.027658,-0.224852,-0.197338,-3.50703,0.58978,-1.30442,-0.541512,-2.041532,1.396036,1.574116,1.282561,1.216807,-0.771227,1.237565,0.653901,1.264137,0.919471,0.941022,0.641121,0.001252,0.555271,0.653501,-0.615313,-0.689924,-1.22764,1.089353,-2.697678,-1.084292,-1.023146,-0.35245,0.605347,-0.567332,-0.928631,0.834332,1.108215,0.656169,-0.337648,-0.372138,-0.26405,-0.334256,0.267919,0.866675,1.313613,0.154086,?
-0.962718,-4.317756,-0.571668,-0.085664,0.193912,0.111909,0.722077,2.391367,3.436484,-1.903923,-3.192431,0.228361,-0.861293,-1.825917,0.687108,-1.106368,1.926624,0.188835,-0.165226,0.049006,0.343667,0.218279,-0.073216,-0.075183,0.514784,-0.229435,-0.255624,0.377361,0.225172,-0.723086,-0.485966,-0.008515,0.036499,-0.246489,-0.438855,-1.069358,-0.042166,0.135399,-0.644891,-0.689317,-1.170418,0.532388,-0.117606,0.093913,0.499945,0.231816,-0.871525,0.002175,?
-4.52449,-4.404874,-0.378755,-0.473872,-1.0651,1.180669,-1.25563,-0.180051,2.592748,-1.495349,-1.914356,-0.243879,-0.113628,-0.860951,0.196935,-0.408971,1.461188,0.958863,-0.581075,-0.112348,-0.005331,0.371447,1.373628,0.890553,0.369719,-0.04436,0.567918,-0.836317,0.714699,-0.485809,1.01615,-1.50025,-0.66526,0.333004,0.744846,-0.081206,-0.358241,0.452492,0.697201,0.637375,0.473009,0.312168,-0.908868,-0.351125,-0.438016,-0.931167,0.150717,-0.767127,?
-4.717289,-4.296863,0.33571,0.537555,-0.725055,0.042707,0.176297,0.560671,0.239421,-0.784601,-1.056147,-0.141273,0.375568,0.93706,-1.170211,0.5407,0.682777,0.325617,-0.085515,-0.116326,0.502195,0.218589,0.017961,-0.42594,0.162339,0.046424,-0.038675,-0.298676,0.499536,-1.420305,0.710296,-0.17898,1.463441,0.133971,-0.162872,-0.517251,0.082483,-0.057604,0.116524,0.014411,0.385616,0.63846,-0.406537,-0.402498,-1.000949,-0.755534,0.102725,-0.027215,?
-7.170897,-0.491824,0.456773,2.226377,0.91905,1.99242,2.670975,-0.419134,-1.482498,0.425902,1.158976,1.336035,-0.195927,0.793047,1.125051,0.364143,0.665148,0.256719,-1.475249,-1.2256,-0.243413,-1.781348,3.412632,-1.436383,1.638402,1.415533,2.588591,1.666398,1.123673,1.129882,-1.065836,-0.336799,-0.79175,-0.612897,-1.874507,-0.535581,0.377959,0.289342,-0.054299,0.627403,-0.061912,0.151665,-0.42577,0.644042,0.220775,-0.081797,0.380537,0.212574,0.02
0.402196,-1.127065,-5.341183,-2.863838,5.172522,-1.136364,0.432906,0.962625,-0.018587,1.310268,0.701886,0.65652,-2.535656,-0.861332,-1.287744,-0.476327,-0.583678,-1.42857,-0.172175,0.134223,0.911889,-0.070102,-0.29085,-0.208449,0.582353,-0.675088,-0.109702,0.706588,0.222946,-0.154312,-0.925798,0.17031,-1.422499,2.571425,0.244374,-0.830998,-0.69535,1.5397,-0.774775,-0.341514,-0.298836,1.815481,0.661977,-0.551221,1.620433,0.019719,1.791563,0.70865,?
2.492423,-4.79203,1.302197,-1.312323,-0.468669,1.490022,-1.441282,0.400986,1.037819,-1.152763,0.682597,0.650081,-1.510392,-1.098381,0.399855,0.191531,-1.602416,-0.558841,-0.709838,-0.152043,0.636799,-0.265306,0.320962,-0.373195,0.024239,-0.626354,-0.577104,0.144341,-0.236184,-0.034809,-0.306868,-0.563486,0.200453,-0.22316,-0.371694,0.400043,0.002465,-0.153258,0.0051,0.047621,-0.447757,-0.413809,0.160475,-0.198004,-0.000379,0.370563,-0.078019,-0.140786,?
-9.794768,6.232569,-2.8912,2.473239,-2.093825,0.035666,-2.81923,-0.297484,-1.908766,0.664996,-1.128517,0.220241,0.82557,-0.346131,-0.549419,-0.825545,-1.161368,-0.169749,-1.052441,-0.031743,0.684841,-0.492167,0.490177,-0.405488,-0.49263,0.917119,-0.078234,-0.328747,-0.736048,1.299323,-0.136344,-0.232039,-2.24883,0.357286,0.451977,0.95061,0.039324,-0.908169,-0.942193,-0.706026,0.207288,-1.537519,-0.048252,-0.437647,-0.480153,1.29376,-0.327804,-0.855694,?
-1.470027,-4.21485,-0.811549,-1.342481,-0.282403,0.527115,-1.315553,0.221586,0.286011,-0.801824,0.214605,-0.222447,0.902094,0.630859,0.000583,0.233234,-0.720793,0.619171,0.722404,-0.173324,0.716208,0.454488,-0.33963,-0.087009,0.628772,0.632433,-0.329222,0.418783,-0.125786,-0.018361,1.045484,0.66035,0.434939,0.16601,-0.329763,0.367645,-0.186043,0.144179,-0.122427,1.382904,-0.07934,-0.629121,0.020555,0.826784,-0.017609,-0.459835,-1.274633,-0.920174,?
7.802878,1.104086,-1.29982,-0.716881,3.414785,-0.053152,-1.90159,-2.23107,-0.859225,0.556236,1.012657,-0.764411,2.086548,0.432403,0.023893,-0.365261,1.389908,1.327859,0.422993,0.506183,1.554886,0.676275,0.293831,-1.395235,-0.334582,0.301319,-0.398941,-0.449616,-0.313976,-0.632453,0.145437,0.582216,1.560348,0.484249,0.105511,-1.912801,0.960505,-0.860462,-0.289333,-0.189447,0.131158,0.597356,0.105789,-0.043642,-0.178251,0.301953,0.194631,0.038271,?
-8.697192,-2.106253,-2.206571,-0.634314,-1.223452,-0.725982,0.507303,-2.209678,-0.083407,-1.134836,-1.6678,-2.83912,0.365473,0.266813,-0.132051,1.185409,1.247142,1.21643,-0.953028,0.950276,0.623572,0.166088,-0.292034,0.02685,0.480656,0.906107,0.149732,-0.390017,-0.730813,1.385069,-0.567248,-2.309602,1.002985,0.292738,1.324013,-0.062357,-0.8418,1.388935,1.016018,0.302087,-0.172825,1.235762,-0.168813,-0.021822,-0.528313,1.025675,-0.574349,-0.4653,?
6.950575,-1.240263,-0.213311,-0.514182,3.08784,-0.645051,0.740179,0.422807,-0.319091,0.028496,-0.945776,1.051011,-1.144932,-0.645093,-0.070072,-0.788218,-0.165055,0.234857,-0.299471,0.568466,0.915101,0.369575,-0.020282,-1.030315,-0.18145,0.515182,-0.404498,0.284421,-0.159729,-0.367231,0.743587,-0.369541,0.273467,-0.533887,-0.023435,-0.365831,0.429346,-1.040415,-0.177574,0.20766,0.371766,0.580694,-0.153179,0.264052,0.940864,0.29983,0.05012,-1.103426,?
-7.085431,9.930093,-9.372672,-4.705657,-1.680493,-1.139887,-0.361222,0.673936,0.906248,0.887372,0.136748,-1.161757,-1.379985,-0.564715,-1.404292,0.405392,-0.487496,1.246149,-1.276767,-1.635491,0.225791,-0.314592,0.557911,-1.329362,-0.815674,1.458668,0.396659,-0.360823,0.902944,-0.130146,1.086895,-0.092857,-1.398753,1.019703,1.288613,-0.066533,-0.152318,-0.148463,-1.312995,-1.957991,0.262634,-0.05654,-0.143183,0.256774,0.096198,1.574366,-0.337335,-0.747533,?
2.397503,-1.230492,0.015773,-2.356869,0.784075,-0.232207,0.69462,-0.895596,-2.288115,1.668639,1.454255,-1.475579,2.137076,0.727085,1.076654,0.158137,1.846121,-0.282455,0.392056,-0.552085,1.127515,-0.881708,-0.882815,0.333215,1.433244,0.054594,0.08175,0.390171,0.576517,-0.256018,1.192742,1.470831,-0.418666,-0.891212,-0.335914,0.51902,-0.490874,-0.142538,-0.834568,-0.652342,-0.510782,0.617711,0.243183,-0.095268,0.18458,1.067748,0.031143,0.829784,?
-3.642266,-2.115901,2.572096,1.777299,-0.901522,5.582703,1.889909,1.61479,-0.125652,3.865851,0.009827,0.283248,-2.050803,2.362337,-0.329621,0.231039,-0.046382,-1.668494,-0.015676,0.322266,0.834952,-1.257758,1.045917,-0.021145,0.550172,0.853157,-0.898398,0.492575,1.15036,0.084373,-1.548399,0.021215,1.371343,0.175275,0.3297,-1.086193,1.80647,0.873017,0.749301,0.889232,0.315249,-0.086183,-0.459143,0.513749,-0.05762,0.422343,0.430344,-0.292386,0.05
-2.830279,-5.130324,0.667305,0.108981,-2.23591,0.548362,-1.505771,2.972772,-2.482421,-0.419575,0.733141,-0.672399,0.133145,-1.005966,0.102474,0.303305,-0.637391,-0.752442,-0.034736,-0.339866,0.862827,0.101308,-0.384024,0.255557,0.641866,-0.589114,-0.220383,-0.026537,-0.257959,-0.524549,-0.509969,-0.109201,1.13206,0.022476,-0.308426,-0.587615,0.165721,-0.224808,-0.754359,-0.38345,0.301228,0.549029,-0.40225,0.030758,-1.166195,-0.813978,0.32038,0.034359,?
7.633352,3.801189,1.100669,0.715786,-0.293168,-3.111246,4.787482,-0.95776,0.140196,-0.250919,1.616813,-0.754732,-0.028302,0.97274,0.893259,-0.074376,-1.42729,0.635737,-0.264361,1.010814,1.012613,-0.916901,-0.214466,-0.288474,0.572242,1.564279,-0.194986,-1.046818,-0.085153,0.123653,0.781736,-0.519972,0.938497,1.300249,-0.248723,0.029042,0.03819,-0.116346,-0.191423,0.991336,-1.30975,-0.595425,-0.125585,-0.756517,-1.697625,0.522047,1.086056,0.296589,?
5.757952,6.207466,0.485097,-0.340183,-5.344602,-0.060759,-0.073434,1.876781,-0.480111,-1.246334,-0.883672,-1.850133,-1.374405,-1.616914,-0.656884,0.703684,-0.586901,0.206089,-0.300795,-1.157283,-0.231183,0.064654,0.490137,0.724192,1.086337,-0.806772,-0.404119,0.500769,0.461087,-1.214343,-0.887139,0.878356,-1.043814,-1.163737,-0.987875,0.926945,-1.028734,0.785291,1.203086,0.592801,0.296595,-0.681909,-0.150228,0.261514,-0.122432,-0.303045,-0.394853,0.061524,?
0.48383,-4.419203,-0.100134,-3.933589,-1.586776,0.477751,0.943623,0.253765,1.883688,-0.431662,1.321412,-0.193222,-1.301133,-1.427336,0.297796,-0.748528,-0.035272,-0.611793,-0.436089,0.456356,0.379075,0.436877,0.922808,-0.316857,0.31708,0.146937,-0.665947,0.103076,0.080288,-0.154306,0.254016,-0.154324,-0.241407,-0.275369,-0.08346,0.658422,-0.400145,-0.121203,0.23185,0.196425,-0.086643,-0.127676,-0.080926,0.164988,-0.037928,0.112689,-0.400436,-0.037276,?
1.488975,-2.942285,-1.14016,-3.34768,-0.555818,0.591061,-0.343021,-0.016401,1.993349,0.078366,2.105829,0.244117,-0.601438,-0.594507,-1.69014,-0.703427,0.509663,-1.025441,-0.544413,-0.162656,0.61232,0.995391,0.604788,-1.369523,-0.596282,0.422261,-0.842986,1.104426,-0.206455,0.433847,0.095289,-0.733197,-0.026482,0.626681,0.280979,1.038747,-0.270465,-0.685726,-0.634849,0.708938,0.527688,-0.843053,-0.640399,-0.119234,-0.657966,-0.165496,-0.449335,0.566346,?
-2.499417,-0.551408,1.208221,2.256556,-1.984775,3.033574,-2.307494,0.242482,1.285412,2.987123,0.348393,-0.115819,-2.123389,3.941618,-1.72505,-0.516901,1.876571,0.14386,-0.825471,0.119974,0.614829,-0.505867,0.264953,0.512931,-0.264523,0.292455,0.190033,1.029706,-1.469943,-0.62544,-0.773794,-0.048844,-0.787856,0.18447,0.113269,-1.344649,0.45794,1.363719,-0.072608,1.169602,0.481052,-0.284345,-0.346042,0.915548,-0.193826,0.434585,0.781335,0.152047,0.04
4.761449,1.713649,-5.119233,-3.181603,7.404866,-0.83651,-0.11849,-1.888345,-0.130595,1.828355,0.391488,1.044475,-2.060777,-0.55908,-0.676834,-0.87275,-0.681306,-1.468907,-0.58252,1.213284,1.040606,-0.021412,0.414961,0.066981,0.827683,-0.703031,-0.469591,-0.009797,-0.189606,-0.148207,-0.21712,0.341197,0.319916,1.406144,-0.080117,-0.155445,0.024977,0.593428,-0.377277,0.045343,-1.743002,1.283087,0.760384,-0.445268,0.598332,-0.018077,1.061451,0.666788,?
-6.260717,-3.121659,0.915483,0.921793,-1.456542,0.130051,0.341211,-1.530167,0.205491,-1.054678,-1.453819,-0.457786,-0.102354,0.22345,0.686228,0.515466,-0.310232,0.235939,-1.188152,0.436134,0.442617,-0.178185,0.237734,-0.783523,-0.191457,0.491667,-0.398439,-0.224719,-0.033463,0.188188,0.708389,-0.915678,-0.439309,0.336215,0.680942,0.276068,-0.350866,0.001081,0.254236,-0.426095,0.50457,0.405803,-1.157142,-0.593844,-0.108952,-0.554368,0.230795,0.116829,?
-2.615892,-2.472426,1.459375,2.967623,-0.096105,1.071967,-1.774257,-1.594363,2.286624,-1.701293,-1.439173,0.172788,0.731573,0.249439,0.067028,0.011774,0.725082,1.292518,-0.63577,-0.088808,0.531358,0.031025,0.499569,-0.86904,-0.568545,0.675877,-0.086805,-0.025641,0.040141,0.332737,0.813894,-0.933317,-1.131841,0.763181,0.505104,-0.400625,-0.073745,0.557233,0.247732,-0.216332,-0.06844,-0.048625,0.000072,-0.043381,0.094188,-0.518013,0.388776,-0.007585,?
-6.524888,-3.944244,-0.588407,-0.953802,-1.01562,-0.487806,0.376741,-2.375827,-1.583519,-1.019266,-1.301221,-1.695866,-0.105807,0.846555,0.251365,1.532146,-1.118212,0.443962,-0.556052,1.620971,0.804787,1.043252,-0.400633,-0.34386,0.371981,1.597024,-0.38201,-0.527342,-0.696745,0.211516,-1.002567,0.163542,-0.496892,-0.524266,-0.166311,0.126814,-0.485228,-0.046519,-0.915315,-0.236256,-0.343521,0.770988,0.345942,0.19441,0.063001,-0.19318,0.243938,-1.020585,?
-4.307151,-3.998797,-0.105685,-0.903771,-2.004237,0.297864,0.091325,1.512448,-0.440525,0.155276,-0.495872,0.570424,-0.526048,1.369269,-4.2963,-0.190627,1.031121,-0.265694,0.465323,-0.441766,0.263398,-0.25407,-0.303466,-0.569433,0.610635,0.017576,-0.427389,0.411754,0.410236,-0.722312,0.119615,0.210023,-0.318409,-0.219411,-0.529989,-1.495734,-0.059587,0.834208,-0.017028,-1.012549,0.056935,0.191629,0.087243,0.244583,-1.327534,0.550072,0.122433,0.232221,?
-4.442375,-3.304338,-0.436366,-0.453919,0.040099,0.179957,0.382696,-1.43344,1.753382,-0.582984,-0.029861,-0.65171,-0.711433,0.11298,-1.387025,0.194434,1.017161,-0.081636,-0.494395,0.813502,-0.04755,1.950836,1.217925,0.325361,0.303511,1.252832,-1.079654,0.931689,0.029224,-0.39452,-0.204344,-0.401612,-0.284349,-0.225038,-0.452292,-1.32876,0.747686,-0.350983,0.685362,-0.354108,-0.302696,-0.61822,0.114081,-1.053052,0.319445,-0.101487,1.126517,-0.591125,?
-2.294973,13.691541,-5.80417,-1.213639,-2.91878,3.511198,2.319518,3.150024,-3.567752,-10.106372,2.365456,5.092977,-1.913512,-0.153544,1.489611,0.729452,1.682271,1.495055,1.180079,4.254064,0.376319,2.014085,0.910069,-2.614154,3.697614,-2.727217,1.92196,1.772238,1.862963,2.4913,0.773854,-0.711282,0.008482,-1.769901,-0.454801,-0.599408,-1.586116,-0.532994,0.462915,-0.436135,1.5173,1.117878,1.773415,-2.827007,-0.194865,-0.803745,-1.019331,0.69726,0.02
1.207453,-4.699542,-0.166664,0.042802,1.537061,-0.455232,0.616098,1.631513,1.48298,-1.298866,0.057438,1.023009,-0.136829,0.527838,0.968742,0.230898,-1.849925,0.39453,0.661639,-0.345308,0.783402,0.8923,0.315349,0.391277,0.583916,1.192325,-0.153152,-0.629458,-1.167699,1.094613,0.458985,2.597295,0.514977,-0.01939,0.008121,-0.359869,-0.034681,0.780006,-0.78408,-1.122593,-0.329525,0.370929,0.047969,0.532236,0.011256,-0.64587,-1.090719,0.096695,?
-6.029077,-3.870038,-0.979658,1.45052,-0.393604,0.502582,-1.203292,-0.293984,2.403149,-2.051553,-4.186715,-1.025991,1.743808,-0.099189,0.81671,-0.245077,2.744116,1.09231,-0.390951,-0.137311,0.476524,0.344157,-0.196231,0.195173,0.260291,0.490502,0.132784,0.312547,-0.428823,1.057591,0.372171,0.480826,-1.045962,0.162741,0.153277,-0.906038,0.034132,-0.348769,-0.140043,0.638443,0.137431,0.183231,-0.654437,0.037116,-0.980236,-1.106615,0.270829,-0.706082,?
-0.208433,-3.809249,0.27165,-0.873738,-1.537805,1.337692,-3.573529,1.799005,-3.271986,0.662011,1.999836,-0.861592,-0.915167,-2.635555,-0.748525,-0.837055,-0.00093,0.769098,-0.070223,1.081977,1.206206,0.877572,-0.044458,-0.154189,0.230613,0.913903,0.570995,-0.656698,-0.058042,-0.433142,0.233835,-0.548219,0.081556,0.54829,-0.039354,0.632089,0.456973,-0.872394,0.673908,0.641964,0.066119,-0.121005,0.388629,0.056082,0.394249,-0.386505,0.078393,-0.130143,?
3.567512,3.722367,-1.750915,2.214885,2.202313,0.182913,-3.710299,-0.24199,-2.691185,0.564491,-0.414581,-1.378988,1.572044,-0.667531,-0.674447,0.031562,1.398847,0.357494,0.113156,-0.553622,1.229449,0.389506,-0.476616,0.769052,0.753195,-0.510982,0.466302,0.235648,-0.545301,0.392377,-0.962057,1.031694,-0.304769,0.475161,0.026788,0.380255,-0.350504,-0.476468,-0.489113,0.561433,-0.540044,0.503531,0.046812,0.105224,0.834047,0.218728,-0.99267,0.856176,?
-5.926753,-5.03364,1.599673,0.009886,-3.009126,0.300387,0.001859,0.74157,-1.947399,-0.506797,-1.115925,-0.054386,-0.246947,0.382941,-1.279304,0.181436,-0.490332,-0.449207,-0.296699,0.310064,0.583523,-0.124932,-0.14682,-0.674772,0.216952,-0.137277,-0.481223,0.02983,-0.241848,-0.015237,-0.479009,-0.721801,-0.399141,-0.322836,-0.010626,0.138096,-0.737347,0.25396,-0.62611,-0.589282,0.008986,0.950098,-1.011284,-0.044575,-0.642301,0.597931,-0.48827,-0.265658,?
0.78029,1.094691,0.723679,4.051899,1.880815,1.972026,-4.293979,-1.871004,1.6143,-0.587517,0.018774,1.886406,1.246521,0.843914,-1.452466,-0.827163,-0.406839,-0.477992,-0.147621,-0.575291,0.59555,-0.781387,0.694719,-0.243788,0.058897,-0.486111,-0.641838,0.109117,-0.175233,0.206703,0.921936,-0.429407,-0.835437,-0.907862,0.191209,-0.220296,-0.081971,0.31174,-0.420592,0.169388,-0.562773,0.051599,0.260177,0.375932,-0.446546,-0.416976,0.084595,-0.04369,?
8.448221,1.270942,-0.082435,-3.141627,0.100897,-1.335636,2.775056,-0.612409,-0.761075,0.721005,0.124986,-0.571139,0.574579,0.251697,0.852149,-1.066334,0.688621,1.679661,0.354228,-0.394449,0.432417,-2.908303,0.680446,-0.721476,0.867442,-2.567388,-1.121242,-0.041252,-0.36081,0.234322,-0.233996,0.320103,0.544118,-0.35508,0.170072,-0.122215,-0.22696,0.584476,-0.304715,-0.585116,-0.062339,0.286036,-0.155755,0.137791,-0.00097,0.22654,0.771623,-0.606379,?
-5.614515,5.866165,8.354084,0.708199,6.587927,4.793167,1.821156,1.447265,-0.551033,1.151715,0.807296,3.986078,1.732125,0.43286,2.421795,1.23704,2.260271,0.684206,-1.615006,-2.755484,-1.664619,-0.737931,-0.030187,0.10804,1.727352,1.708495,-2.794313,-0.848402,-1.071795,-0.89051,0.256093,0.20834,-0.691025,-0.601499,-0.438481,-0.380202,-1.685926,-0.293598,0.114251,0.538422,-0.826399,0.120716,0.836051,-0.642908,0.217541,-0.160706,-0.187871,-0.521384,0.17
2.569452,-2.498032,1.537669,0.769603,1.021172,-0.074365,0.4653,0.909741,-0.613311,-0.167573,-1.180874,2.90962,-1.150585,0.690885,-1.323629,-0.893704,-2.159872,-1.265513,0.2471,0.534175,0.711741,0.385335,0.23548,-0.435512,0.182504,0.357951,-0.61599,-0.060038,0.079645,-1.274373,0.224185,-0.334377,-0.066048,-0.071295,-0.281221,-0.254132,-0.515377,-0.375444,-0.967844,0.469872,0.337224,-0.005479,-0.37512,-0.177401,0.785572,0.213882,0.784716,-0.708125,?
-1.177413,-0.898027,0.559866,3.926439,1.012511,-0.288554,-0.177526,1.163622,0.568083,-0.55407,0.032123,0.38263,-1.447554,-0.708608,-2.516582,-0.233485,0.527833,0.082069,-1.037557,-0.280377,0.169793,-0.605572,0.860519,-0.279855,-0.06018,-0.798106,-0.369626,-0.244482,-0.11225,0.31926,0.750583,-0.48762,0.229782,-0.128555,0.078191,-0.418029,-0.184141,0.194455,-0.077258,0.62885,0.736293,-0.506382,0.625277,0.443042,-0.144105,-0.191913,0.1112,-0.679371,?
-5.251558,-4.991241,-0.801754,-0.376292,-0.903083,0.859845,-1.371126,0.233093,1.463057,-1.518652,-1.688934,-0.375784,0.671611,1.448134,-1.857901,1.104041,1.087656,1.824623,0.082072,-0.832013,0.475241,0.631163,0.33943,-0.389286,-0.451273,0.764875,0.3072,-0.371768,-0.50507,0.885272,0.168469,-0.012915,-0.687876,0.08988,0.342025,-1.023641,-0.218997,0.008478,0.020962,0.444451,0.245255,-0.203011,1.367861,1.127003,-0.923133,-0.843965,0.721373,-0.358348,?
2.238251,-3.976277,-0.556794,-2.869072,0.152416,0.6461,-0.279414,0.250426,1.147737,-0.346861,0.949463,-0.255643,-0.771692,-0.238952,0.056378,0.373193,0.162351,0.69779,-0.105544,-0.249534,0.748742,-0.364881,-0.652765,-0.545432,0.330667,0.786285,0.282554,0.045633,0.610494,-0.407605,1.146994,0.057578,-0.181408,-0.08903,-0.316594,0.011714,0.414199,-0.698707,0.726883,0.433333,0.751227,-1.058335,-0.461615,-0.565159,-0.410909,0.392787,0.227985,-0.399755,?
9.460402,2.501995,-0.912656,-2.467187,0.686267,-1.180738,1.579742,-1.567237,0.046328,0.437131,0.158288,-1.17755,0.815771,-0.128397,0.259946,-0.743504,1.741666,0.343635,-0.452564,0.269436,0.785843,-1.147812,-0.024268,-0.380841,0.651419,-0.52092,-0.648436,0.295148,-0.362594,0.417639,0.003741,-0.778134,0.483753,-0.228033,-0.126226,-0.87074,0.754168,-0.157891,0.323795,0.0622,0.157657,-0.620114,-0.647954,-0.340145,-0.805418,0.056349,-0.013361,-0.569746,?
-8.525276,-3.135055,-0.007818,-0.217273,-1.705125,-0.946066,1.473688,-3.174746,-1.311264,-0.92906,-1.016894,-2.234157,0.362245,0.146757,1.875777,0.780581,-1.029245,-0.236012,-0.7978,2.109482,0.415823,0.35579,0.685805,0.969321,1.237787,0.852376,-0.786282,-0.877007,-0.789879,0.525384,-0.513109,-0.303039,-0.122826,-0.573348,0.121246,-0.362114,-0.656985,0.359653,-0.234642,0.518623,-0.779848,0.369274,-0.028513,-0.174194,0.085069,-0.282265,-0.316347,-0.060715,?
11.147648,1.697989,0.402942,-2.000805,1.399904,-1.650836,2.57922,-1.865305,-1.17198,-0.357714,-2.277778,-0.037339,-0.059525,1.877119,0.454676,1.162586,-0.178171,0.517418,-0.49616,0.636609,0.655911,0.846647,0.444646,1.815008,1.157414,1.401356,1.161248,-2.504952,0.054278,-0.428505,-0.012216,-0.476468,0.202272,-0.829862,-0.103887,-0.15078,0.843116,-0.518263,-0.493784,-0.906894,-0.696299,-0.584207,-0.416367,-0.717268,0.067518,-0.111713,0.987273,-0.451148,?
8.54293,0.713722,-1.701358,-0.977895,-1.313951,0.690538,2.9253,0.140422,1.11371,5.785931,-0.946148,-1.071336,-0.013661,1.753014,0.452646,0.321262,-0.699577,1.952659,-1.96671,0.28389,-0.636696,0.104551,-0.670674,-1.87962,2.681267,0.129658,2.901239,0.196763,-1.401778,-0.065579,0.197471,0.089088,-0.910323,0.144083,-0.42083,-0.423938,0.307082,0.383086,0.495764,-0.25984,0.001221,-0.136326,-0.06518,0.730347,-0.527916,0.048653,-0.232085,-0.188419,0.01
-9.52663,5.912462,-5.257,1.334248,-0.429595,-0.591834,-1.74385,2.368525,-0.775521,0.745766,-2.36885,1.602855,0.505549,-0.516868,-0.575516,-1.862686,-0.902745,0.025981,0.20069,-0.109201,0.409695,0.136747,0.705852,-0.449151,-0.13496,1.022952,-0.439949,-0.149702,0.20554,-0.772594,0.900423,-0.312125,-0.368505,-0.180117,0.417334,-1.321622,0.564062,-0.127068,-0.364208,-0.228118,0.125852,-2.061532,-0.360099,-0.181986,0.34048,0.295639,0.514285,-0.786503,?
-8.343028,0.70651,-4.576019,-2.032113,-2.380636,-0.912437,-0.597936,4.243644,-3.565663,0.979118,-1.509795,0.795399,0.8075,0.165598,-0.697057,-0.694149,-1.065771,-0.062089,0.151137,-0.80688,0.632767,-0.101986,0.16229,-0.15282,-0.022006,0.221497,-0.202522,0.185248,-0.811911,0.123581,0.000361,-1.593315,1.135433,-0.036011,0.558755,-0.625345,0.571587,0.047368,-0.367064,0.244926,-0.04283,-1.349911,-0.483055,0.2908,-0.370334,-0.548319,-1.293531,-0.31511,?
3.415792,3.373196,1.293117,-0.36371,-2.849849,0.591763,1.102144,-2.297984,0.272985,0.177953,1.239383,0.987917,0.054257,2.87714,2.280042,-2.626624,1.428021,2.256751,-4.062306,-1.384745,-0.042946,2.49364,-3.756267,-0.099303,0.730362,-0.848799,-0.221612,-0.887254,0.331108,-0.612253,-1.681504,0.639942,-0.520065,-0.138838,1.10985,0.17982,1.035591,0.749075,-0.564142,0.970718,0.252242,-0.589957,0.116774,-0.164198,-0.791753,0.076688,-0.42242,-0.290238,0.02
-2.910126,-4.017734,0.26914,-1.40633,-1.126502,1.135271,-0.757587,-0.061208,0.508215,-0.150449,0.656895,0.235149,-0.980881,0.498021,-2.38627,0.557497,0.233564,0.049206,-0.465693,-0.282174,0.426184,-0.486153,-0.058483,-0.475484,0.062292,0.238217,-0.193298,-0.118884,-0.066073,0.227515,-0.02261,-0.900244,-0.721907,-0.240789,0.131187,-1.234996,-0.248807,0.348526,0.014048,-0.174885,0.336953,-0.034487,-0.070972,-0.233079,-0.386866,-0.42438,0.868442,-0.397297,?
3.083342,-2.106806,-1.83,-4.064914,-0.575335,0.628904,-0.36991,0.417811,2.453425,-0.779842,1.137312,-0.858815,0.614358,-0.919555,1.499414,0.07162,1.087922,1.397771,-0.176959,-1.560107,0.104081,-0.099989,2.849302,-1.200146,-0.908173,-2.924759,-0.842243,-0.570169,0.936985,-1.444117,-0.72826,-0.873101,-0.375321,-0.921594,0.056314,0.316319,0.176276,-0.387607,-0.704873,-0.7925,-0.156746,-0.836807,-0.898027,-0.340496,0.448041,0.029498,-0.01465,-0.776235,?
-9.543836,8.373491,5.56181,-4.590942,1.052165,-11.559019,-7.41236,-0.225834,-0.468199,1.63045,-0.978645,2.275361,-4.401106,-0.801931,-0.312879,3.1897,3.039899,-1.20628,1.885413,-2.020216,0.123673,0.006228,-1.928085,0.445404,1.094463,-0.923257,-4.339792,-2.108636,0.363991,1.924044,2.172615,-1.70022,-0.128781,0.408857,-2.426134,-0.607089,-1.14726,-1.610942,-0.176493,-2.23086,1.515225,-0.25586,-0.137512,-0.306182,0.054148,0.561351,-0.646868,0.400352,0.34
4.221331,0.116473,0.007252,-1.323616,-0.177746,-0.206296,1.074902,-0.510639,1.586617,-0.351567,1.001992,-0.365135,-0.5753,0.270983,-0.162951,0.476765,-0.123481,-0.024998,-0.515983,-0.364426,0.922135,-1.843173,-1.307033,0.534597,1.146655,0.529512,0.738412,-0.743743,0.075879,0.288653,0.767937,-0.290396,0.001038,0.395327,0.146526,0.394921,-0.37343,0.203138,-0.651442,0.402768,-0.428462,0.373921,0.389967,-0.133129,0.569802,0.213415,-0.509647,0.168231,?
-2.567987,-1.951198,-0.176183,4.400219,3.274625,-0.673434,0.09333,1.060897,0.224547,-1.045779,-3.691024,-0.609332,0.655987,-0.717212,1.220562,0.419293,2.219538,-0.354569,-1.025727,-0.588435,0.713241,0.088474,-0.752091,0.475989,0.511557,-0.764959,0.570436,0.337445,0.080276,-0.14251,-0.400158,0.187744,0.415053,0.156973,0.025312,1.721813,-0.646989,-0.548982,-0.167803,-0.121089,0.708433,-0.483468,0.010664,-0.528939,-0.324997,0.147721,-0.139563,0.266895,?
4.933654,0.890168,0.483403,-2.072738,-2.768173,-0.689922,2.23912,0.709022,2.064365,-0.30014,-0.110296,0.139892,0.509778,-0.261972,-0.637239,-1.73416,1.288824,-0.482148,0.131434,-0.153731,0.502926,-0.918292,0.611654,0.171518,0.74834,-0.670703,-0.117733,-0.796503,-0.389109,0.081545,-0.700344,0.385923,-0.488283,-0.121769,0.165895,0.751364,-0.500693,-0.513743,-0.650417,0.315072,0.081428,0.106638,-0.047313,-0.050886,0.249822,-0.343234,0.340782,0.691353,?
-0.200066,-0.597438,-1.392563,6.547781,5.694566,-2.565474,1.555403,1.777711,2.482393,-0.923124,3.09365,-1.027963,0.489675,-0.097844,1.109041,0.759409,-0.160534,0.611938,0.453537,-0.648652,1.114569,0.418578,-0.035514,0.25965,0.258872,0.863392,0.241315,0.075664,-0.013368,0.320022,-0.238054,-0.207228,-0.967452,1.172318,-0.07072,-1.251357,0.218092,-0.277066,-0.056201,0.468985,0.072028,-0.621088,0.240827,0.110594,-1.059702,0.12942,0.16727,0.433204,?
-1.398438,-3.079812,-0.31418,2.189429,-0.037342,3.659739,-0.606286,-2.006821,-0.354129,2.889339,-0.146205,-0.265289,-3.25168,1.170445,1.401983,-2.005273,-0.418998,-0.845603,0.148417,-1.63729,0.747036,0.106505,0.342721,-0.685432,-0.092272,0.593847,-1.332217,-0.698752,1.844918,0.392027,-0.513824,-0.683187,0.779479,-0.608435,-3.20828,0.700685,0.979931,1.023501,-0.700859,1.491412,0.204291,0.318916,0.797394,0.233573,0.564153,0.011743,-0.142108,-0.875033,0.01
-5.910258,-0.951304,4.86719,3.079318,0.685041,2.210852,2.210999,0.546381,1.37505,4.283849,-1.912855,-1.030802,-1.499489,1.820059,0.579811,-2.619233,0.615377,0.621702,-2.872995,-1.530814,0.131133,1.766122,-1.79796,0.169796,-0.121637,-2.088649,-0.01193,-0.651039,-0.516809,0.848306,1.083789,-0.499691,-0.543044,-0.056919,0.105653,-0.444567,-0.044566,0.285194,-0.361505,-0.219045,0.474483,-0.96352,-0.16868,1.718406,0.296481,0.456387,-0.027382,0.615715,0.05
-4.332954,-2.977746,-1.336678,-3.840731,-0.592997,0.42658,0.657678,-0.490761,-0.095567,0.668756,0.878996,0.060992,-1.779809,0.961411,-2.650284,0.945582,-0.286297,0.771569,-0.40279,-0.071622,0.032012,0.192331,0.716482,-0.12935,0.279689,0.696836,-0.31748,-0.230955,0.099546,-0.258089,0.430836,0.679144,-0.341154,-0.162543,-0.356136,-0.511711,0.190146,-0.493689,-0.054457,-0.087668,0.027192,-0.820136,0.014527,-0.683083,0.259125,-0.545318,0.276048,-0.570367,?
1.903076,1.544701,1.701223,4.062776,0.45951,1.258236,-2.795942,-0.044202,0.933419,-0.386841,0.192029,1.697075,0.520855,-0.022568,-1.57671,-1.248321,-0.23708,-0.583866,0.238981,0.043465,0.839216,-0.062342,0.448728,0.11825,0.348342,0.43155,-0.270989,-0.537086,-0.759252,0.247817,-0.115743,0.18377,-0.319478,-0.545929,0.417482,-0.968729,-0.504434,0.427507,0.33933,0.003749,0.032442,0.221035,-0.410981,-0.245448,-0.642175,-0.569508,0.330839,0.920668,?
-7.232309,0.53072,-5.476294,-3.123924,0.591936,-0.396998,-0.954579,0.116412,-1.347064,1.639973,-0.932731,1.024564,2.156464,2.020625,-1.776952,-1.381678,0.891691,0.07124,0.935387,-0.767436,0.225092,-0.75842,1.421133,0.210854,0.657754,-0.429716,0.000056,-0.234437,1.180476,-1.184106,1.852892,-1.973341,-0.498176,-0.597456,0.683748,-0.143859,0.026616,1.303558,-0.201638,-0.297987,-1.255183,0.439338,-0.276002,0.103352,-1.598689,-0.204439,-0.936167,1.17703,?
-1.281695,-3.610659,-0.421282,0.288722,0.564362,-0.193378,0.293811,1.826366,0.296194,-0.428593,1.604375,-0.625314,0.998681,0.606502,0.539138,1.01785,0.085405,0.307684,0.493789,-0.958569,1.083859,-0.782296,-0.731932,-0.338256,0.454858,-0.036939,0.168431,-0.709644,-0.320001,0.001475,-0.189425,-0.712306,1.696831,-1.211512,0.646958,-0.343703,-0.950007,1.078721,0.447894,-0.636731,1.284833,-0.316709,1.421705,0.91954,-0.47042,0.476006,0.45485,-0.096792,?
0.920357,-1.804753,-1.895949,-0.552489,4.097642,0.864662,-2.17468,-1.736802,0.363551,0.683711,0.909574,0.479338,-0.242019,-0.103383,-0.57928,-0.499811,0.20171,-0.647527,-0.143373,0.590514,0.725001,-0.172083,-0.185529,0.001543,0.960676,-0.11527,-0.501958,0.395425,0.364748,-0.653445,0.759308,0.22512,-0.32656,-1.030605,-0.537171,0.391827,0.517915,-0.274062,0.567486,-0.15241,-0.275069,-0.066623,-0.241446,-0.026919,-0.125957,-0.604081,0.121757,-0.728916,?
-1.531242,-2.766323,-1.596127,0.167821,-1.009522,2.846836,0.844267,0.006502,2.165849,3.028044,1.014924,0.462353,-1.736333,1.001084,-0.160203,-0.352147,-0.275688,0.973461,-1.645616,0.781286,0.570626,1.720379,0.298034,0.355183,0.519608,0.365002,-0.533488,-0.419425,2.217416,1.006499,-0.875589,0.669195,0.308111,0.160934,-0.068658,-1.205608,0.187739,0.25685,-0.009763,0.605442,-0.424358,-0.600938,0.350734,-0.592305,0.269486,-0.105887,-0.290982,-0.132576,0.02
-3.221985,-4.636394,0.480425,-0.919395,-2.349186,-0.027688,0.746108,0.889645,-0.318412,-0.849197,-1.473325,-0.261837,0.084786,0.752355,-1.839772,0.206718,0.792812,0.288409,-0.376039,-0.885603,0.095581,-0.90388,0.905207,-1.692519,-0.388121,-2.637841,-1.525447,0.592684,0.009381,-0.465955,0.015345,1.770476,0.588783,0.157645,-0.878229,-1.418983,0.245602,0.027534,-0.940196,0.065682,-0.160875,0.846208,-0.800076,-0.39983,0.289848,-0.046203,0.526357,-0.824725,?
0.220056,2.730243,1.972096,1.69783,-1.516361,3.977956,0.980116,-1.977995,-3.044972,-4.662608,0.913858,0.179936,-2.731869,-3.381242,-0.547536,0.786534,1.676666,-1.60787,3.439876,-4.141316,3.594341,-1.445755,-0.423465,2.858948,-2.654691,0.236971,1.849742,1.389404,-1.518272,0.106803,-0.602552,0.339016,0.610645,0.280743,-0.818236,-0.278244,1.693894,1.364704,-0.346768,0.052291,0.318668,-0.358046,-0.896687,0.929935,-0.046915,-0.281562,0.454466,-0.859749,0.04
0.781146,-4.133516,0.999261,0.370718,0.413964,-0.046521,-0.179161,1.852333,-1.680288,-0.384306,-2.466686,1.071907,-0.225699,-0.52007,0.313535,-0.786562,-0.309909,-0.492761,0.205913,0.39622,0.815877,0.629224,-0.251793,-0.431193,0.230981,0.122241,-0.199725,0.523011,0.415237,-1.36597,0.00064,0.095368,-0.552755,-0.027007,-0.773996,-0.06171,0.200652,-0.183585,0.000103,-0.291164,-0.573431,0.268626,0.281904,-0.140365,0.165514,0.733169,-0.582972,-0.244386,?
7.572645,0.780712,0.733802,0.927048,1.785382,-0.60551,-0.087126,-0.86468,-0.994772,0.170045,-0.856227,1.352474,0.020205,1.303033,-2.07919,-0.486162,-0.03477,0.929621,0.129969,-0.31886,0.475344,-0.811208,2.308048,1.536266,0.826951,-1.388816,1.344775,-3.478678,0.165495,-0.309474,0.504306,0.448381,-1.203258,-0.023411,0.517847,-0.09289,-0.12987,0.527506,0.121612,-0.481566,-0.170399,0.477748,0.392479,0.328548,0.313284,0.223896,-0.488386,-0.337751,?
1.537186,2.115442,-0.350512,-1.73266,-3.239755,-0.088309,0.948048,0.38264,3.030631,-0.28363,1.550276,0.07301,1.314635,-0.119679,-0.654473,-1.454167,0.827858,-1.38096,0.060176,-0.949104,0.339269,0.574141,1.265111,-0.387462,-0.058954,0.075728,-0.946204,0.929493,-0.450962,0.449704,0.140999,0.054202,-0.219225,0.328565,0.703021,0.823864,-0.79633,0.22918,0.383011,0.640439,0.708069,0.513177,-0.079966,0.159359,0.011857,-0.461801,-0.378229,0.897729,?
-1.653677,-3.547197,-0.735079,2.009278,2.27221,-0.29463,-1.02705,1.216142,-0.54725,-0.344006,1.39857,-0.773451,0.471359,0.309787,-0.763529,1.035285,0.324502,0.929617,0.282198,-0.245404,1.063035,0.732697,-0.232615,-0.54508,-0.047658,0.28619,0.392525,-0.691431,-0.31343,-0.128991,-1.021366,-0.194612,0.384294,-0.531832,0.00305,1.213189,-0.1693,-0.395418,-0.48048,-0.5434,-0.417584,-0.171259,-0.468219,-0.267118,-1.07377,-0.642057,-0.216124,0.338725,?
-1.681586,0.144116,-2.689042,-0.167895,0.981712,0.208205,-2.048078,-0.166808,-0.391189,-0.64475,-0.566914,-1.238567,1.87638,-0.200406,1.773691,0.347801,0.286829,-0.101153,-0.439751,-0.424353,1.033893,-0.277705,0.042281,0.473887,0.549489,-0.81057,-0.368149,-0.196191,-0.366248,-0.162348,0.287388,-0.496741,2.724276,-1.401024,-0.032115,-0.023999,1.097632,-3.38141,-0.617107,1.67704,-0.671082,-0.090484,-0.184698,-0.22157,-0.342594,0.33482,0.475769,-0.212876,?
0.450754,-5.426879,-0.254136,0.539928,2.026247,0.416617,-1.078386,1.424652,1.51036,-1.555842,-1.065121,0.799506,0.7408,0.398633,2.096859,0.316726,-1.307474,0.113234,0.991687,-0.628363,1.440678,-1.887236,-2.033746,-1.147812,0.543611,-1.775679,0.154138,-0.11428,0.045906,-1.39182,-2.31011,0.284009,-0.110811,0.495444,-0.379434,0.685785,-0.135268,0.601086,0.601795,-1.118763,-0.021947,0.186459,-0.220191,-0.721188,0.147938,-0.137089,-0.511266,0.137798,?
3.113528,0.135315,2.06372,0.949054,-1.716812,1.466997,-2.946705,1.615667,-1.861052,0.246161,1.57458,0.038788,0.699777,-2.254608,1.472443,-1.001214,-0.445608,0.514932,-0.22958,-0.338828,1.0283,-0.270759,0.927092,-0.416944,-0.260616,-0.185599,-0.246515,-0.43749,-0.690083,0.336399,0.258946,-0.163022,-0.023068,-0.361723,0.551593,-0.496391,0.170351,-0.406515,0.224855,-0.545362,0.46509,0.177327,-0.011753,0.041651,-0.963729,-0.622236,-0.252214,0.030549,?
1.077241,-0.676769,-0.308075,-0.672504,-0.653718,0.672681,-0.685332,0.159349,1.92225,-0.670922,0.786743,-0.300216,0.967167,0.168477,0.184603,0.392769,0.967798,0.423861,-0.280754,-1.034325,0.687567,0.340678,0.266158,-0.247091,-0.164897,0.672876,0.06717,-0.091474,-0.1659,0.345572,0.668956,-0.829933,0.533535,-0.47672,0.88974,-0.343732,-0.050224,0.224394,-0.120282,-0.208558,0.374934,0.453979,-0.692811,-0.400899,0.715423,-0.467002,0.271395,-0.413491,?
-7.339541,5.017793,14.704884,-3.436723,8.95812,2.848463,0.420674,1.640399,2.278879,2.822189,-1.202232,-3.486966,-0.951159,1.949737,-0.33982,-1.823226,0.63389,-1.488191,-2.642201,-1.806041,0.58448,-1.353195,2.684661,0.640349,-2.450372,1.579035,1.823611,2.463054,-3.071671,-2.365644,0.56963,0.989974,0.013778,-1.251504,1.248816,-1.014887,-3.074763,-0.219529,0.087946,0.197873,-0.758714,-0.461022,1.64854,-1.325374,0.22437,-0.850306,-1.097735,-0.878053,0.28
-3.72343,-3.593554,-1.043255,0.386031,0.780256,-0.717638,0.351326,-1.202646,0.054089,-1.554178,-3.825448,-1.146591,1.61382,0.131115,2.424559,0.308702,0.77644,-0.12813,-0.688668,-0.25499,0.647481,-0.512254,0.274869,-1.043607,-0.234718,-2.754405,-0.804336,0.617529,-0.39493,-0.308555,-2.330836,0.091716,-0.428998,0.997363,0.300145,1.078578,0.234364,-0.46101,0.700442,-0.549556,0.645678,0.085071,0.503009,-0.688597,0.311609,-0.214072,-0.09371,0.494079,?
-3.386249,-4.432807,-0.182358,-1.909931,-2.058922,-0.421064,1.518298,0.751253,1.265907,-0.371054,2.601362,-1.401742,0.461294,-0.059827,-0.46993,0.377441,0.646185,-1.572354,0.110372,0.376179,0.472027,1.904971,0.491028,0.534688,0.815152,0.99194,-1.044081,0.584176,-0.531938,0.014492,-0.991844,0.618797,0.743454,-0.379759,-0.77538,-0.464952,-0.403026,0.347423,-1.160862,-0.300658,-0.446959,-0.48061,-0.28312,-0.308372,0.040066,-0.179145,-0.374348,0.159139,?
-3.523684,3.777657,4.77594,-0.532592,3.789764,9.348512,2.324754,2.070567,-3.844935,-3.131425,3.30315,6.036398,0.227738,2.048649,2.123733,0.563941,2.548692,1.6988,-4.703287,0.834245,-0.569267,-0.311967,0.871386,0.424644,1.234957,0.60435,0.067752,0.600578,-2.282775,0.289571,-0.832508,-0.635403,-0.084407,1.178989,-3.878841,-0.388064,-0.896511,-0.482995,-0.053884,0.078201,0.706951,0.793288,-0.430015,0.910495,0.293638,0.781367,-0.031132,0.418329,0.01
-8.878925,-2.063275,-1.223748,0.834135,-0.271281,-1.999623,2.305593,-3.078107,-1.321669,-1.007824,-2.470965,-2.074641,0.336459,1.260541,-0.223011,1.275355,0.193444,1.201423,-1.159332,1.910836,0.623173,0.40563,0.267181,-1.288674,-0.023649,0.747513,-0.632238,-0.920086,-1.012627,0.813239,0.451842,0.960068,2.193515,0.295355,0.259457,0.464629,-0.348573,1.275028,0.365838,0.629937,-0.455606,0.636558,-0.302894,-0.542375,0.517239,-0.275691,-0.397586,-0.502054,?
-3.371934,-4.049851,-0.800537,-1.287564,-1.450913,-0.052479,0.615479,1.121593,0.848827,-0.633797,0.307033,-0.758934,-0.565981,0.800058,-3.08023,0.666535,0.919997,-0.649411,0.040158,-0.296132,0.312112,0.575803,-0.224017,0.395828,0.73838,0.0193,-0.630788,0.742533,-0.350722,0.069055,-1.082984,-0.547317,0.874897,-0.895286,-0.642809,-0.360601,-0.154008,-0.65975,-0.897721,0.626074,-1.219388,0.348648,-0.127224,-0.392468,-0.029188,0.459391,0.521632,0.171563,?
-3.831053,9.355441,-7.890614,-4.926745,-0.666985,-0.23602,-1.003189,0.195588,1.665123,0.543093,0.570046,-1.111437,-1.622459,-1.149901,-0.089401,0.669934,-1.001506,0.374923,-1.734032,-1.37435,0.294038,-0.596904,0.688705,-0.30483,-0.370561,0.428583,0.016403,-0.067094,0.396203,0.185866,1.034597,0.150397,-0.240095,1.404998,0.313286,-0.284329,0.247992,-0.774762,-1.560552,-0.269515,-0.484022,0.475195,0.732876,0.032328,-0.608266,0.575459,0.313355,-1.03847,?
1.368776,-2.515182,-0.514941,-1.852006,-1.477296,0.423143,-0.597102,0.97642,1.693854,-0.884964,1.172572,-0.351891,1.504559,0.155814,1.429534,-0.231855,0.070921,1.414799,0.98116,-0.306915,0.967635,-0.73992,-0.263856,-0.274352,0.546622,-0.126499,0.174853,-1.019087,0.070546,-0.792837,-0.072759,-0.273051,0.966243,-0.089652,-0.008573,-0.325434,0.562178,0.69629,0.944427,0.249883,-0.577817,-0.734849,-0.471065,-0.881048,1.280785,-0.519533,0.259357,-1.100271,?
6.308427,1.741328,0.828928,-1.56684,-2.858216,-0.599915,1.352741,0.026948,0.539484,0.013965,0.854857,-0.516543,0.374546,-0.284599,-0.821171,-1.253462,0.757993,0.407354,0.000915,-0.0736,0.773515,-2.373811,0.028256,-0.150709,0.820556,-1.166399,-0.14762,-1.119509,-0.880606,0.963872,-1.273728,0.572708,-0.470214,0.751534,0.133118,-0.414135,-0.427616,0.117339,-0.184531,0.187897,0.318982,-1.068779,-0.316776,-0.616932,-0.937838,0.05481,-0.056721,0.847672,?
1.609704,-2.976537,-0.55387,-0.558256,1.364852,1.129977,-2.74079,0.031576,-0.08285,-0.591168,0.980235,-0.284316,0.11249,-0.029081,-0.485436,0.869122,-0.468596,0.503155,0.187834,-0.144174,1.327222,0.762073,-0.548982,-0.808241,-0.194605,0.38036,0.074287,-0.30165,-0.443775,-0.49368,-1.345845,0.200049,0.665756,0.100773,-0.092602,-0.393293,0.2252,-1.347433,-0.656565,-0.539276,-0.161021,0.615521,-0.033102,-0.198696,-0.025159,0.143507,-0.134197,0.358351,?
-6.42696,-0.310764,5.895302,-3.355491,2.682297,1.896482,2.951981,-0.894941,0.382641,1.932003,-0.558869,1.327417,-1.351383,-0.638778,-0.297119,0.389833,1.41696,0.183811,-1.859593,-1.484294,-1.312679,-2.419568,0.157193,-0.677935,2.27682,1.360154,0.877571,-0.079899,-1.111219,-2.841199,-0.785061,1.466036,-0.332962,-0.314788,0.397797,-0.537239,1.277847,-0.65332,0.331571,0.859842,-0.64916,-0.679853,0.209941,-0.271522,0.023406,-0.515273,-0.834196,0.681289,0.14
5.080847,4.856833,-2.041641,-0.700651,0.605439,-0.047273,-1.585897,-1.700068,-0.992913,-0.19103,-0.153286,-1.949669,0.021738,0.435337,-0.349554,2.021302,0.092922,0.290889,-0.937843,-1.187071,0.533774,0.208487,-0.63762,1.24044,0.942555,0.412053,0.53308,0.66662,0.067261,0.242493,-0.281872,0.083425,-1.035319,0.978214,-0.146915,0.050538,0.397543,-0.056289,0.414372,-0.000644,-0.160814,0.085958,0.077052,-0.595076,0.605171,-0.416297,-0.100901,-0.44212,?
-2.846914,-6.392373,-0.517634,-4.193606,-2.692421,-0.625524,3.025731,3.002878,1.221993,0.076913,0.554029,0.294635,-0.949007,-0.509882,-0.444172,-1.345289,0.703665,0.266841,0.796703,0.113438,0.178947,-0.605347,-0.616465,-0.433932,0.955659,0.638941,-0.136789,0.415817,0.624715,-1.239044,0.84108,-1.253608,0.528589,-0.385637,0.484926,1.019599,0.179709,0.362536,1.852673,-0.406951,1.063682,-1.014952,0.425208,0.314574,1.085891,-0.770187,-1.006931,0.757317,?
-0.120153,-1.192417,-0.075443,3.527806,2.294514,0.228082,-1.777409,-0.226894,0.635023,-0.225329,-0.357293,0.664395,-0.680328,-0.704049,-2.390962,-1.154872,1.114292,0.374019,-0.429371,0.655005,0.43384,0.011019,0.412434,-0.423648,0.251341,-0.050261,-0.098172,-0.098986,0.330119,-0.189907,0.617041,-0.092735,-0.926377,0.287063,-0.445751,0.94154,-0.243726,0.298737,-0.670605,0.550826,0.293436,-1.277969,-0.231861,0.092951,0.010287,-0.146559,-0.094355,-0.751756,?
2.402101,-3.56829,-1.668714,-1.935437,2.079252,0.660417,-1.154338,-0.264477,2.895796,-0.925422,1.292325,-0.221499,-0.128141,0.241135,-0.095256,0.009371,-0.140949,2.677797,1.180008,-0.643111,0.726187,-1.814774,-0.056567,-1.321503,0.268907,-1.443696,-0.670991,0.123782,-0.304382,0.009356,-1.590178,0.609965,-0.696822,0.610539,-0.359136,-1.396253,-0.134857,1.427647,-0.023557,-1.072019,-1.38099,0.202744,-0.559278,-0.227006,-0.02833,0.335463,-0.851616,0.423282,?
1.109851,-0.75121,-0.365815,-0.657714,0.023681,0.319433,-0.636439,-1.982291,1.50585,-0.562299,0.654808,-0.60377,0.616531,-0.46986,0.103831,-0.345782,0.579358,-1.075776,-0.501809,0.300272,0.594646,1.312334,1.17338,-0.017553,0.152486,0.304947,-0.706202,0.506693,0.014537,0.163015,-0.085309,-0.746492,-0.694554,0.023361,0.237471,0.622562,-0.874426,0.042138,-0.730461,0.690617,0.591803,-0.508587,-0.362221,0.109393,0.177132,0.516777,-0.01732,-0.161952,?
3.715158,-0.542857,-0.179298,-3.235281,-3.008279,-0.23341,1.272748,1.186501,1.525348,-0.228217,0.431707,-0.105416,0.37973,-0.405395,-0.958394,-1.171939,1.211178,0.375158,0.131453,-0.812897,0.364146,-0.494151,1.405503,-0.448599,-0.059615,-1.214178,-0.055931,-0.341503,0.389932,-0.397771,0.072871,-0.788355,-0.484827,0.234278,0.304734,1.592673,-0.884485,0.308489,-0.319376,1.02246,-0.389886,-0.024728,0.437537,0.266216,0.184659,0.133456,-0.260088,-0.357815,?
-6.585476,-3.22348,1.22886,1.247287,-1.951187,-0.096405,-0.097008,-2.32208,-1.395519,-0.618475,-0.563114,-0.986491,0.304173,0.540247,-0.834231,-0.01418,-0.262141,0.179098,-0.435303,1.325459,0.588866,-0.144774,0.240838,-0.682731,0.403831,0.512681,-0.897787,-0.244554,-0.503515,0.49641,-0.745846,-0.850433,-1.323659,-0.146732,0.378532,-0.654128,-0.708352,0.221865,-0.675608,-0.742248,0.213514,0.654444,0.085065,0.826056,0.297322,1.110573,-1.090181,0.166668,?
2.285406,0.781195,-0.116301,0.151281,0.752536,0.415314,-0.594527,-0.694016,1.302435,0.320854,1.346527,0.172718,0.686813,-0.008647,-1.332966,-0.500441,1.382128,-1.315854,-0.533841,-0.748247,0.635276,0.878678,1.190476,0.23547,0.05616,0.350437,-0.501432,0.62087,-0.862153,1.814438,0.550509,-0.153936,-0.363731,-0.234502,0.966607,-0.247783,-0.908029,0.899025,0.16035,0.132769,0.000132,0.858777,-0.294499,0.008612,-0.642104,-0.014293,-0.020308,0.811799,?
4.862155,5.457953,-1.303365,-0.072519,-0.111818,0.386693,-1.430154,-1.698154,0.609414,-0.806326,0.064388,-1.529774,-1.304096,-0.51674,-0.606112,1.395497,-0.707912,-0.042033,-0.970768,-0.384016,0.160128,0.029622,0.30508,0.554548,0.885478,-0.299663,-0.375387,0.337847,0.551083,-1.166294,0.129992,0.218912,-0.32199,-0.426239,-0.869531,0.003464,-0.26927,0.444204,0.535851,0.733366,-0.365598,0.06216,0.042289,-0.047262,-0.247394,-0.948057,0.114504,0.534158,?
2.634327,-2.552759,1.374736,0.653468,-1.160379,0.472988,-0.258249,1.15924,1.628747,-1.582928,-0.533971,0.170391,-1.054427,-1.565993,0.521077,-0.3565,-0.317571,0.06056,-0.700451,0.059681,0.428657,0.146729,-0.157834,0.025094,0.21762,0.802297,-0.605768,0.716625,-0.711207,0.712677,-0.27026,-0.87185,-0.176551,-0.105143,-0.099193,-0.742329,0.116223,0.256856,-0.437754,-0.360932,-0.792383,-0.360185,-0.296401,-0.176242,1.007882,-0.120247,-0.988529,-0.60979,?
7.144554,-0.785371,0.101307,-2.995031,0.380589,-0.870072,2.169681,-0.840891,0.63573,-0.212125,1.41654,-0.242603,-0.072629,0.737518,0.565961,0.972825,-0.792862,-1.000988,-0.795947,-0.97,0.771794,0.911799,0.113248,-1.226025,-0.554356,0.685322,-0.961459,1.497172,-0.096456,0.623892,1.338452,0.888377,0.30432,1.093518,0.185611,0.355319,-0.085373,-0.938048,-0.723468,0.678107,0.339404,0.411167,-1.085598,-0.525119,-0.28214,0.084741,-0.466316,0.251898,?
-8.167128,9.83627,-4.206526,-0.913917,-6.377587,-0.749479,-1.866696,1.777279,3.419136,0.125622,1.861688,6.018741,3.396427,2.521441,0.018611,-0.321357,1.12549,4.128558,-2.422593,1.5675,-0.435052,0.457088,-1.020423,-0.352472,1.835531,-0.456612,-0.438631,-1.422861,0.445744,-0.972875,-1.416308,-0.310145,1.132671,0.667011,-1.518298,0.535289,-0.281057,-0.588195,1.926026,0.090505,-0.632604,-0.128798,0.721086,-0.032886,0.009851,0.619617,0.211834,-1.647333,0.04
-4.045572,7.617149,-6.601182,-3.578308,-1.828342,-0.023341,-1.481491,-0.363291,0.592479,-0.02263,-0.256123,-1.582209,-2.057179,-1.431289,-0.408913,0.979704,-0.910735,0.009934,-2.236595,-1.001901,0.2831,-0.683814,0.472822,-0.179085,-0.107879,0.449168,-0.041488,0.066201,0.387507,0.52284,1.026795,-0.276577,-0.099834,1.129967,0.35691,-0.727459,-0.521417,0.555322,-1.68105,-0.395637,-0.330953,-0.10344,0.249647,0.091174,-0.199206,1.464782,0.453743,-0.163524,?
1.25689,1.873512,-2.451153,-2.733655,-2.797061,-0.698619,1.365877,2.71893,2.309946,-0.064045,-1.12264,-0.45733,-0.142209,-1.919162,-0.212348,-2.22419,2.435838,1.235831,0.248093,0.144051,0.615635,-0.983132,-0.994213,-0.329068,0.698423,1.322054,0.635807,-0.404185,-0.046482,0.045559,-0.087018,-0.059834,-0.549678,-0.550158,0.149511,0.682103,0.096073,-0.111209,0.230688,-0.304108,0.869469,-2.128594,-0.190258,0.03816,0.116381,0.312466,-0.47826,-0.217923,?
3.151809,-2.825477,-0.985741,-3.2941,0.332673,0.617599,-0.446959,0.97874,0.260426,0.052152,1.268791,0.055586,-1.936926,-1.050485,-1.082184,0.211314,-0.293755,0.723347,-0.531919,-0.448333,0.766073,-0.226976,0.483178,-1.13573,-0.5584,-0.180415,-0.024964,-0.102222,-0.234823,0.571472,-0.332326,-0.991891,-0.156613,-0.248703,0.349706,0.550622,-0.619146,-0.463045,-0.008354,0.082742,0.362071,-0.325553,-0.050766,-0.168622,-0.587746,1.320536,0.014463,0.131955,?
5.261845,-1.282774,1.765668,2.564972,2.224406,0.337399,-1.333609,-0.236881,-0.26249,-0.479025,0.001395,1.586161,0.555379,0.64342,0.251531,0.001373,-1.432815,-0.917479,-0.11769,-0.552149,1.073801,0.017856,-0.038813,0.040218,0.083127,-0.068592,0.024159,-0.18323,-0.886083,0.601102,-0.30672,0.097787,-0.122811,0.343705,0.530238,0.641122,-0.029443,-0.242125,0.268908,-0.149457,0.458806,-0.265296,-0.786504,-0.816937,0.285153,-0.477943,-0.64581,0.890905,?
-2.560607,-3.747191,0.553501,-1.544052,-2.69327,0.064426,1.116952,0.340761,1.647674,-0.296288,2.070104,-0.346523,-0.165966,0.112221,-1.771151,-0.163169,0.590333,-0.999262,-0.451937,-0.197772,0.184478,0.244757,0.490299,-0.907591,-0.082588,-0.333762,-1.248346,0.965676,-0.108266,-0.065972,-0.607057,-0.63524,-0.323843,-0.012584,-0.343732,0.856636,-0.097549,-0.253476,-0.866196,0.01605,-0.451536,-0.860678,-0.056482,-0.26967,1.256779,-0.257577,-0.718134,-0.23373,?
5.748262,-1.590323,0.841167,1.93903,3.141478,0.501226,-1.384531,-0.416954,1.068249,-1.132379,-0.696905,1.415765,-0.268729,-0.008796,1.040595,0.262792,-1.619308,-1.541991,-0.684206,-0.25749,1.250646,0.138855,-0.875762,0.479625,0.320002,0.564532,0.196956,0.104671,-0.977364,0.912223,-0.255117,-0.190061,0.283333,-0.137998,0.342479,0.625624,0.209788,-1.317849,-0.010135,0.455333,0.275602,0.20148,-0.57559,-0.709626,0.192878,0.160274,-0.339041,0.157467,?
-2.141722,-0.219704,-1.488562,2.305636,0.967803,-0.353873,-0.421368,1.833614,1.353904,-0.489611,-0.490987,0.513692,-0.898738,-1.128858,-1.277806,-0.98025,0.806313,-0.149237,-0.458507,-0.009736,0.437374,-0.070537,0.047424,-0.039858,0.388086,0.507676,0.034329,-0.142391,0.196875,-0.398014,0.840078,-0.577381,0.242398,0.265046,0.378893,-1.259615,0.522602,-0.267467,0.387569,-0.218223,0.518361,0.380287,-0.581454,-0.207293,0.02513,-0.653037,0.388086,-0.134039,?
-0.564519,9.30953,-5.726762,-3.820409,0.583176,0.193109,-1.095016,-2.427469,0.724823,-0.05798,-0.288858,-1.98106,-2.561198,-1.788625,1.507369,1.194675,-1.923097,-0.054387,-1.278366,0.538272,0.318159,0.137746,0.424325,-0.390144,0.622028,0.584725,-0.967486,0.276966,0.847043,-1.457145,0.642517,0.070706,-0.502773,-0.420552,-0.314776,-0.902328,-1.061475,0.121329,-0.144348,1.043174,-0.313906,0.662171,0.110718,0.225253,-0.545995,-0.16521,0.807023,1.033971,?
3.671809,5.731839,2.03024,0.738315,-4.269754,-0.717082,0.877166,-1.454385,1.041554,2.602364,-1.040331,1.639695,2.066296,-0.700748,0.90117,1.850725,-0.030588,2.500211,-1.099861,0.213454,0.175233,0.561942,-1.505351,-0.428683,1.324863,0.539525,0.301728,-1.651782,-0.671309,-0.095294,0.259582,-0.075019,-0.426563,1.052757,-0.501097,-0.167883,-0.490187,0.509717,-0.35654,0.08027,0.844069,0.502491,-0.251106,-0.47238,-0.958894,0.13218,0.038321,-0.830422,0.04
5.671857,2.516164,0.755481,2.000246,0.589195,-0.664973,-0.160526,-0.33422,-0.178709,-0.254338,-0.419492,0.590934,2.042035,1.0235,-0.917144,-0.790413,0.475169,-0.911773,0.526948,-0.478975,1.002508,0.918871,0.457456,-0.871099,-0.173039,0.183525,-0.814247,0.764489,-0.367119,-0.302509,-0.280112,0.346371,-0.355194,-0.221704,0.237801,-1.056233,-0.429369,-0.220289,-0.462071,-0.600998,0.726226,1.542086,-0.37572,0.509519,-1.31495,0.705147,-0.154382,-0.616095,?
-7.279531,-4.050393,0.253671,-1.17768,-2.249479,-0.580937,1.103075,-3.568833,-0.455093,-1.403768,-0.333159,-1.890119,1.569799,1.785407,1.337944,1.202346,-1.237208,1.825318,0.150981,1.500887,0.602691,0.354689,1.21754,-1.480081,-0.098765,0.197532,-1.676522,-0.699217,-1.338522,0.93822,-0.58183,1.009074,1.180314,-0.138524,-0.046709,-0.673734,-0.732818,1.366119,0.609788,0.984725,-0.670251,-0.607346,-1.466549,-0.905539,0.636986,-0.159404,0.119592,0.3381,?
-0.390171,-2.507019,-1.427312,-1.500983,0.178994,0.63809,-1.470403,0.370948,0.526338,-0.300281,0.637823,-1.331731,1.221217,0.246101,0.018456,0.67098,1.465051,1.48885,0.750461,-0.613311,0.923424,-0.225959,-0.268889,-0.136156,0.548164,-0.44919,0.398696,-0.870627,0.165999,-1.024479,-1.308053,0.661454,-0.048098,-0.106379,-0.111754,-0.755387,-0.108169,0.300384,0.055051,-1.136548,0.269982,-0.412946,1.163582,0.077511,0.222659,-0.313923,0.526215,0.152745,?
-2.71712,-0.021019,3.821474,0.940651,2.192835,5.654841,0.655446,0.308917,0.776094,3.06157,-1.535116,0.099719,-1.472953,1.49195,1.410667,-1.368843,0.187137,1.64497,-1.727945,-1.695214,0.804704,-1.152614,-1.624653,1.54794,-0.930688,0.337477,-1.438544,-0.77492,0.727522,-0.667097,-0.602674,0.665421,-0.248938,-0.128662,0.687881,-0.465066,-1.09769,-0.364642,0.204671,-0.339028,-0.134,1.039314,0.810588,-1.350549,-0.057485,-0.432827,0.236932,0.288309,0.09
2.817515,5.597179,2.325909,6.159068,-2.232326,-0.085471,-1.738838,1.467142,-0.997146,-0.541964,0.888793,-0.368477,0.31662,-0.263314,-2.582048,0.03622,0.093762,0.314314,-0.075079,-1.069136,0.486842,-0.147229,-0.251259,-0.04647,0.372856,0.106921,0.111073,-0.050644,0.005443,-0.490252,-0.363368,-0.091045,-0.418533,0.475056,0.297438,0.57094,-0.541708,0.564627,-0.159524,-0.550672,0.812119,0.104187,-0.358941,-0.051111,1.095572,-0.064546,-0.559997,0.041165,?
7.175151,3.752594,2.481482,1.093662,-3.388944,0.575729,-0.736496,-1.34628,0.736674,-1.740793,0.322975,-1.225299,0.624352,0.876784,-0.202929,1.597906,-0.837099,0.259011,-0.451704,-1.264415,0.186137,-0.249566,-0.238403,0.142716,0.67554,-0.122835,-0.63347,0.519652,0.135212,-0.767473,-0.141635,0.588756,0.111182,-0.538482,-0.584499,0.57132,0.25938,-0.340472,0.120151,-0.016331,-0.138416,-0.238853,-0.220011,-0.197848,0.460738,-0.990986,-0.392893,-0.094471,?
-8.917069,3.192466,0.954243,1.575469,-5.446244,-0.493748,0.700073,-4.336017,0.541702,-0.238769,1.815645,-1.835336,1.445829,0.314526,-1.121778,-0.876038,-0.214433,-2.339178,-1.300711,1.359843,0.269192,0.516923,1.311643,0.368706,0.662249,1.069643,-1.765261,0.401986,-1.157485,1.48441,-0.690343,0.672051,-1.153939,1.280866,0.38558,-0.535332,-0.310324,-0.381051,-0.586487,-0.185864,-0.115176,0.669024,0.483184,-0.571542,0.991002,1.044738,0.435587,0.818043,?
2.154695,-3.732489,0.312863,1.170775,1.344215,0.481151,-1.582684,1.102356,0.725879,-1.57427,-1.425815,0.442781,0.018588,-0.36416,0.357667,0.235964,-0.570893,-0.816176,-0.026941,-0.211395,1.131329,0.648111,-0.736642,0.764739,0.643606,-0.014172,0.600692,-0.088623,-0.28595,-0.244348,-0.565939,-0.513516,1.297071,0.327138,-0.045237,1.018846,-0.301978,-0.617374,0.210684,0.989719,0.234288,0.363127,0.474165,0.229415,0.16181,1.047222,-0.83883,0.070737,?
6.574384,1.276283,-0.699185,0.276221,-4.114103,-0.129558,2.164776,0.452097,1.380459,4.619299,-1.831392,-0.034428,-1.066028,0.738348,1.669436,-0.288969,-0.397406,0.11033,0.666028,0.300295,1.45237,-2.155072,0.954541,-0.830198,0.888741,0.819474,0.204811,-0.373071,2.522799,1.617976,-2.413198,0.167469,0.543928,-0.739005,-0.789414,-0.324402,-0.043087,-0.545301,-0.253465,0.205212,-0.010702,0.217455,-0.751209,0.255733,0.264285,-0.391839,-0.291677,-0.496094,0.02
-2.601508,-3.873353,0.617296,0.814422,0.11813,-0.184161,0.588838,0.698885,-0.179499,-0.863427,-1.238513,-0.354442,-1.032597,-0.581737,0.070458,0.805444,0.161691,0.409504,-1.160561,0.042097,0.614675,0.343134,-0.005179,-0.754117,-0.401529,0.130132,0.236764,-0.549933,-0.377751,0.388504,0.030243,0.453428,0.176503,-0.043056,0.227453,1.638794,-0.139671,-0.546535,0.199937,-0.136793,0.431037,-0.196894,-0.450223,-0.861101,0.430969,-0.796392,0.204609,-0.394911,?
-12.658032,23.953109,24.220123,-16.821556,14.390275,0.561181,-2.821973,11.416776,3.332823,-4.801762,-2.115358,-7.012666,6.015812,-0.583862,-2.769282,-0.460813,-4.242757,1.999673,-2.508497,2.656966,-0.227223,1.803675,-0.173126,-1.706927,1.956896,-0.63018,-0.382822,-2.080874,3.657623,3.39407,-0.109307,-1.066902,-0.840721,-1.62023,-0.86316,0.957335,4.13177,3.615559,-2.579097,0.417027,3.273577,0.72399,0.025605,-1.729423,0.625056,2.041769,0.793418,0.791849,1
-0.557178,-3.190193,0.176474,2.468971,1.916446,-0.768332,0.442251,2.105294,0.335032,-0.783578,-0.545957,0.45717,1.043427,0.178894,1.547806,-0.110176,-0.699736,-0.832406,0.478541,-1.17842,1.093456,-0.620065,-0.772636,0.238881,0.592955,-0.989553,-0.132725,0.858555,-0.646303,0.346493,-0.980418,0.741266,-0.365071,0.548526,0.381784,0.153499,-0.03045,-0.871843,-0.000152,0.123985,0.972603,0.697509,0.705491,0.137805,0.600985,0.520564,0.009081,-0.10878,?
-2.67704,-3.57028,-0.392833,1.204248,0.737809,0.306167,-1.149203,0.504866,0.860213,-1.071295,-1.026396,-0.153758,0.598652,0.394965,-0.975294,0.200806,0.994988,1.625918,0.167438,-0.171408,0.745743,0.540821,0.498066,-0.891767,-0.483897,0.176016,-0.186152,-0.379445,-0.597189,0.534738,-0.776414,-0.083564,-0.226376,0.177464,0.02106,-0.404825,-0.1207,0.182889,-0.230872,-0.119611,-0.951674,-0.71543,0.413485,0.024584,-0.248631,-0.078421,-0.178457,0.570291,?
3.618008,3.777469,-0.692478,-1.595566,-1.740855,1.005122,-1.299025,-0.758653,1.070467,-0.834102,-0.244064,-1.561448,-1.801938,-1.331604,-0.72527,0.967677,0.000026,0.149818,-1.236006,-0.476818,0.266655,-0.281308,-0.134952,0.094753,0.520066,-0.306745,-0.276831,0.690412,0.223541,-0.405174,-0.128278,0.003519,-0.269886,0.268649,-0.761857,0.39333,-0.379719,-0.075034,0.635498,0.964353,-0.5245,0.267931,0.206514,-0.344407,0.15771,0.011532,-0.230411,0.46272,?
-5.550664,3.38367,0.370906,-4.394496,4.359388,5.685037,1.681677,2.398091,-4.512093,-4.344168,3.52997,7.756077,1.369193,3.291465,1.857032,1.33963,3.140098,1.048221,-4.059114,1.141113,-0.810712,-2.552456,2.813445,0.549819,2.330339,1.344236,-0.083123,1.969942,0.760835,0.989043,-0.612087,-0.545943,-0.029645,0.20961,-2.866266,0.022368,-0.791151,0.269548,-0.270845,0.764353,1.56754,0.952111,0.085113,-0.2913,0.33191,-0.329091,-1.061344,0.356323,0.07
-3.778012,-4.596145,-0.182521,-0.737909,-0.793536,0.806106,-0.993002,0.665983,0.095237,-0.249943,-1.082087,0.394631,1.314003,-0.0726,0.85179,-1.083548,0.901199,-0.032528,0.267647,-0.076116,0.694613,-0.414932,0.108894,-0.113395,0.456354,-0.119389,-0.298016,0.456749,0.269907,-0.270778,1.030433,-1.477479,0.032652,-0.275462,0.481424,-0.140656,0.259213,0.852685,1.240925,0.187542,-0.188618,0.127563,0.282428,-0.270215,-0.144266,-0.720085,1.485361,0.309249,?
7.468172,9.486278,-2.300646,-0.016112,0.731831,0.001434,-1.598995,-1.942694,-0.501478,-0.324644,-0.923623,-1.671846,-0.292768,-0.649018,0.624499,0.95226,-0.358359,0.418089,-0.642667,-0.447601,0.355184,0.025868,0.668536,0.007796,0.667565,-0.523196,-0.875875,0.270054,0.137495,-0.885987,0.053346,0.568166,-0.503407,-2.366165,-0.537295,-0.456311,0.02718,-0.046609,1.117294,0.026168,-0.685238,0.50342,-0.258334,0.411443,-0.346915,-0.709824,0.322933,0.535294,?
5.548317,-0.151908,3.284062,1.850099,-1.648391,0.896777,-2.589374,-0.103862,-3.296413,0.061624,0.311094,0.269668,1.687668,-0.110542,1.035476,-0.199883,-0.466208,0.787256,-0.510368,-0.328882,1.037994,0.574748,1.364827,0.394025,-0.283101,1.098473,0.715098,-1.370136,0.197583,-0.084048,3.086674,1.083688,0.330653,0.515093,0.287796,-0.405623,1.160339,-0.104589,0.276262,-0.231838,-0.47479,0.651537,1.000491,-0.365042,-0.740084,-0.75757,0.598306,0.318762,?
2.528265,-2.852955,-1.175587,-0.591261,-3.004216,2.871719,2.618726,1.507647,2.418155,4.756689,0.176215,-0.014586,1.523811,-1.868639,-0.973419,4.098562,-0.024189,-0.66329,0.30074,2.339957,0.917705,0.08775,1.283554,0.867105,-0.096162,-0.01189,-0.543942,1.534091,-3.092084,-0.545749,0.257749,-0.04533,-0.693268,-0.164944,1.741409,0.32769,0.151541,0.359136,-0.098627,0.084643,-0.617488,-0.851633,-0.842313,0.35972,0.301899,0.500529,0.216667,0.064951,0.01
-2.946801,4.319178,0.925802,9.718278,1.616108,-4.275732,4.785788,3.192899,0.282524,-0.04414,3.021506,-1.013126,-0.962335,-0.551746,-1.74948,-0.512965,-0.060257,0.187524,0.270451,0.692275,0.17125,0.263413,0.592801,-0.019147,0.782428,1.091686,-0.943782,-0.118613,-0.419035,-0.552287,-0.586388,0.369373,-0.493076,-1.298697,-0.440856,-0.460385,0.030003,-0.485129,0.587616,-0.495739,0.198897,0.183876,-0.18099,-0.396809,0.452205,-0.749198,0.984205,-0.685969,?
2.584183,-3.101961,0.439228,-0.948108,-0.638793,0.616827,-0.276182,0.932842,1.889579,-0.986523,0.122734,-0.145661,-0.587054,-1.158272,0.551703,-0.686825,0.383694,1.699638,0.17388,-0.020213,0.767384,-1.833151,-1.011918,-0.736032,0.603561,0.013732,0.007924,-0.094925,-0.256327,0.382242,0.402815,0.091997,-0.245075,-0.308168,-0.125584,-0.015217,-0.047573,0.475462,0.159792,0.113267,-0.368161,-0.234683,-0.222924,0.145602,1.018811,-0.102434,-0.736901,-0.585512,?
4.868517,-1.018869,1.092956,0.824554,0.672119,-2.25942,3.902721,0.973059,0.852615,-0.678789,1.835208,0.255668,-1.323757,-0.281047,1.476579,-0.376571,-2.430703,0.075129,-0.101941,1.059058,0.926545,-1.065712,0.095066,-0.157826,0.589136,0.748184,-0.19026,-1.679844,-0.430529,-0.210038,-0.263192,0.010281,-0.245188,-0.591389,-0.634921,-0.233271,0.732189,-0.97653,-0.01117,-0.445147,-0.996324,-0.118848,0.360185,-0.242058,-0.498023,0.070464,0.834079,-0.082193,?
2.865639,-3.212122,1.650229,1.366696,-0.361548,0.18962,-0.047595,1.942657,0.536576,-1.298491,-1.513835,0.476899,-1.990102,-2.014153,-0.000465,-0.357743,-0.216503,-0.756656,-0.964887,-0.207512,0.123485,0.347638,1.01668,1.648801,0.90528,-0.416313,0.45365,-0.296224,0.177577,0.341392,0.496648,-0.656789,-0.96255,0.571168,-0.338982,0.509264,-0.998257,1.277998,0.189548,0.768512,0.079069,-1.292767,-0.134981,0.384161,-0.248544,0.524471,-1.34848,-0.138081,?
7.461812,-0.982949,-0.004864,-3.06154,0.257981,-0.807997,2.226163,-0.333097,0.940322,-0.159144,1.457041,-0.47864,-0.378315,0.244138,0.86359,0.51593,-0.208521,-0.491547,-0.375477,-0.182975,0.782812,-0.429403,-0.137356,0.59464,0.95259,0.202476,0.172062,-0.652113,-0.131865,0.27031,0.032326,-0.246434,0.348129,0.303158,0.048729,0.055293,-0.177746,1.121183,-0.451985,-0.80287,-0.384174,0.382067,-0.839948,-0.657996,-0.16695,-0.257033,0.150904,-0.012191,?
-0.076491,-2.411229,1.019716,1.936122,0.847712,0.514381,-0.403354,0.488773,2.098749,-1.462837,-2.124125,1.031439,-0.537527,-0.163757,0.013566,0.139661,0.181085,-0.561351,-1.065524,-0.33114,0.599451,0.255762,0.106875,-0.002433,0.11854,-0.192713,0.307949,-0.634891,0.053739,0.061576,1.735896,1.896659,1.568821,0.849813,-0.360186,1.189416,0.22031,-0.129642,0.005637,0.336985,-0.159597,-0.003161,-0.338767,-0.737427,0.491477,-0.510143,0.195939,-0.164049,?
-0.04851,-1.794635,-0.332991,-2.467744,-2.518649,0.095958,0.585164,-0.532398,2.134096,-0.621929,1.617165,-1.205995,1.440379,0.040168,0.305558,0.220342,1.465295,-0.487852,-0.382,-0.631428,0.41671,1.577511,1.269085,-0.212834,-0.240913,0.485276,-0.32289,0.284444,0.0658,-0.219597,0.298793,-1.224866,0.806109,0.11799,0.991256,0.717367,-0.223836,1.036261,0.334555,-0.517292,0.874744,0.756112,-0.962361,-0.511047,0.617258,-0.970444,-0.157993,0.061749,?
3.67156,-0.962291,-1.718706,-2.741736,0.629376,-0.684007,-0.264043,0.081687,-2.569703,1.660553,2.093418,-2.27287,2.074954,-1.589169,0.592223,-1.338732,2.736583,-0.862855,0.316977,0.348032,0.958836,1.286339,0.966045,0.459543,1.044201,-0.279917,-0.938592,1.266533,-0.484676,0.802751,0.777662,1.543643,0.55363,-0.343702,-0.374076,0.076052,-0.401268,0.462059,-0.524449,0.736657,0.027355,0.320261,0.085382,0.765986,-0.489642,-0.123757,-0.382268,0.421225,?
7.096473,0.495198,0.237425,-2.31645,-1.772084,-0.978966,2.171992,1.434757,0.489947,-0.325002,-0.111533,-0.596081,-0.431306,-1.126019,0.262424,-0.506663,0.793354,-1.210246,-0.347054,0.016798,0.651271,1.755335,-0.387157,0.285335,0.580883,2.140252,-0.166184,1.301655,-0.276175,0.658499,0.33497,-0.241941,-0.674292,0.206198,-0.107247,0.507354,-0.476566,1.058578,0.222093,-0.473504,0.439852,-0.180479,-0.068168,0.42892,-0.43773,0.10227,-0.567319,-0.518121,?
-4.037477,-4.958268,-0.71657,0.045631,0.058873,-0.311056,0.591885,2.077444,0.455981,-1.039266,-2.92792,0.407399,0.091976,-0.255361,0.315173,-0.400616,0.926692,-0.568906,-0.178331,-0.247725,0.74135,0.25705,-0.58244,-0.375458,0.301588,-0.072424,0.261641,0.185021,0.805734,-1.410794,1.104253,-0.296735,1.131541,0.426354,0.247156,-0.07773,0.225458,0.12904,0.410409,-0.272584,0.331932,1.516567,0.240933,0.115081,-0.122597,0.105185,-0.226503,0.023001,?
-4.228037,-5.243775,-0.253386,-1.812009,-2.313655,-0.096712,1.171082,0.931161,1.469586,-0.897949,0.504544,-1.171402,0.613178,0.569691,-0.953179,0.339494,1.444217,-0.612566,0.311075,0.207293,0.489915,0.855096,-0.319479,0.465775,1.018886,0.57945,-0.471208,0.199591,-0.094721,-0.663783,-0.84287,-0.359775,1.310773,-0.933626,-0.596479,-0.521818,0.308694,-0.003452,-0.11364,-0.580364,-1.208856,0.349456,0.360985,-0.383658,0.493454,0.1391,0.360263,-0.043137,?
8.109481,0.027926,-0.872169,-0.150118,-1.553254,1.941598,3.449778,-0.187437,-0.109215,4.995995,-0.632303,0.556801,0.763847,-0.428516,0.007473,-0.299789,-1.220251,0.003163,-1.683633,0.881112,0.524277,2.726603,0.134901,-0.725017,-0.304547,-0.525863,-1.236792,0.40041,-0.204839,-0.583639,0.015925,-0.273978,-0.262892,-0.564397,0.645443,-0.372838,-0.142359,-0.644253,0.37589,-0.144506,0.034119,0.092602,0.760414,0.871127,-0.864438,0.002193,0.43992,-0.236318,0.01
4.415852,-2.263929,0.13089,-2.463961,-0.888228,0.459445,-0.007884,-0.14429,0.957296,-0.598957,0.61574,-0.730928,-0.198951,0.172549,-0.577971,0.753429,0.86322,0.983783,-0.416243,-0.769565,0.779719,-0.947017,-0.550815,-0.471967,0.225584,0.052338,0.685409,-0.889798,0.259428,-0.071436,0.420514,-0.350571,-0.343418,-0.621511,0.247988,0.670114,-0.029872,-0.856746,-0.943156,-0.275403,0.090279,0.406947,-0.175492,0.282259,0.47437,-0.251313,-0.561535,-0.151119,?
-8.693365,-0.423004,1.625856,-0.981292,1.564431,-0.930367,2.129062,-7.090469,-4.100717,-4.402525,1.35099,1.727203,-2.565771,-0.583323,-0.015193,-0.823188,0.910387,-0.288839,-0.32773,-4.33941,-0.246294,0.206101,0.892282,-2.501474,1.315317,2.472109,3.427778,-0.247413,-0.777811,-0.482849,-2.615333,0.999678,0.573197,-0.876923,1.041436,0.657464,2.156763,2.003965,-0.8288,2.102446,-0.562781,-0.496892,-0.923175,0.710942,-0.366072,-0.319589,0.582998,-0.480687,0.03
-10.148505,4.028996,-9.810904,-4.983304,1.288056,-2.571065,1.380617,3.080801,-2.877939,2.203822,-0.906573,0.671299,0.537101,1.322629,-0.162907,-0.18055,-1.409489,-0.683525,-0.228241,-1.44393,0.551043,-0.708784,0.865549,0.101714,0.173294,-0.339271,-0.212591,-0.187135,-0.814704,1.247145,0.891197,-0.806407,1.310276,0.797449,1.427094,-0.921017,0.483058,1.344601,-0.0131,-0.495302,-0.685918,-0.602071,-0.045701,-0.030768,-0.372311,-0.216792,-0.931361,0.990957,?
2.310924,0.334657,0.944755,-1.160195,-1.524082,-0.332575,2.27448,1.2899,2.579691,-0.195775,-0.078835,1.048064,-0.93721,-0.936647,-0.27311,-2.174799,-0.162349,-0.983123,0.211553,0.337687,0.722519,-2.409895,-0.322262,-0.044062,1.14463,-1.771189,-0.573612,-0.607152,-0.843765,0.302753,-1.528736,1.039811,0.073656,0.54226,-0.162717,0.815744,-0.941245,-0.775784,0.335199,0.951853,-0.39532,0.105558,0.392063,-0.147068,-0.055029,0.372404,0.26906,0.559348,?
-1.605826,0.317292,0.50261,8.931148,4.482423,-3.095305,2.635754,2.974475,0.2146,-0.859773,0.253667,0.161531,0.31315,0.165881,0.311268,0.125837,-0.166789,-0.572054,-0.052668,-0.71653,0.64322,-0.355316,0.169228,-0.140754,0.377084,-0.885924,-0.570754,0.511716,0.08738,-0.407813,0.149618,0.178825,0.256108,0.382649,-0.545845,-0.913196,0.58149,0.052424,0.705614,-0.320255,0.161637,-0.279345,0.790616,-0.067804,0.123598,1.055011,0.167849,-0.472604,?
-8.348979,-4.070513,-0.22372,1.039326,-1.18542,-1.406283,1.92037,0.69109,-2.542881,0.018296,-2.03006,-1.170382,0.927373,0.29254,0.000808,-0.481435,1.391301,-0.511513,-0.162544,0.989439,0.438635,-0.456928,-0.251956,-0.017596,1.268783,-0.464801,-0.682725,0.456556,0.438807,-0.736288,1.199009,-1.194822,1.356451,-0.977259,-0.17711,-0.269441,0.477635,0.967242,1.3896,-0.17756,-0.887851,1.453181,0.044316,0.038498,-0.065719,0.417212,0.164106,-0.746102,?
-9.791066,-0.341141,2.051345,0.066322,-2.983101,-1.747234,2.91621,-7.495759,-1.358544,-2.53008,0.971983,3.021155,-1.58093,-0.524328,-0.636562,-1.902652,0.588375,-2.215554,0.805195,-0.595067,2.007583,-0.231433,-0.198872,0.897021,0.206762,1.085379,-0.584032,0.7542,3.645064,0.251955,-1.026271,0.31458,0.358971,-0.184214,-0.539462,0.551841,0.022674,-0.741491,0.407917,0.862819,-0.951075,-0.681398,-0.067255,-0.1205,0.261035,0.187653,-1.450558,-0.252759,0.02
10.271472,1.442158,-0.3839,-0.418894,4.086123,-1.132351,0.23112,-1.067751,-2.443017,0.648335,-2.399665,1.758523,-0.710396,0.909147,-1.527322,-0.633922,-0.708127,0.246775,-0.069699,0.578014,0.729163,1.158234,2.121467,0.612797,-0.092466,-0.775224,0.231789,-1.399202,-0.340089,-0.534959,-0.981821,-1.033056,-0.585627,0.177718,0.191675,-0.030362,0.770036,-1.389674,0.746235,0.774981,-0.469815,-0.586696,0.169634,-0.658997,0.599375,0.723821,0.329229,0.136222,?
5.320057,-0.482522,-0.707381,-2.826934,-0.863379,-0.036847,0.531074,-0.146321,1.709163,-0.1572,1.050894,-0.592597,0.370041,-0.585981,-0.037626,-0.909969,1.250566,0.29078,-0.116581,0.178195,0.901079,-0.415936,-0.430132,-0.423634,0.454923,0.88375,-0.227416,0.168093,-0.776241,1.22533,0.260204,-0.141373,0.312601,-0.196832,0.196149,0.276646,-0.203065,0.127877,-0.635439,0.591726,0.232868,-0.747427,-0.300705,0.197694,0.080535,-0.432662,0.099965,0.518866,?
7.615955,-1.502708,0.075886,-3.98007,-0.70894,-0.193499,1.176944,-0.217773,-0.154068,-0.409876,0.187084,-0.808254,-0.534903,-0.441738,1.040051,0.677289,0.04687,0.543331,-0.839746,-1.115795,0.299536,-0.634685,1.988453,0.008834,-0.041144,-2.283848,0.056347,-1.283423,0.697399,-0.907828,0.306673,-0.483558,-0.164352,-0.129568,0.278211,0.588609,-0.084969,-0.725405,-0.560256,0.012036,0.753831,-0.002032,0.747848,0.654842,0.503244,-0.134573,0.167742,-0.125298,?
-2.678136,-5.341922,-0.463808,-3.187953,-1.057768,0.484607,0.635688,0.368538,0.710526,-0.146163,1.033341,-0.179888,-1.806593,0.260128,-1.790056,0.415018,-0.358582,0.782735,0.088928,-0.051372,0.021454,0.170484,0.481015,0.464607,0.826044,0.557497,-0.200191,-0.101339,0.236209,-0.398222,0.172404,0.190856,-0.334879,-0.530547,-0.155132,0.197226,0.183729,-0.402797,0.074111,-0.318459,0.130136,-0.341996,0.310066,-0.290779,0.491126,-0.163257,0.856884,-0.128322,?
2.441606,4.904902,2.391896,0.906903,-5.800179,-4.920749,0.871846,-0.772171,2.640719,2.202162,-1.289369,3.25536,0.748096,-0.268397,1.081651,1.067485,-1.871162,1.321517,0.293869,0.847783,0.771034,-0.828368,-0.807607,0.578859,1.988693,-0.48636,1.451707,0.805261,-0.410037,-0.251359,0.13624,0.385702,-0.057398,0.524165,0.426179,-0.23508,-1.843089,-0.230144,-0.456204,-0.84203,-1.158154,0.343254,-0.71581,0.643545,-0.939992,-0.15878,0.311702,-1.808285,0.04
0.766629,-1.191622,-1.019058,0.896619,-2.354994,2.689216,1.59587,-0.489917,1.93,3.419279,1.162598,-0.25145,1.129257,1.069634,0.86042,1.388766,1.316203,0.154102,-2.537191,-0.829763,-1.40217,1.482081,-0.336188,-0.180722,1.933019,0.15971,-0.453027,-0.741011,-2.033995,-1.337967,0.31787,-0.356019,-0.282721,0.718486,0.642287,-0.508921,0.998015,0.360575,-0.217848,0.284018,-0.076841,1.204107,-0.50257,-0.060465,0.343566,0.192212,-0.039962,0.012893,0.01
-3.632405,-2.493193,0.549091,1.041812,-0.267257,1.827835,-2.556786,-1.772908,2.531049,-1.309734,-1.004474,-0.104702,-0.078457,0.245034,-1.0209,0.622963,0.955137,0.825814,-0.92295,-0.203826,0.544159,0.140505,0.250915,-0.447974,-0.453754,0.48628,0.303695,-0.208768,0.486081,-0.369151,0.227799,-0.48063,-0.905366,1.089429,-0.02377,-0.574457,0.273677,-0.348596,0.058406,-0.41678,-0.254213,0.368121,0.269624,-0.957817,-1.04611,-0.320378,1.333689,-0.231466,?
-6.258319,-1.896719,-1.162872,4.890106,2.891251,-3.300743,3.314361,0.608043,-0.933767,-1.221272,-1.450583,-2.132534,-0.542899,0.167402,0.650366,2.067032,0.175529,1.201156,-1.261857,0.304347,0.574693,0.888055,1.159513,0.0761,-0.305016,0.035412,0.710754,-1.577532,-0.300835,0.620846,-0.35687,0.347644,-0.132052,0.013482,0.180151,1.805887,-0.552364,-0.398082,-0.012612,0.73969,-0.246848,-0.175339,0.374189,-0.587695,-1.037004,-0.12363,0.297418,-0.096074,?
-13.211288,18.988382,26.813806,-17.170192,11.603032,-3.257548,-0.795587,9.636284,6.13049,-0.015287,-3.17305,-5.037087,6.74312,-1.877605,-4.738878,0.774871,-5.405405,1.242804,1.238282,4.352965,2.80755,0.24781,0.052594,1.127027,-1.783201,-0.924125,-2.157253,-1.648716,3.236657,3.324503,-0.419084,-1.068717,-0.560659,-2.360091,-1.746863,1.958316,4.100616,4.097964,-2.138336,0.882327,3.971079,1.536918,-0.583629,-0.869162,0.733602,1.785894,0.731411,0.84919,1
-1.883482,7.036351,-1.175163,1.655871,-3.061499,0.298978,-1.515656,-0.315898,0.363618,-0.879147,-1.341332,-0.577189,0.144014,0.111364,-0.685238,0.836017,-0.577306,-0.532087,-1.028084,-1.215476,-0.117429,-0.462495,-0.133421,0.941061,0.544337,0.448876,0.211927,0.026239,0.283628,-0.253379,0.447987,-0.137324,0.065417,0.011189,0.252515,0.080387,-0.250172,0.792836,-0.196334,-0.836742,0.126722,0.028161,0.007538,-0.492552,0.568389,0.902164,0.156966,-0.567482,?
-1.604029,-4.693943,1.061301,-0.21531,-2.320272,0.244217,0.395843,1.387853,1.306509,-1.493969,0.033395,-0.387898,-0.738596,0.071665,-1.853989,0.392737,0.252007,-0.176892,0.049212,0.019819,-0.009557,1.58287,0.430153,0.218969,0.050229,0.917129,-0.603426,0.500932,-0.213215,-0.286621,-0.592492,-0.091924,0.981204,-0.229603,-0.648154,-0.674378,-0.013922,-0.598895,-0.904417,0.080509,-0.580705,-0.202621,0.771812,0.077199,0.455683,0.88845,0.313165,0.869442,?
8.431213,6.137277,2.865949,3.882197,-5.082481,2.381716,1.701973,0.704225,-1.059825,-4.01148,-1.874001,0.941,-0.806911,1.733024,-0.066322,3.806628,-0.009625,0.589915,0.878898,3.441693,-0.647609,1.839323,-0.086587,-1.622844,2.656226,-2.008095,1.19085,1.898672,0.096363,-1.236389,1.80089,-0.351414,-0.409291,-0.403836,3.374841,-1.229908,-0.459579,-0.649806,-1.114547,-1.15889,-1.045428,-1.494783,0.816887,-2.072412,0.521062,-0.273342,-0.102937,0.33608,0.03
-5.719167,-0.326063,4.140338,-0.396973,-0.855517,-9.257971,-10.13953,-2.937586,-0.518163,0.463957,1.523606,-1.880677,-8.369956,6.778758,4.806037,-3.934466,4.172668,-1.60757,0.776184,-2.941461,0.07905,0.092105,0.021959,-0.979302,-0.498578,1.263559,0.09463,-1.103314,-2.509668,0.021982,0.672128,-1.001573,-0.237412,0.419642,-2.261657,-0.022413,-0.381837,0.158402,-0.726002,0.303024,0.980282,0.36149,-0.009291,-0.174695,-0.736152,-0.292916,0.64322,-0.218515,0.05
2.100186,-2.187594,-0.542895,0.548235,2.445326,0.935771,-1.929599,-1.317684,2.24773,-0.952147,-0.411232,0.958481,-0.74138,-0.541677,-0.544465,-0.430977,-0.042157,-0.417497,-0.94802,0.029779,0.296933,-0.230212,1.4352,0.077491,-0.208463,-1.347362,0.250721,-1.285617,0.333776,-0.395469,0.458536,-0.736084,0.743865,0.404989,0.479763,1.462468,-0.15963,0.039402,0.229388,-0.201217,0.247207,-0.224195,1.629109,0.860605,-0.721236,0.11262,-0.158425,0.309193,?
-2.196065,-5.877361,0.438663,-3.117221,-2.486739,-0.961151,1.934387,1.722067,-3.04089,0.14577,-0.25775,0.120447,-0.593288,0.746984,-0.78758,0.003011,-1.466446,0.268982,0.678173,0.747131,0.022285,1.2162,1.769278,0.469794,0.579828,0.482964,-0.004954,-1.627953,0.326603,-0.488092,1.740269,2.504078,-0.048387,-0.785593,-0.902752,0.041431,0.080175,0.40547,0.332403,0.372273,-0.780681,0.617705,0.338782,0.169693,-0.590424,0.505734,-0.15992,-1.264815,?
0.607404,-2.676433,-1.470956,-1.69393,1.299107,0.834924,-1.291322,-0.114423,1.199826,-0.288781,-0.158685,0.358717,-1.492881,-0.337197,-2.153396,0.291159,0.760492,0.77986,-0.811426,-0.281185,0.248979,0.096079,0.739412,-0.766015,-0.567427,-0.283297,0.39561,-0.782078,0.240599,0.042963,0.772407,0.351634,0.586136,0.06474,0.088106,0.691317,-0.116551,-0.25616,0.07401,0.157143,0.263612,-0.277408,-0.462419,-0.340291,-0.822068,0.004338,0.256554,-0.060279,?
-3.743209,-3.904981,-0.303362,-3.352492,-2.65088,-0.327577,2.180958,1.086576,0.721985,0.201738,1.249762,0.100541,-1.488358,-0.233728,-1.367668,-0.335886,-0.23969,-0.878718,-0.296241,0.28609,0.111381,-0.204355,0.347268,-0.246592,0.285815,0.167402,-0.238503,-0.283736,-0.01905,0.360925,-0.284115,-0.583082,-0.429627,0.105542,0.135012,1.084552,-0.79909,0.182074,0.018084,0.013866,0.368287,-1.21993,-0.362619,-0.225025,0.313692,0.917776,-0.624207,0.537678,?
11.526898,2.018335,0.771982,-1.577165,1.265964,-1.040753,0.717052,-1.882748,-1.929645,0.470848,-0.650409,0.682502,0.308448,0.994464,-1.075955,-0.458216,-0.261153,0.587745,0.151672,0.837664,0.310934,1.575262,3.032076,1.55666,0.286175,-0.080229,0.638222,-2.837866,-0.049653,-0.773457,0.020231,0.037822,0.009261,0.557284,0.097866,-0.397192,0.18575,-0.009678,0.233418,0.254276,-0.329596,-0.704258,0.655662,0.113074,-0.406211,-0.27787,-0.155334,-0.10231,?
2.250344,4.542895,-0.105574,1.274132,-0.326781,0.479381,-1.626965,-0.763903,-0.789291,-0.30162,-0.545937,-0.689111,-0.637284,0.010832,-1.234849,1.157415,-0.192357,-0.055311,-0.895795,-0.503256,0.165202,0.202839,0.127451,0.664815,0.505056,-0.157783,0.17119,-0.46973,-0.186728,0.525623,-0.009459,0.445817,-0.086509,-0.325791,-0.153598,0.781274,-0.134232,0.28173,0.374756,-0.296964,-0.734689,-0.183965,-0.462564,0.042317,0.248221,-0.227207,-0.111481,0.4702,?
-4.815909,-3.382626,-0.053048,0.089356,-0.576693,-0.405649,1.726907,0.001636,1.814187,-0.326856,0.33215,-0.175082,-1.047698,0.959991,-2.281304,0.096466,0.667122,0.632969,0.062968,0.603476,0.107152,-1.714912,-0.889133,0.655196,1.37941,0.165859,0.421091,-1.293118,-0.001163,-0.067843,-0.018584,0.610609,0.482013,-0.056925,-0.436895,0.057177,0.098803,0.16096,0.236637,0.020982,-0.7323,-0.482472,0.229334,-0.679617,0.440376,-0.60994,0.831174,-0.305424,?
0.149104,-4.308155,-0.291949,1.006319,-0.093014,5.891575,-0.443674,0.429479,1.290452,3.187215,-0.403673,-0.938824,-2.454791,1.851767,1.809827,-0.132971,-0.135822,-0.700011,-1.123567,-0.597238,0.014449,-0.690944,0.889149,-0.781491,0.012801,0.938673,-1.254559,-0.120221,2.19593,0.101586,-1.682949,0.362722,0.66742,-0.239393,0.405445,0.598657,0.514931,0.500973,0.196222,0.704469,-0.350108,-0.363931,0.226302,-0.233392,-0.21213,0.354423,-0.092686,-0.654109,0.02
-0.590573,0.815015,1.26587,1.009849,-2.883443,-0.569627,1.696512,1.018514,1.493378,-0.292987,0.845816,-0.349431,0.943023,0.653756,-0.923325,-0.173268,1.02135,-0.666679,-0.020886,-0.487205,0.422483,-1.161738,-1.162304,0.745607,0.942017,0.647131,0.546307,-0.295088,-0.164566,0.379871,0.238184,-0.303831,0.171493,0.052966,0.242198,0.439944,-0.333011,0.63987,-0.203516,-0.150506,-0.247302,0.599768,-0.125749,-0.547563,0.562454,-0.393112,0.167267,-0.933546,?
-5.465101,-1.787058,-0.990451,0.840179,-1.782394,0.389394,-1.628675,1.397132,-1.55994,-0.224381,-0.740139,-0.964184,-0.457045,0.401232,-3.763287,0.990799,1.260478,-0.638225,-0.45241,-0.598316,0.369214,-0.046605,-0.855692,0.325444,0.581637,-0.525943,0.464415,-0.318928,-0.569492,0.702062,-1.263002,0.482115,0.40907,-0.195065,0.051442,-0.277608,-0.453753,0.530573,-0.442528,-1.033942,0.54322,0.755602,-0.079733,0.351117,-0.204481,0.255659,0.361561,-0.065005,?
-0.86369,-3.620409,0.812448,-0.793197,-1.216431,0.351357,0.304624,-0.855272,1.516083,-0.66633,2.507216,-0.450277,-0.357062,0.924978,-0.677101,0.708768,-0.887315,-0.508337,-0.228305,-0.221049,0.161467,0.492406,0.126947,0.085915,0.42581,0.916805,-0.780805,0.522199,-0.134212,0.642989,0.693184,1.385886,0.059917,0.428157,-0.648734,0.407085,0.540774,-0.50131,-0.356872,-0.493769,-0.568337,-0.437877,-0.07001,-0.721558,0.806292,0.719684,0.613667,0.736177,?
3.264941,-4.191801,-0.501712,-2.820893,0.677289,0.216646,0.475765,1.247669,0.482024,-0.370409,0.595681,0.464378,-2.479088,-0.612682,-0.347166,0.143678,-1.26529,1.054969,0.177271,-0.053081,0.080993,-0.620707,0.327558,1.183604,0.939694,0.239489,0.698513,-1.166719,0.126434,0.0132,-0.068934,-0.818442,-0.62207,-0.784884,0.286324,0.129692,-0.019928,0.073986,0.300825,-0.879695,-0.111541,0.16973,0.315883,0.355245,0.118121,0.57653,0.241185,-0.217866,?
-0.63722,-1.643549,0.835901,2.556981,2.17478,0.335719,-1.025936,0.347976,-0.077306,0.000783,0.15049,0.653556,-0.1507,-0.524373,0.188948,-0.451429,-0.482162,-0.208822,0.075731,0.376887,0.657538,-0.285818,-0.348335,0.392921,0.527142,-0.138389,-0.319238,0.199752,-0.879718,0.66203,-0.814181,0.070131,0.353576,0.715756,0.205446,-0.406855,-0.006904,-0.360527,0.188381,0.325616,0.188324,-0.971841,0.591504,-0.408183,1.219616,-0.174688,0.482729,0.038802,?
-7.053959,-4.255981,-1.761124,-1.015015,0.10694,-0.322371,0.416017,-2.300386,1.693081,-1.437727,-1.383905,-1.619197,0.498364,0.672498,0.459835,0.667644,0.734559,1.578276,0.146892,1.534652,0.302289,1.033936,-0.141816,-0.236183,0.280849,1.97579,-0.048034,-0.213162,0.279183,-0.58536,-0.468198,-1.442759,-0.709372,-0.343082,-0.054128,-0.681152,0.112922,0.101983,0.147515,0.138106,-1.144735,0.17707,-0.066906,-0.257802,-0.44935,0.112709,0.016282,-0.518786,?
11.422843,7.997873,1.024601,-0.812063,-3.167901,-0.902055,1.39324,0.004299,-2.157477,-0.826945,-3.884321,-0.816226,-1.268669,0.205134,-1.725527,0.977212,-0.024355,1.532558,-0.751991,-1.000965,-0.210163,-0.32912,0.151295,-1.978255,-0.965565,-0.627018,-1.165896,1.510078,0.219897,-0.973748,-0.38425,-0.465118,-0.785942,-1.450002,-0.599409,-0.663687,-0.209187,-0.784556,0.273437,1.020225,0.181766,-0.200066,-0.673755,-0.070099,0.423771,0.224437,0.560852,0.752308,?
-6.671848,-0.903345,0.277979,5.160941,2.205308,-1.714394,1.59331,-0.073191,1.06615,-1.433605,-0.017582,-2.290713,0.461156,0.913016,0.152701,2.019175,0.982859,1.897471,-0.222152,-0.128992,0.669067,0.927149,-0.466363,-1.200653,-0.487059,0.026089,0.353186,-0.702717,0.963541,1.512188,1.311547,-0.473946,-1.313023,1.402241,0.011766,1.49586,0.269853,-0.743306,-0.732476,0.063454,-1.149688,0.093945,-1.477728,3.034774,-0.648836,0.208627,1.00871,-0.182502,?
-1.91494,-0.465854,0.004483,5.206711,2.847585,-1.691569,2.495047,2.783552,2.211997,-0.650691,-1.20433,0.206153,-1.057528,-1.946493,0.076045,-0.905986,2.114269,-1.385668,-1.086882,-0.206092,-0.070056,0.304954,0.657746,0.445299,0.261861,-0.540871,-0.404251,0.778828,-0.189225,0.774212,0.550362,-0.357379,0.218125,-0.05479,0.147674,-0.598064,-0.446166,1.150934,0.607538,0.162059,0.141011,-0.227055,-0.640753,-0.314114,0.161406,-0.390876,0.194414,-0.156971,?
3.343065,-1.282163,-0.162313,-0.032577,0.640303,0.639439,-2.281198,-1.501735,0.316191,-0.342988,1.490633,-1.116701,2.984515,1.268007,0.075374,0.402295,1.432077,0.877954,1.022181,-0.203968,1.062487,0.726837,0.015013,0.606896,0.483669,0.871401,0.723239,-1.241663,-0.301376,-0.084735,-0.203996,0.778764,0.468776,0.136373,0.206587,-0.921902,0.393824,-0.287649,0.099349,-0.132537,0.641397,-0.626979,1.868753,0.64393,0.511227,0.074969,0.718012,0.774153,?
3.550445,-1.03017,1.294043,-0.688112,-1.210079,-0.13651,1.048934,-0.060812,0.988168,-0.482397,1.699621,-0.715843,0.229851,0.148753,-0.412674,0.83326,0.498952,-1.519867,-0.623645,-0.701842,0.048852,1.525029,1.149406,1.086735,0.238461,0.141702,-0.289201,0.192847,0.031611,0.044576,-0.059635,-0.472031,0.456051,0.083051,0.094853,0.363274,-0.172988,0.110854,-0.204733,-0.235725,-0.355691,0.099661,0.387014,-0.435803,0.479339,-0.273513,0.023837,-0.046504,?
-5.843197,7.355007,-4.382865,0.856976,-0.378151,-0.20731,-1.244768,1.654962,-0.946921,0.185624,-1.535238,-0.068479,-1.873596,-0.710524,-1.839275,0.779509,-1.350438,-1.18172,-0.760597,-0.595005,0.031447,-0.276948,-0.253798,0.043209,0.315023,-0.218406,-0.476099,0.026067,-0.764545,0.130934,-1.028328,-0.022751,0.20024,-1.50313,0.573301,-0.988363,-1.156237,0.678543,-0.074929,0.060688,0.622282,0.33921,-0.158848,0.277883,0.490247,-1.353732,0.602852,0.167479,?
0.390271,-2.961692,1.011805,0.64328,1.024263,0.977184,-1.715619,0.438991,-0.654223,0.230708,1.60181,1.469016,-0.273662,0.055313,-0.371754,-0.443098,-1.853011,-0.934624,0.395792,0.382656,0.554675,0.071369,0.025548,0.194188,0.471421,0.093303,-0.622348,0.213905,-0.149387,-0.649757,-0.384985,-0.397785,-0.034214,-0.01424,-0.567873,-0.396705,0.408979,-0.225772,-0.090203,0.220624,-0.315823,-1.191485,0.446577,-0.440749,0.621933,-0.015565,0.470874,-0.757881,?
2.730442,-2.976932,0.045334,-3.59543,-2.012308,-0.237793,-0.112307,1.530796,-4.335983,1.728388,1.572358,-2.139451,1.843539,-1.043628,1.064746,-0.789531,1.861751,1.613769,0.850989,-0.054174,0.971932,-1.453095,-0.497064,-0.869988,0.714757,-0.909999,-0.183147,0.290351,-0.386566,0.956934,1.297881,3.782764,-0.016456,0.376108,-1.097119,0.187888,-0.45851,1.769563,-0.194944,0.765423,-0.684763,-0.598598,0.210945,0.055376,0.17058,-0.335944,-0.336502,0.402565,?
1.954063,-1.53468,0.502347,2.735529,1.766872,-0.791076,-0.447119,1.42008,-1.311385,0.129661,2.144921,-0.742193,0.845977,-0.672134,-0.652588,0.010133,0.887076,0.018937,0.55129,0.351053,0.558851,2.314423,0.651118,-0.846573,-0.334546,0.496619,-0.536698,0.35843,0.542348,-1.928673,-0.212922,-0.604398,1.42908,0.115258,-0.280118,-0.227914,-0.176726,0.343794,-0.502391,-0.488427,0.447946,-0.090959,-0.472306,0.001452,0.940336,-0.146394,-0.980383,-0.507411,?
-3.073219,-4.526037,0.954725,0.082421,-2.885668,-0.174171,-0.27347,3.300539,-2.722282,-0.569431,0.304081,-0.268791,1.11696,-0.804554,2.217125,-0.149555,-1.741437,-0.481169,0.613552,-0.302091,0.444082,-0.077063,0.112496,0.950609,0.735433,-0.022523,-0.614688,0.749745,-0.616009,0.337724,0.01924,-0.724081,0.027725,-0.114799,-0.392607,-1.58353,-0.260221,0.718,-0.67917,0.814192,-0.728739,0.161777,-0.236162,0.309103,0.437429,-0.333802,-0.331563,-0.519753,?
5.029295,-1.671087,1.609932,-0.987387,-2.301185,-0.24974,1.146723,1.56644,-0.040021,-0.861985,-0.918743,0.542951,-0.974166,-1.459921,0.054892,-1.219435,-0.211807,-0.04919,-0.5692,-0.065471,-0.173535,0.186544,1.99834,-0.105056,-0.216924,-0.632368,-1.132457,0.093495,-1.09343,1.405292,0.234101,-0.089256,0.182049,-0.463562,0.190605,-1.068136,0.003045,0.947344,0.369303,-0.657134,-0.333986,-0.659516,0.524038,0.696605,0.409707,0.570797,-0.590994,0.496226,?
-11.791845,-0.423439,1.285717,-5.406175,-0.205026,0.772827,5.587513,-8.235551,-5.821128,-5.22368,4.562026,5.332761,0.463974,-3.483644,-1.481985,0.360011,1.734125,0.938137,-1.964975,-2.754057,0.01966,0.131921,-1.386211,-0.475034,1.00519,1.069473,1.06013,0.388933,1.77908,-2.440647,-1.960758,0.9952,-0.641237,-0.535757,1.542845,-1.240818,2.144398,0.234926,-0.227348,1.008229,0.262881,0.53876,-0.55283,1.029875,-1.013165,0.786047,2.057202,0.556777,0.02
-9.453339,2.467192,1.762977,-2.962322,-2.634595,-5.71363,1.087849,-6.928952,2.394559,2.071666,-0.213225,0.505518,-0.768034,-1.471918,0.772255,-0.787008,-1.202305,-0.911491,2.502202,0.201244,0.748313,-0.830794,-0.39484,-1.063396,1.579117,-1.010838,3.154438,-0.062015,-3.112988,-1.476024,1.844586,-1.343694,0.224862,1.051198,-3.741644,0.108408,0.06329,-1.272678,0.121111,-0.212236,-0.01618,-0.561709,0.213057,-0.975897,0.535394,-0.22585,-0.806242,0.368208,0.04
-1.797781,-4.752032,0.237817,-0.027517,0.040663,0.866711,-1.41504,0.131449,0.783729,-1.583029,-2.311455,0.063759,-1.719489,0.492192,-0.856578,-1.30887,-2.26813,6.429159,2.742765,-0.360028,-1.430341,-0.918647,0.52352,2.843332,2.605333,0.500554,-1.259349,2.986026,-0.703138,-0.06401,-0.938261,-0.027475,0.89101,1.33646,0.674791,0.848428,0.39548,-0.820688,-0.175883,-0.460603,0.415279,0.012868,0.184237,0.266786,-0.329946,0.260984,0.502352,1.180165,?
-6.285024,-2.777702,-2.864841,-3.962837,0.600236,-0.680167,1.591057,-4.225352,-0.814342,0.49723,-0.215227,-2.0136,-0.89951,-0.011611,0.386164,0.355721,0.552538,0.614106,-1.136493,1.678499,-0.177965,-0.309424,1.013222,-1.078922,0.225627,0.004284,-1.098413,-0.458893,0.818597,-0.898516,0.849843,0.06695,-0.957986,-0.544573,0.265587,-0.733128,0.474576,-0.550068,0.056764,-0.7326,0.412705,0.050851,0.014964,-0.102921,0.07986,-0.837429,1.265008,0.778301,?
-4.435058,-6.345381,-1.414854,-2.595882,-1.107541,0.064931,-0.185315,2.036371,-0.735856,-0.956008,-0.617477,-0.469521,0.48107,1.763285,-1.11913,1.928755,-0.8427,0.950926,1.032903,-1.323542,0.425106,0.803101,0.02383,-0.17192,-0.442739,-0.651207,0.287653,-0.247015,-0.731427,0.07858,-2.919404,-1.074565,-0.864253,-0.63963,0.512074,0.855965,-0.593384,-0.374915,0.514368,0.18492,0.173717,-0.455115,0.649078,0.038708,0.011581,-0.750902,0.175093,-0.367124,?
3.076423,-0.739922,1.424034,2.74875,0.885415,1.130731,-2.683212,0.050083,0.488941,-0.830374,-0.041075,1.262682,-0.155997,-0.410154,-0.866111,-0.54255,-0.865737,-0.715836,-0.053835,0.062146,0.51662,0.379075,0.549453,1.009296,0.4665,-0.052616,0.149711,-0.803697,-0.697411,0.384546,-0.332191,0.246102,0.244102,0.106756,0.132388,-0.390634,-0.024022,-0.520699,0.441963,0.673777,-0.178864,-0.469548,-0.236189,-0.328969,0.359264,0.098644,-0.265441,0.329913,?
-7.817615,3.042258,-7.656788,-4.990816,0.534169,-2.013191,1.193875,3.500024,-3.314013,2.272187,-0.532141,2.278068,1.120711,1.458733,1.887471,-0.446043,-3.19822,-0.642091,-0.124244,-1.978273,0.482497,-0.626109,1.244541,-0.331653,-0.835492,0.587303,0.041491,-0.273891,-0.464254,1.088242,3.695607,1.157125,0.897441,1.821273,1.626537,-0.677528,1.006446,0.679847,0.161982,1.108207,-0.651193,-0.705882,-0.551459,-1.290804,0.457816,-2.436394,-0.73866,2.388499,?
-3.016051,1.899949,-1.162028,-0.089235,-1.784327,0.010618,1.81417,-2.234865,2.081143,3.943847,0.254485,-0.745509,0.657253,-0.455075,-0.158698,0.241887,0.806378,-0.854828,-1.808692,-0.381636,-0.803652,2.570113,-0.450993,-0.408892,1.770169,-0.302538,0.336114,0.328941,-1.565459,0.151696,-0.329042,-0.164521,1.018909,-0.060734,-0.145896,0.361819,-0.146075,0.162448,0.862806,0.031849,-1.041813,-0.176565,-0.293937,-0.159696,0.278231,0.248935,-0.168475,0.512539,0.03
4.794278,1.734037,2.47678,3.225974,-3.660539,2.667343,-0.876373,3.014566,-4.369577,1.830006,-0.443746,1.150041,-1.153374,0.561025,2.136166,-1.818592,1.880098,0.828966,-1.089816,-0.331778,0.124615,0.02198,0.693054,-2.117094,0.541118,0.956979,-0.060302,0.567644,3.231221,1.619531,-1.559221,0.021714,-0.690063,0.497916,1.107289,-0.001,1.103489,0.636524,0.015688,-0.155915,-0.803796,0.507384,0.808276,-0.806876,-0.884211,-0.147082,-0.454217,0.623428,0.03
0.807251,-3.183819,-0.90225,4.452476,1.315851,5.00349,1.157662,0.860576,3.157576,3.855539,-0.688481,0.753323,1.366284,-0.335773,2.237741,0.515253,-2.264089,0.407169,-1.943568,0.499439,0.535971,0.568635,-1.766042,1.250473,0.689722,-0.89155,-0.093097,0.476156,-0.283224,0.097605,-0.507384,0.259986,-0.485151,0.907608,1.787257,-0.675163,0.235908,-0.17801,0.64264,0.309241,0.300264,0.070618,-0.178954,0.095454,0.216163,0.283632,0.245237,-0.166644,0.01
-7.041856,6.622997,-8.721784,-2.787433,0.108824,-1.756659,-0.435733,3.219779,-1.407971,0.730271,-1.154498,-0.29056,-0.003032,-0.606047,0.371898,0.067794,-1.768878,-0.541094,-0.317642,-1.247492,0.40599,-0.07522,0.11713,-0.221298,-0.219635,-0.15304,0.044751,-0.248567,-0.71431,0.174224,-0.652122,0.187318,1.252801,0.034684,0.972439,-0.202851,0.083052,0.236812,-0.73075,-0.677165,0.434966,-0.03003,0.078215,0.43921,-0.06449,-0.138815,-1.209389,-1.012791,?
-12.334307,8.583487,4.566863,-1.879387,-2.329591,-4.588528,0.575616,-2.920417,-0.594337,-2.487262,3.014416,1.886587,-2.224272,3.688684,-0.562341,-0.214408,2.598973,-0.266863,1.861718,1.584832,5.189666,-1.546775,1.009936,3.402556,-5.560493,0.627493,0.929591,1.121764,-1.035927,0.284363,-1.539367,-1.008382,1.164186,0.157683,-1.233945,1.351295,1.026774,0.978119,-0.134073,0.968831,1.038834,0.035236,-0.741292,-0.248564,-0.639963,0.145316,-1.279661,-0.608577,0.08
0.04515,-3.791408,-1.694444,-1.297931,2.138027,0.592976,-1.026565,0.369385,0.914936,-0.515997,-1.508433,0.261708,-2.19935,-1.391228,-0.713239,0.07665,0.694751,-0.607963,-1.194968,0.210114,0.494323,0.466877,-0.471691,0.014915,0.007744,0.206777,1.155451,-0.451332,0.716492,-0.198697,-0.059972,-1.346148,-1.20701,-0.188888,0.335526,2.845997,-0.564123,-0.336526,0.007464,-0.767167,0.479151,0.497372,-0.457904,0.036472,-0.375078,0.702122,-0.214454,0.003439,?
3.572457,-0.445962,-3.61762,-2.881877,4.531397,-1.21111,1.27593,0.416468,-0.017565,1.08869,0.339459,1.473834,-2.894725,-0.64068,-1.202722,-0.707063,-1.516946,-1.486803,-0.538433,0.456332,0.554257,-0.381766,0.214049,-0.680532,-0.000993,-0.741631,-0.436334,0.599225,0.111389,0.016927,-0.024844,0.081828,-0.500988,2.597178,0.027058,-0.529912,-0.806804,1.662245,-0.928914,0.043585,-0.702498,1.448763,0.925078,-0.037923,0.400895,0.296661,1.396945,0.620195,?
8.682968,0.820724,0.128958,-1.765203,1.123762,-1.401645,2.483376,-0.476187,-0.25376,-0.137033,-1.499196,0.697942,-0.132976,0.592387,0.609207,-0.2785,-0.327373,-0.887441,-0.362171,0.608335,0.789753,0.012182,-0.350219,0.953036,0.806563,0.994844,0.549954,-1.637386,-0.701637,0.396965,-0.362923,-0.29286,0.741301,-0.768274,0.788896,-0.130701,-0.15537,-0.842134,-0.794007,-0.937694,0.302709,0.677729,-0.00811,0.572965,-0.873322,-0.058641,0.142243,0.038146,?
0.743312,0.050943,-3.344673,-0.432998,3.45059,0.737261,-3.19488,-1.045595,-0.115519,0.27151,-0.341919,-0.307864,-0.757569,-1.615942,0.106402,-0.411381,0.223674,-0.622327,-1.172198,0.680793,0.837889,-0.094017,-1.035848,-0.375752,0.142277,0.178984,0.125958,0.567928,0.036013,0.085233,0.394774,-0.068584,0.171931,0.592395,-0.187691,1.35154,0.652971,-0.765628,0.038375,0.260263,0.485608,-0.641273,0.13872,-0.109405,-0.856454,-0.340573,0.073781,-0.863509,?
-9.121127,4.083123,-9.62207,-4.818587,1.755036,-2.273946,0.790618,2.701739,-3.090515,2.389845,-0.208378,0.947373,0.709076,0.815765,0.846425,-0.641565,-1.916753,-0.764483,-0.490311,-1.325304,0.216519,-1.166583,2.078367,0.900892,-0.24617,-1.17962,-0.210332,-0.588352,-0.484555,0.969442,1.482829,-2.932865,1.41525,-0.042619,1.846066,-0.790417,1.175969,-0.51718,0.057187,1.567569,-2.088808,0.08312,0.260901,-0.890051,-0.157274,-1.120741,1.005768,0.814617,?
7.862611,2.564808,1.046534,-2.265485,-3.794,-1.349313,2.969182,1.283486,0.619434,-0.359633,-0.299126,0.123895,0.817478,-0.446213,0.507999,-2.14281,0.044754,-0.058173,0.827971,0.714966,0.892491,-1.55963,-0.876974,-1.208187,0.390734,-0.047228,-0.851801,0.020989,-1.267172,0.221616,-1.074769,-0.714166,2.365117,0.143745,0.560426,-0.249949,-0.73225,0.066176,1.766541,1.527195,1.103928,-0.973969,0.321898,0.205229,-0.465127,0.131599,0.377465,1.213474,?
-3.016331,10.714396,-4.221674,1.419524,-2.857994,0.609431,-3.058923,0.953809,1.830674,-0.663147,-0.48991,-0.961388,-0.506275,-1.731851,-1.049407,-0.380019,-0.293005,-0.21297,-0.728723,-0.962973,-0.089783,-0.388127,0.00901,0.115875,0.257089,0.582274,-0.134403,0.12734,0.329946,-0.678998,0.326821,0.967018,-0.649298,-0.962088,-0.316001,-0.406347,0.183744,-0.399874,0.100511,-0.432277,-0.304738,0.178626,0.358581,0.164919,-0.013478,0.268194,0.387148,-0.20802,?
0.297485,-4.977666,-1.56357,-2.431392,1.49215,0.594175,-1.244636,0.208953,0.504161,-0.90959,0.321496,0.155168,0.080804,0.859799,0.82364,1.497106,-1.389521,0.836594,0.227279,-0.664207,0.806718,0.721316,-0.11899,-1.288916,-0.913112,-0.088156,0.288578,-0.459884,-0.201678,-0.3193,-0.326516,0.202362,0.932221,-0.058415,0.533802,1.717879,0.210921,0.064613,1.752897,-0.066229,0.699017,-0.114054,-0.055678,-0.755604,0.125692,-1.144176,1.048927,-0.161661,?
-2.563849,-0.889989,-0.928981,6.924878,4.857778,-3.775657,4.052594,2.661009,0.185207,-0.589989,0.610456,-1.903463,-2.269605,-0.551928,-1.107567,-0.929571,-0.111154,6.271221,1.622716,-0.430808,-1.641059,-1.19044,1.12785,1.45652,2.123803,-0.113945,-1.958694,3.166817,-0.539199,0.848478,0.563396,1.001352,1.424937,-0.401237,-0.107899,1.202785,1.60734,-1.188946,0.454601,-1.548322,-1.033912,0.256397,-0.849622,-0.097326,-1.354032,0.108587,-0.347142,0.177366,?
5.519719,4.241659,-0.028951,0.764804,-0.523693,0.446364,-1.427689,-1.123953,0.226827,-0.843471,-0.401623,-0.855694,-0.393437,0.054132,-0.880889,1.247742,0.021628,0.360829,-1.080986,-1.124433,-0.018228,-0.372688,-0.002554,0.179504,0.177307,-0.163124,0.006652,0.342131,0.289606,-0.144279,0.575893,-0.277976,-0.023822,-0.031475,-0.126849,0.224324,0.309891,0.009315,0.095089,-0.386592,-0.410503,-0.143339,-0.285699,-0.239118,0.053574,-0.247984,-0.842263,0.446264,?
9.090035,0.083165,0.144014,-1.939204,1.379861,0.440297,-0.875603,-1.997108,0.222134,-0.660503,0.296595,-0.65859,0.785225,0.621492,1.562077,1.156595,-0.637962,0.930702,-0.275795,-0.583673,1.146311,-1.392022,-1.440762,-1.488544,-0.470568,-0.118498,0.022839,0.329706,-0.250761,0.090745,-0.101988,-0.533835,-0.108344,-0.071148,0.074494,0.089158,0.359411,-0.98102,0.42256,0.178951,0.778785,-0.128835,1.524595,0.813967,0.058541,0.062628,0.148424,-0.778752,?
4.424938,-3.094046,0.453716,-0.441197,0.881173,0.725576,-0.578666,0.914148,1.525744,-1.389092,-2.539567,0.765498,-0.911693,-0.428802,0.138831,-0.420924,0.167607,1.478948,0.015321,-0.624828,0.568228,-1.812405,-1.300906,0.466797,0.489185,0.177644,0.753157,-0.017994,-0.566735,1.0887,-0.065951,-1.522635,-0.457269,-0.815219,0.743733,-0.23086,0.126011,-2.623491,-0.27688,1.401986,-0.066259,0.311027,0.087998,0.248338,0.81949,1.097318,-0.046256,0.323795,?
-1.146062,-3.702203,0.556848,-0.571485,-1.600985,0.045263,0.22724,0.896531,0.346024,-0.318078,1.186258,-0.377055,1.412704,1.420402,-1.072105,0.064968,0.48636,-0.373974,1.216759,0.021476,0.63832,-0.610187,-1.210463,1.060252,1.562614,0.470831,0.166347,-0.464322,-0.438951,-0.094418,-0.766171,-0.614192,1.392568,-0.443345,-0.231661,-0.777431,0.119693,0.419432,0.405012,0.222477,-0.491933,-0.970062,0.573938,-0.061376,0.316594,0.208874,-0.430594,0.944166,?
4.855884,0.389375,0.936858,-0.870902,-1.343884,-0.441463,1.413705,-0.339505,1.429818,-0.651102,1.018967,-0.376766,0.055626,-0.249427,0.13515,-0.142468,-0.10695,-0.159952,-0.50307,-0.645912,0.213126,-1.326214,0.734061,-0.690919,-0.136789,-1.7169,-0.739574,0.039493,0.117441,-0.233426,0.060876,-0.230725,0.380627,0.590553,0.067252,0.747546,-0.643515,0.423375,-0.392451,0.230544,-0.531491,0.405351,0.807956,0.340121,0.382986,0.083385,-0.439519,-0.263259,?
-4.697432,-4.891472,-1.134394,-0.108602,-0.217912,0.063208,-0.459837,0.595615,0.599043,-1.191601,-1.806404,-0.75128,0.821422,0.832976,-1.230855,0.473836,1.660997,1.665198,0.219281,-0.058276,0.203249,0.390561,0.291695,-0.959292,-0.399281,-0.42512,-0.468482,-0.124059,-0.693621,0.594988,-1.11382,-0.276952,0.212069,-0.7983,-0.15985,-0.600658,0.430964,0.152654,0.499876,-0.284512,-1.3147,-0.453069,-0.735035,-0.434692,-0.493107,-0.578463,0.078678,-0.29543,?
12.534086,4.622777,1.297038,-2.108989,-2.180991,-0.844578,1.629039,-0.932801,-2.024253,-1.163923,-3.464078,-1.240269,-1.1329,0.766568,-0.681031,1.87193,-0.254434,1.848029,-0.65676,-0.646697,-0.082868,0.382281,-0.28685,-2.052146,-0.90298,-0.120233,-0.968818,1.533423,0.281266,-1.229126,-0.501488,-0.00101,-0.756662,-0.546238,-1.053112,-0.274985,0.466207,-0.049532,0.860396,0.00489,-0.630605,-0.419357,0.079165,-0.163646,0.913587,-0.912035,0.294174,0.576788,?
5.416967,8.601703,0.377694,1.141354,-4.187468,-0.562038,0.670642,2.279892,-0.816694,-1.102128,-3.141745,-0.437573,-0.957474,-0.618464,-0.491743,0.52773,-0.664639,-0.022519,-0.151209,-1.065338,-0.104329,0.055262,-1.015493,-0.490604,0.267047,0.632583,-0.523421,1.143959,0.341278,-1.320326,-0.454238,0.151244,-0.5687,-2.116312,-0.448523,0.594083,-0.580617,-0.086368,0.623983,0.086798,-0.028999,-0.511993,-0.33728,-0.03803,0.840811,-0.09389,0.595808,1.500984,?
-1.772928,-4.140097,-1.198064,0.674634,1.526277,0.267821,-0.443287,0.493158,3.395609,-2.073914,-2.555056,-0.719531,-0.63404,-1.138027,0.895861,0.275445,1.811542,-0.017528,-0.77918,0.005338,0.289011,0.686705,-0.311286,0.272072,0.197104,-0.082108,0.677442,-0.167261,1.344312,-1.772146,0.15612,0.050208,0.317829,1.096484,-0.745448,0.13583,0.422324,-0.60976,-0.256277,-0.734278,-0.553599,0.441158,0.973028,-0.181494,-0.202293,0.595206,0.016025,0.79516,?
-9.482868,3.639393,-9.032043,-4.851486,1.49347,-1.8027,0.981249,2.289429,-1.710234,1.917953,-0.673048,1.314983,0.240447,0.78656,1.088237,-0.504996,-2.128921,-1.219913,-0.563398,-1.120393,0.056755,-1.274768,0.433245,0.051944,0.011825,-0.1385,-0.67173,0.654831,-0.158283,0.255864,1.635086,-2.524033,1.351012,0.436276,1.401541,-1.047395,1.096845,0.785936,0.042028,-0.125207,-0.831629,-0.748186,-0.064551,-0.385594,-0.016913,-1.716897,-0.239973,0.180578,?
6.648809,-0.816045,0.038323,-0.071245,2.377815,0.086618,-0.494442,-0.587721,0.585383,-0.557546,-0.80275,1.13884,-0.996113,-0.247766,-0.555217,-0.362194,-0.532717,-0.384195,-0.853614,-0.002201,0.436143,-0.085728,0.900176,-0.068807,-0.275785,-0.548436,-0.027277,-0.758563,-0.434384,0.47437,0.413701,-0.451199,0.598332,-0.386053,0.429613,0.197099,0.555892,-1.077806,0.161968,0.056424,-0.366896,0.662497,0.326478,0.134675,0.003016,0.35674,-0.387445,0.168844,?
-1.136309,2.145097,4.968798,5.09915,2.87815,2.558709,1.782118,-1.688149,1.033464,2.010802,-1.05199,0.148974,1.074483,-0.924038,0.491041,-0.52581,-1.254204,0.318303,-0.531899,-1.266266,0.284081,-0.222203,2.129347,-1.887467,0.581685,0.496125,3.951934,1.241988,-0.683263,0.800153,-0.603888,-0.192171,-0.150665,-0.797139,-0.299789,-0.436318,-0.468076,0.746526,-0.488543,0.203539,0.317298,0.030144,0.443544,0.294993,0.365462,0.145645,0.045305,-0.217872,0.07
-7.41958,4.550711,7.527745,-3.291537,4.394677,5.035301,0.800176,-0.218473,-0.148588,4.839537,-1.078233,2.946796,-0.242306,0.834124,2.437365,1.486686,2.206692,0.721569,1.363575,-1.262137,0.826966,0.993414,-0.698013,0.155462,0.559021,-0.518184,-0.066689,0.353605,1.894486,0.008759,2.050641,-0.259062,-0.426699,1.066639,0.753794,-1.159043,-2.419742,-1.439555,0.638468,-1.435102,-1.659349,-1.504512,-2.470342,2.891365,1.151564,-0.153214,0.820199,0.646767,?
-3.428384,-3.569752,0.796249,1.019745,-2.267752,0.700073,-1.969298,1.489721,-1.351492,-0.510782,1.059357,-1.041564,0.707802,-0.311164,-1.046679,0.2037,0.136052,0.007971,0.576287,0.154331,0.542732,0.338257,-0.177766,0.536254,0.751154,-0.225104,-0.423046,-0.070615,-0.631147,-0.192792,-1.170875,0.378027,1.231687,0.826462,-0.425389,-2.874122,0.568647,0.051396,0.409176,0.064429,0.564275,-0.278912,0.038193,-0.203693,-0.145839,-0.261315,0.820475,-0.046861,?
5.211976,5.957975,3.649567,3.204025,-3.876241,1.504854,-2.342178,-2.560534,1.169384,-1.598893,0.268151,-0.79624,1.801808,2.235646,-2.009879,1.666896,0.05602,0.510945,-0.506359,-1.808248,-0.005576,-0.608601,-0.310878,0.661427,0.323218,0.150756,0.102275,0.280438,0.137195,-0.002366,0.750755,-0.567627,0.321372,0.461218,0.02618,0.166026,0.646315,-0.547274,0.228085,0.527675,-0.683976,0.742851,-0.063025,-0.320861,1.166227,-0.142871,-0.035923,0.203938,?
0.585588,-4.996085,-0.804501,-3.006501,0.426188,0.792846,-0.580323,0.013573,0.715325,-0.528423,0.851937,-0.300433,-1.51873,-1.394527,1.037708,0.267312,-0.769155,-0.833529,-0.647787,0.451063,0.305752,0.42942,0.401707,0.9249,0.773813,0.128513,0.624037,-1.107377,0.566728,-0.483895,0.545785,-0.914595,-0.136253,-1.539564,0.1431,2.41859,-0.471035,-0.185616,-0.058062,-0.235047,0.216361,0.635827,-1.524278,-0.090406,-0.805093,-0.443974,-0.301996,-0.354533,?
-11.529353,5.621887,10.316754,-0.564131,2.019451,7.593652,7.760671,-7.259283,-2.977717,2.859698,-0.963287,-0.58325,-1.554095,1.053704,0.948152,-3.59037,0.527561,-0.74632,2.422845,-4.605176,3.166152,1.134624,-0.911153,0.918187,-2.676469,0.083843,1.677678,-1.144047,2.002216,2.425464,-1.31737,-0.703252,1.012543,2.123517,-2.406347,-1.12491,-3.238458,-2.309636,1.389721,-0.610052,-1.241408,0.072448,1.301029,-0.79617,-1.510747,-2.430947,-2.375636,-1.123658,0.03
-8.975794,13.07524,-8.873341,-2.361412,-1.881281,-1.053702,-1.039066,0.865594,2.581392,1.070598,1.295827,-1.21051,0.257659,-0.477047,-2.40324,-0.590933,0.428046,1.367752,-0.114821,-0.85256,0.342662,-0.16828,0.280356,-0.605378,-0.671376,1.393375,0.546649,-0.942428,-0.472477,0.444148,-1.154909,0.319713,0.000433,1.6843,1.332324,0.102541,0.116495,-0.404044,0.030352,-1.020885,-0.65071,0.776821,0.915923,-0.592925,0.492821,0.356998,0.346568,-1.013976,?
-10.009644,14.320812,17.699821,-5.990336,4.819319,-2.69478,2.911042,3.220698,4.306596,1.432364,1.061759,0.966154,2.203316,-2.065013,-1.418376,3.092629,-0.009072,-1.05049,1.252892,3.754297,3.769309,0.563089,1.612686,1.495135,-2.71763,-0.248422,0.640914,2.817249,1.354155,-0.477911,-1.588461,1.561189,-0.084969,0.367959,2.216478,0.211945,0.439828,-1.318029,1.186218,0.053435,-2.438818,0.284984,0.208617,1.027738,0.110291,-0.981061,-1.026302,-1.059557,0.41
-4.701355,2.470585,-0.883222,2.870296,-1.337277,0.694388,-2.481531,1.209408,-1.00266,-0.527981,-0.630829,0.209857,-0.652647,0.130782,-2.173163,0.866067,-1.31565,-1.533316,-0.576765,-0.839403,0.220172,-0.185435,-0.530822,0.68021,0.580302,-0.759808,-0.081667,-0.181592,-0.582416,0.467594,-0.766124,0.063043,0.203982,-0.640172,0.22285,0.275984,-0.530618,0.046731,-0.077072,0.417929,0.986511,-0.47637,-0.673629,0.415282,0.746798,-0.631769,1.008193,0.000027,?
4.483845,-2.033956,-1.678931,-2.728893,1.905108,-0.395469,0.213807,0.077955,-0.236736,0.325233,-0.154935,-0.019627,-0.510926,-0.374785,-0.000064,-0.267374,0.260395,-0.633087,-0.219558,0.112827,0.831938,0.283809,-0.474949,0.142856,0.19551,0.546764,0.450554,0.054016,-0.283979,0.579286,-0.058047,-0.243467,-0.512992,0.720507,0.490159,0.116208,-0.03695,-1.215251,0.309955,0.865019,1.591578,-0.598577,1.495885,0.694858,0.045808,0.3357,0.808657,0.479713,?
1.690925,0.728485,-5.838027,-3.287044,6.917998,-0.061045,-1.157311,-2.413402,1.368391,1.492607,1.585747,0.415008,-0.961153,-0.196231,0.06942,-0.471412,-0.175268,-1.778442,-0.462312,0.557641,0.835923,-0.622339,-0.228266,0.336628,0.988677,-0.26009,-0.36407,0.269509,-0.200371,0.800078,0.219137,0.725792,-0.343087,0.741885,0.319568,-0.866377,-0.059445,0.492055,-0.83244,-0.583975,-0.834831,1.669248,0.684147,-0.124345,-0.372084,-0.255185,2.032177,0.549883,?
-9.113069,5.13051,-3.787823,-0.296336,-5.279413,-0.283569,-0.280772,1.739288,4.196055,-0.504592,-0.09057,-0.070735,2.555978,0.009066,-1.110326,-2.088143,1.933092,0.243782,0.537566,-0.465434,0.038953,1.193124,1.009238,-0.585421,-0.842213,1.791001,-0.525328,-0.112102,-0.557317,-0.137333,-1.442657,0.074117,-0.63187,-0.424043,0.337368,-0.179811,0.819532,-0.665824,-0.104314,-1.05543,-0.287779,-2.084373,0.23967,-1.026302,1.876701,0.153175,0.95555,0.440071,?
-4.589012,-3.548485,2.336946,1.206866,-1.017631,1.682865,0.06841,-1.985608,1.890753,3.292161,-2.47013,-0.06237,-2.172857,-0.151959,-0.524084,-1.700247,-3.108698,4.732614,2.006589,0.25506,-1.80328,-0.085082,1.366256,1.766193,3.754301,-0.663908,2.254691,4.088864,-3.453103,0.382095,0.661305,-0.702066,0.831684,0.344433,-1.314505,1.483667,0.40899,-1.125624,-0.772474,-1.543182,0.104762,0.422904,0.097638,0.182698,-0.337168,-0.55895,0.266989,0.30717,0.02
-8.976312,-3.34482,1.034713,-3.967186,-2.592365,-0.237436,3.350364,-1.454659,-2.360858,1.757543,0.850686,-0.979493,-2.511531,0.369263,-1.791067,0.312555,-0.106538,0.640766,-0.344439,1.612242,-0.023681,-2.144847,-0.418405,0.206506,1.473468,0.022893,-0.352266,-1.163589,0.05046,-0.391867,-0.76454,-0.192295,-0.658177,-1.069696,-0.108227,-0.753061,-0.222247,-0.896784,1.132866,-0.846666,-0.158119,-0.850472,-0.077435,-0.886835,0.77661,1.028174,0.095169,0.51474,?
-6.201276,-1.583893,4.737234,-0.419257,0.13475,0.62391,0.657571,-2.95743,-0.136356,2.107975,-0.941353,1.461057,0.591965,-1.586005,-0.326477,-0.28362,-0.30158,1.273301,-1.263603,-1.596028,0.064972,1.032725,-0.630729,-0.537101,0.073445,-0.489878,0.918016,0.138935,-0.321926,0.401557,0.544681,-0.110423,-0.846542,-1.139361,1.279664,-1.068776,-1.694025,0.631375,-0.495019,-0.193665,0.182854,-0.726935,0.976054,-0.261446,-0.430214,1.146328,0.95862,0.106897,0.07
-0.204715,-1.166905,3.108621,5.010457,-1.38625,1.18686,-2.088073,-0.698694,2.831043,-1.935949,1.055601,0.237477,1.1153,0.081147,-0.237942,0.117881,-0.13133,-0.960055,-0.61274,-0.76712,0.183694,0.085997,0.463216,0.891377,0.130114,0.527517,0.124919,0.132152,-0.141921,0.571636,0.79615,-0.534693,-0.822349,-0.061006,0.258268,0.402619,0.00623,-0.182452,-0.126551,-0.057212,-0.318285,0.758154,0.595337,0.002315,0.352058,0.02415,-0.443666,-0.658183,?
-6.656314,-0.217621,2.18973,1.353533,-5.639775,0.889929,-2.286325,-1.230578,-3.503659,0.213042,0.159524,-0.774746,1.867084,-0.148203,0.674792,-0.807972,-0.791669,-0.568287,-0.490302,0.527693,0.512175,-0.526904,0.358324,0.338631,0.352147,0.764045,0.08429,-0.323232,0.00511,0.352797,0.627344,-1.034567,-2.281348,-0.159177,0.523511,1.182845,0.421578,-0.449837,0.501174,-0.920178,-0.334979,0.219717,0.327483,-0.384924,0.047476,1.216599,0.31648,0.324232,?
7.004134,-2.116393,-0.637376,-2.094358,3.033754,0.407804,-0.406497,-0.282003,1.492155,-0.036438,0.762401,0.866369,-1.030605,-0.346624,0.38014,-0.370811,-0.595097,0.936525,0.425435,-0.167801,0.375887,0.108239,0.751524,0.989655,0.663622,0.634338,0.295573,-0.316419,-0.501945,1.032767,0.0633,0.214176,-0.922267,0.34418,0.343695,-0.590168,-0.483523,1.450041,0.363933,-0.670123,-0.323744,-0.194402,-0.633247,-0.265363,-0.379704,0.384461,-0.73852,0.582847,?
-4.290028,-1.285066,1.751691,1.11883,-1.866526,0.777791,-0.336169,-6.156005,2.095636,-1.721634,-0.552542,-0.673823,-0.429778,0.437181,0.118131,-0.069074,-1.341359,-0.574981,-1.505185,2.182105,0.140324,-2.183789,0.17425,0.572312,1.342822,-0.23819,-0.775331,-1.767902,-0.240532,0.067643,0.213812,0.650965,-0.181899,-0.085663,-0.207465,-0.170351,-0.723734,-0.318381,-0.687361,0.931098,0.283003,-0.909095,1.059991,0.582522,0.327552,0.598119,0.274962,0.049894,?
-2.798018,3.629377,0.757071,2.716869,-1.247553,1.210626,-2.325957,0.117433,-0.320584,-0.082591,0.552432,-0.633176,-1.050717,-0.283253,-2.702377,1.137834,0.207094,-0.870754,-1.148142,-0.730583,0.213001,-0.465897,-0.933537,0.695986,0.661643,-0.556973,0.116873,0.040468,-0.162858,0.784312,-0.17091,0.000936,0.35307,0.849005,-0.080466,0.257891,0.052073,0.055468,0.282534,-0.438725,0.040432,0.069927,-0.006472,0.501508,0.470034,0.053285,0.295988,-0.599362,?
-14.016639,10.640312,28.115231,-18.810765,13.693354,-8.282923,-1.165988,6.044653,5.7811,0.266554,-1.896665,-9.296673,3.231019,-0.262584,-4.185752,-6.480664,-5.734208,-0.01336,-3.508647,2.208581,0.904267,1.275632,-2.196101,0.704667,0.594541,-2.654933,1.55494,-1.237474,1.689743,1.058145,-0.435695,-0.371598,-0.68356,-1.520519,-2.080534,0.448105,5.44739,1.530019,-0.013002,1.707214,1.201027,0.568595,-0.480555,0.385001,0.020821,-0.607947,-0.154678,0.938744,1
2.540251,-2.103612,0.840772,0.162758,0.036999,1.094174,-2.483997,-0.654044,-1.323133,-0.394457,0.626498,-0.151402,-1.340888,-1.820444,0.013771,-0.280562,-1.029707,0.062107,-0.857863,1.223143,0.628275,0.326851,0.090583,-0.751238,-0.234223,0.366204,-0.377576,-0.256892,0.058828,-0.83472,0.170167,-0.642136,0.465865,0.10952,-0.33345,-0.088561,0.40901,-0.587627,-0.219119,-0.141676,0.204451,-0.305948,0.387602,0.17822,0.180021,-0.032219,0.084991,-0.297657,?
-3.712388,-0.584776,1.072671,3.643732,-0.27932,0.072352,-0.755808,1.26728,-0.442942,0.775187,1.904951,1.01177,-0.795513,0.171462,-4.576724,-1.341845,0.460936,0.325153,0.90138,0.708859,0.192492,-0.077347,-0.000834,-0.833274,0.247776,0.642079,-0.314309,-0.020779,0.733214,-1.500941,0.525897,-0.87602,-0.122322,0.759833,-0.028781,-0.681727,-1.0144,0.435465,-0.155953,1.302128,1.097422,-0.517548,-0.474627,0.049682,0.098084,-0.361274,0.323486,-0.413128,?
7.87939,2.19165,-0.316947,-1.214011,1.256251,-1.223959,1.016828,-0.828629,-1.700058,0.999958,0.671274,-0.465854,1.109124,0.482983,-0.546067,-0.411908,0.849651,0.107583,0.299081,-0.70431,0.298964,0.238241,1.549956,-0.957991,-0.328745,-1.805214,-0.924253,0.930806,0.06005,-0.29778,-0.611707,0.372822,-0.804399,0.933428,0.102103,0.013131,-0.422986,0.602996,1.028463,-0.122148,1.017736,-0.495265,-0.482843,-0.321444,-0.569826,0.517622,-0.022555,-0.422263,?
-0.677448,-3.585342,2.404011,1.677272,-2.713508,0.323482,-1.778752,3.864523,-4.802092,0.321439,1.805145,-0.818745,0.00246,-1.654789,-0.243046,0.171919,-0.63867,0.468483,0.234177,-0.060559,0.872291,0.529443,-0.210272,-0.319915,-0.06304,0.271797,0.211654,-0.284263,-0.26418,-0.409766,-0.00731,0.075845,1.270243,0.890362,-0.130256,-0.912918,-0.108818,0.412935,-0.24795,-0.488718,0.056147,0.642652,-0.333584,-0.289916,-0.579104,-0.079481,-0.345984,0.437352,?
-9.244692,13.608059,-8.763775,-2.44115,-1.251334,-1.244036,-0.406818,0.542932,3.100347,0.813007,1.055324,-0.937142,0.69622,0.093849,-1.160866,-0.399503,0.027236,1.697843,0.178586,-0.77431,0.424933,0.068673,0.542064,-0.935341,-0.85456,1.309082,0.471059,-1.135509,-0.085838,-0.253534,-0.322256,0.178828,1.004903,1.758718,1.380269,0.712118,0.202288,-0.285214,2.007869,-0.41021,-0.748811,1.127037,0.782334,-1.067699,0.362791,1.19635,0.146706,-1.206841,?
-5.410625,-0.101269,-0.241668,0.942751,-1.11801,0.226791,-0.059459,1.636548,0.081632,-0.102355,-1.607368,1.303606,-0.457718,-0.00957,-0.786095,-0.584711,-0.508011,-1.19077,-0.330965,-0.235013,0.139288,-0.415989,-0.085489,0.532174,0.517818,0.002417,-0.311781,0.270422,-0.179896,0.188764,0.501706,-1.083363,0.636799,0.197598,0.258516,-1.048134,0.271884,0.358948,1.040035,0.10339,-0.022396,-0.868388,-0.640226,-0.529945,0.28439,0.38455,0.108644,-0.043274,?
9.168833,8.046891,1.5651,1.911627,-2.773,0.468111,-1.239609,-1.289773,0.46183,-1.893309,-2.891256,-0.744258,0.171093,0.628386,-0.767806,1.306419,-0.151978,1.291204,-0.225009,-0.913173,-0.115242,0.578886,0.078252,-0.498048,-0.23062,0.626424,-0.408144,0.522611,0.4995,-1.652005,-0.261642,0.011279,-0.986555,-1.338744,-0.611678,-0.651274,-0.173528,0.54416,0.674254,-0.198528,-0.467572,-0.124981,-0.30264,-0.170843,0.496308,-0.874989,0.410542,1.053615,?
3.667981,-3.257861,-0.906869,-0.771993,2.744113,1.151296,-2.22179,-0.532748,1.639379,-0.675824,0.795972,0.456008,-0.770919,-0.531976,0.166974,0.219523,-0.54722,0.037485,-0.056352,0.116967,0.598483,0.396447,-0.653497,-0.343744,0.116559,0.865074,-0.08611,0.501817,-0.230743,0.4813,-0.081402,0.025884,-1.058618,-0.16554,-0.246378,-0.04998,0.159544,0.962575,0.556748,-1.125595,-0.208685,-0.187359,0.002368,0.328672,-0.263202,-0.619011,-0.23298,-0.727177,?
-6.104542,-1.480347,1.286039,-0.176639,-0.772133,1.156394,1.418877,-5.314885,-1.158207,0.923772,0.406756,0.019916,-3.297709,-1.006512,-0.618286,-3.285271,-1.935665,5.375631,3.283702,-1.928575,-0.552137,1.285195,-1.862397,3.655132,1.148192,-1.544774,-3.000093,1.603709,-1.186791,0.864994,1.623645,-0.23796,-0.296539,0.205536,0.890161,0.351047,0.292562,-0.426384,-0.805161,-0.830212,1.165423,1.098434,0.471441,-0.873254,-0.570082,-0.032379,0.051467,0.157677,0.03
-7.67513,11.739973,-6.279651,0.831245,-1.360211,-0.720654,-1.313559,1.717433,0.683811,0.423263,0.949772,-0.489522,-2.000859,-1.141772,-2.160739,0.101441,-1.912696,0.323029,-0.250054,-0.29977,-0.026088,0.115336,0.714115,-0.973712,-0.359994,0.717055,-0.385071,-0.743597,0.365618,-1.250717,-0.367351,0.40258,-0.715138,-0.862061,0.183901,0.157647,-1.370185,-0.055619,-0.475529,0.416036,0.37034,-0.184336,0.00424,0.575085,0.144823,0.031519,0.328714,-0.320415,?
-10.951442,-2.256734,4.084663,0.524355,-5.131275,-9.21051,-0.922047,-6.357276,-0.867225,3.139304,-1.970317,3.471688,-0.792995,-4.212843,-0.829122,3.765896,0.5352,0.486979,3.187154,-3.261495,-0.555547,1.031703,-1.565462,-1.673005,1.298348,-1.393794,-0.937931,-1.466843,-2.46774,0.753411,1.039952,-2.612712,0.542317,-0.782463,-1.998274,0.580331,1.008809,1.421904,-0.816303,0.156197,0.908054,1.388559,1.568348,-0.31462,0.046135,-0.884121,0.775223,-1.113429,0.02
-2.690938,-3.205577,-0.933235,0.562303,1.046833,0.364566,-1.516721,-1.432031,0.690299,-1.268323,-2.744772,-0.481739,1.217162,0.395157,0.014178,0.059155,1.21254,1.071768,-0.155089,-0.40412,0.08115,0.049846,1.671964,-0.742955,-0.471828,-2.554012,-0.777045,-0.134679,0.031377,-0.174397,-0.946194,1.842128,-0.847367,1.187307,-0.535295,-0.545741,-0.180689,0.156182,-0.417999,0.536628,-0.288716,-0.607921,-1.186372,-1.006452,0.271712,0.208174,-0.094233,-0.045982,?
-10.879037,11.407976,19.95924,-9.823676,11.782818,2.731635,-0.998372,2.988618,2.104451,2.851085,-2.825436,-1.084792,3.499169,-1.049638,-0.122664,0.258164,-1.025767,0.785614,0.653519,-2.409045,0.512405,0.07647,-0.871025,1.06971,-1.321087,1.101584,-3.235025,-2.046049,1.258502,0.81335,1.630573,-0.556263,-1.17807,-0.26858,-0.963561,-0.624597,-1.579615,0.016588,-0.514272,-0.671902,0.333299,-0.805133,-0.252262,-0.270608,0.133162,0.223145,-0.123352,0.406162,0.52
8.990049,2.049123,0.230314,-1.453494,0.726837,-0.593497,0.804574,-1.086682,-0.118975,-0.126637,-0.373647,-0.54812,0.541931,0.01789,0.67138,0.266172,0.584849,-0.185442,-0.340207,-0.177678,0.139246,2.131121,1.186577,0.4665,-0.007185,1.323132,-0.299901,0.856513,0.380796,-0.338138,1.360518,-0.378216,-0.411452,-0.405269,-0.166731,-0.165601,0.225475,0.241426,0.234845,-0.067143,0.127901,0.016463,0.052692,0.367999,-0.212138,-0.198918,-0.373295,-1.200694,?
-3.926926,-4.860046,-1.240949,-1.988669,-0.123732,0.40995,-0.223943,0.123792,0.726256,-0.397811,-0.36389,-0.049068,0.221413,1.402165,-1.902864,0.398989,0.420502,-0.262261,0.642168,0.085174,0.203307,0.237813,-0.371094,-0.04167,0.640151,-0.26591,-0.367813,0.173189,0.518719,-1.402278,-0.132642,0.382011,0.903162,-0.531568,-1.092672,-0.071378,0.286492,0.042122,0.268785,0.205334,-0.785135,0.028201,0.245333,-0.26098,-0.594293,-0.328341,0.667275,-0.169241,?
-3.672331,1.153045,-2.972094,0.288158,1.036489,4.945606,-0.117015,0.12169,0.806683,4.919128,-1.647169,1.968977,0.499317,1.66886,-0.545267,-0.161883,-0.431212,-0.601723,-0.180503,-1.710936,-0.382956,-1.140423,2.231857,-1.518182,1.227327,1.702807,1.052427,0.401165,2.773941,1.163746,0.25297,-0.133956,-0.111826,-0.222685,-1.841486,0.488578,0.875471,0.829763,-0.054624,0.5365,0.272223,0.53055,-0.036496,0.108438,-0.273635,0.140437,-0.186132,0.001352,0.02
-9.126602,13.280623,-9.597905,-2.085061,-1.036275,-1.205735,-0.918684,0.829189,2.792753,1.01252,1.543545,-1.339235,0.266108,-0.123046,-2.317643,-0.14666,0.488952,1.335938,-0.247213,-1.354014,0.168709,-0.375388,0.152671,-0.600651,-0.603833,1.315584,0.509574,-0.657466,-0.179439,0.33266,-0.799927,0.135281,-0.570187,1.081917,1.167818,0.60219,0.239991,-0.108222,0.295648,-1.303894,-0.602704,0.743139,0.964021,-0.59235,0.655499,0.619315,0.069774,-0.925988,?
-4.71891,6.6342,-3.766411,0.973125,0.276704,0.187342,-2.285364,-0.450011,-0.838158,0.68533,-0.02216,-0.229678,-0.090414,-0.21272,-1.229563,0.301561,-0.412431,-0.682973,-1.224688,-0.775083,0.255012,-0.86872,0.160972,0.170719,0.200572,-0.050086,-0.100827,-0.252156,-0.464403,1.121272,0.765107,0.149302,0.20171,-0.493819,0.627581,-0.060685,-0.106063,0.172969,-0.630339,-0.885311,-0.187501,0.065246,-0.206069,0.294624,-0.149782,0.02299,-0.383578,0.118086,?
-2.885347,-3.084366,0.042139,1.362855,0.022159,0.92322,-1.964418,0.259541,0.591359,-0.568321,-0.239406,0.18197,-0.135936,0.307753,-2.568941,0.065682,0.851451,-0.248769,0.031843,-0.337142,0.21881,-0.20448,-0.206865,0.07839,0.436554,-0.298335,-0.142275,0.241001,0.125318,-0.504499,-0.344042,0.089139,-0.041269,0.628904,-0.26395,-1.999049,0.053959,0.076362,0.010722,-0.314342,0.74681,-0.191929,-0.32342,0.061005,-0.895001,0.025682,-0.511407,0.951534,?
-5.081522,-0.560202,-2.399462,1.770212,0.064682,0.200528,-2.17549,1.627879,0.465957,-0.743098,-2.659586,0.560785,1.606458,0.083159,-0.378307,-0.865387,0.76356,-0.660753,0.511699,-0.288393,0.705065,0.406543,-0.594769,0.439439,0.395835,0.282139,0.223217,0.134739,-0.471261,-0.03576,-0.63195,1.112949,-0.135475,0.477099,-0.102712,-1.139421,-0.000169,-0.307685,-0.856018,0.636398,1.150287,-0.692561,-0.118124,-0.027243,-0.201074,-0.367879,1.451712,0.278142,?
3.223123,-2.088387,-1.086581,-0.187861,2.981276,-0.598367,0.285358,-0.116766,0.298411,-0.280367,2.529465,-1.500319,0.597572,0.0877,1.396739,1.579344,0.102908,-0.408079,-0.14088,-0.715192,0.640405,0.536618,0.024756,-0.405745,0.116584,-0.723198,-0.59483,0.740943,0.157117,-0.240338,-0.226172,-0.092512,1.141837,-0.508551,-0.535142,0.012359,-0.034446,0.570408,0.351962,-0.369201,-0.336535,-0.176728,-0.908895,-0.665089,-0.120294,0.638371,0.640824,-0.591928,?
8.923301,3.757946,4.061226,3.063962,-5.872449,2.20678,-0.221638,-0.881224,-2.584087,1.424932,-1.438131,-0.145595,0.365386,4.274544,-1.777887,3.964715,1.354992,0.519455,0.760044,-0.892562,2.151645,-2.521766,2.703756,2.970365,-2.692461,0.575415,0.554352,1.06609,0.653251,0.826414,0.804471,0.309337,-0.172073,1.174668,0.234999,0.970047,1.376984,0.298476,0.171191,1.36596,0.255825,0.588371,1.115452,0.663605,0.320134,0.146258,0.186186,0.615231,0.03
2.799006,-0.563444,2.613423,5.208968,1.257114,0.115482,-1.495451,-0.365811,-0.501814,-1.065749,0.036868,1.207948,-0.503116,0.057304,-0.649004,-0.1533,-1.927088,0.232151,-0.067318,1.301142,1.058128,-1.040001,-1.560443,0.316595,0.836527,1.778486,0.560232,-1.684713,-0.919401,0.778749,0.248191,-0.19572,-0.089867,-0.196214,-0.075863,-1.14649,-0.122477,0.623288,-0.290196,0.157453,-0.791355,-0.251111,-0.526641,-0.049822,1.059064,0.295896,-1.557273,-0.744369,?
-4.890583,-4.510005,-0.579913,-0.828335,-0.659216,-0.767829,1.855312,0.751638,0.197948,-0.303419,0.042147,-1.005187,-0.876326,0.214987,-2.010371,0.302416,1.115826,-0.628532,-0.036401,0.069934,-0.436458,1.992553,0.801842,0.5263,0.604815,0.716436,-0.950265,1.308784,0.4532,-0.712083,0.000096,-0.092511,0.194966,-0.503482,-0.44686,-0.045528,0.295777,-0.671807,-0.259997,-0.89753,-0.13018,-0.073341,0.251564,0.347657,0.064074,0.369444,-0.158522,1.267082,?
-3.604011,-5.838157,0.231463,-0.981842,-1.318107,0.295708,-0.614778,1.593718,-2.039984,-0.216343,-0.285204,-0.1868,0.347605,0.125283,-0.369461,0.041022,-0.667448,-0.605142,0.678404,-0.011635,0.364472,0.072129,-0.423589,-0.011594,0.58036,-0.8174,-0.681189,0.773624,-0.118303,-0.582279,-1.372612,0.045924,-1.037992,-0.383395,-0.779947,0.158116,-0.294502,-0.450368,-0.966578,0.353233,-0.106316,-0.696566,0.047242,0.284406,0.303795,-0.316062,0.187634,-0.203728,?
2.288329,-1.173992,3.546914,2.112252,-2.513182,-0.814081,0.870087,0.92285,-3.462159,-0.352073,0.055351,-0.126964,-1.296673,-0.403977,-0.570857,0.535772,-1.797013,-0.267007,-0.832174,0.581343,0.203578,0.537743,0.614769,0.732353,0.127994,0.498097,0.307624,-0.766554,-0.189467,-0.101895,-0.880522,-1.268573,-0.790256,1.280764,-0.120278,0.39164,0.223765,0.075783,0.231762,-0.710994,0.14626,-1.158661,0.630603,-0.653171,0.244294,0.576377,0.174405,0.280822,?
3.450418,-1.720886,1.311968,-1.293353,-1.873458,-0.673537,2.238504,0.573335,2.43505,-0.69667,1.323328,0.974382,0.543323,0.192054,0.508691,-1.709413,-0.968886,-2.332507,0.756133,0.440881,0.283392,0.15869,1.373599,2.688669,1.835148,-0.625485,0.183871,-1.635883,-0.452375,-0.301403,-0.861165,-0.391475,2.044395,0.780557,0.488034,1.107069,-0.745046,0.470517,1.576601,0.948688,-0.249733,0.364172,-0.08151,-0.928032,-0.096992,0.791341,0.188843,0.883476,?
4.304542,-3.803141,0.74998,-1.611613,0.044131,-0.03121,0.689288,1.48961,0.75773,-0.748727,0.724111,1.162995,-1.354547,-0.509048,0.494432,-0.066639,-1.784338,-0.694674,-0.191096,-0.151295,0.451853,0.418931,0.756809,0.024813,-0.116365,-0.125046,0.239707,-0.977187,0.038535,-0.485157,0.1682,0.156773,0.671337,0.754906,0.189144,0.644985,-0.04227,0.399482,0.295972,-0.781054,-0.045984,0.637741,-0.002536,-0.514858,-0.259545,-0.046434,-0.156398,-0.043618,?
-5.614337,-3.860078,-0.469635,0.783125,-1.853564,2.992218,2.380607,-0.995326,0.590915,2.742574,0.342864,-1.736378,-3.093997,3.68434,-0.01248,-2.600409,-0.35896,0.800761,-2.378442,-0.874676,-0.160633,0.754579,-2.601459,0.04991,-0.21036,-0.880363,0.619457,-1.535422,-1.374459,-1.44646,1.450091,-0.270681,-0.491085,-0.032847,-1.000767,-1.27432,0.16591,0.057799,0.593213,0.421199,0.358797,0.295149,-0.085004,-0.058781,0.339971,0.085627,-0.186618,0.01065,0.01
5.389745,-0.34986,-3.404309,-2.099837,5.760822,0.315696,-1.536925,-2.271538,1.266081,0.312824,1.245481,-0.971398,-1.184461,-1.14842,0.868493,0.505323,0.157624,-0.52167,-0.828279,-0.113292,0.385686,1.088932,0.218687,0.296393,0.306053,0.062764,-0.919792,2.07989,-0.413317,0.886005,-0.485996,0.287319,-0.032102,0.44266,0.140141,-0.273561,0.605292,0.013793,1.396837,-1.237403,0.017052,0.729456,-0.003919,-0.615347,-1.134869,0.437122,0.172046,0.003026,?
-1.63432,-1.280167,-1.912408,1.805286,2.433146,-1.101011,-0.060562,1.162073,-0.107991,-0.301285,0.280923,0.09797,1.576159,0.264712,1.388332,-0.253144,-0.436626,-0.007227,0.602076,-0.068472,0.554109,0.256062,0.453233,0.554752,0.49774,0.087742,-0.36111,-0.159061,-0.527009,0.315429,-0.32997,0.226034,-0.305208,-0.504162,-0.363075,-0.16513,-0.096876,0.25965,-1.695796,0.130253,-1.038241,-0.859413,-0.224454,0.360478,0.407083,-0.837934,-0.373843,0.158029,?
-4.677567,-5.636498,-0.602781,-0.907638,-1.447355,-0.312167,0.31103,2.906947,-1.206951,-0.683226,-0.823449,0.051227,0.371627,1.318284,-1.089761,1.094794,-0.677788,-0.018199,0.567812,-1.210759,0.377984,0.249593,-0.205812,0.093005,-0.068833,-0.448029,0.38072,0.007628,-0.511774,0.561244,-1.176817,-1.110786,-0.687944,-0.475856,0.504068,0.863463,-0.72485,0.040459,-0.030529,0.12434,0.224172,0.804183,-1.048719,-0.289043,-1.147367,-0.346752,0.071443,-0.986416,?
4.203145,-0.090991,2.013654,-1.403539,-2.597379,-0.274259,0.908581,-2.54616,-0.664454,-1.265568,0.031158,-1.674283,0.39663,-1.478363,3.337578,0.402921,-1.005276,-0.946921,-1.273114,0.480636,-0.384001,2.033515,3.954834,1.069237,-0.092405,-1.222711,-0.972691,-1.302494,0.763757,-1.479029,-0.12661,-0.381966,-0.456069,-0.404723,0.172737,0.093463,-0.441386,-0.438852,-0.450366,-0.670629,0.932298,-0.396838,0.355754,0.570846,-0.166396,0.512382,-0.066884,-0.844781,?
1.148658,4.560743,-1.038126,0.121313,-1.441189,0.798782,-1.674867,-0.946158,0.935338,-0.772691,0.011712,-0.940754,-0.845005,-0.271867,-1.035667,1.093285,-0.492218,-0.698346,-1.139007,-0.832595,-0.083449,-0.601236,0.045236,0.605824,0.633878,-0.753398,-0.261559,0.17969,0.215226,-0.301811,-0.172301,0.511219,-0.014785,-0.31229,-0.705596,0.757782,-0.054229,-0.100447,-0.041676,-0.118284,-0.714961,-0.197741,0.420564,-0.228626,0.103687,-0.02018,0.199446,0.095539,?
3.690286,-1.244954,-1.084406,-0.13016,4.039721,0.718217,-1.871868,-1.887991,0.735394,0.139105,0.958629,0.846472,-0.475042,0.074665,-0.222647,0.012487,-0.632676,-0.656402,-0.583808,0.169613,0.603719,-0.231874,0.19908,-0.335452,0.089901,-0.385977,-0.34689,-0.247937,-0.070145,-0.125755,0.591921,0.392243,0.42915,-0.293471,0.039294,0.112502,0.739743,-0.500012,0.388916,-0.577739,-0.343598,0.272752,-0.36777,-0.324839,-0.133575,-0.565972,-0.428479,0.344098,?
-2.072493,-4.233365,-1.429061,-1.511092,0.203867,-0.352938,-0.135089,2.736132,-1.544848,0.21144,-2.922939,0.977063,1.592476,0.603595,0.2971,-1.222868,0.713613,-0.622982,1.418642,-0.49639,0.72201,0.309867,-0.799839,0.088476,0.565086,-0.347198,0.433212,1.157078,0.378205,-0.733276,-0.350465,0.21043,-1.23981,-0.018836,-0.47932,1.317949,0.156016,-0.051968,1.648533,0.695703,-0.293294,0.019291,0.217332,-0.696501,0.068034,1.019422,0.227644,-0.051522,?
5.138737,1.827087,0.180639,-0.136584,-0.319786,-0.671667,1.076074,-0.099931,0.303749,0.087671,-0.873272,0.349956,0.646514,-0.079639,-0.06927,-1.215093,0.930831,-0.733042,-0.178038,0.384634,0.683251,-0.857095,-1.139828,-0.313663,0.606664,0.830416,-0.185249,0.28423,-0.434703,0.620717,0.283388,0.278621,-0.469858,-0.74262,0.011564,0.511539,-0.089877,0.167753,-1.138918,-0.487105,-0.057656,-0.110284,0.11475,0.203947,0.392589,-0.180525,0.636294,0.085151,?
1.190619,-0.548695,2.049384,3.18201,-0.489535,0.592943,-1.854343,-0.097973,-0.081529,0.226774,2.952051,0.122211,1.363727,-0.002026,-0.865293,-0.959273,0.209217,0.309198,0.840902,0.577052,0.752486,-0.654511,-0.549614,-0.251055,0.580854,0.523245,0.077298,-0.727538,0.687903,-1.712977,0.451822,-0.833495,0.26312,0.814499,0.067974,-0.970447,0.222141,0.517022,-0.584834,-0.180862,0.712591,0.054749,-0.172746,-0.382314,1.200302,-0.875239,-0.007275,-0.734872,?
7.401794,1.049131,2.889958,2.657807,0.062635,0.017518,-1.058952,-0.63178,-1.851659,-0.370497,-1.648869,1.912992,0.557433,0.950576,-1.754166,-0.904748,-0.817661,-0.358739,-0.109082,-0.045718,0.076637,0.323051,2.564346,1.185843,0.084874,-1.676534,-0.209677,-1.733553,-0.597335,-0.300341,-0.749703,-0.385607,0.389757,0.168049,0.237615,-1.0065,0.536369,-0.885682,-0.23379,0.353978,-0.205415,-0.537688,-0.890369,-0.864959,0.451629,0.139128,0.259757,0.375957,?
3.317329,1.259548,3.757975,2.308921,-5.115835,1.036085,-1.733965,0.137913,-1.183449,-1.433451,1.336925,-1.088423,0.857584,0.434798,-0.395313,1.284881,-1.420523,-0.940684,-0.473358,-1.416114,0.033176,-0.716195,-0.205255,1.601463,1.105829,-0.733453,-0.236099,0.289423,-0.283339,-0.05653,-0.052912,-0.335405,1.078439,0.515178,-0.103869,-0.195371,0.073733,0.457404,0.532165,0.33944,0.595958,0.10523,0.846227,-0.126095,1.191521,-0.145272,0.316532,0.001289,?
-3.661161,11.363919,-3.869789,0.939569,-3.559629,0.472446,-2.54379,-0.882851,2.265233,-0.62915,0.554187,-1.004822,0.824416,0.508968,-1.56472,0.220803,-0.781961,-0.047111,-0.033197,-1.209746,0.092236,-0.621718,-0.325951,-0.116237,0.39351,0.989169,-0.005509,0.177778,0.313594,-0.39394,0.475615,0.228371,-0.088272,-0.462111,0.105507,0.869841,-0.342471,1.113291,1.274905,-0.156554,-0.709673,0.486889,0.1336,-0.344977,0.694144,1.071967,0.163124,0.608595,?
-0.655466,-3.27617,1.207849,2.898769,0.411277,-0.88522,0.97063,1.354859,1.637016,-1.463594,2.182348,-0.598087,-0.037846,-0.186921,0.23459,0.789961,-0.828664,-0.213402,0.166721,0.062582,0.236909,2.078855,0.934353,0.013402,-0.197981,1.111271,-0.663303,0.340395,0.103206,-0.507803,0.033251,-0.378717,0.664125,0.391854,-0.645253,-0.146197,-0.217484,0.287177,-0.787783,0.371582,-1.077892,-0.822174,-0.240827,-0.008944,0.174651,-0.035984,-1.33613,0.535257,?
7.674872,2.400355,1.956119,2.689759,0.64401,-3.633092,5.16861,1.437432,-1.534542,0.386518,1.774657,-0.377577,-0.008917,1.320812,-0.743717,0.266575,-0.525773,1.638962,0.503009,-0.297399,0.395915,-0.987095,0.226982,-1.352664,-0.365046,-0.046888,-0.441496,0.212957,0.171353,-0.091935,0.09177,0.208849,-0.759464,1.687044,-0.632733,-0.010993,-0.229471,1.01893,0.109676,0.43918,-0.815111,-1.056246,-0.658009,-1.208155,-1.084292,-0.215507,1.046475,-0.220106,?
-12.633743,12.909977,-5.811254,-5.774167,0.427041,0.19036,3.099511,-4.633258,-4.494313,-10.047595,3.99299,1.737482,-4.996655,0.889241,1.213557,-4.916599,4.301888,0.155436,-0.233754,-3.558147,-0.331392,2.402847,-2.860236,-0.727632,0.971563,-0.774584,1.439048,-1.107648,-1.034869,-1.062612,-0.486521,0.393282,-0.114623,0.091153,2.679155,-0.949864,2.445765,0.313144,-0.000613,0.152,0.091096,-0.549246,0.032156,-0.068486,-0.609992,1.567415,0.420448,-0.523186,0.05
-9.151489,-1.024834,3.202929,-0.058344,-0.197303,0.04232,2.953923,-6.12703,-2.420716,-2.133855,-0.959079,1.592526,-1.054643,-2.403514,0.033899,-0.530931,0.597006,-0.570241,-0.759905,-3.320919,0.528251,-0.760127,0.437504,-0.391152,0.377503,0.990554,1.946948,0.403025,2.802982,0.494412,-1.323613,-0.035318,0.998344,-0.304907,0.505494,-0.344173,0.846497,0.302116,0.112986,0.623741,0.787162,-0.115476,-0.187451,1.641551,0.052138,-1.298938,-0.602301,-0.309704,0.03
-1.5493,-4.604463,-1.285565,-1.228002,0.789863,0.850902,-1.446098,0.169287,1.760927,-1.098677,0.247636,-0.223069,-0.471808,0.564643,-1.257031,0.858244,-0.086731,0.725043,0.540886,-0.192585,0.404408,0.12479,-0.536074,0.149365,0.431274,0.218025,0.202178,-0.109183,0.224126,-0.682714,-0.930688,-0.342383,-0.089418,-0.086385,-0.489396,-0.735145,-0.048972,0.101111,-0.180225,-0.101708,-0.899809,0.087849,0.013976,-0.227505,-0.19618,0.324219,-0.030129,0.132436,?
0.084887,6.712267,-3.039007,0.631033,-3.936569,5.72408,0.605009,1.095168,1.138257,-0.869706,0.677904,1.267121,-0.827983,0.023678,0.106072,4.243732,0.327083,0.522533,1.069106,2.73024,2.152319,-1.454218,1.405505,1.964114,-1.930646,-0.727015,-0.13096,1.841709,-0.598719,-0.974771,0.947413,-0.016034,-0.788291,-0.173972,-0.430829,0.648329,1.102804,0.631702,-0.462874,-0.180376,1.033213,0.551349,0.229925,-0.148614,-0.234006,0.208424,-0.565341,0.811418,0.03
0.973496,-4.404977,-1.13665,-2.925579,0.202027,0.426062,-0.054592,1.542266,0.636786,-0.10727,-0.322851,1.130194,-1.242395,-0.536572,-1.134205,-0.921693,-0.035378,-0.359071,0.21744,-0.104447,0.000949,-0.17105,0.814941,-0.039538,0.304368,-0.831658,-0.143801,-0.040052,0.486736,-0.579969,0.228343,-0.991837,-0.479249,-0.855452,-0.261142,0.514798,0.084607,0.580969,0.783266,-0.064188,-0.483087,0.200366,-0.419542,-0.163548,0.131475,0.143953,0.220528,-0.418828,?
2.27096,2.974849,0.007465,0.318795,-2.092478,-0.885982,0.472519,0.315155,-1.040659,-0.733722,-0.637656,-0.165142,0.029981,-1.300036,3.206279,-0.66717,-2.348371,-0.642629,-0.78383,1.004514,0.786671,0.156437,-0.266688,-0.884929,-0.163307,1.498902,-0.722371,-0.038676,-0.521184,0.043896,0.330027,0.568572,0.589193,-0.20442,-0.497172,0.282313,1.151233,-0.031353,0.680531,-1.66427,-0.569718,-1.019362,0.258678,-0.547098,-0.571903,1.093226,1.220138,0.1906,?
-9.385024,-1.64635,0.027659,-0.097207,-3.003249,-0.269549,0.762796,-2.268264,-1.933463,0.514072,-0.196087,-1.250157,0.13434,0.613483,-1.014354,-0.152245,0.298259,-1.549192,-1.278609,0.53261,-0.314295,-1.702759,-0.325117,0.200411,1.182139,-0.498033,-0.855309,0.726956,0.432196,0.112769,1.430004,-0.451012,-0.933865,-0.47315,0.157587,0.573562,0.750186,-0.465549,1.529903,-0.689582,0.120092,0.640491,0.146039,-0.273191,-0.223516,0.151949,-0.548644,-0.088248,?
-4.148918,-3.061773,0.043485,0.173776,-1.628466,1.195573,-1.014455,0.246574,3.122882,-0.991866,-0.244332,0.38037,-0.692738,-0.108782,-2.072133,-0.555074,0.87364,-0.755181,-0.616467,-0.223169,0.082774,-1.225472,-0.771752,0.370831,0.656909,-0.471859,0.171573,0.173619,0.213947,0.033951,0.060836,-0.150595,0.180935,1.314135,-0.205419,0.201831,0.098242,0.520588,0.058262,-0.055484,-0.268522,0.378927,0.615877,-0.518279,-0.200166,-0.106767,0.747446,-0.985797,?
4.521849,0.02172,-0.386296,-0.524909,0.179375,0.783886,-3.500055,0.172584,-3.174474,0.805854,1.337407,-0.418027,0.471512,-2.545152,1.09876,-1.495478,-0.479503,0.449227,-0.167928,1.041158,0.97256,0.14903,1.021457,-0.707394,-0.295557,-0.690668,-0.46809,-0.636837,-0.658982,-0.112196,-0.166282,0.436004,0.542976,0.160845,0.045811,-0.093644,0.813567,0.191814,0.617318,-0.465812,-0.576729,0.422972,-0.385351,-0.518703,-0.308346,-1.027441,-0.649392,-0.096761,?
-6.320158,-3.786236,-0.595492,-0.645384,-0.820207,-0.544882,0.684913,-2.690608,-0.296446,-1.025396,-0.644995,-1.713057,1.095942,1.294879,0.645252,1.048822,-0.431385,0.7888,-0.068642,1.092275,0.30292,0.130455,0.572798,-0.789907,-0.040774,-0.151152,-1.363869,-0.254171,-1.277873,0.845349,-2.212347,0.291764,-1.00005,-0.675564,-0.063252,-0.968549,-0.249114,-0.033937,-0.55485,-0.372397,-0.31157,-0.574555,0.246417,0.148689,0.222562,-0.929972,0.643889,0.120611,?
-1.692853,-3.975334,2.376232,-1.367477,-3.988377,-0.594751,3.159358,0.73436,1.586395,-0.420563,1.333896,1.549569,-0.084707,1.09264,-1.043452,-1.562632,-1.490734,-1.531569,0.449335,0.750886,0.564675,-2.465682,-1.144405,-0.532671,0.906742,0.288671,-0.264695,-0.893926,-0.563745,-0.041824,0.549665,-0.733849,1.153001,-0.04381,0.661042,0.672546,-0.617588,0.773858,1.583691,-0.22974,0.429098,1.20218,1.857521,1.167432,-0.078062,-0.027198,-0.413988,-0.231037,?
3.258428,3.288996,-0.369859,7.652851,4.941964,-4.966616,4.804186,2.576897,-2.046825,0.880157,2.946686,-2.176238,-1.103191,-1.863936,-0.708687,0.025126,1.802744,0.577443,-0.857442,0.631141,0.270251,0.860288,0.501025,-1.75225,-0.671783,-0.075273,-1.050096,1.015777,0.365437,-0.846074,-0.116277,-0.455076,0.213801,1.028166,-0.697556,-1.042606,1.067097,-0.139608,0.139558,-1.144849,0.002169,-0.774187,-0.547507,-0.616869,1.220681,0.053135,-0.18702,-0.893663,?
-1.425837,-1.078612,2.12668,4.231144,-2.948393,1.17663,1.11933,0.033506,1.202936,4.704079,-0.122199,-0.605497,-0.560868,1.900307,0.700055,0.52766,1.878098,-2.092054,0.310645,-2.014724,-1.479818,-2.339079,0.127882,-1.460628,2.270748,2.592864,-1.710429,-2.190615,-0.605811,-0.394639,-1.508561,-0.510122,0.697145,0.846919,-0.455447,0.715683,2.007802,0.949886,-0.53804,0.68286,0.345266,1.000919,0.650231,0.862237,0.580284,-0.330445,0.003983,-0.501639,0.01
6.258614,2.273297,-1.636442,3.701574,3.461873,4.635858,0.818817,-0.998922,0.263343,4.750054,-2.324012,1.04829,1.930905,0.715538,-0.574693,-1.497985,-1.408072,1.132943,-2.11415,1.396604,-0.157236,2.084318,0.368808,-0.81257,1.290169,-0.165979,2.036909,0.238087,-0.473178,-0.263573,-0.167371,0.301166,-0.652186,-0.677972,-0.066679,-0.922901,-0.536705,-0.400923,0.720926,-0.785487,-0.799057,0.119094,-0.281922,-0.036121,0.236125,-0.135463,-0.0179,-0.481058,0.03
1.067842,7.490801,6.158052,6.970983,-3.826208,0.941843,-0.376198,-2.156713,1.590908,0.352775,-0.760782,3.134654,0.6044,-1.026844,-0.09239,-0.95274,-2.342869,1.951223,2.763403,1.566092,0.182177,3.067116,1.896095,2.568942,0.685916,-0.562725,-0.36327,4.23228,-2.075008,-0.787991,0.460704,0.323385,0.440533,0.633417,1.935794,0.579544,1.747407,0.378879,-1.404285,-0.15349,-0.038507,0.149451,0.648469,-0.590796,-1.653273,1.375871,-0.416923,-0.954717,0.07
2.077197,-1.962213,-0.473882,-1.981298,-0.747568,-0.174616,0.225,-0.818576,0.681782,-0.208296,1.519324,-1.346568,2.200187,1.271122,-0.612074,0.771719,1.65655,-0.92521,0.302264,-0.653005,0.531411,2.141558,0.426056,0.158007,0.084262,0.905758,-0.270266,0.513747,0.001292,-0.005804,0.334539,1.443541,0.361201,0.209853,-0.280226,0.431126,-0.172678,0.553267,-1.308441,-0.607488,0.340708,0.135891,1.166989,0.597634,0.683768,-0.299361,0.288919,0.412267,?
-7.192136,-3.751246,0.567251,0.238052,-2.632541,0.025529,0.178295,-2.532993,0.583493,-1.683469,-1.613798,-1.883021,0.507894,0.553509,-0.004303,0.82628,0.550871,1.187723,-0.620329,1.04226,0.216691,0.342727,0.004348,-0.414989,0.019442,1.373204,-0.351873,-0.247717,-0.694966,1.088036,-0.495843,-0.195062,-1.240906,0.08068,0.376978,-1.584685,-0.173623,-0.093919,-0.055261,-0.389562,0.103817,0.698687,-0.160119,0.253787,0.215264,0.643949,-0.48878,-0.357638,?
-1.183442,-3.429692,-0.119259,0.32216,1.785463,0.536694,-1.201344,-1.920437,0.556358,-1.088891,-1.328119,0.038423,0.71264,0.965745,0.410029,0.799642,-0.522127,0.603147,0.053153,0.260515,0.475617,0.471761,0.199894,-0.980427,-0.296427,0.00462,-0.564352,-0.035601,-0.186601,-0.208892,-0.477634,1.005767,-0.424542,-0.229456,-0.343373,-0.002683,-0.693224,0.334485,-0.843445,-0.388206,-0.230373,0.316584,-0.752481,-0.241795,-0.364831,-0.210905,0.000406,-0.344549,?
12.144532,3.986637,1.379377,-1.314138,-0.537549,-0.278022,-0.241319,-2.6751,-2.802835,-0.139236,-0.521862,-1.817133,-0.152133,0.768098,-1.294947,1.65098,0.114411,1.313634,-0.804359,-0.287042,0.093557,-0.176409,0.131902,-0.159277,0.153028,-0.731955,-0.651644,0.787902,-0.347103,0.12013,-0.608975,-0.709944,0.31411,-0.097073,-0.689593,0.366875,0.434613,-0.184978,0.599414,0.542392,-0.943544,-0.791503,0.538721,0.174307,-0.0715,-0.67227,-0.54857,-0.394108,?
1.86061,5.365024,2.868039,8.142451,-0.693855,-0.237908,-1.190581,-0.425901,1.253217,-1.543526,0.163555,0.940115,0.60004,-0.190864,-0.610235,-0.946443,-1.712489,-0.635501,-0.178928,0.215607,0.477571,-0.606626,0.046849,-0.833343,-0.198389,0.84146,-0.87077,0.071293,-0.295952,-0.377661,0.632642,-0.02563,-0.261632,-1.101361,-0.081745,0.033025,-0.612172,-0.548439,-0.044848,0.613323,0.581889,-0.333611,-0.202078,0.218849,-1.112017,0.61332,0.162657,-0.160954,?
-0.212293,-4.487021,-1.692411,-0.500603,2.675637,-0.677944,-0.003765,1.884934,0.064167,-0.192557,0.971151,0.408583,2.074767,0.660849,2.124204,-0.004606,-0.990672,-1.215196,1.329383,-1.40273,0.773242,0.769385,0.299445,-0.563203,-0.181809,-1.664958,-1.023695,1.707273,-0.87132,0.365006,-2.418789,0.69403,-1.200645,-0.014214,0.214335,1.331221,-0.144344,0.166448,0.079911,-0.945518,-0.110687,0.2789,-0.136514,-0.408124,0.739624,-0.362138,-0.069216,0.128203,?
3.703074,-3.322013,-0.156311,-0.971008,-1.934587,2.30774,0.930702,0.81425,2.309971,5.06699,0.748457,-1.689029,-0.371701,1.560092,1.396179,-0.412734,-1.103235,1.082069,-2.491261,0.980461,-0.460898,-0.507033,0.053622,-1.327798,1.758733,-0.977284,2.538178,0.122353,-1.688934,-0.380359,0.185271,0.654821,0.170527,-0.478012,0.359127,-1.061125,-0.298821,-0.030872,0.325834,0.165626,-0.660618,-0.622069,0.265311,0.902275,0.63329,0.246257,-0.019506,0.070246,0.03
2.431427,-4.224169,-1.744187,-3.682356,1.566549,0.056269,0.65821,0.791458,0.893874,0.064903,-0.772537,0.518104,-1.849384,-0.780259,-0.317034,-0.774736,0.447534,0.457173,0.0754,0.238464,-0.058362,0.221383,0.384777,1.329648,1.247438,0.653558,0.714666,-0.704843,0.906767,-0.87784,1.526177,0.003327,0.136056,-0.962821,0.223694,0.314498,0.72239,-1.462359,0.112307,-0.119931,0.458383,0.56334,-1.501515,-0.407597,-0.01004,0.206176,-0.182904,-0.300484,?
5.186706,-0.832527,1.824397,1.917524,0.51244,0.169717,-0.612299,-0.548657,0.097147,-0.668801,0.492802,0.744748,0.441708,0.489285,-0.169137,-0.205771,-0.654906,0.002955,-0.134328,0.296526,0.688912,-0.974189,-0.352456,0.336259,0.518666,0.946726,0.176839,-0.940832,-0.519146,0.624438,1.076733,-1.129042,0.307221,-1.008321,0.059333,-0.845152,0.439782,-0.201232,-0.290252,0.285814,-0.171653,-1.028923,1.44964,1.079907,0.494381,0.075352,0.228984,-0.053944,?
-7.053728,3.062568,-8.086008,-4.570233,1.89269,-2.033334,0.956947,3.043345,-2.90903,2.175834,-0.315251,1.370664,1.181805,1.815688,-0.354531,-0.343803,-1.854419,-0.426196,0.971999,-1.152447,0.443266,-0.315435,0.423403,-0.101861,0.025812,-0.088073,-0.3236,0.20013,-0.600746,0.151454,-0.171434,-1.258207,0.834301,-0.707303,0.67812,0.273144,0.283137,0.189913,-0.424202,0.44692,-0.902014,-1.31109,0.275528,-0.060006,0.064152,-0.216185,-1.157449,-0.367192,?
4.770089,3.926201,-0.63114,1.362342,1.28315,0.332989,-2.354543,-3.167532,-0.386428,-0.193182,1.848095,-2.301738,0.033628,0.072917,-0.928044,1.601361,-0.090334,0.165789,-0.564362,0.037701,0.421209,0.121731,-0.981108,1.125129,1.238957,0.853778,0.112462,0.741133,-0.126362,0.320183,-0.343303,0.251436,-0.630399,0.837659,-0.714848,0.410202,-0.301077,1.012436,0.3984,0.345903,0.232283,-0.769652,-0.143159,-0.040173,-0.695524,-0.8256,-0.435639,-0.423257,?
-3.142456,-4.35865,0.354319,0.413509,0.471829,0.686913,-0.374977,0.756772,0.796768,-0.834264,-1.030186,0.418738,-1.062965,-0.158792,-0.480387,0.773625,-0.172491,-0.938567,-0.914784,-0.213317,0.252313,0.095912,-0.565811,0.587153,0.28316,0.165462,0.336482,-0.073319,-0.203787,0.256978,-0.348974,-0.110671,-0.248813,-0.313423,-0.221537,1.131405,0.16735,-0.601904,-0.047794,-0.234167,-0.220313,-0.353277,0.65899,-0.499844,-0.06719,-0.844067,0.624195,-0.555868,?
-2.712925,-0.492306,-0.67088,6.848963,3.282438,-3.036166,3.67537,3.468773,2.619193,-1.109082,-0.147358,-1.197295,-0.760836,-1.591909,0.539692,-0.566035,1.958298,1.190136,-0.22995,-0.350627,0.085114,-1.901141,-0.353144,0.401596,0.902461,-0.566578,0.201701,-0.133104,0.066688,0.782846,0.551802,0.315776,-0.544771,0.000543,-0.312883,-0.714852,-0.490536,0.338277,-1.050623,0.513125,-0.329896,-0.716034,-0.158517,0.74976,-0.626997,-0.104582,-0.588926,0.539269,?
4.415329,-0.886888,0.399095,-0.833435,-0.751464,0.037125,0.289136,-0.864053,1.743993,-0.956091,0.34948,-0.609644,0.925332,0.549971,0.138854,0.376356,0.742853,-0.34531,-0.272829,-0.209295,0.722443,0.203947,-0.710998,0.279852,0.103182,1.245047,0.212036,0.056631,-0.671551,0.829949,-0.43785,-0.800387,-0.182577,-0.414605,0.372764,-0.180573,0.268517,-1.647081,-0.967018,0.76294,0.352173,-0.31917,0.760199,-0.061616,1.382752,-0.098191,1.306677,0.650218,?
-1.421988,-0.842104,-0.446375,1.774148,1.991089,0.138242,-0.825255,0.414502,-0.327162,0.320206,-1.342899,2.124185,-0.563242,0.515715,-2.228786,-0.995676,-0.364772,-1.389067,-0.038806,0.419979,0.37688,-0.112126,-0.389679,0.00469,0.502571,0.152626,-0.257965,0.28364,0.063666,-0.571325,0.278417,-0.135398,-0.21747,-0.49981,-0.325387,0.273805,0.041064,-0.088405,-0.37212,-0.01851,-0.237483,-0.046784,0.064394,-0.229259,0.728161,0.22118,0.578132,-1.161944,?
2.649158,-4.534998,-0.895229,-3.876549,-0.437574,0.585607,0.246001,1.583154,1.544453,-0.620435,0.379463,0.404266,-2.84673,-1.027995,-0.923036,-0.114443,-0.880673,1.248046,-0.018845,0.223501,0.475163,-1.285073,-1.030304,-0.017789,0.499393,1.020014,0.905173,-0.723503,-0.077973,0.553169,0.254247,-0.644395,-0.589245,-0.074666,0.007085,0.257051,-0.412156,-0.239964,0.201635,0.863776,0.237337,-0.685852,0.505909,0.436567,-0.195311,0.672342,0.1849,0.387786,?
-1.755939,3.384767,2.912533,11.892127,2.110619,-2.913775,2.326595,0.347131,1.048081,-0.773083,1.684241,0.126888,2.085698,0.452265,-0.405172,-1.343492,0.639888,-0.397119,-0.060255,0.310526,0.509242,-1.041177,0.357052,-0.541079,0.14009,0.204094,-0.791058,-0.740387,-1.518026,1.636748,-0.291767,0.936159,-0.154351,-1.04822,0.796089,0.203934,0.242512,-0.633469,0.61791,-1.072326,0.836418,-0.105034,-0.266113,-0.327872,0.501684,0.140217,-0.124198,-0.326216,?
0.216545,7.857593,-4.54324,-1.768834,-1.152825,-0.042734,-1.370251,-0.213512,0.164126,-0.225348,-0.74953,-0.86918,-1.06721,-1.008915,0.248448,0.443859,-1.25553,-0.714143,-0.98694,-0.436356,0.209931,-0.257962,-0.206854,-0.00089,0.460014,0.640343,-0.445525,0.02471,-0.365924,0.190016,-0.153392,0.850889,0.038788,-1.02364,0.129072,-0.407962,-0.251997,0.046314,-0.438281,-0.828218,-0.23421,-0.340602,-0.257517,-0.037126,-0.254658,-0.06778,0.463039,1.202978,?
4.582162,-2.856276,0.514292,-0.539966,2.072189,0.687778,-1.32363,-0.491484,0.038584,-0.431369,0.527709,1.514565,-0.774187,0.29905,-0.077417,0.282016,-1.959686,-0.110823,-0.260457,-0.102683,0.763334,0.211937,0.66922,-1.14684,-0.952335,-0.455713,-0.268757,-0.551805,-0.345408,-0.301155,-0.643709,-0.583171,0.202314,0.212798,0.343571,0.241477,0.124821,-0.781357,-0.151431,-0.262276,0.252507,-0.126324,-0.377528,-0.620131,0.19706,0.282084,0.293032,0.542631,?
-5.422016,1.720617,-2.796221,5.106686,3.84331,-3.422217,2.808042,2.16852,-0.333173,0.46413,3.92981,-1.019619,1.750445,1.727138,-0.017055,1.303997,-0.49667,0.844989,0.402023,-2.048872,0.10277,-0.720383,2.301643,0.890687,0.119842,-1.079113,0.007352,-1.100521,-0.525904,1.576235,0.425667,-0.036899,-0.620694,-0.910094,0.599841,-0.396837,0.11785,-0.586964,-0.098519,0.276377,-0.959998,-0.340053,0.144402,0.18117,-0.655781,0.492121,-1.064237,-0.40167,?
-0.909901,-3.074469,1.288496,2.314276,0.131112,1.027415,-2.73106,-0.047275,-0.035656,-0.434018,2.20944,0.012675,1.628356,0.755805,-0.72562,0.086737,-0.392263,-0.106585,0.979933,-0.048515,0.769982,0.070901,-0.000137,0.093394,0.531561,-0.21702,-0.430286,-0.127267,-0.530092,0.055235,-0.955025,0.392491,0.54128,0.750155,-0.336668,-1.732498,-0.018201,0.999248,-0.024495,-0.604257,0.511176,-0.873324,-0.51758,-0.161654,-0.926027,0.027818,0.222556,0.563289,?
4.671129,0.048639,-1.525742,-1.861193,1.730553,-0.606958,0.494411,-1.104448,0.570071,0.158555,1.041223,-0.552691,-0.330927,-0.3617,0.020988,0.121281,0.272944,-1.156593,-0.844828,0.142561,0.643791,0.945423,0.772596,0.120972,-0.182931,0.40951,-0.180035,0.408226,-0.33527,1.000528,-0.128384,-0.832372,-0.390728,0.547889,0.199397,0.208454,-0.082534,0.073784,0.610139,0.519583,0.009732,-0.448939,0.178873,-0.642921,-1.253662,0.925899,0.646171,0.729276,?
-1.975436,1.840307,-0.485707,2.410333,-2.145166,0.752176,-3.122648,0.686353,-1.053033,-0.752001,0.434927,-1.661149,0.660419,-0.25298,-1.601165,1.064,0.094841,-0.860306,-0.311201,-1.316028,0.323165,-0.517017,-1.133177,1.149277,1.080389,-0.488512,0.239303,0.867799,-0.207321,0.374901,-0.595968,1.070983,-0.514248,0.654502,-0.524553,-0.163999,-0.472761,0.221809,-0.687183,0.443602,0.344696,0.535322,0.320269,0.366012,0.085391,-0.001158,-0.721146,-0.095136,?
3.751917,-2.420303,0.61876,-1.841764,-1.266396,1.158485,-1.21014,-0.70066,1.832302,-1.148861,1.789129,-0.686107,0.650605,0.042427,1.248607,1.038599,-0.305606,0.820763,-0.451269,-0.800926,0.709757,-0.930448,-0.28201,-1.042104,-0.471464,-0.099759,0.110322,-0.662098,-0.326334,0.574945,0.310867,0.494042,0.394648,-0.048296,0.064726,0.67393,0.094789,0.34003,-0.220297,-0.385528,0.30212,-1.167467,0.675725,0.109605,0.069294,-0.772817,0.124354,0.471396,?
3.991559,-0.292029,-2.645761,-2.435456,3.332498,-0.543766,0.258205,-1.396532,-0.017312,1.356752,0.503784,-0.493295,-0.037781,-0.421373,-0.207911,-1.057354,1.822594,-0.82531,-0.132177,0.885033,0.822051,-1.512022,-1.270723,1.389255,2.080054,0.276712,0.983755,-1.21465,-0.133713,0.615088,-0.109243,0.272542,-0.492317,-0.406102,0.460211,-0.162861,0.100306,-0.397694,0.373619,-1.016755,1.549268,-0.558654,-0.283635,0.223788,-1.442856,0.24324,-0.224276,0.046847,?
-3.673806,0.96798,-0.635442,2.994543,2.295717,-0.915702,0.849047,0.064268,0.124594,0.011379,-0.64793,0.979073,1.022555,0.496176,1.740409,-0.29845,-0.933025,-0.939098,-0.337924,-0.599696,0.233672,-0.931038,0.591382,0.261664,0.311602,-0.490606,-0.691283,0.436655,-0.41609,0.767434,0.94242,-0.194255,-0.336616,-0.366174,0.546186,-0.297592,-0.21873,0.62524,0.610793,-0.070952,0.176948,-0.237282,-0.25756,-0.367117,0.640222,-0.086852,-0.062195,-0.415632,?
-1.345834,-4.419796,3.508495,0.741371,-5.116256,1.356466,-2.640803,3.25175,-4.598528,0.067123,0.734886,-1.017996,0.035995,-3.307057,1.575867,-0.934616,-0.246383,0.565557,-0.540157,0.354341,0.936848,-0.124622,-0.174837,-0.713305,-0.597225,0.260636,-0.095537,0.400665,-0.716353,0.757568,0.323548,0.003405,-0.089057,1.216681,0.250083,-0.712154,0.358512,-0.087554,0.730806,0.550357,-0.305228,0.119401,0.80648,-0.595779,0.426612,-0.467123,0.547237,0.898114,?
-2.68489,-2.409086,-0.27804,5.568342,2.959738,-1.621598,1.159308,2.573831,1.149912,-1.372416,-0.752082,-0.554374,0.326272,0.045482,-0.226924,0.678423,1.069847,1.245881,0.067358,-0.917918,0.229935,0.130134,0.088197,-0.419242,-0.313477,-0.19747,0.110138,0.315143,0.071299,0.365527,0.230391,-0.220671,-0.457922,-0.40787,-0.356089,0.857223,-0.160586,-0.118375,0.222644,0.839295,-0.721851,-1.666303,0.878252,0.623925,-0.497168,-0.110203,-0.336438,0.344892,?
-6.687273,4.092212,-4.405018,-0.13012,-0.861841,-0.868766,-0.594346,2.152076,-1.856077,-0.026554,-1.323947,-0.946587,-0.588732,-0.635514,-0.142064,1.061226,-1.375575,-1.065981,-0.735197,-0.730676,0.248155,-0.035173,-0.135247,0.51061,0.384106,-0.551082,-0.337773,-0.143817,-0.781106,0.318302,-1.078611,0.409926,0.719779,-0.602701,0.231531,-1.121134,-0.336861,-0.040376,-1.146762,-0.552581,0.419984,-0.156655,-0.039578,0.805957,-0.182526,-0.675235,-0.42509,-0.551509,?
-2.907074,-2.904263,0.740544,0.117831,1.10403,0.973842,-1.097642,-2.220018,-0.582037,-0.399601,-1.133499,0.120231,-0.431229,0.101618,0.688047,0.919637,-0.769938,0.340455,-1.086362,0.499134,0.344049,0.031168,0.39788,-1.21696,-0.630261,-0.256184,-0.468028,-0.376298,-0.044849,-0.27871,-0.172414,-0.179673,0.182152,-0.156012,0.271141,1.392797,-0.898099,0.309359,-0.255134,-0.756014,0.374737,-0.412184,-0.788845,-0.871924,-0.163544,-0.506656,0.374312,-0.060036,?
10.540532,2.082468,-0.185753,-1.622413,1.35834,-0.792412,0.105581,-2.178295,-1.221919,0.191366,-0.389688,-0.763533,2.23743,0.850493,0.112107,-0.176336,1.306646,0.376986,0.082769,-0.937175,0.09284,1.197466,3.005702,-0.642226,-0.820667,-2.358287,-1.397587,0.667113,-0.105008,-0.288664,-0.685974,-0.166323,-0.39297,0.041059,0.197985,-0.764431,0.315804,-0.520527,-0.336053,0.144341,0.400761,-0.190481,-0.150909,0.446939,-0.201556,-0.129587,0.006785,0.223762,?
-5.001443,-3.383874,-0.251861,0.530681,0.274458,-0.146774,-0.27473,-1.413623,-0.717856,-0.875441,-1.774381,-0.615622,0.103944,0.395425,-0.094728,0.701439,-0.377834,0.150347,-0.370585,0.362041,0.180342,0.209934,0.676315,-0.574007,-0.179744,-1.25167,-0.556692,-0.258514,0.096557,-0.960925,-1.344269,0.243905,-0.69079,0.387694,-0.124721,0.266661,-0.460552,-0.480214,-0.358253,0.037597,0.526068,-0.296888,-0.221046,-0.25792,0.635509,0.123956,-0.708051,0.132013,?
-1.786002,-2.746871,-0.328115,1.157334,0.220872,-2.11261,3.616292,2.589926,0.467372,-0.111302,-0.529567,-0.402367,-1.173587,-0.407103,-2.137324,-0.650728,1.788298,-0.538919,-0.219715,-0.042339,-0.341331,-0.746181,0.798808,1.221159,1.299098,-1.452944,0.204627,-1.084352,0.532809,-0.633754,-0.128551,0.152403,0.515777,-0.497608,-0.400537,0.576602,-0.268281,0.070775,-1.217267,-0.661855,-0.206796,-0.214013,0.586539,0.715408,-0.259118,0.387509,-0.915286,0.326199,?
-3.367314,-4.693819,0.223785,0.972889,-0.847473,0.289694,-0.431176,1.331616,0.845373,-1.427974,-2.51569,-0.491625,1.037643,-0.99632,1.109811,-0.722219,1.713551,0.019062,-0.477903,-0.555627,0.255208,-1.08099,-0.016429,-1.645344,-0.504793,-2.571922,-1.198364,1.25263,0.061239,-0.507789,-0.409899,0.215608,0.725128,0.519273,-0.331067,-0.755593,0.419633,0.048369,-0.134832,-0.476454,-0.18932,0.722977,-0.311286,-0.265925,-0.323849,-0.346334,0.208998,-0.112473,?
-1.387322,-3.91319,2.013169,2.162728,-1.369454,1.261768,-1.721148,0.123726,1.270319,-1.37887,-0.393154,0.855995,-0.074626,-0.417236,-0.391481,-0.44047,-0.120207,-0.432562,-0.984535,-0.650203,-0.129307,-0.613716,1.846529,0.534723,-0.01414,-1.23318,-0.124739,-0.961392,0.301359,0.460412,1.807725,0.534235,-0.391859,0.007653,-0.017068,-0.113367,0.197602,0.319153,-0.440207,0.244588,-0.426129,0.054927,0.011241,-0.146159,-0.334785,0.191936,0.17111,-0.136271,?
-10.011226,5.934547,3.465688,-2.077552,-2.805723,-5.181954,2.083319,-9.881156,-0.923539,-7.338141,3.645075,3.579581,-1.002809,-1.194378,-0.026155,-4.153904,1.092027,-2.293341,0.807456,-4.060108,1.959926,1.51557,-1.093631,0.766513,-0.793357,-0.106409,2.494287,0.669648,-1.588664,-0.591589,-0.870909,1.422504,1.401875,0.865561,-0.671323,-0.672422,0.585337,0.822839,0.088358,1.407701,-0.356139,0.635076,-0.41971,0.70713,-0.391225,0.819102,1.62202,0.072291,0.03
-3.356835,-2.47267,2.280178,0.73274,-2.921538,-0.536414,0.143245,0.582197,1.609883,2.842879,2.133201,-3.396636,-5.177731,6.973829,1.884956,-4.506028,0.405766,-0.215708,-1.518541,0.057041,0.92564,0.337599,-2.905701,2.962916,-2.051442,-1.335813,-1.063963,-0.597776,-3.926274,-2.852974,0.730749,0.251371,-0.633659,-0.212476,-0.431174,0.626117,-0.074038,0.219388,-0.088701,0.360665,-1.042845,-0.846437,-0.338944,0.467662,1.043184,0.099829,-0.889458,-0.504688,0.02
0.937074,-1.76374,-0.890956,-0.422317,1.98116,0.994122,-1.791092,-0.699336,1.199961,-0.190228,0.720296,1.382179,-0.632691,0.401167,-0.988634,-0.197841,-1.248901,-1.341073,-0.201916,-0.269236,0.485974,-0.632465,0.001092,0.015446,0.401649,-0.726963,-0.480835,0.410349,-0.182219,0.506895,0.299429,0.223224,-0.115687,0.768604,-0.200062,0.19576,-0.361136,0.775912,-0.455893,0.517315,-0.896144,0.26548,0.154488,-0.217829,0.471426,0.280121,0.918314,0.411076,?
-5.306546,-6.13238,-0.720424,-0.155208,-0.91619,0.941503,-1.638884,1.364396,1.494261,-1.95384,-1.796474,-0.432218,1.141076,0.697881,0.840763,1.071898,0.031797,0.603616,0.372343,-1.264334,0.435858,0.505021,-0.305908,0.063338,-0.320313,-0.068938,0.061169,0.587647,-0.302841,0.556119,-1.329885,-0.065565,-1.806859,0.615781,-0.042876,-1.065948,0.197999,-0.894127,0.290424,0.360885,0.143915,-0.504604,0.045719,-0.314798,-0.989724,-0.241592,0.562501,-0.09675,?
-2.630581,12.11652,-2.772212,0.648683,-3.614999,0.052832,-0.756008,2.114488,1.673202,-0.531918,-0.115782,0.157119,-0.681806,-0.889965,-0.172017,-0.050505,-2.046433,-0.06635,0.11571,-0.891187,-0.083987,-0.299673,0.238076,-0.803581,-0.172833,0.495483,-0.878054,-0.033726,-0.114002,-1.202226,-0.377486,0.429492,-0.274843,-1.519063,0.086009,-0.038766,-0.721407,-0.194885,0.15402,0.034265,-0.496992,0.913874,0.29064,0.27382,0.602208,-1.01919,-0.625976,0.360195,?
-5.541693,-2.796218,0.380021,3.375299,-0.495743,-0.360785,1.820493,-4.531136,0.007349,-1.017306,-2.787546,1.067663,-0.704903,-3.15169,0.470341,-0.100364,0.77446,-0.013533,-0.46585,-0.727161,1.495193,-0.608798,1.223551,0.519119,-0.456995,1.318224,0.539075,-0.004491,2.86738,2.740307,-1.683588,0.855654,0.332587,-0.109223,0.381353,0.000999,-0.947823,0.087028,0.057993,0.338836,-1.098219,-0.992547,0.310511,0.858878,1.309141,-0.395522,-0.037243,-0.762186,0.02
-1.651947,-2.902324,-0.398172,-2.172259,-2.272576,0.205118,0.331703,-0.174609,1.370643,-0.103761,1.662612,-1.246324,0.039134,-0.218008,-0.983492,-0.373775,1.258492,0.489483,0.075796,0.294652,0.095688,-0.902272,-0.091769,0.404498,0.919937,-0.198717,-0.04419,-0.482604,0.036067,-0.267005,-0.33324,0.071555,0.213237,0.386942,-0.202105,-0.301555,0.591775,-0.370507,0.641295,0.17068,0.229778,-1.122494,0.108391,-0.734317,0.770903,-0.700927,0.078969,0.435808,?
-7.217319,-2.130841,-0.795189,0.407544,-0.756495,0.768889,3.983583,-6.230464,-2.384107,0.547007,-1.522709,0.121838,-1.413869,-3.105901,1.381243,-0.029526,0.677104,0.226582,1.845848,-2.556388,1.765234,-0.439157,0.722328,-1.877928,-1.685597,-0.727617,-0.530225,-0.793461,1.064641,2.297029,-1.944777,0.064193,1.275218,-0.653177,-2.051719,0.816307,1.446304,1.2435,-0.845987,0.308035,0.68556,0.504595,-0.419337,-1.046071,-0.079245,-1.037094,0.63442,0.348345,0
5.635702,4.082532,0.144116,0.673139,-0.472065,0.084028,-0.03131,0.066644,1.823439,-0.713669,-0.876321,0.648319,0.895372,0.733226,-0.2607,-0.349822,0.26783,0.533818,0.492664,-0.92803,0.477414,-0.835169,-0.269359,-0.692621,0.010284,0.423959,-0.037738,0.087374,0.005874,-0.101252,0.846249,-0.998733,0.094089,-1.361771,0.812137,-0.354724,-0.760204,0.73879,1.080975,0.533796,0.610712,0.538905,-0.42821,0.321709,-0.343237,0.210936,0.218659,0.358928,?
3.264574,-2.685162,0.533075,0.69148,2.153841,0.902452,-1.953088,-2.150012,0.996143,-1.020424,1.155737,0.214257,0.354383,-0.231014,1.66742,0.147145,-1.639812,-0.257906,-0.283537,0.254345,0.411989,-0.201388,0.722007,-0.337262,0.095844,-0.865957,-1.007409,-0.0214,-0.270108,0.064773,-0.078697,0.29357,-0.461703,-0.752028,-0.242081,0.386164,0.337117,0.075395,0.025991,-0.383981,-0.240969,-0.240536,-0.223825,0.145725,0.518473,-0.395953,-0.467599,-1.352175,?
-0.4137,7.603005,4.209508,6.444824,-4.041124,-3.572496,3.508968,0.163395,2.940097,0.03974,1.397196,2.866791,0.628541,0.016424,0.203393,0.096723,-1.086769,-1.415544,1.190623,-0.621375,0.64243,1.767613,0.695879,-0.743065,-0.419338,1.910044,0.140104,0.798881,0.445893,-2.854299,-1.924116,0.60827,0.02774,-0.075272,0.908886,1.179764,0.512015,0.1504,-0.017023,-0.211618,-0.818914,0.382469,-0.840427,0.954927,0.335618,-0.390901,0.546106,-0.160188,0.06
1.848185,-3.306842,-0.755728,-3.353407,-0.487835,0.176451,0.731763,0.844455,1.085349,0.116166,1.149841,-0.393437,0.272221,-0.145844,0.118422,-0.016867,1.222317,-0.688166,0.085069,-0.59907,0.32857,0.334085,-0.011061,1.134093,0.898035,0.601785,0.492614,-0.33867,-0.291194,0.874064,-0.217169,-0.32212,-0.906999,-1.037767,0.616048,0.271286,-0.122855,-0.4211,-0.116129,-0.530199,0.54935,-0.53644,-0.268229,0.079222,0.551534,-0.141301,-0.219524,-0.004941,?
7.022332,-1.280686,1.912441,0.715948,0.451647,-0.704027,0.953207,0.956324,-1.83496,-0.805558,-2.303263,1.33133,-1.544181,-0.115505,-0.435486,0.351427,-1.399752,-0.651143,-1.289598,0.098482,0.401333,0.392403,0.374862,-0.096132,-0.502872,0.026549,0.296359,-0.87197,-0.498489,0.116755,0.307337,-1.007383,1.140465,-0.392495,0.397504,0.750445,0.520377,-0.783036,-0.387983,-0.511963,-0.349026,1.030732,-0.46917,-0.390252,0.350366,-0.215115,-0.348237,-0.210095,?
7.694898,-1.263972,0.432261,-4.560327,-2.752487,-0.546452,1.995792,0.690891,0.365811,-0.183516,1.159916,-0.860219,-0.082613,-0.769073,-0.496041,-0.567631,1.210802,0.097898,-0.218766,-0.998497,-0.538096,1.163539,4.052407,1.481449,0.106277,-2.031211,-0.197907,-1.069096,0.389723,-0.220964,0.428457,-0.807187,0.131755,-0.267895,0.419224,0.452399,-0.53848,-0.687819,-0.62538,1.411567,0.465239,-0.010961,-0.519224,0.378025,0.82018,0.431237,-0.26376,-0.070711,?
-0.839781,4.951608,1.472114,2.914521,-7.271604,-0.56641,-0.004127,-2.64155,3.570123,2.821584,0.389817,1.019151,2.246752,1.073823,1.095177,-2.60062,-0.680161,0.181103,1.033203,-0.514454,1.274922,1.430768,1.401044,-1.139969,0.54761,0.340001,2.92588,0.837215,0.557473,1.946498,-1.309184,-0.368752,1.064181,-1.208649,-2.052823,-0.213771,-0.352022,0.498926,-0.060893,0.084951,0.907939,0.105277,0.040379,-0.067295,-0.232492,-0.278185,0.06335,-0.067012,0.01
-7.358185,-1.414674,-0.285033,2.013445,-0.76845,-0.390834,0.01862,-3.097829,0.689742,-1.777799,-3.869451,-1.75009,1.538704,0.445745,1.089671,0.52843,1.618893,1.439793,-1.220491,0.750578,0.174284,0.005011,0.749502,-0.739825,-0.510206,0.004468,-0.228335,-0.577168,-0.259401,0.446802,0.851605,-0.133143,0.698948,0.867867,0.825763,-0.344926,-0.523382,0.81501,0.208948,0.323722,0.095103,0.868279,0.241744,0.144451,-0.294864,-0.59597,-0.22692,0.423806,?
5.592267,-3.040416,-0.007444,-2.087565,1.235918,-0.243799,1.00619,-0.056594,1.40469,-0.592223,0.90022,0.526437,-0.820873,-0.159273,0.68384,-0.088651,-0.968092,-0.358679,-0.071198,-0.378671,-0.023507,0.291818,1.298154,-0.603213,-0.191288,-0.984399,-1.195941,1.083704,0.178592,-0.117583,0.014157,0.846579,-1.321007,-0.072096,-0.931761,-0.531696,0.543749,0.664622,0.403249,-0.913606,-0.789219,0.369472,-0.856814,-0.805367,0.434683,0.684079,0.107855,-1.619614,?
4.93376,1.416112,0.643047,3.007006,-1.705659,3.125049,-0.792253,0.509769,-1.447252,3.936313,-0.011482,0.469533,0.002237,0.101431,1.155924,-0.355535,-0.841497,0.818631,-1.265659,0.673292,0.327134,1.1288,0.983876,-1.296737,0.993389,-0.094658,1.545097,-0.09066,0.948948,0.909708,-1.392951,0.08828,0.294038,-0.696353,0.148599,0.332961,1.523328,-0.270184,-0.040031,0.021145,-0.024121,-0.104618,0.818304,-0.204473,-0.478707,0.407118,-0.230141,0.352487,0.02
-2.768712,-3.157838,0.689726,1.388275,-1.191168,0.695393,-1.760024,1.184194,-0.437052,-0.819628,-0.836065,0.243902,0.228025,0.198732,-1.57404,-0.016506,-0.056307,-0.549055,0.243708,-0.130591,0.434651,0.271148,-0.442857,0.379637,0.540322,-0.207663,-0.105708,0.182542,0.049804,-0.692506,0.169433,0.505864,0.98446,1.056147,-0.456645,-1.979633,0.327925,-0.913829,-0.473795,0.82489,0.720593,0.226234,-0.407882,0.101952,0.444477,0.234166,0.302184,-0.289861,?
0.926068,-0.430929,0.277875,1.40645,1.731477,1.699415,-4.011439,0.300265,-1.808134,0.775063,0.832418,0.245782,-0.616237,-2.070132,-0.623803,-0.695168,0.420816,1.034213,-0.158384,0.817207,0.880593,0.81504,0.134892,-0.80382,-0.511316,0.731643,0.321113,-0.570608,0.128469,-1.051773,-0.111859,-0.208614,0.152201,0.147234,0.225957,0.150407,-0.234954,-0.391872,0.298579,-0.197457,0.036844,-0.142183,0.055769,-0.637812,0.684259,-0.146516,-0.066577,0.136637,?
3.292187,-3.350997,-0.000268,0.770474,2.745724,0.535029,-1.168224,-0.722762,2.391254,-1.165451,0.442841,1.231436,0.094834,-0.218842,1.362483,-0.497573,-1.175779,0.290201,0.006547,0.133262,0.591997,-0.752157,0.369997,-0.888318,-0.157826,-0.571418,-0.703389,-0.308005,-0.545867,0.307958,0.390573,0.873463,0.255612,0.220662,-0.048957,-0.408923,0.341498,1.268222,0.375669,-0.667668,0.040425,-0.78757,0.984389,0.71432,0.806971,-0.852562,-0.320098,-0.08573,?
-3.281277,-3.926488,0.746882,1.472263,-1.388682,0.612166,-1.538854,1.444334,-0.915052,-0.316049,-0.016437,0.114458,0.308802,-0.511124,-1.627636,-0.817197,0.531611,-0.737347,0.230741,0.504223,0.399575,-0.182378,-0.510498,-0.01349,0.721269,-0.175954,-0.678401,0.222377,-0.288667,-0.545583,-0.34493,0.136637,0.926722,-0.086437,-0.425927,-1.952361,0.103899,-0.181869,-1.360192,0.032628,0.765221,-0.263078,-0.759294,0.285405,-0.42165,-0.734049,0.120453,0.17376,?
-1.434681,-5.625025,-0.14994,-3.433113,-2.775478,-0.492465,2.118929,2.53843,1.092642,-0.51357,-0.537155,0.113314,-0.294369,0.501989,-2.156892,-0.508484,1.277289,0.601142,0.643057,-0.269815,0.179317,1.060762,0.506173,-0.454757,-0.015913,0.934953,0.221033,-0.388004,-0.341429,0.424517,0.88055,2.679879,0.462537,-0.207049,-0.351692,0.535941,-0.227506,-0.804216,-0.808305,0.628976,-0.218371,0.780177,0.062503,0.128392,0.782251,0.197909,-0.311475,0.303893,?
2.530236,1.372783,2.081009,1.440623,2.211696,1.742241,-2.202084,-1.917174,-2.057222,0.696121,-0.43137,0.414868,2.08006,1.253509,1.557833,1.280654,-0.509375,0.298124,0.355428,-0.947465,0.614908,-0.393961,-0.83186,-0.257361,0.60534,0.395905,-0.497368,1.100174,0.780408,-2.176345,1.093328,-1.602136,4.550015,-0.418826,0.738818,-0.695662,-3.397561,2.501654,-0.302593,-0.199548,2.265524,0.000193,-1.07662,-1.034872,-0.49064,3.140814,0.869813,-0.960289,?
5.962655,0.42287,-0.895099,-0.309141,2.326693,-0.172311,-0.528895,-1.410406,0.427363,0.16351,0.894773,-0.327494,0.625844,0.415901,-0.58419,-0.364549,0.845541,0.867591,0.160102,0.212928,0.679385,-2.410817,-1.267882,-0.995341,0.310733,-0.751649,-0.205588,-0.090782,-0.653957,1.181208,0.138537,-0.438716,0.799331,-0.570699,0.059221,-0.701205,0.309804,0.492308,0.502949,0.307872,-1.138702,0.409809,-0.515924,-0.206183,0.097856,0.4213,-0.117019,-0.172108,?
0.583411,-0.895217,0.655181,-1.889848,-1.863353,-0.278821,1.032716,-2.085003,-0.380594,0.061279,1.03509,-1.103679,0.563096,-0.668732,1.735304,-0.798467,-0.240489,-0.84584,-0.313137,1.366058,0.099552,-0.567348,0.425208,0.802331,1.017299,0.292133,-0.458544,-0.582147,0.047289,0.136982,0.465463,0.073551,-0.457724,-0.092848,-0.091349,0.08403,-0.302199,0.120053,-0.987441,0.301897,-0.315763,-0.127154,0.158007,-0.062529,0.622067,-0.098677,0.550931,0.298434,?
3.743505,-1.760798,0.087341,-1.294997,0.610254,0.466849,-0.516043,-1.49644,1.001346,-0.166699,0.935655,0.422892,0.091094,0.786707,-1.256873,-0.167786,0.145956,1.203898,-0.155123,-0.194223,0.407772,-2.426343,-0.299142,-2.061552,-0.674864,-1.100058,-0.224489,-0.715258,-0.384695,0.766494,0.441728,0.482647,0.13844,0.096628,0.194763,0.128805,0.069598,0.270368,0.082523,-0.374802,0.4843,-0.78769,1.458997,0.934631,-0.189049,0.056371,0.096689,0.143768,?
-6.233566,-4.14978,-3.272528,-3.977709,-0.198259,-1.325267,1.666451,0.484296,-2.918634,1.184623,0.009655,-1.010154,0.503586,1.394617,-1.046946,0.457207,-0.045777,-0.655929,0.695417,0.15941,0.304174,-0.069908,-0.815472,-0.234303,0.454542,0.089201,-0.147757,0.164783,-0.661471,0.675559,-2.027779,-0.184491,-1.957523,-1.003003,0.511578,0.922978,-0.414657,-1.018511,-0.520623,-0.634564,0.84545,-0.140541,0.784664,0.806008,-0.339904,-0.606865,0.465539,1.077521,?
-5.109718,-2.81797,-1.418076,0.223527,0.194931,-0.917428,0.861271,0.470533,-0.57524,-0.526606,-2.526034,-0.584042,1.262439,-0.045147,1.31698,-0.600999,0.675152,-0.213589,0.404688,0.536867,0.011195,0.039016,-0.244646,0.237467,0.596611,-0.01822,-0.473008,0.674016,-0.039038,0.039224,-0.308545,0.291006,-1.164001,-0.497374,-0.512645,0.147574,-0.436014,0.099459,-0.734727,0.511938,-0.36802,-0.403243,0.014875,0.301745,0.135457,-0.214089,0.281864,-0.222127,?
0.514333,-0.878693,0.982655,2.714867,-0.205255,0.654222,-1.832071,1.232962,-0.43672,-0.290921,1.03848,0.67891,-1.107178,-1.597359,-1.391423,-1.114656,-0.747434,-0.650587,-0.079845,0.441569,0.022245,-0.490434,0.389439,-0.023125,0.231174,-0.52057,-0.792542,0.13249,-0.356964,0.211413,0.310883,-0.405028,0.381306,-0.142294,0.042388,-1.642989,-0.596647,0.566542,-0.117778,1.210548,0.585046,-0.24766,-0.668035,0.467197,0.277637,-0.127804,-0.067858,0.16476,?
0.862218,-2.926994,1.127111,0.233832,-0.95882,1.576494,-2.268218,-0.320068,1.292209,-0.951803,0.942987,0.724535,-0.472734,-0.041993,-1.743343,-0.352322,-0.69837,-0.48145,0.033683,0.094165,0.019642,-0.417915,0.370142,0.166621,0.177175,-0.615155,-0.49482,-0.212649,-0.389302,0.172559,-0.392556,-0.495554,0.580376,-0.489934,-0.270609,-0.28428,0.030256,-1.159749,0.019724,1.236048,-0.308957,-0.643055,0.052487,0.066264,0.108002,0.210982,0.650839,0.335178,?
0.582275,-4.34554,1.43254,1.255243,0.989888,0.275732,-0.484453,0.630778,0.081901,-1.349931,-0.202208,0.699007,0.383455,0.33261,1.720465,0.743024,-2.274442,-0.799979,0.24023,-0.462795,0.369256,0.099082,0.027524,0.189969,-0.149473,-0.520228,-0.33612,0.161364,-0.180184,-0.28953,-0.5805,-0.512081,0.288591,-0.058501,-0.088172,0.537301,-0.711504,-0.683768,-0.95005,0.741465,-0.22097,-0.557006,1.126808,0.758135,-0.071778,0.508121,-0.423481,0.61536,?
-0.993287,0.957734,4.336017,1.070116,3.104216,2.896854,-1.724104,0.296599,-1.863815,2.696647,0.917943,1.722437,-0.800292,-0.38539,0.029431,0.571362,0.587642,1.22469,0.29319,0.158261,0.864721,-1.304337,-1.294849,-0.234553,0.071243,0.192501,1.063357,-1.296368,0.259711,-1.505231,-0.772464,0.342737,0.560902,-0.436255,0.087485,0.037706,-1.695165,-0.833815,-0.430391,-0.590249,-0.939163,-0.328634,0.64348,-1.278655,0.954862,-0.710585,0.767724,-0.333346,?
-2.877732,5.316224,-7.258351,6.029036,9.340829,-5.17217,2.886272,3.573928,-0.934273,1.228084,-0.430788,-0.500464,-1.36592,-1.624859,-0.684572,-0.640135,0.597504,-0.884637,-0.090868,0.295607,0.809018,0.478038,-0.555138,-0.783998,-0.321803,-0.800236,0.6363,0.066218,0.449115,-1.118422,-1.224902,1.251232,-0.162967,3.378607,0.22613,0.313233,-0.340332,-0.211897,-1.121477,0.201842,0.237143,1.826819,0.935278,-0.438544,1.254796,-0.468876,1.337728,1.240115,?
-10.876559,-3.469411,-0.807143,-0.525625,-2.252619,-0.646767,0.302431,-2.283017,-2.543784,-0.823754,-0.81054,-1.707564,0.105321,1.56714,-0.118837,1.832478,-2.082639,0.070316,-0.360803,1.438256,0.426003,0.358745,-0.239632,-0.599421,-0.226756,0.589186,-0.33813,-0.471233,-0.595845,0.507737,-1.288362,-2.309645,0.610892,0.797804,0.759546,-0.139982,-0.860224,0.935955,1.449374,0.601726,0.004341,0.70553,-0.001177,-0.128104,-0.713744,1.323112,0.700656,0.533311,?
0.573616,8.555217,-3.209424,0.024786,-0.828879,0.795846,-2.392169,-0.361172,1.430261,-0.548569,-0.672112,-1.201084,-1.309073,-1.233637,-1.080993,0.628908,-0.124071,0.092045,-0.577397,-0.223558,-0.238881,-0.042375,-0.401813,0.077671,0.388525,0.337624,-0.268341,0.401475,0.291014,-0.695227,0.033731,0.526202,0.253598,-1.145337,-0.712509,0.228853,-0.599174,0.494536,0.750795,0.737695,-0.843723,-0.187172,0.095293,0.025315,-0.180294,-0.269937,0.209174,0.644555,?
-0.242975,-1.565197,2.596618,3.062189,-0.973115,0.972239,-1.692068,0.423675,-0.6907,-0.709475,0.786487,1.068292,0.077152,0.427081,-0.733671,0.049343,-1.824219,-1.032153,0.148387,-0.182479,0.083105,-0.61063,0.0179,0.226682,0.30014,-0.583863,-0.943939,0.533773,-0.614381,0.339601,0.194741,-0.665046,0.945878,-0.19562,-0.103954,-1.77481,0.009175,0.589343,1.204945,0.959068,0.135311,-0.686802,-0.405904,-0.195708,0.353928,0.334906,0.659601,-0.143074,?
0.634088,-6.130059,-0.087964,-4.194178,-1.670106,0.590857,0.43016,2.323704,0.415706,-0.339812,-0.444775,1.429063,-1.856384,0.086351,-2.09954,-0.183652,-0.381642,1.688064,0.481728,-0.071073,0.017328,1.269707,0.659607,-1.382337,-1.191109,1.965918,0.687947,-0.896845,0.492624,-0.281672,1.966396,1.65684,-0.821556,-0.032277,-0.199848,-0.099265,0.15672,-0.718245,0.247962,0.56577,0.739364,-0.625424,0.592609,0.375441,0.307689,0.094272,0.612197,-0.47342,?
-5.883222,-1.894451,0.235933,6.294723,1.442117,-2.2783,1.758897,1.97029,-2.211485,-0.496539,-1.283871,-0.997218,0.594791,0.34528,-0.840764,0.515867,0.756792,-1.098777,-0.68714,-0.384678,-0.242792,-1.004258,-0.145544,0.539756,0.486029,-1.839103,-0.785666,0.647393,-0.858682,1.261793,-0.944984,0.107056,-0.332618,-0.251607,-0.351745,-1.082821,0.414816,-0.310658,-0.220385,-0.162622,0.213592,-0.350084,0.820855,0.400134,-0.593627,-0.734355,0.538932,-0.343917,?
6.172492,3.978884,-1.630842,1.876437,-2.018993,1.427912,1.863337,-1.329711,2.524424,4.838507,-2.084778,2.347348,0.871566,-4.00142,-0.170362,1.665222,0.627164,0.550593,2.220177,-2.102436,-1.071831,3.131502,-2.577321,-0.472499,-0.296043,-0.377781,-6.982248,-3.239209,-0.86753,-0.103376,0.132381,-0.475187,-1.065089,-0.831012,-0.670299,0.757619,-0.130076,0.798198,0.194164,1.290428,0.763156,0.956078,0.346491,-0.227109,-1.270782,-0.253458,-0.508377,0.681235,0.03
1.755443,-0.510331,1.841795,1.881434,-2.026457,0.997386,-1.775112,-0.371508,1.710782,-0.662014,1.136408,0.350872,1.375102,-0.59301,-0.873816,-1.49143,1.085814,-0.610028,-0.245652,-0.577328,-0.128484,-0.750433,2.02439,0.897078,0.071021,-1.575825,0.228771,-1.565697,-0.050958,0.329844,0.477487,-0.04427,-0.235242,0.691658,0.84727,-0.185261,-0.37067,-0.225322,-0.318623,0.620592,1.052367,-0.222791,-0.079832,0.150105,-0.454954,-0.387095,-0.427798,1.063337,?
4.276902,-1.769377,0.904308,-1.114991,-0.960754,-0.355099,0.876764,0.533289,-0.287655,-0.228003,0.275519,-0.484907,1.082367,0.488386,-0.004084,0.337396,0.869257,-1.404033,0.182619,-0.005824,0.524825,0.84149,-1.499111,0.941409,0.82772,1.782792,0.437165,0.463164,-0.357936,0.462549,-0.64453,-0.4605,0.152586,-0.033508,-0.009271,0.16295,-0.701816,1.436348,-1.508821,-1.515907,-0.548291,0.339233,0.00296,0.017465,-0.444449,0.225132,-0.778476,0.488348,?
4.078534,-3.278454,-1.21787,-3.206733,0.757426,-0.583909,1.412802,1.505373,1.094593,-0.276133,0.489296,-0.015852,0.046355,-0.485325,2.065233,0.053812,-0.072262,-0.268827,0.408589,-0.299448,0.442107,0.537378,-0.395557,0.673718,0.388094,1.052514,0.789195,-0.625594,0.055825,0.098741,-0.498644,-0.066086,-1.30285,0.155699,0.346427,-0.126218,-0.183776,0.590819,-0.271035,-1.236894,0.896852,-1.009321,-0.102262,0.214766,0.143479,-0.245309,-0.427486,0.374648,?
-6.204386,-0.399833,-0.68722,6.980834,2.914469,-3.754337,3.720445,0.570358,0.069295,-1.182124,1.556288,-3.140279,0.352998,-0.692599,1.763026,1.376983,0.648053,1.58489,-0.973136,0.520707,0.002942,-0.341169,1.004061,-0.582903,-0.447974,-0.284197,-0.257044,-0.794587,-0.445671,1.200734,0.541628,-0.57046,1.224861,-0.393214,0.36317,0.208339,0.041029,0.480981,0.914432,0.312202,-0.890778,0.623057,-0.339623,-0.187076,-1.058891,-0.079029,-0.658239,-0.289539,?
4.54499,-1.617836,0.221934,0.063682,1.963079,-0.335085,0.484939,0.322598,0.052607,0.408774,0.235473,1.276386,-0.622641,0.112044,-1.717458,-0.763194,0.464867,-0.297959,-0.293014,0.250372,0.462335,-0.7977,-0.347066,-1.348288,-0.624644,0.243664,-0.039511,-0.071027,-0.509054,1.162232,0.333559,-0.39243,-0.548593,-0.647348,0.100527,0.449916,-0.382177,0.578231,-0.450905,-0.348704,-0.613636,-0.302438,-0.027928,0.103335,-0.707016,0.555621,-0.463786,0.310442,?
-7.168988,-0.547715,1.083223,4.924737,1.156339,-2.288655,3.16249,-1.440832,-1.401973,-0.129654,-0.305662,-0.795757,-0.107742,0.699029,-0.259533,0.572998,-0.169294,0.254183,-1.244146,0.754297,-0.292184,-1.133592,0.725734,-1.141393,-0.589322,-0.436042,-0.973449,-0.070692,-0.476505,0.806467,0.71206,-0.869773,-0.170447,-0.315971,0.675081,0.24694,-0.248654,0.568025,0.543802,-0.248381,0.400043,0.090868,1.743798,0.778011,0.620783,-0.813344,0.635916,-0.160969,?
-2.82972,-4.77959,-0.577887,1.383142,1.389246,-0.515561,-0.129496,0.946916,0.488962,-1.557325,-0.59353,-0.736252,0.723297,0.080359,2.158042,1.170187,-1.035416,-0.328263,0.225887,-0.662138,0.121639,0.397187,0.455349,0.892455,0.136775,-1.431168,-0.034746,0.095794,0.098813,-0.640696,-1.574101,0.020105,-0.819585,0.858625,-0.417011,0.333524,-0.332608,-0.604119,-0.6416,0.805415,0.117747,-0.722575,0.41749,-0.213244,0.311817,-0.496922,0.692704,0.246326,?
3.872002,0.472348,-0.982833,0.83683,3.95123,0.477635,-1.982147,-1.379991,-0.289582,0.458693,-0.904897,1.855977,0.778754,0.955136,-0.657889,-0.798532,-0.240215,-0.240438,0.443812,0.259242,0.195063,0.257702,0.602992,0.407217,0.233487,0.254594,0.008728,-0.309705,-0.109838,-0.142456,0.545046,-0.562837,-0.276011,-1.180263,0.204894,-0.168015,0.035137,0.337563,0.506412,-0.290064,-0.35882,-0.059393,-0.825307,-0.276144,0.104205,-0.000919,0.009156,-0.455019,?
6.10526,-0.725138,0.736832,-2.005205,0.075292,-1.204337,2.571693,-0.480229,-1.366037,0.702871,-0.990863,0.195203,0.353599,0.371314,0.719116,-0.754724,0.812028,-1.345076,-0.259927,0.12146,-0.105685,-1.127045,-0.730427,0.676658,1.204619,-0.514924,0.174111,0.166236,1.60409,-2.070985,1.614966,-0.183469,-0.341282,0.293302,-0.238281,0.658909,0.51309,0.177939,-0.718407,-1.277221,0.027002,0.617495,0.106299,0.18122,0.77729,-0.673659,-0.765528,0.111403,?
9.129587,1.795612,1.609185,-0.518443,-0.797808,-1.630156,2.562484,0.031477,-1.67643,-0.355632,-1.58953,-0.446822,0.11765,1.225473,-0.212544,1.434053,-0.025736,-1.384847,-0.436481,-0.3572,-0.054093,2.299136,-0.821269,1.770725,0.598218,2.540687,0.575863,1.362527,0.381628,-0.186625,0.004527,-0.861709,-1.00838,1.550333,-0.560028,-0.486715,-0.106195,1.209226,-0.344481,-0.574613,0.291955,-0.587809,-1.295161,-1.346994,-0.830739,0.00282,0.289326,-0.609524,?
4.153789,0.266551,0.109425,0.578078,0.613908,0.759211,-2.793506,-0.878874,-2.083101,0.175266,1.531799,-1.042718,0.117844,0.023508,-1.704103,0.958329,-0.003031,0.011174,-0.233686,-0.25529,0.360084,-0.126336,-0.572277,0.678197,0.447454,-0.343614,0.217992,0.038561,-0.950294,1.174897,-0.926047,-0.234135,0.419305,-0.371681,0.199322,0.307188,0.072432,-0.536399,0.421994,0.582257,-0.141004,0.154107,-0.315068,-0.121781,0.630826,-0.506723,-0.265236,-0.073998,?
2.498554,-3.267636,4.655873,1.155689,-5.417536,1.506548,-2.642761,3.048347,-4.001128,-0.008876,0.711721,0.463099,-0.297006,-1.811598,-0.831867,-0.997638,-0.555446,0.338847,-0.123274,0.32202,0.484104,0.458862,0.052113,0.276133,-0.520077,1.726593,0.952685,-0.462043,0.254571,-0.10999,0.998584,-1.746899,-0.882897,0.901277,0.143791,-0.403479,0.294315,-0.135092,-0.580044,0.221232,-0.803132,0.152922,0.32235,-0.502609,-0.76211,0.070637,0.499032,1.468624,?
-5.273733,-1.932162,3.782066,0.678464,-4.554563,-0.720959,3.001385,-3.32286,0.052831,-0.358122,0.551796,0.969828,0.196289,1.854641,-0.922987,-1.386525,-2.187284,-1.626532,-0.253326,1.932605,0.35103,-2.919698,-0.699587,-0.924101,0.866219,0.055022,-0.627551,-1.561077,-0.274784,0.275777,1.137943,1.620931,-0.00871,0.520965,0.124013,0.722062,-0.799229,0.158244,1.240422,0.403252,-0.192768,1.740421,-0.466375,-0.719686,0.755931,2.330591,-0.756144,-0.14359,?
-2.734178,3.348008,-3.172633,0.19509,-0.221094,-0.003955,-1.783448,1.724744,-0.242709,-0.407581,-0.422514,-0.535384,0.233991,0.100118,-0.584105,1.136697,-0.758248,-0.190504,0.114232,-1.487254,0.254557,0.284193,-0.358007,0.319988,-0.134956,-0.204825,0.438849,-0.217916,-0.402332,0.12001,-1.18331,0.507068,-0.004236,-0.206895,0.563391,-0.430188,-0.277451,-0.618729,0.140698,-0.463483,0.548294,0.336971,-0.2191,0.315647,0.117856,0.11869,-0.871049,0.632362,?
1.649968,-3.242353,2.095481,0.467299,-2.015114,1.622301,-3.559402,2.500195,-3.269421,0.350788,2.746312,-0.602983,-0.256774,-3.027187,0.975671,-0.720835,-0.847518,0.450926,-0.025669,0.134492,0.658876,-0.088159,0.30691,-0.285949,-0.503074,-0.482637,0.00741,-0.093103,-0.425291,-0.073405,-0.280385,-1.149924,0.564153,0.533358,0.566382,-0.746951,0.257674,-0.910825,0.764536,0.679027,0.548441,0.40872,0.142216,-0.183596,0.106408,-0.38155,0.153506,-0.094453,?
5.989252,-1.030828,0.833078,-2.110441,-1.53925,0.586955,-0.242607,0.013368,0.807407,-0.979881,1.124441,-0.864763,-0.124439,-1.124514,1.810583,0.596622,-0.49995,0.32159,-0.843913,-0.537976,0.227683,-0.97772,-0.18057,-1.036004,-0.633256,-0.616799,-0.415244,0.292254,-0.007435,0.072571,0.401528,-0.669237,0.499709,-0.318423,-0.255007,0.342481,0.192563,-0.35564,-0.634964,0.137605,-0.137598,-0.465222,-0.163196,0.049877,0.166659,-0.219079,-0.497477,-0.76405,?
3.220216,-2.914167,-0.816892,-2.888258,-0.079053,-0.489445,0.430254,1.53377,-1.000753,0.562297,1.43402,-0.354793,0.725913,-0.503635,1.542633,-0.61384,-0.004032,0.860075,1.1742,0.452407,0.647295,-0.215644,-0.499731,0.162223,0.486063,0.589977,0.842173,-1.034973,0.432719,-1.274569,-0.515351,-0.617164,-0.318514,0.787466,0.242158,-0.444728,0.244303,0.664016,0.854555,-0.60578,1.808819,-1.942202,1.835142,0.611157,0.359715,-0.248031,0.498507,-0.319505,?
5.130644,-3.571086,0.049982,-3.150096,0.229236,-0.154764,1.774563,1.16835,1.686963,-0.422128,-0.608339,1.191686,-1.28904,-1.116648,0.381741,-1.359873,0.070908,-0.293911,-0.367355,0.290849,0.318705,-1.706194,-0.03688,-0.925371,-0.198266,-0.946803,-0.062492,-0.928803,-0.511139,0.744536,0.397913,-0.286425,0.639413,-0.705802,0.450712,0.425263,-0.41917,-0.527489,-0.178522,0.456958,0.156548,0.19073,0.651657,1.141174,0.20888,0.201987,-0.648541,0.069876,?
5.051977,-3.466867,4.344767,-0.245746,-5.257888,0.995937,-1.44134,2.864409,-3.169231,-0.450974,0.314062,0.063767,0.33665,-1.91481,1.669238,-0.706763,-0.86515,0.518017,-0.292204,-0.292245,0.567512,0.152231,-0.41641,-0.978076,-0.933502,1.540982,0.373519,0.450846,-0.019265,0.362316,1.868859,1.278996,-0.711874,1.943049,-0.170541,-0.818976,1.157234,0.535641,0.739403,-0.875015,0.279666,-0.06132,0.199582,-0.836451,-1.021604,-0.795596,-0.094966,1.317591,?
-2.169875,2.293345,-3.399499,1.044473,1.975317,-0.12663,-2.616786,-0.111842,-1.218672,-0.009399,0.817656,-0.727094,-0.74084,-0.724536,-1.154855,0.482654,-1.594613,-0.645606,0.21667,0.863567,0.475539,0.803997,-0.526216,0.08174,0.393711,0.007972,-0.221121,-0.485364,-0.257133,-1.268534,-1.752934,0.413179,1.065891,0.207186,-0.205569,-0.302155,-0.674562,-0.499253,-0.810075,0.773403,0.758768,0.248229,-0.126833,0.330313,0.943114,-0.469098,-1.024774,0.162107,?
-5.136139,-4.663443,0.745938,-2.668879,-3.376061,-1.204537,3.228961,1.022284,-2.683421,0.563379,-0.778656,0.499994,-1.517974,1.565065,-2.64706,0.03047,-0.718974,1.504862,0.143803,0.639812,-0.137629,-1.180483,-0.157069,-2.310717,-0.536985,0.167036,-0.261564,-1.0621,0.196444,-0.406862,1.889085,1.899273,0.576232,-0.13256,-0.117887,0.383308,0.753414,-0.15011,1.896415,-0.328912,0.490253,-0.427944,-0.043038,-0.320659,1.840716,0.243371,-0.136739,0.660978,?
4.53902,4.438842,1.992358,2.519995,-2.906878,0.61401,-2.196494,0.264219,-2.107113,-0.369977,-0.317044,-1.314686,1.138748,-0.251389,-0.532945,0.934005,0.821022,0.176149,-0.681366,-1.717813,-0.407443,-0.245031,0.759753,2.195429,0.698308,-0.910898,0.855596,-0.271885,0.34005,0.188007,0.548545,0.2503,-0.438741,0.644139,0.102563,0.127001,0.059067,0.919745,0.29226,-0.194914,-0.154401,0.185144,0.113754,-0.51592,0.678182,-0.207564,-0.133394,-0.57942,?
9.337753,5.372545,0.777922,1.038811,-5.381774,-2.065946,3.169513,0.370422,-0.936646,3.810959,-3.532952,2.32481,1.419609,-0.604963,-1.629972,1.053441,0.650631,1.650796,-0.994209,0.689476,1.041413,2.615654,-3.226761,0.346951,-1.040805,0.701841,-0.606193,0.8908,1.936172,-0.21867,0.024457,0.646368,0.192489,1.158735,0.375651,0.822045,-1.629515,0.476243,0.040324,-0.529094,0.533469,-0.783365,0.773705,-0.250891,-1.278655,0.380135,0.399304,-1.226869,0.03
4.977871,-2.719354,-2.498911,-2.497247,3.783148,0.144183,-0.885853,-0.129697,1.554295,-0.79351,-1.612745,0.49798,0.190057,0.605844,1.001642,0.260664,-0.182305,1.440639,0.976069,-0.474998,0.73162,-0.57275,-0.949819,0.228841,0.272882,0.181014,1.274897,-0.764907,-0.006681,-0.064812,-0.135111,-0.276266,-0.135622,0.121301,0.716136,-0.051146,0.026451,-0.41414,1.572453,0.407768,0.607267,0.554064,1.659091,1.189353,0.542341,0.745924,-0.473111,-0.107698,?
1.030309,-0.716425,-1.813188,1.655967,2.375901,4.533985,-0.320774,-2.598958,1.691864,4.208363,-0.507615,1.388779,1.370055,0.421592,0.989514,-0.310389,-1.003085,0.011258,-2.279766,-0.566365,-1.318014,1.205143,-1.383378,-0.19872,1.861747,-1.036579,-0.852248,-0.336631,-0.295585,-0.094112,0.532393,0.486697,-0.72816,-0.976896,-0.787041,-0.000918,0.540562,-0.217008,0.150655,0.353796,-0.481109,-0.013328,0.510458,0.210639,-0.174111,-0.065624,-0.24024,0.162516,0.02
-7.598777,9.511367,-2.908922,1.160589,-4.349653,0.352608,-1.803774,-0.772778,0.353726,-0.446106,-0.498701,-1.131861,-1.116754,-1.086236,-1.297541,-0.419196,-1.610942,-1.540283,-0.642321,0.58819,-0.159302,-0.658409,-0.409682,-0.511692,0.635048,0.051059,-1.169611,-0.079051,-0.08852,-0.199348,-0.24718,1.162752,0.123345,-1.473714,-0.197272,-0.151596,-0.633026,-0.24234,1.396463,-0.386409,-0.432871,0.475992,-0.55175,0.947248,-0.590513,1.056444,0.699213,0.827413,?
3.273928,7.433888,-3.622002,-0.984033,0.476865,0.524926,-2.229347,-1.683868,0.848566,-0.614053,-0.521069,-2.04394,-1.118914,-0.824496,-0.250087,1.430473,-0.206186,0.287867,-0.601527,-0.333645,-0.059925,0.081542,-0.473173,0.190758,0.488935,0.139556,-0.252506,0.733708,0.157596,-0.291058,-0.487598,0.244325,-0.203791,-0.904834,-0.429238,-0.420041,-0.715435,0.278505,1.317497,0.97955,-0.006345,-0.259039,-0.200066,0.012411,-0.538762,0.022117,0.46064,0.411754,?
-3.142599,-2.741792,-1.219808,-1.926046,-1.642455,2.4447,0.516216,0.066051,0.820408,3.155878,0.599406,0.697193,-1.88005,1.146784,-1.198458,0.388419,0.459874,-0.567933,-0.755825,-0.652077,-0.997293,-1.348957,1.900901,-2.536174,0.843181,2.326681,0.562678,-0.467431,1.521361,0.109206,-1.410964,-0.60376,0.05,1.951036,-0.87782,0.38027,0.276465,-0.897211,0.263988,0.168857,0.942502,0.890695,-1.00277,0.675201,-0.837822,0.220796,0.186018,0.482692,0.02
-0.648979,-2.760934,1.605312,0.443176,-2.404184,2.147107,-3.706494,1.784617,-0.868964,-0.446578,1.192018,-0.519511,-0.428796,-2.741944,0.935963,-0.464223,-0.079972,0.26226,-0.533981,0.012715,0.389074,0.135015,0.218634,0.170146,-0.329671,0.16267,0.480435,-0.361164,0.199239,-0.182342,0.655547,-0.399693,0.032353,0.805756,0.179459,-0.509467,0.364471,-0.609268,0.446572,0.276088,0.081517,0.285006,0.26528,-0.154917,-0.689823,-0.627067,0.572998,0.161898,?
-4.870368,10.954315,-5.798492,-0.957896,-0.376319,5.391097,-0.440369,1.349149,-0.90694,-2.580915,1.152134,-1.006839,-3.576246,2.253976,2.394708,0.172304,-1.134226,-1.396451,3.429887,1.416465,-0.120126,2.110209,0.713847,-2.911462,2.863763,-2.86286,3.204812,0.705054,-0.531377,2.654006,2.1554,-1.197766,0.237035,0.411155,0.67917,-0.161055,0.37197,-0.016505,-2.277495,0.34656,0.640898,-0.536417,1.41735,-1.956141,0.181043,-0.338234,-1.099581,-0.94077,0.03
-4.501119,-5.697724,-0.411817,-1.648823,-1.205686,1.261936,-1.662861,-1.423229,2.04596,-1.917038,-0.212565,-1.274737,1.010983,1.043913,0.61353,1.413544,0.081482,1.713708,0.491493,0.132808,0.066693,0.812301,0.261335,-0.351584,-0.291979,0.711184,-0.132224,-0.330602,-0.099166,0.015684,-1.058766,-0.544724,-0.491626,-0.454896,-0.259717,-0.601889,0.122037,0.208029,0.709715,-0.537572,-1.23786,-0.457761,-0.351449,-0.452369,-0.780862,0.107701,0.113,0.012785,?
-1.077818,-1.371279,-1.936379,-0.741425,2.408749,0.07043,-1.631249,-0.346651,-2.208365,0.955728,0.017391,0.900954,0.435696,0.868857,-0.950135,-0.183318,-1.117249,-1.086838,0.400592,0.41237,0.581015,0.17187,-0.536246,-0.278438,0.225265,0.138492,-0.202371,0.316829,-0.005123,-0.499615,-0.551519,0.410317,-0.529048,0.420209,-0.578354,0.123247,-0.02366,-0.08025,-1.275995,-0.589324,-0.32863,0.154178,0.272774,0.070036,-0.602453,0.416817,-0.235463,-0.231517,?
2.334731,-3.054562,-0.059385,-0.177894,1.552001,1.08221,-1.740426,-0.947616,1.488256,-0.698399,1.255336,0.25425,-0.620442,-0.465754,-0.448453,0.050034,-0.463474,-0.362054,-0.494907,-0.198785,-0.061434,-0.984743,0.485348,-0.291323,-0.077602,-1.723273,-0.894113,0.369527,-0.363141,0.566982,-0.502378,-0.589206,0.402406,-0.212606,-0.208793,0.265883,-0.162689,0.512319,-0.063907,0.173606,-0.452671,-0.756925,0.331907,0.275126,0.232169,-0.129502,-0.099497,-0.167894,?
12.39968,3.005491,2.550192,-2.340073,-3.664229,-0.415551,1.183435,-0.844506,-1.741301,-1.413198,-2.122194,-1.234401,-0.851158,0.318602,0.356586,1.866034,-0.957733,1.232578,-0.686716,-0.93361,-0.898262,0.977752,2.467309,1.231986,-0.110304,-1.275267,0.151335,-0.813016,0.971267,-1.950588,-0.33907,-0.378447,-0.860742,1.076012,-0.63103,-0.913555,-0.051252,1.915126,0.771033,-0.45425,-0.190113,-0.073843,-0.058777,-0.35553,0.129974,-1.484233,-0.197484,0.434022,?
1.869732,5.729894,1.141801,8.49829,2.253525,-2.816367,2.816629,2.13681,-0.126444,-0.808242,2.93105,-1.201483,-1.28538,0.292023,-0.862047,2.210974,-1.640297,-0.230188,-0.444695,-1.223478,-0.30535,-0.46128,-0.133644,-0.118727,0.130675,0.090875,-0.498856,0.150053,-0.258798,0.052675,-0.191208,0.34254,-0.522327,-2.107191,-0.32135,-0.220563,-0.126668,-0.29483,1.514292,-0.483284,0.25833,0.267142,-0.509399,0.032809,-0.475028,-0.996703,0.056791,0.209266,?
4.844489,-1.857646,-0.679041,-1.78336,2.01739,-0.459971,0.329931,-0.555651,-0.495599,-0.079969,0.889814,-0.891418,1.839533,1.028641,1.88682,1.096197,0.160356,-1.59472,0.606376,-0.515512,0.580782,1.40369,-1.409164,0.480274,0.717084,0.982012,0.104653,1.42881,0.786506,-1.599922,0.345645,-1.455729,1.529451,-0.736775,0.209175,0.712043,0.491535,-0.353489,1.420665,-1.078568,0.80089,0.762348,0.544445,0.412644,0.429103,0.941604,-0.897765,-0.057181,?
-2.301603,-6.052608,-0.267722,-2.350041,-1.325962,-0.415449,1.484411,2.050735,-0.322643,-0.29235,-0.606095,0.347018,-0.866978,1.13596,-2.082215,0.163766,-0.049831,0.240745,0.77096,0.320991,-0.012297,0.414734,-0.870257,0.202441,0.782946,1.363473,0.321131,-0.30313,0.147043,-0.218831,1.573965,3.191113,0.736811,-0.669264,-1.278892,0.192528,0.323234,-0.101497,-0.608823,0.041283,-0.730839,0.894803,-0.145735,-0.243893,0.240686,0.048913,0.377388,-0.608113,?
6.576213,-2.333436,0.759693,-0.453308,1.522901,-0.227644,0.321733,0.14677,-0.115311,-0.40397,0.035898,1.42115,-0.927049,-0.007225,-0.726083,-1.041926,-1.342127,1.532831,0.220716,-0.107267,0.039645,-1.746845,0.447777,-2.435616,-1.180152,-1.808371,-1.68976,0.846445,-1.062065,0.732459,-0.790919,-0.623995,0.698185,0.128912,0.513493,-0.39156,0.425223,-0.059138,-0.663311,-0.881498,-0.736159,0.668902,0.35086,0.641369,1.022015,-0.520153,0.134589,0.741294,?
-6.374528,2.604455,-5.514941,-2.795841,1.402738,-0.890271,0.241435,2.431331,-1.423249,1.515372,-0.260651,1.904915,0.568403,0.674554,1.453514,-0.311199,-2.144261,-0.544383,-0.299753,-1.330658,-0.026362,-0.800771,0.937344,0.137647,-0.614299,0.144824,-0.268005,0.189394,-0.370813,0.788693,1.551972,-1.279154,0.329958,0.648899,1.009111,-0.830126,0.423354,0.474206,-0.615393,0.210268,-0.804414,-1.022783,-0.181895,-0.569669,-0.015343,-1.328121,-0.615638,0.196685,?
-8.354358,-4.342382,0.980489,0.026159,-3.2495,0.063929,0.462799,-3.322315,0.938183,-1.622731,-0.934461,-1.84251,0.974969,0.896742,0.441074,0.727423,0.21424,0.832082,-0.474877,1.178619,-0.266285,0.138321,0.351973,-0.216857,-0.01693,1.108649,-0.351897,-0.400436,0.309694,-0.240458,-0.136706,-0.511085,-1.992611,-0.003617,0.050171,-0.51596,-0.468698,-0.719063,-1.681454,-0.275517,0.234734,0.810117,-0.562033,0.254741,0.060096,0.062245,-0.751234,-0.380235,?
-1.926621,2.718367,-1.254924,6.552801,5.068643,-1.985757,0.330067,0.368601,-0.975484,0.371344,1.382284,-1.106718,0.803827,-0.202926,0.563146,0.820134,0.577835,0.285027,-0.710469,-0.330556,0.474328,-0.42007,-0.242336,-0.582202,-0.387299,0.010483,0.186626,0.184241,0.63359,-0.533759,1.144989,-0.053514,0.785357,0.552965,-0.176178,0.426058,-0.259701,-0.035848,-1.17393,-0.336483,-0.149083,0.398401,0.359452,-0.062561,-1.235005,0.336492,0.029122,-0.068281,?
-6.558352,-2.516604,0.595067,1.055508,-0.727966,-0.556869,0.922494,-3.333597,0.108326,-1.123142,-1.528328,-1.363605,0.930853,1.050652,0.433056,0.751656,0.149364,0.641608,-0.515743,0.635542,-0.261395,-0.003413,1.162008,0.062578,-0.054721,-0.106662,-0.476638,-0.841086,-0.339367,0.524784,-0.526667,0.239029,-1.341561,0.284662,0.77224,-1.249528,-0.442036,-0.430207,0.037827,-0.374663,1.213405,0.083967,0.598291,0.890418,0.224742,0.27915,-1.101273,0.432961,?
-6.862737,-3.451309,0.205854,-1.544866,-0.838042,0.16098,0.950005,-2.43971,-0.727395,0.530804,-0.039459,-0.313385,-1.09673,0.885389,-1.373516,0.575866,-0.029321,-1.249447,-0.985904,0.886541,-0.237414,-0.132222,0.027244,-0.303011,0.352358,0.338644,-0.303978,-0.145368,1.42656,-1.262959,1.966169,0.988957,-1.057443,0.29089,-0.95513,-0.07618,0.683318,-1.063648,0.978072,0.122109,-0.182669,-0.817239,-0.415365,-0.818977,0.521022,0.747103,-0.245052,0.940177,?
-5.84532,-0.804513,-6.167103,-5.403247,1.241202,-1.593591,1.254264,1.944923,-2.829405,2.074837,-0.474193,1.603794,2.547221,3.377,0.284187,0.01967,-1.52709,-1.288336,1.196709,-2.214714,0.164862,-0.830596,-0.234011,0.237855,0.397151,-0.394565,0.08197,0.94199,-0.080744,0.358884,1.614395,0.996834,-0.333405,0.520042,0.75236,0.303011,0.514477,-0.400103,0.169902,0.662782,1.451011,-0.676995,-0.699225,0.080316,0.152977,-0.924178,-1.739464,0.325241,?
2.046478,-3.699703,1.117911,-1.500545,-2.276429,0.455892,0.226009,1.531462,1.352255,-0.936907,1.342158,-0.245711,-0.846382,-1.412234,-0.243246,-0.366905,0.023286,-0.713267,-0.28376,-0.173032,-0.362404,1.669977,1.168705,0.691072,-0.026753,0.747695,-0.619106,0.706335,-0.737976,1.163928,0.024794,0.26524,0.141648,-0.045457,0.007817,-0.116606,-0.082491,-0.100356,0.074053,0.104712,0.030413,-0.411081,-0.268077,-0.030926,0.857989,0.036476,-0.793321,0.140215,?
-8.977195,5.132223,-7.79461,-3.296817,-1.914443,-2.302738,0.947405,4.614067,-2.814402,1.169846,-1.53727,-0.05392,-0.305882,-0.639134,-0.202253,-0.348742,-1.509521,-0.096106,-0.036643,-0.090636,0.079224,0.461842,-0.165075,-0.675072,-0.582404,0.709964,-0.228821,-0.471582,-0.64017,-0.776958,-0.983791,0.975468,1.964763,-0.525665,-0.161885,0.238114,0.514975,-0.383775,-1.626512,-0.815305,0.09959,-2.398757,0.189803,-0.170037,0.322608,-0.455455,0.240582,-0.397045,?
-2.790405,-4.656194,0.525241,0.640847,-1.066528,1.217113,-2.105098,-0.432333,2.285802,-2.335865,-1.772712,-0.29407,1.035921,0.475397,0.591673,0.837327,0.451429,1.174565,0.117009,-0.897668,-0.511202,1.519654,3.080498,2.111804,0.044782,-0.724079,1.280681,-2.738561,0.858351,-0.760123,0.583635,1.185367,-1.205955,0.388501,0.234914,-0.937778,-0.23915,-0.078687,-0.052832,-0.000277,0.116119,0.673341,-0.647251,-0.158471,-0.737759,-0.108217,-0.380709,-0.283573,?
2.41365,-3.83788,-0.985246,-3.280301,0.445821,0.535514,-0.172278,0.571287,0.959395,-0.203454,0.642206,0.487558,-1.382815,-0.343271,-0.729335,0.147989,-0.293588,0.057817,-0.370508,-0.338093,0.113426,-0.032407,0.145954,-0.784927,-0.516297,0.060731,0.268492,-0.284062,0.49817,-0.279777,1.12326,0.819423,0.287952,-0.005273,-0.151587,0.670114,0.239387,-1.358349,-0.253355,0.323112,0.784076,-0.106646,-0.553704,-0.425922,-0.420934,0.326449,0.376771,-0.117497,?
-8.68567,5.9081,-9.751189,-5.067433,0.611434,-2.596839,1.434646,3.335048,-2.059515,1.665261,-0.97925,1.371192,1.28394,1.614038,0.241595,-0.757055,-2.487688,-0.027705,0.691782,-0.88219,0.407713,-0.246537,0.663104,-1.074805,-0.859727,0.647671,-0.650201,-0.678897,-1.074091,0.797015,1.417694,0.052394,2.888413,-0.908468,1.430857,-1.207523,0.83038,-1.43412,-0.952475,1.168265,-0.698435,0.291488,-0.598386,0.381507,0.307519,-0.32749,0.384989,0.185084,?
-2.91412,-2.438263,-1.885537,1.091883,1.854718,0.644628,-2.219269,-0.360768,0.490492,-0.626499,-1.970727,-0.568044,0.181183,-1.261591,-0.095622,-0.407529,1.896969,0.440326,-1.003364,0.134511,-0.073919,-0.871434,-0.147964,-1.980743,-0.89171,-2.550643,-1.03576,0.859851,-0.182469,-0.252405,-0.909775,0.193337,0.387784,0.076451,-0.199465,0.813122,0.564686,-0.121453,-0.052145,-0.632311,-0.168443,-0.167068,-1.447575,-0.80085,0.122569,-2.633047,0.652938,-0.384657,?
-5.056981,-1.491915,-0.457747,0.721171,1.040109,-0.257188,0.328399,-3.299253,1.315013,-0.432592,1.084892,-1.080228,0.326874,0.231566,0.981522,0.17349,-0.242029,1.527402,-0.387374,0.996333,0.056515,-0.313901,0.972095,-1.314032,-0.756824,0.730015,-0.66794,-0.127809,0.163213,0.586097,0.818287,-1.472722,-1.354576,0.612056,0.766131,-0.473047,-0.467584,0.58699,0.541636,0.31291,0.153973,-0.055716,-0.242163,0.117433,-0.00661,0.298387,0.183616,-0.046969,?
-3.815439,-2.314754,6.393566,1.289206,-5.856453,-9.230651,-8.459303,-1.004669,0.447715,6.157225,0.161542,2.1001,-1.613974,-2.001385,2.096301,3.464755,-0.150244,0.059082,0.540828,-0.546677,-1.482998,0.959246,-0.618807,-1.75593,2.637853,-0.558303,-0.665414,-0.502225,-1.005956,0.601824,0.856015,-1.574194,-0.664197,0.43216,-0.299378,-0.233624,0.118786,-0.231886,-0.240937,-0.032729,-0.450795,0.129449,0.936268,-1.208805,-0.673411,0.822692,0.200354,0.372633,0.06
-1.518832,3.385667,0.483258,5.285981,1.582219,5.713614,-1.700691,-0.52618,2.037671,2.464377,-1.328882,1.247796,0.851575,1.44873,1.259207,-0.788045,-0.244634,-0.774377,0.878619,-1.643006,-0.333566,-1.101006,1.960627,-1.373214,0.598667,2.091948,0.658949,0.186742,1.03724,1.090455,-0.058137,-0.204228,-0.151901,-1.002284,-1.45246,0.021356,0.151897,0.423567,-0.590544,0.862027,-0.344825,0.26436,0.471798,-0.220537,-0.182095,-0.270856,-0.008142,-0.097536,0.04
-4.182494,2.58805,1.827734,7.834798,2.063586,-1.524058,4.134782,-0.455856,-1.695292,1.177829,1.065256,1.005845,-2.177238,-1.152756,0.84262,1.357426,0.157362,-0.413097,0.174856,-1.184715,0.146487,-0.452256,1.179686,-1.342856,0.165677,0.849775,-0.309818,-0.909574,2.953088,1.245179,-0.85688,0.304169,0.520671,-1.548682,0.377524,0.396578,1.694842,0.099118,0.345043,-0.463311,0.831778,0.027131,-0.070961,-0.233294,-0.764484,0.72411,-0.098853,0.144682,0.03
-4.815223,2.753663,1.412301,1.78723,-6.484352,0.550797,-2.053737,1.542221,-1.580297,-0.735159,0.487716,-1.254588,0.45049,-4.119351,3.122627,-2.315621,-1.671214,0.279395,-0.06473,1.589374,0.438296,0.274411,0.939638,-0.571784,-0.412832,1.138998,-0.505705,-1.029527,-0.468135,-0.313878,-0.5012,0.947161,-1.506149,-1.123265,0.27144,0.149588,0.169709,-1.298207,1.064262,-0.651443,-0.040579,0.738069,0.424525,0.092763,-0.004181,1.099569,0.905673,-0.137758,?
-5.687776,2.650481,-4.868532,-1.347195,0.49309,-0.497438,-1.169543,0.314824,-1.352254,0.259766,-1.13689,-1.236143,-0.348769,0.010547,-1.289207,1.07591,-0.034813,-0.388747,-0.597989,-0.246243,0.093133,0.004721,-0.550085,0.368543,0.293317,-0.266832,0.091268,-0.09785,-0.79198,0.65714,-1.720059,0.21156,0.422438,-0.402032,0.060111,0.181558,-0.329348,-0.057414,-0.736552,-0.629303,-0.184895,-0.356157,0.308595,0.25348,0.093345,0.121874,-0.825962,-0.543699,?
7.377253,-0.673765,-1.639375,-1.277222,4.543049,0.010972,-1.969967,-1.411781,-1.862051,0.99335,0.303521,0.831531,1.237785,0.976354,-0.057646,-0.526445,-0.482849,0.216704,0.953478,-0.170209,0.717374,0.082019,0.197415,-0.644841,-0.420239,-0.944734,-0.376797,0.570233,-0.482163,0.211373,-1.103411,-0.281495,-1.333341,-0.188771,0.359836,-0.374825,1.120238,-1.679681,1.494868,0.338898,0.689575,-0.041142,0.370603,-0.038101,0.908425,0.413369,0.673592,-0.694898,?
7.538152,0.844524,-1.648799,-0.176347,5.086219,0.09704,-2.624827,-1.895866,-2.09925,1.46446,0.374023,1.018059,1.003848,0.642487,-1.188085,-1.091222,0.170101,0.093262,0.786046,0.678341,0.780871,0.58375,0.330307,0.237729,0.092061,0.150627,0.234155,-0.247637,-0.601545,0.371402,-0.769639,-0.482401,-1.160727,-0.141222,0.415447,-0.683673,0.738805,-0.686524,0.77863,-0.204805,0.085171,0.481018,-0.211162,-0.205324,0.367152,0.450608,0.202058,-0.764122,?
-3.196009,1.130439,6.291284,5.425694,-1.626232,-11.09754,-10.047135,-1.628224,2.451912,4.815987,-0.008075,0.549328,-2.994037,3.678101,1.51903,-1.18977,1.41971,0.453864,-0.916699,-0.038312,0.697682,0.982743,-0.270128,-0.339725,-0.413517,-1.918439,3.313206,1.431808,-1.990541,-0.026332,1.220256,-1.147978,-0.28332,-1.488845,-0.663704,0.298004,-0.450163,0.498513,-0.878829,0.299686,0.294862,0.125023,-0.003255,-0.370358,-0.062173,-0.23075,-0.060346,0.223072,0.05
5.411891,-1.543068,1.037519,0.776331,1.462892,0.803182,-1.756082,-0.185508,0.136409,-0.538064,-0.559356,2.086494,-0.519185,0.398351,-1.614391,-0.58633,-0.995578,0.529891,0.258303,-0.022387,0.074419,0.425235,1.561971,-0.525463,-0.918652,-0.312844,-0.057861,-0.834563,-0.130385,-0.146507,0.077549,-0.597597,-0.834349,-0.330058,0.166264,-0.421075,-0.20636,0.091899,-0.211028,0.503383,-0.32782,-0.340372,-0.237857,-0.029312,0.67597,0.283092,-0.127114,0.515663,?
-4.665629,-4.012598,-1.617287,-1.310435,1.099967,0.138267,-0.911096,-1.792158,-0.276467,-0.96662,-1.153234,-0.911693,1.314267,1.222295,1.041543,1.244743,-0.235908,2.027102,0.529908,1.02276,0.668076,1.316046,-0.051618,-1.480763,-0.933449,1.430245,0.381431,-1.133303,0.048968,-0.925786,-0.356493,-1.398928,1.846106,-0.426523,0.949645,1.221148,-0.703805,1.063461,1.10319,-0.420555,-0.217176,0.542304,0.730045,-0.001577,-0.68993,-0.262106,0.583495,0.46293,?
0.942178,3.630282,2.306568,10.133089,2.897857,-3.508594,3.502013,2.505806,-0.378914,-0.546456,1.045232,0.099585,-0.554922,-0.48807,-0.205429,-0.07497,-0.44989,0.490472,-0.355205,-0.057432,0.019112,0.04384,0.663763,-0.409267,-0.564232,0.6967,0.035918,-0.467767,0.101828,0.095104,0.671218,-0.231583,-1.159698,0.044318,0.175401,0.059856,-0.196269,-0.123286,0.085153,-0.291336,0.031397,-0.254305,-0.202396,0.005814,0.427624,0.375643,0.30232,-0.194448,?
1.25627,-4.206121,-0.829887,-2.059602,1.084603,0.919921,-1.216459,0.058294,1.196265,-0.387913,1.171221,0.56007,-1.169751,0.278742,-1.43145,0.549107,-0.678453,0.197757,0.24085,-0.306877,-0.023692,0.273716,0.307992,-0.10202,-0.220007,-0.072426,0.138378,-0.193791,0.178973,-0.201465,-0.721455,-0.499961,-1.103886,-0.178888,-0.068428,0.123636,-0.026548,0.189387,0.607262,-0.50665,0.131638,-0.399537,0.273501,-0.102874,0.077593,0.021579,0.186178,-0.435876,?
-3.492925,-2.942766,0.507624,7.131425,2.494493,-3.120222,3.258987,4.219006,0.246257,-1.20367,0.624421,-1.340497,-0.313541,-1.304493,0.920521,0.481647,0.890297,0.611769,-0.311193,-0.193539,0.276837,0.223274,-0.304647,-0.12712,-0.356697,0.24251,0.590967,-0.236739,0.08257,0.089269,-0.017159,-0.746056,0.349122,0.45027,0.074179,0.623989,-0.200328,-0.887866,-0.66837,0.849742,0.763869,-0.794684,-0.125253,0.210391,-0.486401,-0.367316,0.174487,0.702617,?
-0.689858,-4.718822,1.432087,-1.479984,-4.271272,0.696652,-1.244061,4.100631,-3.856763,-0.106797,1.039424,-1.329348,-1.301901,-2.063142,-1.046777,0.662544,-0.417478,-0.382873,0.00345,-0.726601,0.072514,0.103147,-0.448016,0.453481,0.488228,-0.891084,0.192734,0.144036,-0.430693,0.155424,-1.097457,0.462901,0.296241,0.371995,0.020284,-1.105717,-0.759543,0.714638,-0.247912,-0.707946,0.992559,1.158852,-0.665866,0.653186,0.089172,-0.160188,-1.133288,-0.114923,?
2.41527,-2.377446,-0.970078,-0.012715,2.684037,1.258064,-2.902314,-2.504328,2.700608,-1.002048,0.020304,1.123545,0.828573,0.340931,-0.062016,-0.736636,0.110979,0.887683,0.24215,0.5995,-0.115035,1.209954,3.422268,1.446435,-0.109754,-0.416807,0.791928,-3.377812,0.345891,-0.696901,0.725661,-0.206057,0.086477,-0.485894,0.746953,0.193803,0.082525,0.764943,0.38229,-0.236723,-0.270345,-0.41087,0.736918,0.577863,-0.651246,-1.419625,0.41009,0.779717,?
8.356764,3.630206,1.187669,1.123775,0.459393,0.559486,-1.882574,-2.415355,-0.868444,-0.399893,0.698008,-1.28083,0.374828,0.753446,-1.257405,1.613448,0.239135,0.802198,-0.670879,-0.783279,-0.016733,-0.234887,-0.042969,0.197303,0.03058,-0.511218,-0.064228,0.30478,-0.192241,0.293943,-0.131867,0.014737,0.1596,0.201169,-0.189721,0.212318,0.307704,0.126567,0.387184,0.057945,-0.483239,0.069607,0.038562,-0.199916,0.035228,-0.833166,-0.5769,-0.128018,?
-5.319426,-4.300577,0.497729,-0.287559,-1.052216,0.118645,0.077971,0.46389,-1.971848,0.115764,-1.349241,-0.333658,0.500344,0.207668,-0.189055,-0.184417,0.509281,-0.59792,0.171539,0.325436,0.074653,-0.171568,-0.274669,0.305068,0.548544,-0.026024,-0.206038,0.379224,0.209579,-0.074307,0.147861,-0.192246,-0.818673,-0.491089,-0.098676,-0.672865,-0.586982,0.061962,-0.382685,-0.167533,-0.132343,0.930721,0.180499,0.357059,-0.307264,0.377052,0.33771,0.099876,?
-1.700561,-3.524326,0.553672,1.857679,0.121999,1.4188,-2.473572,0.550833,1.457634,-1.031154,-0.037613,0.228581,-0.662052,-1.230191,-0.566553,-0.169525,0.482079,-0.725956,-0.887063,-0.12999,0.125402,-0.355353,-0.612258,0.26425,-0.011254,-0.058995,0.369204,0.155872,0.263951,-0.028173,0.181755,-0.893805,0.048812,0.589584,0.174375,-0.000475,0.253487,-0.622411,-0.201343,0.020696,0.868852,-0.255936,-0.479018,-0.576921,-1.004367,-0.402287,0.495721,-0.103923,?
0.564068,4.818522,-0.833,-0.562401,-2.205216,0.374277,-0.566406,0.395514,0.643384,-0.477405,0.032244,-0.5646,-0.748189,-0.150436,-0.670459,1.213623,-0.579119,-0.057971,-1.129587,-1.377946,-0.385946,-0.638702,-0.017232,0.578221,-0.046942,0.080722,0.249296,0.325034,0.232146,0.131699,0.585387,-0.222886,0.022638,0.616564,-0.064194,-0.011579,0.020939,-0.123332,-0.349225,-0.069683,-0.287529,0.459418,0.31833,-0.326733,0.289559,0.033096,-0.358862,-0.761728,?
1.008887,9.391642,-4.437896,-0.567448,-0.832674,3.997793,1.048214,-1.756389,-0.68879,-1.792786,0.75835,0.023855,-4.017799,-0.056739,1.081987,0.159494,0.759592,0.366514,1.058568,-0.044429,2.84212,0.40517,-1.269959,3.678459,-3.897504,-1.546253,-1.627251,0.189472,-0.914348,-0.781739,0.363728,0.374179,-0.458342,-1.677664,-3.375564,0.301479,0.464825,1.288579,-0.394675,0.697886,1.358181,0.703804,0.684622,-0.213832,-0.678596,0.025485,-0.033806,1.271332,0.03
4.175147,-4.303695,2.099808,-2.135122,-2.351067,-0.175038,2.158184,2.103849,0.814426,-0.6564,0.472469,1.288252,-1.848858,-0.949121,-0.366654,-1.184055,-1.362237,-0.756831,-0.182595,0.582008,0.438237,-2.282632,-0.796407,-0.056533,0.330461,-0.228207,0.242822,-1.424862,-1.086846,1.24414,-0.695709,-0.871903,0.465365,-0.14592,0.437591,0.017094,-0.748672,-0.739882,0.130416,0.541967,-0.012709,-0.268944,2.172378,1.46689,-0.539363,0.648113,-0.291549,0.424487,?
7.533351,-2.181197,0.378852,-2.843024,0.133597,-0.46254,1.161116,1.266308,-0.481571,-0.435153,-0.128631,0.963543,-1.82259,-0.748526,0.301282,-0.074424,-1.705234,0.671425,-0.521048,0.262431,0.538944,0.32602,0.218961,-2.306801,-1.631975,0.625185,-0.328871,-0.165248,-0.683973,0.670463,0.798007,1.272505,0.645663,0.509294,-0.061891,-0.017283,0.270312,-0.921165,-0.146908,0.268587,0.072582,0.625349,-1.002192,-0.534836,-0.581418,-0.106693,-0.02871,0.041331,?
2.8977,1.153602,0.878109,0.888954,0.159373,1.148504,-2.625711,-1.021562,-1.892289,-0.001096,0.414336,-0.812158,-0.188562,-0.317896,-1.296062,0.871956,0.056546,0.129794,-0.794941,-0.180576,0.228558,-0.4078,-0.214068,0.172869,0.111876,-0.81302,-0.259449,-0.048968,-0.633403,0.917976,0.307251,-0.54219,1.808392,-0.970671,0.19829,-0.080442,0.349618,-2.119399,-0.063649,1.259582,-0.600527,0.237535,-0.522942,0.33405,0.839134,0.012247,-0.253646,-0.290066,?
5.958676,6.31798,2.581599,6.304228,-6.354545,-1.571404,3.958968,1.051896,2.839781,3.343772,-1.114687,1.652415,2.141791,0.089649,0.315547,-0.231013,-2.1595,-0.877038,-0.860536,-0.565511,-0.777159,3.437759,-1.714893,-0.399269,0.817521,1.336422,-1.358287,0.224758,-0.006334,-0.903373,-1.469695,-0.140765,0.453302,-0.01098,0.469289,-0.194046,-0.826758,-0.429861,-0.645807,-0.402051,-0.383244,1.139534,-0.281171,-0.191147,0.027239,-0.546356,0.619167,-0.150563,0.01
6.085209,0.017549,-0.267125,-0.29987,1.508079,0.035037,-0.460489,-0.73052,0.859976,-0.618698,-0.824672,0.441578,-0.679691,0.141939,-0.571063,-0.159053,0.143783,1.032013,0.055687,-0.170595,-0.27374,-0.547904,1.931,2.206301,0.894058,-1.028158,1.182018,-2.779659,0.058715,0.08573,-0.288119,-0.408265,-0.538931,-0.380627,0.742049,-0.910798,0.040664,0.369528,0.467238,-0.617517,-0.636884,0.412732,-0.368923,-0.255828,0.00197,0.150731,-0.101254,0.715855,?
5.154819,-0.068715,-1.674474,0.535551,3.74525,-0.449055,-0.919437,-0.17215,-0.677422,0.402373,-1.217853,-0.435139,-1.015352,-2.138888,-0.297489,-1.086552,1.805559,-0.626691,-1.102487,1.188905,0.521691,-0.151263,-0.825388,0.488807,0.377653,-0.039111,0.531322,0.16547,-0.512092,0.82374,-0.457817,-1.611501,0.651186,0.042309,0.391866,0.853659,0.386243,-0.090083,0.659292,-0.14306,0.292944,0.079748,0.386797,0.181884,-0.718555,-0.157651,-0.264579,-0.139967,?
-1.391593,-1.454096,-0.932448,7.465367,5.543815,-3.330891,2.819047,3.739343,1.38761,-0.988448,1.379036,-0.654233,0.826987,-0.185568,1.236895,0.876054,0.64875,-0.586155,0.351722,-1.370416,0.316243,1.966776,0.687351,-0.321432,-0.920656,0.102065,0.160103,1.038628,0.478478,-0.133799,0.196647,0.24159,-1.152952,0.615487,-0.088761,-0.015753,0.064109,-0.805653,0.948038,0.755678,0.697352,0.142287,-0.091925,-0.21406,0.095714,0.577755,0.202813,-0.412063,?
-1.679622,-2.476445,-0.796821,3.941418,3.658052,-1.694302,1.06863,1.299312,0.120472,-0.753519,1.866382,-1.632029,-0.019523,-0.19116,0.699905,1.678811,0.065538,1.015259,-0.15307,-0.515925,0.23778,0.276166,0.447466,-0.525561,-0.542816,-0.671932,0.136106,-0.549722,-0.028548,0.201081,-0.682782,0.282081,-0.094862,-0.529071,-0.302757,1.090597,-0.356184,-0.406573,-0.395325,-0.113825,-0.684975,-0.272654,-1.086193,-0.533187,-1.134942,-0.546047,-0.103896,0.575142,?
5.496013,0.482423,1.275148,3.834944,3.054746,0.669001,-3.323656,-1.521353,-1.146477,-0.170027,-1.293242,2.168401,1.017465,1.064977,-2.19249,-0.669316,-0.134669,1.231293,0.250445,0.219418,0.603986,0.477866,0.748225,-2.537924,-2.089046,-0.505986,0.035721,-0.798431,-0.473644,-0.76961,-1.121672,-0.501622,-0.592661,0.428145,0.87719,0.786997,0.054131,0.393872,-0.085531,-1.519353,0.18288,0.572609,-0.630809,-0.747857,1.017591,-1.046387,-0.632,0.762081,?
-0.859603,0.71807,-2.70054,5.4944,6.784716,-2.084981,-0.420515,0.307601,0.278221,1.210278,4.968602,-0.006519,-0.325752,0.175345,-3.368872,-0.726412,-0.146619,1.652473,1.492305,1.219098,0.594332,0.766837,0.654945,-1.34902,-0.432124,1.123125,0.287608,-1.047569,0.90415,-1.243341,0.160288,-0.290635,-0.791945,1.148889,-0.256649,1.185959,-1.32813,0.405843,-2.031029,1.494131,-0.047941,-0.776623,-0.407892,0.618426,-0.455091,-0.050951,-1.297621,0.96034,?
-0.980628,-2.007571,1.01634,-0.83956,-2.343694,0.537751,-0.186312,-0.084431,0.004242,-0.073636,1.741707,-0.895415,0.668833,0.736232,-0.58207,0.972599,0.488214,0.274853,-0.17306,-0.526528,0.18708,-0.543962,-0.622669,-0.018521,0.085596,0.450944,0.559512,-0.695316,0.322167,-0.193677,0.691699,0.331556,0.096839,0.206553,0.162036,0.108053,-0.10238,0.146698,-0.724131,-0.31967,0.684462,0.354139,-0.231819,-0.527259,0.801114,-0.819862,0.754311,-1.012843,?
-3.962903,-4.302506,-0.991273,-0.00902,0.157898,-0.04463,-0.943169,0.7089,-0.655209,-0.719752,-1.860734,-0.331386,2.838341,0.644438,2.39201,-0.305232,0.308571,0.038395,1.051083,-0.454972,0.59752,0.377697,0.090237,0.381069,0.261764,-0.4244,0.141777,0.188749,-0.245208,0.637556,0.894828,1.645317,-0.069258,0.408665,0.097215,0.055467,-0.31121,0.504327,1.230117,1.750619,0.314015,0.502286,-0.570572,-0.255409,0.164764,0.054684,0.757398,0.164876,?
-4.85341,-3.271964,1.361422,0.921413,-1.90743,1.013537,-0.754247,-0.552177,1.318203,-0.364005,-0.652211,0.588333,0.159435,0.697792,-2.137827,-0.369697,1.042896,-0.940032,-0.394763,-0.269259,-0.511574,-0.563763,0.015597,1.078542,0.677738,-0.170879,0.47377,-0.305318,0.692739,-0.68817,0.522617,-0.572673,-0.912945,0.554618,0.384236,0.722253,-0.190824,-0.327004,-0.357512,-0.284237,1.100402,-0.162263,-0.623123,-0.378943,-0.015673,-1.370038,-0.780818,0.281365,?
3.432322,-3.998393,-0.252078,-2.435693,0.827259,0.506423,-0.269056,0.795394,0.897266,-0.6105,-0.302408,0.804762,-0.693524,0.030358,0.313698,0.078297,-0.700141,1.241849,0.722461,-0.467829,0.058034,0.522249,0.620691,0.213965,-0.106579,0.588456,0.436595,-0.349906,0.031365,0.231996,0.171413,0.70221,-1.279103,0.03765,0.102717,-0.615372,-0.254236,0.256401,0.270143,-0.056383,0.113872,-0.076061,-0.661336,-0.348188,0.785061,0.788291,-0.029352,-0.442073,?
3.351184,-3.334231,2.011698,-3.822708,-2.463237,-16.65146,-8.082198,-1.488482,3.136734,4.121751,1.777056,9.348218,-3.722937,-3.448221,1.625667,7.455741,2.364079,1.665465,1.387174,0.242744,1.204026,0.788611,-1.173358,-1.02999,0.766819,-1.621155,0.480146,2.17341,0.160913,1.553251,-0.036359,2.301033,0.93791,-1.266392,0.618616,-0.065797,0.112418,0.567421,-0.318916,-0.756365,0.280508,0.288151,-0.470978,-0.444572,-0.848732,-0.097265,0.27427,0.330861,0.03
1.140503,-2.244948,0.837732,1.751271,1.185483,-1.514369,2.014282,1.302451,-1.109003,0.172502,1.813297,-0.2418,0.000019,1.139397,-1.03285,0.418949,-0.383709,0.658854,0.855601,-0.331036,0.195092,-1.007679,-0.384497,-0.335887,0.412792,-0.320397,-0.039868,-0.083233,0.505868,-0.466099,-0.306923,-0.720176,-0.607625,-0.516874,-0.509719,0.606684,-0.421992,0.427152,-1.074459,-1.111605,-1.125928,0.114915,0.014535,0.151842,-0.064955,1.565555,-0.111456,0.464658,?
2.906155,-0.111059,1.048934,3.213404,1.241483,-1.954687,1.643609,0.552905,-1.940162,0.460517,1.006392,-1.463274,2.619585,0.284232,1.057449,-0.506541,1.938659,0.301704,0.518872,-0.125437,0.445402,-0.647297,-0.337316,-0.411258,0.344778,-0.221071,-0.176562,0.690528,1.095974,-0.897142,2.235313,1.000142,-0.44041,-0.391389,-1.044857,0.579145,0.783873,-0.16687,-0.422538,0.407282,-1.380275,0.255167,2.368331,1.028073,1.05933,0.427006,-0.29419,-0.402737,?
8.421147,5.119818,0.274746,0.1392,0.245026,0.166002,-1.28119,-1.312255,-1.635912,0.257211,0.079864,-1.565212,-0.022746,-0.46863,-0.744718,0.749682,0.97294,0.688707,-0.638271,-0.232435,0.026673,-0.131046,-0.119633,0.395636,0.298054,-0.21248,-0.014159,0.38207,-0.18119,0.069786,-0.100394,-0.178361,0.190852,-0.310407,-0.322416,-0.31471,0.598421,0.048976,1.108605,-0.276675,-0.429178,0.404494,0.348904,-0.187544,0.050714,-0.373823,-0.145061,-0.288256,?
3.994802,0.421924,-0.160611,1.147294,2.016847,0.73208,-3.150848,-1.755919,-0.279364,0.532346,2.324161,-0.134926,3.780376,1.15495,-0.330004,-0.708709,1.561314,0.277841,1.15723,-0.137024,0.945493,1.360612,0.668269,-0.552569,-0.569445,0.714681,-0.123977,-0.27945,-0.087291,-0.660255,0.49323,-0.855666,1.725195,0.268159,1.222137,-1.663319,0.655958,-0.835069,0.082114,-0.085042,0.621995,1.131404,-0.42842,-0.126134,-0.284841,-0.120189,-0.165101,1.263059,?
-1.502316,8.548444,-1.159946,0.944537,-2.255421,4.953048,-0.82301,0.672148,-0.757096,-4.057614,0.568089,-0.46338,-5.13654,2.4303,1.534194,1.759017,3.428965,-1.339585,4.131467,2.92191,2.203084,-1.129067,0.624181,1.078336,-1.705924,-0.999364,-1.666436,1.056966,-0.462182,-0.12579,1.19876,0.362713,-0.853141,-1.212915,1.264574,0.607306,0.430484,1.018887,-1.057906,1.259087,1.812289,0.478733,0.615085,-1.034097,-1.038502,0.757175,-0.700229,-0.214379,0.05
3.613504,5.107498,2.125015,4.244521,-3.221895,-1.258984,1.637672,0.957904,2.466109,-1.579203,-1.103177,1.186723,2.011841,-0.579254,1.621721,-2.265762,-0.521892,-1.916534,0.153235,-0.053002,-0.336533,0.362277,1.963633,0.987727,0.251695,-0.422595,-0.838552,-1.266407,-0.039937,-1.549403,-0.327643,0.850294,0.389944,-0.882698,0.436367,-0.750379,0.155391,-0.100306,-0.763098,-1.714878,0.719706,0.480233,-0.12935,-0.073067,1.085879,-0.355502,0.528635,-0.033344,?
3.077882,-3.160862,-1.021937,-0.201102,3.134638,-0.797739,0.990574,0.419917,2.206942,-0.494106,1.875343,0.599655,-0.27652,0.35747,0.302931,0.597954,-0.449006,-0.035578,-0.194917,-0.573973,0.260948,1.51574,1.253588,-0.915401,-1.102213,1.050816,-0.0043,-0.291194,-0.44519,1.651859,1.775691,2.761923,-0.810515,0.775734,-0.202557,0.123178,0.083641,0.991916,0.33456,-0.015459,-0.226852,-0.633418,-0.313455,-0.083475,0.009601,-0.827709,-0.13013,0.442569,?
-6.927229,2.111958,12.025829,-4.09435,5.189156,2.204374,-0.451734,-1.386973,-0.14774,3.700941,-0.835023,0.350255,-0.46204,0.145347,1.956086,0.029889,0.180437,0.062971,-0.486412,-2.395752,1.270377,-1.073363,0.530143,0.330863,-1.549515,1.744787,-0.61756,0.306905,4.036537,0.667397,-0.695895,0.446285,1.039558,-0.647513,0.6911,-0.813807,-3.321834,-0.192308,-0.140419,-0.601775,0.200398,-0.377088,0.251849,-1.484208,0.245559,1.495995,0.449714,0.144065,0.34
12.090716,4.416629,-1.40656,-4.277007,1.172048,-2.456818,3.374905,-1.807073,-2.91698,1.281191,-0.625179,-0.812691,-0.162034,1.739964,-1.563741,0.48084,0.127512,0.307854,0.40911,0.747174,0.29121,1.16101,-1.056115,-0.497295,0.332867,2.522095,-0.198163,1.072217,0.191349,-0.485323,0.628987,-1.003875,-0.528581,-0.434494,0.094434,0.196677,-0.033081,-1.209275,0.156393,0.912663,0.516506,-0.319066,1.249289,1.909201,-0.830644,-1.045168,-0.653553,0.397984,?
1.603332,-2.398008,-2.465199,-1.222978,3.715324,0.58043,-1.87602,-1.329329,1.464283,-0.212265,0.967379,0.048503,-0.404081,-0.140548,0.518263,0.581587,-0.550009,-0.283696,-0.479891,0.221126,0.70523,0.15242,-0.829901,-0.265083,-0.225493,0.935847,0.490389,-0.066104,-0.444503,1.064403,0.417031,0.532638,0.170187,0.746198,0.417824,1.098928,-0.077563,0.865621,0.94299,-0.465845,0.402936,-0.193835,1.528958,0.318499,-1.228075,-0.682091,0.585011,0.126158,?
4.693877,-3.075679,1.252682,-0.69564,-0.3699,0.897873,-0.987771,0.10598,0.918213,-1.186691,-0.284524,0.513049,0.15408,-0.446551,-0.034787,0.017946,0.091745,0.112257,-0.589759,-0.87265,0.049984,0.130924,0.783679,-2.714042,-1.838131,-1.106997,-1.66675,1.617866,-0.696433,1.108148,0.206665,0.366809,0.100778,-0.079582,-0.193143,-0.662384,0.096372,0.70086,0.117325,-0.666493,-0.523544,-0.399058,0.096544,0.384823,0.298804,0.176016,-0.841697,0.078862,?
1.843284,2.614094,1.679925,-0.892141,-4.696618,-0.831039,2.192589,0.133603,0.761316,0.651785,1.418127,0.440109,2.201623,0.998445,-1.185479,-2.337485,0.539772,-1.643423,0.862707,-0.143469,0.030073,-1.324459,-0.505562,0.790418,1.15539,0.682503,-0.223238,0.633207,-0.429967,0.639679,0.242185,1.080724,-1.00499,0.741058,0.097115,1.011217,-0.216363,-0.006298,0.203812,-0.313178,-0.140919,1.381079,0.421077,-0.219489,-0.924858,-0.160369,0.110624,-0.356361,?
-1.619544,3.203221,-3.175361,6.394023,5.62726,-2.514475,1.484034,3.323682,1.997141,-0.403704,-1.308131,0.994105,-1.078531,-1.530289,0.173236,-1.0545,0.420491,-0.669317,-0.069391,-0.340134,0.26092,0.137767,-0.121108,-0.408156,-0.415241,-0.122105,0.182785,0.264843,0.326803,-0.568433,0.082149,0.576868,-0.758703,1.37049,0.521312,-1.10348,-0.462319,0.431175,-0.063106,0.38073,0.665707,1.078779,0.382952,-0.395304,1.807592,-0.472962,1.895911,0.711344,?
6.019308,-0.697281,0.17003,0.657999,2.320665,0.563466,-2.64988,-1.34996,-1.058224,-0.352003,-0.255342,0.626815,1.777858,1.044009,0.056564,-0.04639,-0.550661,-0.883198,0.710522,0.142275,0.840643,0.744589,-0.075497,0.314266,0.199157,-0.522361,0.154033,-0.905063,-0.767609,-0.583517,-1.987769,0.77738,0.538407,-0.229356,0.223613,-0.494237,0.550569,-1.273405,-0.189635,-1.51198,0.86508,0.9516,-0.212647,-0.127958,-0.151289,0.17807,-0.088452,0.09736,?
7.154051,0.305228,1.41463,0.357046,-3.847504,1.135465,1.972852,2.497278,-0.206545,1.292431,-0.839698,-0.919488,-3.540848,2.547371,2.919715,1.462804,0.61269,-0.345853,0.06055,3.24518,3.3168,-3.942311,1.623079,2.508812,-3.831518,1.159508,1.008391,0.914905,-0.765722,-1.525454,-1.509667,0.910243,0.337356,0.133344,1.664931,0.360697,1.430033,1.006641,-0.985835,0.224279,-0.025657,-0.828545,-0.949104,0.969573,-0.025642,0.207667,-0.290227,0.014359,0.03
-10.005653,-0.984671,-0.56835,4.538353,1.677035,-4.0225,4.679842,-2.731269,-2.955676,-0.334818,1.789253,-3.971505,-0.389363,-0.223093,2.882482,2.02719,-1.439714,0.152663,-1.552436,2.537264,0.048725,-0.01196,0.070833,-0.491103,0.371616,0.965101,-1.11504,-0.557148,0.326926,-0.706121,0.60308,-0.54566,0.734001,-0.372261,-0.310592,0.024638,0.463935,-1.236642,-0.539907,0.187234,-0.372191,-0.225705,-0.262891,-0.4608,0.33783,0.048113,-0.103097,0.788127,?
-0.944354,-2.09261,-0.61311,1.043103,2.750229,0.021646,-0.279294,0.611699,0.053486,0.137758,-0.219262,1.056209,-0.911991,-0.356149,-0.057596,-0.119528,-0.436335,-1.55563,-0.608974,0.1442,0.328568,-0.30291,-0.717034,-0.201128,0.118594,-0.309077,0.061493,0.139184,0.353324,-0.746723,0.266835,-0.090304,0.762044,0.355471,0.03942,0.909639,0.11065,-0.377526,-0.220583,-0.67613,-0.382803,0.697092,0.150055,-0.79052,0.15113,-0.421511,0.838814,0.350717,?
3.697835,-0.225823,3.362717,3.535046,-1.183155,7.015093,-0.847591,1.557969,-3.33315,4.95755,-0.668062,-0.312395,-0.240596,1.405576,1.193637,0.677595,0.655161,0.584736,-0.725912,0.821928,1.141603,-0.923076,1.470021,-0.253258,-1.283858,2.167955,0.370341,0.532364,2.137253,0.247651,-1.231554,0.506058,1.354022,-0.554217,1.225566,0.576047,0.161059,-0.312934,-1.056794,0.194338,-0.588305,-0.279906,0.549802,-1.317552,0.225008,1.114618,0.756661,0.353695,0.04
-2.017116,-3.804172,3.680677,1.003948,-5.687179,1.285831,-2.444842,2.396781,-3.840773,-0.329426,1.310641,-0.731567,-0.440164,-2.729515,0.907702,-0.733345,-1.28698,0.145777,-0.43075,0.559947,0.23324,-0.047149,0.402749,-0.143583,-0.303192,0.397002,0.148471,-0.061136,0.364312,-0.205202,0.989361,-1.08651,-0.910473,0.717731,-0.140219,-0.236832,0.36323,0.132498,0.365389,-0.09238,-0.688999,0.753231,-0.543505,-0.701797,-0.216817,0.481597,-0.215241,-0.314304,?
11.02966,2.534897,2.321739,-0.002637,-0.946209,-0.78109,0.472845,-0.919903,-2.601435,0.120938,-0.926399,-0.017208,1.438134,1.206771,-1.545876,0.100065,0.807706,0.201235,-0.02368,-0.441683,-0.085103,2.055781,1.198971,0.275477,-0.553515,1.163954,-0.224673,0.708835,-0.608387,0.864936,0.253206,-1.280703,-0.180128,0.452441,0.675467,-0.395437,0.154602,0.762386,0.518098,-0.657523,0.293255,-0.369226,0.993349,1.117621,-0.485027,-0.377037,-0.738385,-0.334034,?
2.190356,-2.449696,-0.901682,-2.727767,-0.1828,0.05872,0.389852,-0.804984,1.241818,-0.394589,2.022276,-1.168478,0.157296,0.364701,-0.022428,0.960227,0.221687,0.637864,-0.225613,-0.833246,0.039944,-1.050738,0.127628,-1.805294,-0.820697,-1.836299,-1.16288,0.702621,0.131461,-0.290539,-0.966362,-0.112265,0.253231,0.29857,-0.238052,-0.359996,0.262699,-0.062878,-0.739488,-0.463385,-0.539556,-0.168559,-0.737107,-0.933964,1.292501,0.01458,-0.019537,0.065112,?
3.627972,0.495666,-0.527593,0.651236,-5.170943,0.142247,2.442738,1.00024,3.822188,3.600503,0.403804,0.297693,1.372744,-0.089469,0.21652,-1.535029,0.290786,-0.769167,-1.553548,-0.197846,-0.777987,1.996396,-0.110187,-0.558238,0.167993,-0.639355,-1.027028,0.690074,-0.718019,-0.189001,-0.042205,0.662671,0.080973,0.446668,0.868028,0.181393,-1.547499,-0.197193,0.01466,0.227878,-0.126795,0.947882,-0.42936,0.562933,0.30329,-0.542357,0.093303,0.152284,0.01
-5.099678,-3.821784,-2.813572,-2.173503,0.134198,-0.666643,0.128986,1.7628,-1.356702,0.191718,-0.717057,0.481371,2.008494,1.650762,1.119587,0.089199,-1.006167,-0.452446,1.039212,-1.115568,0.283266,-0.069916,0.006485,0.147558,0.089904,-0.136374,-0.000053,0.525166,-0.205829,0.525037,0.345312,0.749011,-1.268205,-0.02827,0.112286,-0.26966,0.265561,-0.436763,0.444559,0.371295,0.140532,0.417791,-0.339803,-0.210867,-0.600053,-0.146723,-0.129538,-0.265122,?
-2.554343,-4.962931,-0.216836,1.084311,0.319181,0.425605,-0.723319,1.499768,2.283344,-1.963456,-0.466763,-0.501029,0.123775,0.41039,-0.057054,1.414091,0.339889,0.475422,0.155408,-0.99969,0.272189,0.404882,-0.561441,-0.197259,-0.431931,0.210628,0.655819,0.083809,0.527344,-0.643836,-0.072349,-0.468689,0.612662,0.437242,-0.095998,-0.406291,-0.066055,0.091681,0.698247,0.048312,0.020453,0.751522,0.661157,-0.127323,-1.078734,0.210468,0.840065,0.460756,?
2.90379,7.161847,2.594864,3.214143,-4.826073,0.296184,-0.657971,0.939182,-0.034616,-1.386511,-1.296521,-0.738629,0.450715,-0.374451,0.212052,0.748181,-0.711182,-0.769388,-0.469365,-0.913656,-0.220875,-0.051822,-0.933795,1.507656,0.882983,0.707052,0.056359,0.396395,0.088651,-0.100847,-0.266379,-0.007084,0.425586,-0.121055,-0.238733,-0.122173,-0.220236,-0.078372,0.194344,-0.602215,0.200939,-0.868589,-0.576821,-0.100241,-0.753117,0.685773,0.378725,-1.348659,?
-3.494906,-4.486354,-1.345368,-0.484324,1.149898,-0.439766,-1.025646,1.124299,-2.99134,0.442265,-1.788917,0.94187,2.62624,2.007014,0.714766,-0.131368,-0.987329,-0.514636,1.543123,-0.192367,0.847163,0.809442,-1.032951,-0.219089,0.163768,0.498413,0.25558,0.549319,-0.29937,-0.176185,1.03551,2.743885,-0.268496,0.517832,-0.418616,0.991141,0.437893,-0.63705,1.027591,1.714238,0.340976,-0.089292,-0.77837,-0.769907,0.291387,-1.389119,0.033125,0.458307,?
-4.401247,-5.58659,0.752201,-0.331594,-2.087319,-1.215508,2.860368,3.363881,-1.422004,0.1721,-0.011307,-0.401939,-0.549761,-0.404935,-0.989427,-0.594976,0.89278,-0.734433,0.324625,0.073514,-0.21389,-0.361851,-0.425814,0.270274,0.700322,0.069045,-0.246155,0.561442,0.636801,-0.598392,0.736111,-0.437618,-0.435387,-0.959526,-0.536241,-0.874806,0.301386,-0.35445,-0.286149,-0.19548,-0.214984,0.482821,0.614997,0.758171,-0.172485,0.626912,-0.119605,-0.10352,?
4.966898,4.56229,-0.224021,-0.450088,-0.963914,0.660317,-1.39092,-2.429498,0.290489,-0.633321,1.158973,-1.69469,-0.384604,-0.044604,-0.137994,1.282647,-0.999981,-0.800277,-0.481097,-0.271626,-0.119514,-0.662027,-0.511851,0.583127,1.115563,-0.646134,-0.723819,0.834142,0.099466,-0.328268,-0.342453,0.341714,0.188466,-0.517016,-0.582667,0.629066,-0.974418,0.618614,0.710327,0.687125,0.015911,0.185257,-0.068398,0.324719,-0.931037,-0.494458,-0.41942,-0.030418,?
4.014573,-2.161741,-0.994027,-0.690531,2.535982,-1.333235,2.015509,1.406416,0.513169,0.219357,2.711831,-0.611587,-0.935178,-0.191774,0.309275,0.66298,0.003592,0.89324,0.22387,0.077561,0.499564,-0.535558,-0.923606,-0.419831,0.183991,1.185157,0.626283,-0.649877,0.264111,0.244003,0.441248,-0.938959,-0.269089,-0.519547,-0.043838,-0.151416,0.162993,0.597,0.035383,-0.824358,-0.557186,-0.446977,-0.261697,0.014242,-0.441604,0.090962,0.338292,-0.424213,?
-4.222808,1.896649,-2.02675,1.337508,0.181956,0.087153,-2.147354,-0.177379,-2.396802,0.528366,-0.489926,-0.261889,-0.113047,0.168876,-2.466897,0.156572,-0.112641,-0.556052,-0.626697,0.250064,0.249194,-0.536372,-0.505528,-0.520235,0.056607,-0.275009,-0.114049,0.121019,0.238255,-0.282255,0.803793,-0.683285,1.656426,0.103872,-0.05025,0.318089,-0.678121,0.530658,-0.904323,0.48678,0.10522,0.349964,-0.214126,0.54443,-1.316009,0.940608,-0.962057,-0.24302,?
8.423526,3.440171,3.383218,0.672895,-3.446488,0.246802,-0.174312,-2.202474,-1.637975,-1.169274,-1.517517,-0.875429,0.699851,2.3409,-1.593932,2.314277,-0.295136,0.675385,-0.932884,-1.615433,-0.456572,-0.634739,-0.8158,-0.450124,-0.278935,0.01893,-0.426972,1.380549,0.203132,-0.171633,0.508284,0.268699,-0.287226,0.940109,-0.53735,-0.329905,0.921649,0.325935,0.20603,-0.896328,0.192652,-0.898226,0.910094,-0.176747,0.83907,-0.649352,-0.129649,0.381285,?
6.241003,0.919745,-1.991954,-3.640332,0.671489,-0.538141,0.958896,-1.178641,1.030601,0.129649,0.197976,-1.211172,-0.216627,-1.054298,1.317205,-0.718253,0.906736,0.378713,-0.11139,0.395139,-0.009648,-1.226582,0.397586,0.563652,0.909692,-0.972107,0.082166,-0.709666,0.577023,-0.652864,0.203964,-0.083014,-0.599784,-0.399504,-0.152957,-0.382719,0.22912,-0.45216,0.471995,0.322361,0.646375,-0.369759,-0.04619,0.463565,-0.223387,-0.191484,-0.037495,-0.33872,?
2.994336,-1.266499,1.98591,4.065234,1.305603,0.120985,-0.482747,0.087773,1.924507,-1.210464,0.03669,1.559869,0.761967,0.256732,0.651774,-0.628976,-0.794262,-1.9735,-0.178575,-0.05906,0.363634,-0.650274,-0.841389,1.342624,0.840691,0.824716,0.106696,-0.11693,-0.917176,1.266707,0.210435,-0.452319,-0.343723,-0.139118,0.457813,-1.16362,-0.0526,0.706272,-0.454811,-0.626571,0.589035,0.10861,0.27796,0.403829,0.710669,-0.201665,-0.309546,-0.583963,?
7.061043,0.92591,0.269554,-0.734948,0.368511,-1.369764,2.001934,-0.277479,-0.535744,-0.128821,0.203212,-0.737058,0.408366,1.143545,-0.539199,1.10712,0.626761,0.76379,-0.376864,-0.51362,0.3741,0.299051,-0.254793,-0.283952,-0.367684,1.338349,0.550329,-0.510042,-0.356252,1.24475,1.540495,1.231329,0.233545,0.182993,0.098618,-0.13248,-0.066472,-0.357168,-1.041671,0.71996,0.040314,0.167367,-0.29995,-0.013054,0.380535,-0.346213,0.514804,0.372335,?
1.04048,2.001851,-1.756228,0.352956,0.801749,0.557834,-1.655033,-0.287672,1.586617,-0.644011,-2.229305,1.032674,-0.115395,-1.189131,1.155735,-1.354703,-0.357983,-0.875065,-0.477149,0.525305,-0.199103,-0.108183,-0.141076,0.519057,0.477051,0.775042,-0.459012,0.679998,0.44746,-0.675388,0.963614,0.040473,-0.54725,-0.532035,-0.842917,-0.507413,0.769361,-0.139759,-0.022829,-0.06799,-0.120117,-2.122095,-0.479296,-0.262017,-0.571409,0.100428,-0.377095,-0.532964,?
8.035859,0.641497,1.028694,-0.54067,-0.037527,-0.969443,1.494671,-0.572722,-0.092634,-0.947644,-0.132184,-0.524995,0.45567,0.521984,0.987273,1.065975,-0.532433,-1.063727,-0.39809,-0.304739,0.054368,1.948754,0.572332,0.307206,-0.373178,0.83312,-0.551274,1.21374,0.158329,-0.477839,0.29639,-1.704291,0.97521,0.296029,-0.033314,-0.375268,0.164131,0.352281,0.777648,0.372874,0.431681,-0.197406,0.116763,-0.385149,0.529188,0.45035,0.538372,-0.263542,?
-2.017246,-2.737402,-0.868469,1.262379,1.499518,0.454625,-1.799502,1.375195,0.403314,-1.090058,-1.85088,0.31421,-0.171115,-0.546951,0.473119,0.367198,-0.585373,-1.114095,0.003718,-0.008889,0.454026,0.647067,-0.687442,0.555222,0.208014,-0.650881,0.459902,0.112067,0.144796,-0.792666,-1.246529,0.112762,0.406169,1.143738,-0.548253,0.580213,-0.278471,-0.481314,-0.133657,0.348061,-0.112415,-0.093088,0.045552,-0.371315,-0.530632,-0.071869,0.078183,0.22704,?
3.788255,-1.215011,-0.684312,0.779585,2.779178,0.534819,-1.563835,-1.007558,0.829259,-0.496535,-1.50024,0.668657,-0.458342,-0.51566,-1.278691,-0.751136,0.952744,-0.30985,-0.964438,0.057159,0.263143,-1.071123,-0.433099,-0.939537,-0.527675,-1.075425,-0.650965,0.948945,-0.631676,1.257953,0.383191,-0.72644,0.274303,-0.844566,0.05066,0.232429,0.525577,-1.678574,-0.740643,1.243594,-1.185634,0.893694,-0.507929,-0.067819,0.870436,0.268398,-0.134257,-0.49591,?
-1.948352,-4.889772,0.033455,-1.383298,-1.089977,-0.382134,1.170738,1.084027,0.344413,-0.622143,0.266668,0.242294,-0.351596,1.095236,-1.133044,0.638013,-0.62686,-0.820459,0.23196,0.459805,0.368723,0.42851,-0.544662,0.164742,0.47136,0.992416,0.39217,-1.358449,-0.230891,0.015109,0.595742,2.612946,0.969927,-0.159753,-0.986496,-0.283003,-0.019035,0.22042,-0.796617,-0.088526,-0.530356,0.215651,-0.168541,-0.380932,-0.05908,0.149087,0.026034,0.236647,?
-2.376644,-1.075596,-2.216696,0.583555,1.934688,0.009536,-1.515782,0.40953,-0.214686,0.390866,-0.540446,1.125118,1.813507,1.480335,-1.168915,-0.65973,0.431153,-0.575167,0.81727,-0.729824,0.13294,-0.412226,0.140394,0.491837,0.395225,-0.207417,0.246426,0.398797,0.518007,-0.1647,0.799205,-0.459181,-1.283669,-0.516527,-0.17773,0.135259,-0.31059,0.640368,-1.177503,-0.125306,-0.429412,0.68593,0.14625,0.592432,-0.95426,0.382502,0.03316,-0.73761,?
1.843626,-1.666754,2.963293,4.613065,0.124949,-0.203018,0.419501,0.639047,1.000425,-1.651194,-0.491101,1.175013,-0.291935,0.14609,0.079186,0.334657,-1.149855,-0.980919,-1.120918,-0.814064,-0.109803,-0.953141,0.425519,-0.685676,-0.768596,-1.08376,-0.178975,-0.316907,0.090223,-0.130091,0.753334,-1.032759,0.621949,-0.281608,0.418535,1.443796,-0.218773,0.574313,-0.601062,-1.06081,0.340882,0.628114,0.239044,0.241357,-0.213801,-0.562603,0.028576,0.248576,?
10.748753,3.342429,1.831833,-0.463167,-1.216369,-1.492144,2.121716,-0.728152,-1.500299,-0.279874,-2.187233,0.060108,0.521555,0.880921,-0.472316,-0.119952,0.313407,0.429149,-0.155691,-0.091574,-0.292873,0.618814,1.702101,1.602224,0.2709,0.049855,0.684125,-1.296579,0.494737,-0.624733,0.176558,-1.223956,-0.804197,0.471817,0.20448,-0.336182,0.038137,0.151171,-0.249459,-0.037072,0.187288,-0.644447,0.670197,0.416484,-0.520234,0.15055,0.074261,-0.662829,?
-0.11867,0.230156,-2.3227,-1.692941,2.644258,-0.175162,-0.696728,-2.584324,-1.181788,1.137283,1.626963,-0.872352,0.010022,-0.16509,0.019068,-0.237436,-0.294893,-0.298336,0.39438,1.288618,0.295592,-0.671839,-0.694207,-0.603904,0.992187,0.021902,-0.790622,0.071117,1.056865,-2.301379,0.326836,0.012411,0.609307,-0.020605,-0.161866,-1.357808,-0.672062,-0.666176,-0.533501,0.510607,2.181157,-1.109802,-0.57589,0.723968,0.096254,0.324161,-1.573157,1.011181,?
-9.643419,2.242342,10.446226,-2.245703,2.044843,1.084738,3.849963,-2.889847,1.299864,3.078189,-0.788323,1.363849,0.137512,-1.577972,-1.543053,1.29138,-0.596828,-1.609052,0.907983,-1.871201,1.021397,-0.059894,2.186287,-0.644943,-0.831474,1.486076,1.124137,1.464989,2.667182,1.849803,-1.997278,0.5712,0.728478,0.460532,0.179173,-1.041885,-0.700452,-0.631605,0.262066,0.510269,-0.849214,0.98679,1.486405,-0.982214,-0.092919,-1.284406,-1.547786,-1.007109,0.15
7.431821,12.115993,-5.728206,-1.992501,1.74578,-1.031952,-0.920689,-1.800348,-0.492295,0.071855,-0.998231,-2.198736,-0.227439,-1.330646,2.55015,0.705015,-1.058908,-0.044981,-0.362453,0.021721,0.143087,0.271437,-0.184946,0.157058,0.62148,0.460139,-0.771075,0.680934,0.213955,-0.919551,-0.174264,0.643672,-0.703335,-2.238897,-0.336314,-0.752434,0.015875,-0.070233,0.576186,-0.079105,-0.559285,0.812974,-0.295773,0.741992,-0.080196,-0.977606,1.00642,0.497518,?