Newer
Older
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
# $a6b66397-72ad-476f-9dfb-1cc0963c527c$
# GIT pmt_effective_area_update-212-g3b12686-D
# ROOT 6.22/06
# application JConvertDetectorFormat
# command /localstore/km3net/mjg/GIT/Jpp/out//Linux/bin//JConvertDetectorFormat -a detector.datx -o detector.datx -r -d 0
# namespace KM3NET
# system Linux behn 3.10.0-1062.el7.x86_64 #1 SMP Wed Aug 7 18:08:02 UTC 2019 x86_64
# GIT 15.0.0-rc.1-2-g2b55cab-D
# ROOT 6.22/06
# application JCompass
# command /localstore/km3net/mjg/GIT/Jpp//out//Linux/bin//JCompass -a detector.datx -A -c .//ahrs_calibration.txt -f \".//KM3NeT_00000049_00008000_ahrs.root .//KM3NeT_00000049_00008001_ahrs.root .//KM3NeT_00000049_00008002_ahrs.root .//KM3NeT_00000049_00008003_ahrs.root .//KM3NeT_00000049_00008004_ahrs.root .//KM3NeT_00000049_00008005_ahrs.root .//KM3NeT_00000049_00008006_ahrs.root .//KM3NeT_00000049_00008007_ahrs.root .//KM3NeT_00000049_00008008_ahrs.root .//KM3NeT_00000049_00008009_ahrs.root .//KM3NeT_00000049_00008010_ahrs.root .//KM3NeT_00000049_00008011_ahrs.root .//KM3NeT_00000049_00008012_ahrs.root .//KM3NeT_00000049_00008013_ahrs.root .//KM3NeT_00000049_00008014_ahrs.root .//KM3NeT_00000049_00008015_ahrs.root .//KM3NeT_00000049_00008016_ahrs.root .//KM3NeT_00000049_00008017_ahrs.root .//KM3NeT_00000049_00008018_ahrs.root .//KM3NeT_00000049_00008019_ahrs.root .//KM3NeT_00000049_00008020_ahrs.root .//KM3NeT_00000049_00008021_ahrs.root .//KM3NeT_00000049_00008022_ahrs.root .//KM3NeT_00000049_00008023_ahrs.root .//KM3NeT_00000049_00008024_ahrs.root .//KM3NeT_00000049_00008025_ahrs.root .//KM3NeT_00000049_00008026_ahrs.root .//KM3NeT_00000049_00008027_ahrs.root .//KM3NeT_00000049_00008028_ahrs.root .//KM3NeT_00000049_00008029_ahrs.root .//KM3NeT_00000049_00008030_ahrs.root .//KM3NeT_00000049_00008031_ahrs.root .//KM3NeT_00000049_00008032_ahrs.root .//KM3NeT_00000049_00008033_ahrs.root .//KM3NeT_00000049_00008034_ahrs.root .//KM3NeT_00000049_00008035_ahrs.root .//KM3NeT_00000049_00008036_ahrs.root .//KM3NeT_00000049_00008037_ahrs.root .//KM3NeT_00000049_00008038_ahrs.root .//KM3NeT_00000049_00008039_ahrs.root .//KM3NeT_00000049_00008040_ahrs.root .//KM3NeT_00000049_00008041_ahrs.root .//KM3NeT_00000049_00008042_ahrs.root .//KM3NeT_00000049_00008043_ahrs.root .//KM3NeT_00000049_00008044_ahrs.root .//KM3NeT_00000049_00008045_ahrs.root .//KM3NeT_00000049_00008046_ahrs.root .//KM3NeT_00000049_00008047_ahrs.root .//KM3NeT_00000049_00008048_ahrs.root .//KM3NeT_00000049_00008049_ahrs.root .//KM3NeT_00000049_00008050_ahrs.root .//KM3NeT_00000049_00008051_ahrs.root .//KM3NeT_00000049_00008052_ahrs.root .//KM3NeT_00000049_00008053_ahrs.root .//KM3NeT_00000049_00008054_ahrs.root .//KM3NeT_00000049_00008055_ahrs.root .//KM3NeT_00000049_00008056_ahrs.root .//KM3NeT_00000049_00008057_ahrs.root .//KM3NeT_00000049_00008058_ahrs.root .//KM3NeT_00000049_00008059_ahrs.root .//KM3NeT_00000049_00008060_ahrs.root .//KM3NeT_00000049_00008061_ahrs.root .//KM3NeT_00000049_00008062_ahrs.root .//KM3NeT_00000049_00008063_ahrs.root .//KM3NeT_00000049_00008064_ahrs.root .//KM3NeT_00000049_00008065_ahrs.root .//KM3NeT_00000049_00008066_ahrs.root .//KM3NeT_00000049_00008067_ahrs.root .//KM3NeT_00000049_00008068_ahrs.root .//KM3NeT_00000049_00008069_ahrs.root .//KM3NeT_00000049_00008070_ahrs.root .//KM3NeT_00000049_00008071_ahrs.root .//KM3NeT_00000049_00008072_ahrs.root .//KM3NeT_00000049_00008073_ahrs.root .//KM3NeT_00000049_00008074_ahrs.root .//KM3NeT_00000049_00008075_ahrs.root .//KM3NeT_00000049_00008076_ahrs.root .//KM3NeT_00000049_00008077_ahrs.root .//KM3NeT_00000049_00008078_ahrs.root .//KM3NeT_00000049_00008079_ahrs.root .//KM3NeT_00000049_00008080_ahrs.root .//KM3NeT_00000049_00008081_ahrs.root .//KM3NeT_00000049_00008082_ahrs.root .//KM3NeT_00000049_00008083_ahrs.root .//KM3NeT_00000049_00008084_ahrs.root .//KM3NeT_00000049_00008085_ahrs.root .//KM3NeT_00000049_00008086_ahrs.root .//KM3NeT_00000049_00008087_ahrs.root .//KM3NeT_00000049_00008088_ahrs.root .//KM3NeT_00000049_00008089_ahrs.root .//KM3NeT_00000049_00008090_ahrs.root .//KM3NeT_00000049_00008091_ahrs.root .//KM3NeT_00000049_00008092_ahrs.root .//KM3NeT_00000049_00008093_ahrs.root .//KM3NeT_00000049_00008094_ahrs.root .//KM3NeT_00000049_00008095_ahrs.root .//KM3NeT_00000049_00008096_ahrs.root .//KM3NeT_00000049_00008097_ahrs.root .//KM3NeT_00000049_00008098_ahrs.root .//KM3NeT_00000049_00008099_ahrs.root .//KM3NeT_00000049_00008100_ahrs.root\" -o /localstore/km3net/mjg/TESTS/ORCA-compass/compass-before.root -@ \"Tmax_s = 600\" -@ \"sigma_deg = 0.5\" -@ \"stdev = 5.0\" -@ \"mestimator = 1\" -@ \"numberOfOutliers = 0\" -d 2 --!
# namespace KM3NET
# system Linux behn 3.10.0-1062.el7.x86_64 #1 SMP Wed Aug 7 18:08:02 UTC 2019 x86_64
# GIT 15.0.0-rc.1-2-g2b55cab-D
# ROOT 6.22/06
# application JCompass
# command /localstore/km3net/mjg/GIT/Jpp//out//Linux/bin//JCompass -a detector.datx -A -c .//ahrs_calibration.txt -f \".//KM3NeT_00000049_00008000_ahrs.root .//KM3NeT_00000049_00008001_ahrs.root .//KM3NeT_00000049_00008002_ahrs.root .//KM3NeT_00000049_00008003_ahrs.root .//KM3NeT_00000049_00008004_ahrs.root .//KM3NeT_00000049_00008005_ahrs.root .//KM3NeT_00000049_00008006_ahrs.root .//KM3NeT_00000049_00008007_ahrs.root .//KM3NeT_00000049_00008008_ahrs.root .//KM3NeT_00000049_00008009_ahrs.root .//KM3NeT_00000049_00008010_ahrs.root .//KM3NeT_00000049_00008011_ahrs.root .//KM3NeT_00000049_00008012_ahrs.root .//KM3NeT_00000049_00008013_ahrs.root .//KM3NeT_00000049_00008014_ahrs.root .//KM3NeT_00000049_00008015_ahrs.root .//KM3NeT_00000049_00008016_ahrs.root .//KM3NeT_00000049_00008017_ahrs.root .//KM3NeT_00000049_00008018_ahrs.root .//KM3NeT_00000049_00008019_ahrs.root .//KM3NeT_00000049_00008020_ahrs.root .//KM3NeT_00000049_00008021_ahrs.root .//KM3NeT_00000049_00008022_ahrs.root .//KM3NeT_00000049_00008023_ahrs.root .//KM3NeT_00000049_00008024_ahrs.root .//KM3NeT_00000049_00008025_ahrs.root .//KM3NeT_00000049_00008026_ahrs.root .//KM3NeT_00000049_00008027_ahrs.root .//KM3NeT_00000049_00008028_ahrs.root .//KM3NeT_00000049_00008029_ahrs.root .//KM3NeT_00000049_00008030_ahrs.root .//KM3NeT_00000049_00008031_ahrs.root .//KM3NeT_00000049_00008032_ahrs.root .//KM3NeT_00000049_00008033_ahrs.root .//KM3NeT_00000049_00008034_ahrs.root .//KM3NeT_00000049_00008035_ahrs.root .//KM3NeT_00000049_00008036_ahrs.root .//KM3NeT_00000049_00008037_ahrs.root .//KM3NeT_00000049_00008038_ahrs.root .//KM3NeT_00000049_00008039_ahrs.root .//KM3NeT_00000049_00008040_ahrs.root .//KM3NeT_00000049_00008041_ahrs.root .//KM3NeT_00000049_00008042_ahrs.root .//KM3NeT_00000049_00008043_ahrs.root .//KM3NeT_00000049_00008044_ahrs.root .//KM3NeT_00000049_00008045_ahrs.root .//KM3NeT_00000049_00008046_ahrs.root .//KM3NeT_00000049_00008047_ahrs.root .//KM3NeT_00000049_00008048_ahrs.root .//KM3NeT_00000049_00008049_ahrs.root .//KM3NeT_00000049_00008050_ahrs.root .//KM3NeT_00000049_00008051_ahrs.root .//KM3NeT_00000049_00008052_ahrs.root .//KM3NeT_00000049_00008053_ahrs.root .//KM3NeT_00000049_00008054_ahrs.root .//KM3NeT_00000049_00008055_ahrs.root .//KM3NeT_00000049_00008056_ahrs.root .//KM3NeT_00000049_00008057_ahrs.root .//KM3NeT_00000049_00008058_ahrs.root .//KM3NeT_00000049_00008059_ahrs.root .//KM3NeT_00000049_00008060_ahrs.root .//KM3NeT_00000049_00008061_ahrs.root .//KM3NeT_00000049_00008062_ahrs.root .//KM3NeT_00000049_00008063_ahrs.root .//KM3NeT_00000049_00008064_ahrs.root .//KM3NeT_00000049_00008065_ahrs.root .//KM3NeT_00000049_00008066_ahrs.root .//KM3NeT_00000049_00008067_ahrs.root .//KM3NeT_00000049_00008068_ahrs.root .//KM3NeT_00000049_00008069_ahrs.root .//KM3NeT_00000049_00008070_ahrs.root .//KM3NeT_00000049_00008071_ahrs.root .//KM3NeT_00000049_00008072_ahrs.root .//KM3NeT_00000049_00008073_ahrs.root .//KM3NeT_00000049_00008074_ahrs.root .//KM3NeT_00000049_00008075_ahrs.root .//KM3NeT_00000049_00008076_ahrs.root .//KM3NeT_00000049_00008077_ahrs.root .//KM3NeT_00000049_00008078_ahrs.root .//KM3NeT_00000049_00008079_ahrs.root .//KM3NeT_00000049_00008080_ahrs.root .//KM3NeT_00000049_00008081_ahrs.root .//KM3NeT_00000049_00008082_ahrs.root .//KM3NeT_00000049_00008083_ahrs.root .//KM3NeT_00000049_00008084_ahrs.root .//KM3NeT_00000049_00008085_ahrs.root .//KM3NeT_00000049_00008086_ahrs.root .//KM3NeT_00000049_00008087_ahrs.root .//KM3NeT_00000049_00008088_ahrs.root .//KM3NeT_00000049_00008089_ahrs.root .//KM3NeT_00000049_00008090_ahrs.root .//KM3NeT_00000049_00008091_ahrs.root .//KM3NeT_00000049_00008092_ahrs.root .//KM3NeT_00000049_00008093_ahrs.root .//KM3NeT_00000049_00008094_ahrs.root .//KM3NeT_00000049_00008095_ahrs.root .//KM3NeT_00000049_00008096_ahrs.root .//KM3NeT_00000049_00008097_ahrs.root .//KM3NeT_00000049_00008098_ahrs.root .//KM3NeT_00000049_00008099_ahrs.root .//KM3NeT_00000049_00008100_ahrs.root\" -o /localstore/km3net/mjg/TESTS/ORCA-compass/compass.root -@ \"Tmax_s = 600\" -@ \"sigma_deg = 0.5\" -@ \"stdev = 5.0\" -@ \"mestimator = 1\" -@ \"numberOfOutliers = 0\" -d 2 --!
# namespace KM3NET
# system Linux behn 3.10.0-1062.el7.x86_64 #1 SMP Wed Aug 7 18:08:02 UTC 2019 x86_64
# GIT 15.0.0-339-ge1600acaf-D
# ROOT 6.22/06
# application JMergeDetector
# command /pbs/throng/km3net/src/Jpp/master/out/Linux/bin/JMergeDetector -a detector.datx -o A_detector.datx -t D_ORCA006_t.A02825765.p.A02831182.r.A02831183.detx
# namespace KM3NET
# system Linux cca010 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.0-339-ge1600acaf-D
# ROOT 6.22/06
# application JEditDetector
# command /pbs/throng/km3net/src/Jpp/master/out/Linux/bin/JEditDetector -a A_detector.datx -o muon.A_detector.datx -S \"1 add -0.7\" -S \"2 add -0.7\" -S \"3 add 0.4\" -S \"9 add -0.3\" -S \"10 add 0.1\" -S \"11 add 1.2\"
# namespace KM3NET
# system Linux cca010 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.0-339-ge1600acaf-D
# ROOT 6.22/06
# application JEditDetector
# command /pbs/throng/km3net/src/Jpp/master/out/Linux/bin/JEditDetector -a muon.A_detector.datx -o muon.A_detector.PMT_DISABLE.datx -P \"808432835 14 set PMT_DISABLE\" -P \"808447180 26 set PMT_DISABLE\" -P \"808472265 21 set PMT_DISABLE\" -P \"806465101 26 set PMT_DISABLE\" -P \"808972593 19 set PMT_DISABLE\"
# namespace KM3NET
# system Linux cca010 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.0-339-ge1600acaf-D
# ROOT 6.22/06
# application JConvertDetectorFormat
# command /pbs/throng/km3net/src/Jpp/master/out/Linux/bin/JConvertDetectorFormat -a muon.A_detector.PMT_DISABLE.datx -o KM3NeT_00000049_20220114.detx
# namespace KM3NET
# system Linux cca010 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JFitK40
# command /Jpp/out//Linux/bin//JFitK40 -d 2 -w -A -a KM3NeT_00000049_00007239.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007239.v7.0_T0_merge8.jcalk40.jmergek40.root -o KM3NeT_00000049_00007239.v7.0_T0_merge8.jcalk40.jmergek40.jfitk40.root -P KM3NeT_00000049_00007239.v7.0_T0_merge8.ToT.QE.PMTeff.nomu.txt --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JMergeCalibrateK40
# command /Jpp/out//Linux/bin//JMergeCalibrateK40 -f \"/sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007224.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007225.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007233.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007234.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007236.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007237.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007238.v7.0_T0_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_T0_merge8/calibration/KM3NeT_00000049_00007239.v7.0_T0_merge8.jcalk40.root\" -o KM3NeT_00000049_00007239.v7.0_T0_merge8.jcalk40.jmergek40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007224.root -o KM3NeT_00000049_00007224.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007225.root -o KM3NeT_00000049_00007225.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007233.root -o KM3NeT_00000049_00007233.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007234.root -o KM3NeT_00000049_00007234.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007236.root -o KM3NeT_00000049_00007236.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007237.root -o KM3NeT_00000049_00007237.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007238.root -o KM3NeT_00000049_00007238.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_20220114.detx -f KM3NeT_00000049_00007239.root -o KM3NeT_00000049_00007239.v7.0_T0_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge1170 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JFitK40
# command /Jpp/out//Linux/bin//JFitK40 -d 2 -w -A -a KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.K40.detx -f KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.jcalk40.jmergek40.root -o KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.jcalk40.jmergek40.jfitk40.root -P KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.ToT.QE.PMTeff.nomu.txt --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JMergeCalibrateK40
# command /Jpp/out//Linux/bin//JMergeCalibrateK40 -f \"/sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007224.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007225.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007233.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007234.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007236.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007237.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007238.v7.0_PMTeff_merge8.jcalk40.root /sps/km3net/repo/data/KM3NeT_00000049/v7.0_PMTeff_merge8/calibration/KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.jcalk40.root\" -o KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.jcalk40.jmergek40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007224.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007224.root -o KM3NeT_00000049_00007224.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007225.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007225.root -o KM3NeT_00000049_00007225.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007233.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007233.root -o KM3NeT_00000049_00007233.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007234.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007234.root -o KM3NeT_00000049_00007234.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007236.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007236.root -o KM3NeT_00000049_00007236.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007237.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007237.root -o KM3NeT_00000049_00007237.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007238.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007238.root -o KM3NeT_00000049_00007238.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
# GIT 15.0.2
# ROOT 6.22/06
# application JCalibrateK40
# command /Jpp/out//Linux/bin//JCalibrateK40 -C JDAQTimesliceL1 -a /sps/km3net/repo/data/KM3NeT_00000049/v7.0/detectors/KM3NeT_00000049_00007239.v7.0_T0_merge8.K40.detx -f KM3NeT_00000049_00007239.root -o KM3NeT_00000049_00007239.v7.0_PMTeff_merge8.jcalk40.root --!
# namespace KM3NET
# system Linux ccwsge0296 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64
49 V5
1580056200.0 9999999999.0
UTM WGS84 32N +256500.000 +4743000.000 -2441.500
114
808987107 11 1 +484.600 +564.650 +26.694 +0.998213 +0.007683 +0.007488 +0.058786 +37694.902 0 31
10057 +484.761 +564.607 +26.805 +0.803578 -0.215292 +0.554898 +207699.045 0
10079 +484.551 +564.465 +26.753 -0.247312 -0.922898 +0.295129 +207699.150 0
13303 +484.735 +564.515 +26.753 +0.675638 -0.675650 +0.294963 +207697.639 0
13304 +484.785 +564.699 +26.753 +0.922995 +0.247277 +0.294834 +207696.415 0
13300 +484.718 +564.768 +26.805 +0.588331 +0.588222 +0.554852 +207698.284 0
13301 +484.643 +564.489 +26.805 +0.215341 -0.803462 +0.555046 +207696.449 0
13294 +484.649 +564.835 +26.753 +0.247402 +0.922956 +0.294871 +207698.354 0
13295 +484.482 +564.532 +26.805 -0.588161 -0.588112 +0.555148 +207697.340 0
13236 +484.557 +564.811 +26.805 -0.215171 +0.803571 +0.554954 +207697.256 0
13235 +484.439 +564.693 +26.805 -0.803407 +0.215402 +0.555102 +207696.103 0
13242 +484.465 +564.785 +26.753 -0.675548 +0.675708 +0.295037 +207696.772 0
13238 +484.415 +564.601 +26.753 -0.922905 -0.247219 +0.295166 +207695.400 0
13601 +484.415 +564.699 +26.635 -0.922972 +0.247328 -0.294883 +207696.406 0
13593 +484.482 +564.768 +26.583 -0.588252 +0.588191 -0.554968 +207696.864 0
13596 +484.498 +564.677 +26.524 -0.508953 +0.136287 -0.849935 +207696.394 0
13561 +484.551 +564.835 +26.635 -0.247293 +0.922921 -0.295053 +207694.953 0
13602 +484.465 +564.515 +26.635 -0.675725 -0.675622 -0.294830 +207697.759 0
13600 +484.439 +564.607 +26.583 -0.803602 -0.215311 -0.554856 +207694.772 0
13594 +484.525 +564.575 +26.524 -0.372644 -0.372556 -0.849906 +207697.047 0
13604 +484.573 +564.752 +26.524 -0.136439 +0.508760 -0.850029 +207694.129 0
13603 +484.557 +564.489 +26.583 -0.215432 -0.803547 -0.554888 +207696.265 0
13562 +484.643 +564.811 +26.583 +0.215262 +0.803438 -0.555112 +207695.295 0
13599 +484.600 +564.650 +26.494 -0.000153 -0.000099 -1.000000 +207695.715 0
13244 +484.735 +564.785 +26.635 +0.675634 +0.675564 -0.295170 +207693.549 0
13247 +484.702 +564.623 +26.524 +0.508692 -0.136455 -0.850065 +207694.384 0
13251 +484.674 +564.724 +26.524 +0.372383 +0.372388 -0.850094 +207693.570 0
13239 +484.627 +564.548 +26.524 +0.136178 -0.508928 -0.849971 +207695.309 0
13292 +484.649 +564.465 +26.635 +0.247203 -0.922979 -0.294947 +207698.852 0
13291 +484.718 +564.532 +26.583 +0.588082 -0.588301 -0.555032 +207695.360 0
13298 +484.761 +564.693 +26.583 +0.803431 +0.215201 -0.555144 +207695.945 0
13245 +484.785 +564.601 +26.635 +0.922882 -0.247386 -0.295117 +207693.898 0
808971812 11 2 +484.600 +564.650 +37.008 +0.998378 +0.009674 +0.001860 +0.056075 +37747.385 0 31
13581 +484.761 +564.607 +37.119 +0.803578 -0.215292 +0.554898 +207747.891 0
11950 +484.551 +564.465 +37.067 -0.247312 -0.922898 +0.295129 +207750.902 0
11945 +484.735 +564.515 +37.067 +0.675638 -0.675650 +0.294963 +207751.390 0
11949 +484.785 +564.699 +37.067 +0.922995 +0.247277 +0.294834 +207751.528 0
11960 +484.718 +564.768 +37.119 +0.588331 +0.588222 +0.554852 +207748.837 0
11943 +484.643 +564.489 +37.119 +0.215341 -0.803462 +0.555046 +207749.811 0
11959 +484.649 +564.835 +37.067 +0.247402 +0.922956 +0.294871 +207750.904 0
11941 +484.482 +564.532 +37.119 -0.588161 -0.588112 +0.555148 +207749.810 0
11953 +484.557 +564.811 +37.119 -0.215171 +0.803571 +0.554954 +207750.705 0
11958 +484.439 +564.693 +37.119 -0.803407 +0.215402 +0.555102 +207749.950 0
13586 +484.465 +564.785 +37.067 -0.675548 +0.675708 +0.295037 +207748.537 0
11948 +484.415 +564.601 +37.067 -0.922905 -0.247219 +0.295166 +207746.636 0
9886 +484.415 +564.699 +36.949 -0.922972 +0.247328 -0.294883 +207747.381 0
9877 +484.482 +564.768 +36.897 -0.588252 +0.588191 -0.554968 +207747.081 0
9890 +484.498 +564.677 +36.838 -0.508953 +0.136287 -0.849935 +207748.986 0
9895 +484.551 +564.835 +36.949 -0.247293 +0.922921 -0.295053 +207748.869 0
9894 +484.465 +564.515 +36.949 -0.675725 -0.675622 -0.294830 +207749.571 0
9878 +484.439 +564.607 +36.897 -0.803602 -0.215311 -0.554856 +207749.064 0
9876 +484.525 +564.575 +36.838 -0.372644 -0.372556 -0.849906 +207748.088 0
9888 +484.573 +564.752 +36.838 -0.136439 +0.508760 -0.850029 +207745.135 0
9889 +484.557 +564.489 +36.897 -0.215432 -0.803547 -0.554888 +207750.061 0
9996 +484.643 +564.811 +36.897 +0.215262 +0.803438 -0.555112 +207748.216 0
9882 +484.600 +564.650 +36.808 -0.000153 -0.000099 -1.000000 +207748.207 0
9887 +484.735 +564.785 +36.949 +0.675634 +0.675564 -0.295170 +207747.024 0
9885 +484.702 +564.623 +36.838 +0.508692 -0.136455 -0.850065 +207746.819 0
9884 +484.674 +564.724 +36.838 +0.372383 +0.372388 -0.850094 +207748.377 0
9881 +484.627 +564.548 +36.838 +0.136178 -0.508928 -0.849971 +207748.589 0
9812 +484.649 +564.465 +36.949 +0.247203 -0.922979 -0.294947 +207747.436 0
9819 +484.718 +564.532 +36.897 +0.588082 -0.588301 -0.555032 +207747.454 0
9811 +484.761 +564.693 +36.897 +0.803431 +0.215201 -0.555144 +207745.710 0
9813 +484.785 +564.601 +36.949 +0.922882 -0.247386 -0.295117 +207747.795 0
808976172 11 3 +484.600 +564.650 +45.886 +0.999992 +0.000144 -0.000391 -0.003958 +37800.198 0 31
8063 +484.761 +564.607 +45.997 +0.803578 -0.215292 +0.554898 +207803.389 0
8067 +484.551 +564.465 +45.945 -0.247312 -0.922898 +0.295129 +207800.377 0
8057 +484.735 +564.515 +45.945 +0.675638 -0.675650 +0.294963 +207803.698 0
8068 +484.785 +564.699 +45.945 +0.922995 +0.247277 +0.294834 +207802.226 0
8062 +484.718 +564.768 +45.997 +0.588331 +0.588222 +0.554852 +207803.944 0
8060 +484.643 +564.489 +45.997 +0.215341 -0.803462 +0.555046 +207803.177 0
8069 +484.649 +564.835 +45.945 +0.247402 +0.922956 +0.294871 +207802.293 0
8051 +484.482 +564.532 +45.997 -0.588161 -0.588112 +0.555148 +207802.887 0
8056 +484.557 +564.811 +45.997 -0.215171 +0.803571 +0.554954 +207804.722 0
8061 +484.439 +564.693 +45.997 -0.803407 +0.215402 +0.555102 +207800.159 0
8141 +484.465 +564.785 +45.945 -0.675548 +0.675708 +0.295037 +207801.688 0
8065 +484.415 +564.601 +45.945 -0.922905 -0.247219 +0.295166 +207802.684 0
9997 +484.415 +564.699 +45.827 -0.922972 +0.247328 -0.294883 +207800.215 0
9965 +484.482 +564.768 +45.775 -0.588252 +0.588191 -0.554968 +207799.024 0
9967 +484.498 +564.677 +45.716 -0.508953 +0.136287 -0.849935 +207801.417 0
10016 +484.551 +564.835 +45.827 -0.247293 +0.922921 -0.295053 +207801.868 0
14805 +484.465 +564.515 +45.827 -0.675725 -0.675622 -0.294830 +207800.326 0
14795 +484.439 +564.607 +45.775 -0.803602 -0.215311 -0.554856 +207799.706 0
9970 +484.525 +564.575 +45.716 -0.372644 -0.372556 -0.849906 +207802.034 0
14791 +484.573 +564.752 +45.716 -0.136439 +0.508760 -0.850029 +207799.363 0
9969 +484.557 +564.489 +45.775 -0.215432 -0.803547 -0.554888 +207801.596 0
9992 +484.643 +564.811 +45.775 +0.215262 +0.803438 -0.555112 +207800.650 0
14650 +484.600 +564.650 +45.686 -0.000153 -0.000099 -1.000000 +207800.603 0
14649 +484.735 +564.785 +45.827 +0.675634 +0.675564 -0.295170 +207800.709 0
14645 +484.702 +564.623 +45.716 +0.508692 -0.136455 -0.850065 +207802.626 0
14646 +484.674 +564.724 +45.716 +0.372383 +0.372388 -0.850094 +207799.470 0
10078 +484.627 +564.548 +45.716 +0.136178 -0.508928 -0.849971 +207800.299 0
10076 +484.649 +564.465 +45.827 +0.247203 -0.922979 -0.294947 +207800.580 0
10071 +484.718 +564.532 +45.775 +0.588082 -0.588301 -0.555032 +207800.835 0
10080 +484.761 +564.693 +45.775 +0.803431 +0.215201 -0.555144 +207801.427 0
10073 +484.785 +564.601 +45.827 +0.922882 -0.247386 -0.295117 +207799.843 0
808988327 11 4 +484.600 +564.650 +55.629 +0.999744 +0.021407 +0.002827 +0.006773 +37851.762 0 31
13588 +484.761 +564.607 +55.740 +0.803578 -0.215292 +0.554898 +207850.910 0
11957 +484.551 +564.465 +55.688 -0.247312 -0.922898 +0.295129 +207853.014 0
11942 +484.735 +564.515 +55.688 +0.675638 -0.675650 +0.294963 +207854.714 0
13585 +484.785 +564.699 +55.688 +0.922995 +0.247277 +0.294834 +207855.444 0
13583 +484.718 +564.768 +55.740 +0.588331 +0.588222 +0.554852 +207854.479 0
11951 +484.643 +564.489 +55.740 +0.215341 -0.803462 +0.555046 +207853.434 0
11956 +484.649 +564.835 +55.688 +0.247402 +0.922956 +0.294871 +207853.821 0
11944 +484.482 +564.532 +55.740 -0.588161 -0.588112 +0.555148 +207854.181 0
8698 +484.557 +564.811 +55.740 -0.215171 +0.803571 +0.554954 +207853.647 0
13579 +484.439 +564.693 +55.740 -0.803407 +0.215402 +0.555102 +207852.825 0
11952 +484.465 +564.785 +55.688 -0.675548 +0.675708 +0.295037 +207852.337 0
11954 +484.415 +564.601 +55.688 -0.922905 -0.247219 +0.295166 +207853.931 0
15522 +484.415 +564.699 +55.570 -0.922972 +0.247328 -0.294883 +207851.903 0
15529 +484.482 +564.768 +55.518 -0.588252 +0.588191 -0.554968 +207853.617 0
15371 +484.498 +564.677 +55.459 -0.508953 +0.136287 -0.849935 +207851.267 0
15372 +484.551 +564.835 +55.570 -0.247293 +0.922921 -0.295053 +207852.467 0
14702 +484.465 +564.515 +55.570 -0.675725 -0.675622 -0.294830 +207853.960 0
10075 +484.439 +564.607 +55.518 -0.803602 -0.215311 -0.554856 +207848.833 0
14706 +484.525 +564.575 +55.459 -0.372644 -0.372556 -0.849906 +207852.129 0
14705 +484.573 +564.752 +55.459 -0.136439 +0.508760 -0.850029 +207852.980 0
14688 +484.557 +564.489 +55.518 -0.215432 -0.803547 -0.554888 +207852.774 0
14689 +484.643 +564.811 +55.518 +0.215262 +0.803438 -0.555112 +207852.468 0
10077 +484.600 +564.650 +55.429 -0.000153 -0.000099 -1.000000 +207851.339 0
14701 +484.735 +564.785 +55.570 +0.675634 +0.675564 -0.295170 +207851.375 0
14704 +484.702 +564.623 +55.459 +0.508692 -0.136455 -0.850065 +207853.274 0
14703 +484.674 +564.724 +55.459 +0.372383 +0.372388 -0.850094 +207853.866 0
14685 +484.627 +564.548 +55.459 +0.136178 -0.508928 -0.849971 +207850.812 0
10069 +484.649 +564.465 +55.570 +0.247203 -0.922979 -0.294947 +207852.168 0
10074 +484.718 +564.532 +55.518 +0.588082 -0.588301 -0.555032 +207855.569 0
15511 +484.761 +564.693 +55.518 +0.803431 +0.215201 -0.555144 +207853.207 0
10072 +484.785 +564.601 +55.570 +0.922882 -0.247386 -0.295117 +207851.945 0
808952697 11 5 +484.600 +564.650 +64.638 +0.999738 -0.002510 -0.012636 +0.018932 +37905.185 0 31
11594 +484.761 +564.607 +64.749 +0.803578 -0.215292 +0.554898 +207907.888 0
11582 +484.551 +564.465 +64.697 -0.247312 -0.922898 +0.295129 +207907.462 0
11581 +484.735 +564.515 +64.697 +0.675638 -0.675650 +0.294963 +207906.355 0
11599 +484.785 +564.699 +64.696 +0.922995 +0.247277 +0.294834 +207907.372 0
11587 +484.718 +564.768 +64.749 +0.588331 +0.588222 +0.554852 +207908.755 0
11588 +484.643 +564.489 +64.749 +0.215341 -0.803462 +0.555046 +207906.680 0
15460 +484.649 +564.835 +64.697 +0.247402 +0.922956 +0.294871 +207909.234 0
11597 +484.482 +564.532 +64.749 -0.588161 -0.588112 +0.555148 +207905.653 0
11596 +484.557 +564.811 +64.749 -0.215171 +0.803571 +0.554954 +207907.635 0
15451 +484.439 +564.693 +64.749 -0.803407 +0.215402 +0.555102 +207906.724 0
15453 +484.465 +564.785 +64.697 -0.675548 +0.675708 +0.295037 +207905.652 0
11593 +484.415 +564.601 +64.697 -0.922905 -0.247219 +0.295166 +207907.237 0
8047 +484.415 +564.699 +64.579 -0.922972 +0.247328 -0.294883 +207908.580 0
8142 +484.482 +564.768 +64.527 -0.588252 +0.588191 -0.554968 +207904.982 0
8054 +484.498 +564.677 +64.468 -0.508953 +0.136287 -0.849935 +207907.012 0
8144 +484.551 +564.835 +64.579 -0.247293 +0.922921 -0.295053 +207905.590 0
8041 +484.465 +564.515 +64.579 -0.675725 -0.675622 -0.294830 +207907.612 0
8137 +484.439 +564.607 +64.527 -0.803602 -0.215311 -0.554856 +207903.703 0
8136 +484.525 +564.575 +64.468 -0.372644 -0.372556 -0.849906 +207908.429 0
8132 +484.573 +564.752 +64.468 -0.136439 +0.508760 -0.850029 +207903.093 0
8133 +484.557 +564.489 +64.527 -0.215432 -0.803547 -0.554888 +207906.810 0
8145 +484.643 +564.811 +64.527 +0.215262 +0.803438 -0.555112 +207904.667 0
8138 +484.600 +564.650 +64.438 -0.000153 -0.000099 -1.000000 +207908.112 0
8064 +484.735 +564.785 +64.578 +0.675634 +0.675564 -0.295170 +207906.020 0
8139 +484.702 +564.623 +64.468 +0.508692 -0.136455 -0.850065 +207905.407 0
8066 +484.674 +564.724 +64.468 +0.372383 +0.372388 -0.850094 +207907.136 0
8140 +484.627 +564.548 +64.468 +0.136178 -0.508928 -0.849971 +207905.486 0
8135 +484.649 +564.465 +64.579 +0.247203 -0.922979 -0.294947 +207907.685 0
8134 +484.718 +564.532 +64.527 +0.588082 -0.588301 -0.555032 +207908.561 0
8131 +484.761 +564.693 +64.527 +0.803431 +0.215201 -0.555144 +207907.791 0
8143 +484.785 +564.601 +64.579 +0.922882 -0.247386 -0.295117 +207908.132 0
808988794 11 6 +484.600 +564.650 +74.310 +0.999918 -0.007414 +0.004749 -0.009321 +37958.413 0 31
11746 +484.761 +564.607 +74.421 +0.803578 -0.215292 +0.554898 +207961.138 0
11742 +484.551 +564.465 +74.369 -0.247312 -0.922898 +0.295129 +207959.467 0
11748 +484.735 +564.515 +74.369 +0.675638 -0.675650 +0.294963 +207960.543 0
11758 +484.785 +564.699 +74.369 +0.922995 +0.247277 +0.294834 +207958.410 0
11722 +484.718 +564.768 +74.421 +0.588331 +0.588222 +0.554852 +207958.083 0
11751 +484.643 +564.489 +74.421 +0.215341 -0.803462 +0.555046 +207961.471 0
11752 +484.649 +564.835 +74.369 +0.247402 +0.922956 +0.294871 +207960.372 0
11723 +484.482 +564.532 +74.421 -0.588161 -0.588112 +0.555148 +207961.628 0
11718 +484.557 +564.811 +74.421 -0.215171 +0.803571 +0.554954 +207959.736 0
11730 +484.439 +564.693 +74.421 -0.803407 +0.215402 +0.555102 +207962.015 0
11747 +484.465 +564.785 +74.369 -0.675548 +0.675708 +0.295037 +207959.559 0
11741 +484.415 +564.601 +74.369 -0.922905 -0.247219 +0.295166 +207959.936 0
7539 +484.415 +564.699 +74.251 -0.922972 +0.247328 -0.294883 +207959.594 0
7541 +484.482 +564.768 +74.199 -0.588252 +0.588191 -0.554968 +207960.281 0
7542 +484.498 +564.677 +74.140 -0.508953 +0.136287 -0.849935 +207958.826 0
7548 +484.551 +564.835 +74.251 -0.247293 +0.922921 -0.295053 +207957.592 0
7456 +484.465 +564.515 +74.251 -0.675725 -0.675622 -0.294830 +207960.823 0
7451 +484.439 +564.607 +74.199 -0.803602 -0.215311 -0.554856 +207960.207 0
7543 +484.525 +564.575 +74.140 -0.372644 -0.372556 -0.849906 +207960.852 0
7538 +484.573 +564.752 +74.140 -0.136439 +0.508760 -0.850029 +207958.969 0
7549 +484.557 +564.489 +74.199 -0.215432 -0.803547 -0.554888 +207961.800 0
7546 +484.643 +564.811 +74.199 +0.215262 +0.803438 -0.555112 +207960.697 0
7453 +484.600 +564.650 +74.110 -0.000153 -0.000099 -1.000000 +207959.359 0
7550 +484.735 +564.785 +74.251 +0.675634 +0.675564 -0.295170 +207957.190 0
7452 +484.702 +564.623 +74.140 +0.508692 -0.136455 -0.850065 +207959.735 0
7537 +484.674 +564.724 +74.140 +0.372383 +0.372388 -0.850094 +207961.874 0
7463 +484.627 +564.548 +74.140 +0.136178 -0.508928 -0.849971 +207958.398 0
7551 +484.649 +564.465 +74.251 +0.247203 -0.922979 -0.294947 +207958.317 0
7457 +484.718 +564.532 +74.199 +0.588082 -0.588301 -0.555032 +207960.193 0
7449 +484.761 +564.693 +74.199 +0.803431 +0.215201 -0.555144 +207960.238 0
7450 +484.785 +564.601 +74.251 +0.922882 -0.247386 -0.295117 +207958.868 0
808963149 11 7 +484.600 +564.650 +85.479 +0.999821 +0.004988 +0.001064 -0.018206 +38022.333 0 31
7997 +484.761 +564.607 +85.590 +0.803578 -0.215292 +0.554898 +208025.723 0
7999 +484.551 +564.465 +85.538 -0.247312 -0.922898 +0.295129 +208024.415 0
7998 +484.735 +564.515 +85.538 +0.675638 -0.675650 +0.294963 +208026.264 0
7991 +484.785 +564.699 +85.538 +0.922995 +0.247277 +0.294834 +208024.114 0
7992 +484.718 +564.768 +85.590 +0.588331 +0.588222 +0.554852 +208026.280 0
7993 +484.643 +564.489 +85.590 +0.215341 -0.803462 +0.555046 +208024.548 0
7996 +484.649 +564.835 +85.538 +0.247402 +0.922956 +0.294871 +208026.725 0
7995 +484.482 +564.532 +85.590 -0.588161 -0.588112 +0.555148 +208026.611 0
8000 +484.557 +564.811 +85.590 -0.215171 +0.803571 +0.554954 +208025.634 0
7986 +484.439 +564.693 +85.590 -0.803407 +0.215402 +0.555102 +208024.668 0
8109 +484.465 +564.785 +85.538 -0.675548 +0.675708 +0.295037 +208025.284 0
7987 +484.415 +564.601 +85.538 -0.922905 -0.247219 +0.295166 +208026.174 0
11608 +484.415 +564.699 +85.420 -0.922972 +0.247328 -0.294883 +208022.370 0
11605 +484.482 +564.768 +85.368 -0.588252 +0.588191 -0.554968 +208021.358 0
8153 +484.498 +564.677 +85.309 -0.508953 +0.136287 -0.849935 +208022.124 0
8050 +484.551 +564.835 +85.420 -0.247293 +0.922921 -0.295053 +208023.573 0
8151 +484.465 +564.515 +85.420 -0.675725 -0.675622 -0.294830 +208021.685 0
8147 +484.439 +564.607 +85.368 -0.803602 -0.215311 -0.554856 +208023.351 0
11756 +484.525 +564.575 +85.309 -0.372644 -0.372556 -0.849906 +208022.561 0
8053 +484.573 +564.752 +85.309 -0.136439 +0.508760 -0.850029 +208022.285 0
8154 +484.557 +564.489 +85.368 -0.215432 -0.803547 -0.554888 +208023.473 0
8052 +484.643 +564.811 +85.368 +0.215262 +0.803438 -0.555112 +208025.135 0
11595 +484.600 +564.650 +85.279 -0.000153 -0.000099 -1.000000 +208021.128 0
11583 +484.735 +564.785 +85.420 +0.675634 +0.675564 -0.295170 +208023.041 0
7994 +484.702 +564.623 +85.309 +0.508692 -0.136455 -0.850065 +208023.663 0
8118 +484.674 +564.724 +85.309 +0.372383 +0.372388 -0.850094 +208021.960 0
7988 +484.627 +564.548 +85.309 +0.136178 -0.508928 -0.849971 +208024.560 0
7989 +484.649 +564.465 +85.420 +0.247203 -0.922979 -0.294947 +208021.904 0
8103 +484.718 +564.532 +85.368 +0.588082 -0.588301 -0.555032 +208024.141 0
11586 +484.761 +564.693 +85.368 +0.803431 +0.215201 -0.555144 +208022.450 0
11600 +484.785 +564.601 +85.420 +0.922882 -0.247386 -0.295117 +208022.780 0
808979185 11 8 +484.600 +564.650 +95.182 +0.999954 +0.001524 +0.005302 -0.007859 +38073.156 0 31
9833 +484.761 +564.607 +95.293 +0.803578 -0.215292 +0.554898 +208079.609 0
9829 +484.551 +564.465 +95.241 -0.247312 -0.922898 +0.295129 +208076.087 0
9821 +484.735 +564.515 +95.241 +0.675638 -0.675650 +0.294963 +208076.202 0
9827 +484.785 +564.699 +95.241 +0.922995 +0.247277 +0.294834 +208075.882 0
9786 +484.718 +564.768 +95.293 +0.588331 +0.588222 +0.554852 +208078.594 0
9816 +484.643 +564.489 +95.293 +0.215341 -0.803462 +0.555046 +208075.712 0
9797 +484.649 +564.835 +95.241 +0.247402 +0.922956 +0.294871 +208078.917 0
9810 +484.482 +564.532 +95.293 -0.588161 -0.588112 +0.555148 +208075.042 0
9834 +484.557 +564.811 +95.293 -0.215171 +0.803571 +0.554954 +208074.664 0
9835 +484.439 +564.693 +95.293 -0.803407 +0.215402 +0.555102 +208075.643 0
9793 +484.465 +564.785 +95.241 -0.675548 +0.675708 +0.295037 +208077.920 0
9826 +484.415 +564.601 +95.241 -0.922905 -0.247219 +0.295166 +208074.962 0
12579 +484.415 +564.699 +95.123 -0.922972 +0.247328 -0.294883 +208072.993 0
12573 +484.482 +564.768 +95.071 -0.588252 +0.588191 -0.554968 +208074.259 0
12531 +484.498 +564.677 +95.012 -0.508953 +0.136287 -0.849935 +208074.035 0
12537 +484.551 +564.835 +95.123 -0.247293 +0.922921 -0.295053 +208074.933 0
12580 +484.465 +564.515 +95.123 -0.675725 -0.675622 -0.294830 +208074.704 0
12578 +484.439 +564.607 +95.071 -0.803602 -0.215311 -0.554856 +208070.200 0
12518 +484.525 +564.575 +95.012 -0.372644 -0.372556 -0.849906 +208071.167 0
12517 +484.573 +564.752 +95.012 -0.136439 +0.508760 -0.850029 +208071.478 0
12532 +484.557 +564.489 +95.071 -0.215432 -0.803547 -0.554888 +208072.855 0
12538 +484.643 +564.811 +95.071 +0.215262 +0.803438 -0.555112 +208073.461 0
12534 +484.600 +564.650 +94.982 -0.000153 -0.000099 -1.000000 +208072.199 0
12535 +484.735 +564.785 +95.123 +0.675634 +0.675564 -0.295170 +208075.523 0
12526 +484.702 +564.623 +95.012 +0.508692 -0.136455 -0.850065 +208072.146 0
12571 +484.674 +564.724 +95.012 +0.372383 +0.372388 -0.850094 +208074.803 0
12539 +484.627 +564.548 +95.012 +0.136178 -0.508928 -0.849971 +208075.163 0
12575 +484.649 +564.465 +95.123 +0.247203 -0.922979 -0.294947 +208076.181 0
9943 +484.718 +564.532 +95.071 +0.588082 -0.588301 -0.555032 +208074.902 0
9849 +484.761 +564.693 +95.071 +0.803431 +0.215201 -0.555144 +208073.234 0
9843 +484.785 +564.601 +95.123 +0.922882 -0.247386 -0.295117 +208074.531 0
808987016 11 9 +484.600 +564.650 +104.130 +0.999864 -0.013904 +0.008453 +0.002579 +38125.879 0 31
12355 +484.761 +564.607 +104.241 +0.803578 -0.215292 +0.554898 +208131.817 0
12352 +484.551 +564.465 +104.189 -0.247312 -0.922898 +0.295129 +208129.737 0
12428 +484.735 +564.515 +104.189 +0.675638 -0.675650 +0.294963 +208124.910 0
12431 +484.785 +564.699 +104.189 +0.922995 +0.247277 +0.294834 +208125.488 0
12422 +484.718 +564.768 +104.241 +0.588331 +0.588222 +0.554852 +208128.511 0
12433 +484.643 +564.489 +104.241 +0.215341 -0.803462 +0.555046 +208127.302 0
12430 +484.649 +564.835 +104.189 +0.247402 +0.922956 +0.294871 +208125.129 0
12423 +484.482 +564.532 +104.241 -0.588161 -0.588112 +0.555148 +208125.548 0
12421 +484.557 +564.811 +104.241 -0.215171 +0.803571 +0.554954 +208126.320 0
7544 +484.439 +564.693 +104.241 -0.803407 +0.215402 +0.555102 +208129.105 0
7540 +484.465 +564.785 +104.189 -0.675548 +0.675708 +0.295037 +208129.961 0
7547 +484.415 +564.601 +104.189 -0.922905 -0.247219 +0.295166 +208127.924 0
15247 +484.415 +564.699 +104.071 -0.922972 +0.247328 -0.294883 +208125.428 0
15248 +484.482 +564.768 +104.019 -0.588252 +0.588191 -0.554968 +208127.772 0
15242 +484.498 +564.677 +103.960 -0.508953 +0.136287 -0.849935 +208127.936 0
15241 +484.551 +564.835 +104.071 -0.247293 +0.922921 -0.295053 +208128.430 0
12439 +484.465 +564.515 +104.071 -0.675725 -0.675622 -0.294830 +208126.056 0
15252 +484.439 +564.607 +104.019 -0.803602 -0.215311 -0.554856 +208129.243 0
15259 +484.525 +564.575 +103.960 -0.372644 -0.372556 -0.849906 +208126.260 0
12450 +484.573 +564.752 +103.960 -0.136439 +0.508760 -0.850029 +208123.850 0
12449 +484.557 +564.489 +104.019 -0.215432 -0.803547 -0.554888 +208124.657 0
12437 +484.643 +564.811 +104.019 +0.215262 +0.803438 -0.555112 +208127.619 0
12441 +484.600 +564.650 +103.930 -0.000153 -0.000099 -1.000000 +208124.987 0
12446 +484.735 +564.785 +104.071 +0.675634 +0.675564 -0.295170 +208126.413 0
15246 +484.702 +564.623 +103.960 +0.508692 -0.136455 -0.850065 +208126.159 0
15255 +484.674 +564.724 +103.960 +0.372383 +0.372388 -0.850094 +208126.680 0
12447 +484.627 +564.548 +103.960 +0.136178 -0.508928 -0.849971 +208126.302 0
15253 +484.649 +564.465 +104.071 +0.247203 -0.922979 -0.294947 +208126.310 0
12448 +484.718 +564.532 +104.019 +0.588082 -0.588301 -0.555032 +208126.031 0
12436 +484.761 +564.693 +104.019 +0.803431 +0.215201 -0.555144 +208123.976 0
8115 +484.785 +564.601 +104.071 +0.922882 -0.247386 -0.295117 +208125.703 0
808475060 11 10 +484.600 +564.650 +113.813 +0.999327 -0.012881 -0.002352 +0.034270 +38180.388 0 31
8209 +484.761 +564.607 +113.924 +0.803578 -0.215292 +0.554898 +208182.336 0
8202 +484.551 +564.465 +113.872 -0.247312 -0.922898 +0.295129 +208181.984 0
8206 +484.735 +564.515 +113.872 +0.675638 -0.675650 +0.294963 +208181.042 0
8233 +484.785 +564.699 +113.872 +0.922995 +0.247277 +0.294834 +208183.122 0
8201 +484.718 +564.768 +113.924 +0.588331 +0.588222 +0.554852 +208180.922 0
8215 +484.643 +564.489 +113.924 +0.215341 -0.803462 +0.555046 +208180.914 0
8213 +484.649 +564.835 +113.872 +0.247402 +0.922956 +0.294871 +208182.395 0
8207 +484.482 +564.532 +113.924 -0.588161 -0.588112 +0.555148 +208184.696 0
8205 +484.557 +564.811 +113.924 -0.215171 +0.803571 +0.554954 +208186.006 0
12346 +484.439 +564.693 +113.924 -0.803407 +0.215402 +0.555102 +208179.952 0
12356 +484.465 +564.785 +113.872 -0.675548 +0.675708 +0.295037 +208184.116 0
8226 +484.415 +564.601 +113.872 -0.922905 -0.247219 +0.295166 +208184.184 0
12012 +484.415 +564.699 +113.754 -0.922972 +0.247328 -0.294883 +208183.909 0
11901 +484.482 +564.768 +113.702 -0.588252 +0.588191 -0.554968 +208181.638 0
12008 +484.498 +564.677 +113.643 -0.508953 +0.136287 -0.849935 +208179.830 0
11900 +484.551 +564.835 +113.754 -0.247293 +0.922921 -0.295053 +208182.376 0
12004 +484.465 +564.515 +113.754 -0.675725 -0.675622 -0.294830 +208181.536 0
11899 +484.439 +564.607 +113.702 -0.803602 -0.215311 -0.554856 +208178.810 0
12002 +484.525 +564.575 +113.643 -0.372644 -0.372556 -0.849906 +208180.787 0
11898 +484.573 +564.752 +113.643 -0.136439 +0.508760 -0.850029 +208181.859 0
12011 +484.557 +564.489 +113.702 -0.215432 -0.803547 -0.554888 +208183.974 0
11895 +484.643 +564.811 +113.702 +0.215262 +0.803438 -0.555112 +208181.633 0
12003 +484.600 +564.650 +113.613 -0.000153 -0.000099 -1.000000 +208179.515 0
12007 +484.735 +564.785 +113.754 +0.675634 +0.675564 -0.295170 +208180.651 0
11904 +484.702 +564.623 +113.643 +0.508692 -0.136455 -0.850065 +208181.419 0
11908 +484.674 +564.724 +113.643 +0.372383 +0.372388 -0.850094 +208181.459 0
11907 +484.627 +564.548 +113.643 +0.136178 -0.508928 -0.849971 +208181.689 0
11903 +484.649 +564.465 +113.754 +0.247203 -0.922979 -0.294947 +208180.292 0
11902 +484.718 +564.532 +113.702 +0.588082 -0.588301 -0.555032 +208180.436 0
11909 +484.761 +564.693 +113.702 +0.803431 +0.215201 -0.555144 +208181.139 0
11910 +484.785 +564.601 +113.754 +0.922882 -0.247386 -0.295117 +208183.375 0
808976933 11 11 +484.600 +564.650 +122.801 +0.999925 +0.003744 +0.005740 -0.010168 +38232.098 0 31
9792 +484.761 +564.607 +122.912 +0.803578 -0.215292 +0.554898 +208237.552 0
9791 +484.551 +564.465 +122.860 -0.247312 -0.922898 +0.295129 +208236.503 0
9798 +484.735 +564.515 +122.860 +0.675638 -0.675650 +0.294963 +208235.710 0
9799 +484.785 +564.699 +122.860 +0.922995 +0.247277 +0.294834 +208237.260 0
9817 +484.718 +564.768 +122.912 +0.588331 +0.588222 +0.554852 +208234.489 0
9824 +484.643 +564.489 +122.912 +0.215341 -0.803462 +0.555046 +208233.056 0
9828 +484.649 +564.835 +122.860 +0.247402 +0.922956 +0.294871 +208233.422 0
9830 +484.482 +564.532 +122.912 -0.588161 -0.588112 +0.555148 +208233.552 0
9822 +484.557 +564.811 +122.912 -0.215171 +0.803571 +0.554954 +208234.701 0
9840 +484.439 +564.693 +122.912 -0.803407 +0.215402 +0.555102 +208234.273 0
9348 +484.465 +564.785 +122.860 -0.675548 +0.675708 +0.295037 +208233.860 0
9341 +484.415 +564.601 +122.860 -0.922905 -0.247219 +0.295166 +208232.325 0
9285 +484.415 +564.699 +122.742 -0.922972 +0.247328 -0.294883 +208232.681 0
9276 +484.482 +564.768 +122.690 -0.588252 +0.588191 -0.554968 +208232.087 0
9284 +484.498 +564.677 +122.631 -0.508953 +0.136287 -0.849935 +208233.876 0
9283 +484.551 +564.835 +122.742 -0.247293 +0.922921 -0.295053 +208233.653 0
9289 +484.465 +564.515 +122.742 -0.675725 -0.675622 -0.294830 +208233.239 0
9288 +484.439 +564.607 +122.690 -0.803602 -0.215311 -0.554856 +208233.851 0
9294 +484.525 +564.575 +122.631 -0.372644 -0.372556 -0.849906 +208231.167 0
9336 +484.573 +564.752 +122.631 -0.136439 +0.508760 -0.850029 +208232.193 0
9338 +484.557 +564.489 +122.690 -0.215432 -0.803547 -0.554888 +208232.317 0
9342 +484.643 +564.811 +122.690 +0.215262 +0.803438 -0.555112 +208232.831 0
9344 +484.600 +564.650 +122.601 -0.000153 -0.000099 -1.000000 +208230.466 0
9349 +484.735 +564.785 +122.742 +0.675634 +0.675564 -0.295170 +208234.701 0
9941 +484.702 +564.623 +122.631 +0.508692 -0.136455 -0.850065 +208233.290 0
9944 +484.674 +564.724 +122.631 +0.372383 +0.372388 -0.850094 +208233.530 0
9950 +484.627 +564.548 +122.631 +0.136178 -0.508928 -0.849971 +208231.390 0
9277 +484.649 +564.465 +122.742 +0.247203 -0.922979 -0.294947 +208232.812 0
9355 +484.718 +564.532 +122.690 +0.588082 -0.588301 -0.555032 +208233.342 0
9282 +484.761 +564.693 +122.690 +0.803431 +0.215201 -0.555144 +208233.867 0
9281 +484.785 +564.601 +122.742 +0.922882 -0.247386 -0.295117 +208233.712 0
806469630 11 12 +484.600 +564.650 +132.403 +0.999623 +0.014655 -0.000642 +0.023206 +38284.696 0 31
15455 +484.761 +564.607 +132.514 +0.803578 -0.215292 +0.554898 +208288.166 0
11598 +484.551 +564.465 +132.462 -0.247312 -0.922898 +0.295129 +208288.358 0
15452 +484.735 +564.515 +132.462 +0.675638 -0.675650 +0.294963 +208286.356 0
15454 +484.785 +564.699 +132.462 +0.922995 +0.247277 +0.294834 +208288.936 0
11602 +484.718 +564.768 +132.514 +0.588331 +0.588222 +0.554852 +208286.748 0
11606 +484.643 +564.489 +132.514 +0.215341 -0.803462 +0.555046 +208286.558 0
11607 +484.649 +564.835 +132.462 +0.247402 +0.922956 +0.294871 +208286.602 0
11604 +484.482 +564.532 +132.514 -0.588161 -0.588112 +0.555148 +208285.010 0
11601 +484.557 +564.811 +132.514 -0.215171 +0.803571 +0.554954 +208285.955 0
11609 +484.439 +564.693 +132.514 -0.803407 +0.215402 +0.555102 +208284.539 0
11591 +484.465 +564.785 +132.462 -0.675548 +0.675708 +0.295037 +208287.326 0
11592 +484.415 +564.601 +132.462 -0.922905 -0.247219 +0.295166 +208286.038 0
8148 +484.415 +564.699 +132.344 -0.922972 +0.247328 -0.294883 +208286.362 0
8159 +484.482 +564.768 +132.292 -0.588252 +0.588191 -0.554968 +208286.401 0
8104 +484.498 +564.677 +132.233 -0.508953 +0.136287 -0.849935 +208288.034 0
11757 +484.551 +564.835 +132.344 -0.247293 +0.922921 -0.295053 +208283.959 0
8044 +484.465 +564.515 +132.344 -0.675725 -0.675622 -0.294830 +208287.859 0
8158 +484.439 +564.607 +132.292 -0.803602 -0.215311 -0.554856 +208286.035 0
8149 +484.525 +564.575 +132.233 -0.372644 -0.372556 -0.849906 +208286.333 0
8048 +484.573 +564.752 +132.233 -0.136439 +0.508760 -0.850029 +208286.347 0
8105 +484.557 +564.489 +132.292 -0.215432 -0.803547 -0.554888 +208286.543 0
8042 +484.643 +564.811 +132.292 +0.215262 +0.803438 -0.555112 +208286.223 0
8155 +484.600 +564.650 +132.203 -0.000153 -0.000099 -1.000000 +208286.366 0
8055 +484.735 +564.785 +132.344 +0.675634 +0.675564 -0.295170 +208287.377 0
8152 +484.702 +564.623 +132.233 +0.508692 -0.136455 -0.850065 +208285.539 0
8045 +484.674 +564.724 +132.233 +0.372383 +0.372388 -0.850094 +208284.055 0
8043 +484.627 +564.548 +132.233 +0.136178 -0.508928 -0.849971 +208286.050 0
8160 +484.649 +564.465 +132.344 +0.247203 -0.922979 -0.294947 +208286.166 0
8157 +484.718 +564.532 +132.292 +0.588082 -0.588301 -0.555032 +208284.693 0
8049 +484.761 +564.693 +132.292 +0.803431 +0.215201 -0.555144 +208284.527 0
8046 +484.785 +564.601 +132.344 +0.922882 -0.247386 -0.295117 +208287.938 0
808978694 11 13 +484.600 +564.650 +143.671 +0.999783 +0.016296 -0.005718 +0.011607 +38347.461 0 31
12529 +484.761 +564.607 +143.782 +0.803578 -0.215292 +0.554898 +208348.988 0
12516 +484.551 +564.465 +143.730 -0.247312 -0.922898 +0.295129 +208348.227 0
12574 +484.735 +564.515 +143.730 +0.675638 -0.675650 +0.294963 +208348.741 0
12530 +484.785 +564.699 +143.730 +0.922995 +0.247277 +0.294834 +208348.901 0
12522 +484.718 +564.768 +143.782 +0.588331 +0.588222 +0.554852 +208348.822 0
12523 +484.643 +564.489 +143.782 +0.215341 -0.803462 +0.555046 +208346.129 0
12521 +484.649 +564.835 +143.730 +0.247402 +0.922956 +0.294871 +208352.309 0
12524 +484.482 +564.532 +143.782 -0.588161 -0.588112 +0.555148 +208344.280 0
12572 +484.557 +564.811 +143.782 -0.215171 +0.803571 +0.554954 +208349.512 0
12525 +484.439 +564.693 +143.782 -0.803407 +0.215402 +0.555102 +208347.915 0
12536 +484.465 +564.785 +143.730 -0.675548 +0.675708 +0.295037 +208349.010 0
12519 +484.415 +564.601 +143.730 -0.922905 -0.247219 +0.295166 +208348.211 0
13124 +484.415 +564.699 +143.612 -0.922972 +0.247328 -0.294883 +208350.624 0
13117 +484.482 +564.768 +143.560 -0.588252 +0.588191 -0.554968 +208347.292 0
8350 +484.498 +564.677 +143.501 -0.508953 +0.136287 -0.849935 +208345.533 0
8349 +484.551 +564.835 +143.612 -0.247293 +0.922921 -0.295053 +208351.802 0
8355 +484.465 +564.515 +143.612 -0.675725 -0.675622 -0.294830 +208350.183 0
9182 +484.439 +564.607 +143.560 -0.803602 -0.215311 -0.554856 +208347.297 0
9181 +484.525 +564.575 +143.501 -0.372644 -0.372556 -0.849906 +208349.439 0
9188 +484.573 +564.752 +143.501 -0.136439 +0.508760 -0.850029 +208348.073 0
8309 +484.557 +564.489 +143.560 -0.215432 -0.803547 -0.554888 +208348.549 0
9193 +484.643 +564.811 +143.560 +0.215262 +0.803438 -0.555112 +208350.754 0
8457 +484.600 +564.650 +143.471 -0.000153 -0.000099 -1.000000 +208346.126 0
8345 +484.735 +564.785 +143.612 +0.675634 +0.675564 -0.295170 +208348.123 0
8460 +484.702 +564.623 +143.501 +0.508692 -0.136455 -0.850065 +208350.891 0
8456 +484.674 +564.724 +143.501 +0.372383 +0.372388 -0.850094 +208349.878 0
9218 +484.627 +564.548 +143.501 +0.136178 -0.508928 -0.849971 +208348.423 0
9224 +484.649 +564.465 +143.612 +0.247203 -0.922979 -0.294947 +208352.250 0
8406 +484.718 +564.532 +143.560 +0.588082 -0.588301 -0.555032 +208350.454 0
8467 +484.761 +564.693 +143.560 +0.803431 +0.215201 -0.555144 +208350.377 0
9229 +484.785 +564.601 +143.612 +0.922882 -0.247386 -0.295117 +208349.211 0
808978703 11 14 +484.600 +564.650 +153.173 +0.999890 -0.003742 -0.010037 -0.010236 +38400.218 0 31
8383 +484.761 +564.607 +153.284 +0.803578 -0.215292 +0.554898 +208402.539 0
8461 +484.551 +564.465 +153.232 -0.247312 -0.922898 +0.295129 +208401.324 0
8459 +484.735 +564.515 +153.232 +0.675638 -0.675650 +0.294963 +208402.387 0
8344 +484.785 +564.699 +153.232 +0.922995 +0.247277 +0.294834 +208401.547 0
8347 +484.718 +564.768 +153.284 +0.588331 +0.588222 +0.554852 +208403.536 0
8343 +484.643 +564.489 +153.284 +0.215341 -0.803462 +0.555046 +208403.699 0
8341 +484.649 +564.835 +153.232 +0.247402 +0.922956 +0.294871 +208401.028 0
8342 +484.482 +564.532 +153.284 -0.588161 -0.588112 +0.555148 +208404.834 0
8346 +484.557 +564.811 +153.284 -0.215171 +0.803571 +0.554954 +208404.080 0
8458 +484.439 +564.693 +153.284 -0.803407 +0.215402 +0.555102 +208400.934 0
8348 +484.465 +564.785 +153.232 -0.675548 +0.675708 +0.295037 +208402.334 0
8376 +484.415 +564.601 +153.232 -0.922905 -0.247219 +0.295166 +208400.063 0
12005 +484.415 +564.699 +153.114 -0.922972 +0.247328 -0.294883 +208402.367 0
12013 +484.482 +564.768 +153.062 -0.588252 +0.588191 -0.554968 +208398.557 0
12010 +484.498 +564.677 +153.003 -0.508953 +0.136287 -0.849935 +208403.452 0
12009 +484.551 +564.835 +153.114 -0.247293 +0.922921 -0.295053 +208400.963 0
12017 +484.465 +564.515 +153.114 -0.675725 -0.675622 -0.294830 +208404.323 0
12015 +484.439 +564.607 +153.062 -0.803602 -0.215311 -0.554856 +208399.615 0
12014 +484.525 +564.575 +153.003 -0.372644 -0.372556 -0.849906 +208400.355 0
12016 +484.573 +564.752 +153.003 -0.136439 +0.508760 -0.850029 +208399.834 0
12018 +484.557 +564.489 +153.062 -0.215432 -0.803547 -0.554888 +208401.387 0
9796 +484.643 +564.811 +153.062 +0.215262 +0.803438 -0.555112 +208401.783 0
11892 +484.600 +564.650 +152.973 -0.000153 -0.000099 -1.000000 +208401.541 0
11889 +484.735 +564.785 +153.114 +0.675634 +0.675564 -0.295170 +208398.231 0
9825 +484.702 +564.623 +153.003 +0.508692 -0.136455 -0.850065 +208400.868 0
9823 +484.674 +564.724 +153.003 +0.372383 +0.372388 -0.850094 +208398.608 0
9787 +484.627 +564.548 +153.003 +0.136178 -0.508928 -0.849971 +208402.693 0
9800 +484.649 +564.465 +153.114 +0.247203 -0.922979 -0.294947 +208404.680 0
9809 +484.718 +564.532 +153.062 +0.588082 -0.588301 -0.555032 +208403.199 0
9803 +484.761 +564.693 +153.062 +0.803431 +0.215201 -0.555144 +208402.360 0
9802 +484.785 +564.601 +153.114 +0.922882 -0.247386 -0.295117 +208403.727 0
806472265 11 15 +484.600 +564.650 +162.091 +0.998840 -0.033682 +0.033273 -0.008769 +38454.699 0 31
7454 +484.761 +564.607 +162.202 +0.803578 -0.215292 +0.554898 +208457.693 0
7458 +484.551 +564.465 +162.150 -0.247312 -0.922898 +0.295129 +208458.003 0
7464 +484.735 +564.515 +162.150 +0.675638 -0.675650 +0.294963 +208457.052 0
7459 +484.785 +564.699 +162.150 +0.922995 +0.247277 +0.294834 +208456.071 0
7460 +484.718 +564.768 +162.202 +0.588331 +0.588222 +0.554852 +208459.859 0
7461 +484.643 +564.489 +162.202 +0.215341 -0.803462 +0.555046 +208456.181 0
7455 +484.649 +564.835 +162.150 +0.247402 +0.922956 +0.294871 +208457.441 0
7462 +484.482 +564.532 +162.202 -0.588161 -0.588112 +0.555148 +208456.121 0
9107 +484.557 +564.811 +162.202 -0.215171 +0.803571 +0.554954 +208457.351 0
9108 +484.439 +564.693 +162.202 -0.803407 +0.215402 +0.555102 +208457.289 0
8451 +484.465 +564.785 +162.150 -0.675548 +0.675708 +0.295037 +208456.534 0
8407 +484.415 +564.601 +162.150 -0.922905 -0.247219 +0.295166 +208457.131 0
9772 +484.415 +564.699 +162.032 -0.922972 +0.247328 -0.294883 +208456.805 0
9775 +484.482 +564.768 +161.980 -0.588252 +0.588191 -0.554968 +208455.551 0
9764 +484.498 +564.677 +161.921 -0.508953 +0.136287 -0.849935 +208454.440 0
9760 +484.551 +564.835 +162.032 -0.247293 +0.922921 -0.295053 +208456.095 0
9767 +484.465 +564.515 +162.032 -0.675725 -0.675622 -0.294830 +208454.605 0
9759 +484.439 +564.607 +161.980 -0.803602 -0.215311 -0.554856 +208453.089 0
9765 +484.525 +564.575 +161.921 -0.372644 -0.372556 -0.849906 +208456.102 0
9776 +484.573 +564.752 +161.921 -0.136439 +0.508760 -0.850029 +208453.353 0
9668 +484.557 +564.489 +161.980 -0.215432 -0.803547 -0.554888 +208452.843 0
9665 +484.643 +564.811 +161.980 +0.215262 +0.803438 -0.555112 +208456.736 0
9762 +484.600 +564.650 +161.891 -0.000153 -0.000099 -1.000000 +208454.833 0
9755 +484.735 +564.785 +162.032 +0.675634 +0.675564 -0.295170 +208457.180 0
9763 +484.702 +564.623 +161.921 +0.508692 -0.136455 -0.850065 +208455.729 0
9766 +484.674 +564.724 +161.921 +0.372383 +0.372388 -0.850094 +208455.312 0
9769 +484.627 +564.548 +161.921 +0.136178 -0.508928 -0.849971 +208458.354 0
9771 +484.649 +564.465 +162.032 +0.247203 -0.922979 -0.294947 +208457.031 0
12528 +484.718 +564.532 +161.980 +0.588082 -0.588301 -0.555032 +208453.177 0
12527 +484.761 +564.693 +161.980 +0.803431 +0.215201 -0.555144 +208454.608 0
9770 +484.785 +564.601 +162.032 +0.922882 -0.247386 -0.295117 +208457.585 0
808977572 11 16 +484.600 +564.650 +171.723 +0.999740 -0.022761 -0.000089 +0.001572 +38506.060 0 31
9942 +484.761 +564.607 +171.834 +0.803578 -0.215292 +0.554898 +208510.494 0
9855 +484.551 +564.465 +171.782 -0.247312 -0.922898 +0.295129 +208508.104 0
9846 +484.735 +564.515 +171.782 +0.675638 -0.675650 +0.294963 +208509.790 0
9854 +484.785 +564.699 +171.782 +0.922995 +0.247277 +0.294834 +208508.671 0
9852 +484.718 +564.768 +171.834 +0.588331 +0.588222 +0.554852 +208507.390 0
9853 +484.643 +564.489 +171.834 +0.215341 -0.803462 +0.555046 +208509.169 0
9858 +484.649 +564.835 +171.782 +0.247402 +0.922956 +0.294871 +208509.667 0
9851 +484.482 +564.532 +171.834 -0.588161 -0.588112 +0.555148 +208505.898 0
9848 +484.557 +564.811 +171.834 -0.215171 +0.803571 +0.554954 +208507.812 0
9847 +484.439 +564.693 +171.834 -0.803407 +0.215402 +0.555102 +208507.396 0
9842 +484.465 +564.785 +171.782 -0.675548 +0.675708 +0.295037 +208507.648 0
9841 +484.415 +564.601 +171.782 -0.922905 -0.247219 +0.295166 +208507.104 0
8294 +484.415 +564.699 +171.664 -0.922972 +0.247328 -0.294883 +208508.845 0
8296 +484.482 +564.768 +171.612 -0.588252 +0.588191 -0.554968 +208506.263 0
8305 +484.498 +564.677 +171.553 -0.508953 +0.136287 -0.849935 +208509.097 0
9189 +484.551 +564.835 +171.664 -0.247293 +0.922921 -0.295053 +208507.842 0
8293 +484.465 +564.515 +171.664 -0.675725 -0.675622 -0.294830 +208506.418 0
8298 +484.439 +564.607 +171.612 -0.803602 -0.215311 -0.554856 +208506.732 0
9669 +484.525 +564.575 +171.553 -0.372644 -0.372556 -0.849906 +208505.185 0
9670 +484.573 +564.752 +171.553 -0.136439 +0.508760 -0.850029 +208507.355 0
9662 +484.557 +564.489 +171.612 -0.215432 -0.803547 -0.554888 +208508.291 0
9661 +484.643 +564.811 +171.612 +0.215262 +0.803438 -0.555112 +208505.741 0
9664 +484.600 +564.650 +171.523 -0.000153 -0.000099 -1.000000 +208507.142 0
9774 +484.735 +564.785 +171.664 +0.675634 +0.675564 -0.295170 +208508.653 0
9777 +484.702 +564.623 +171.553 +0.508692 -0.136455 -0.850065 +208507.260 0
9768 +484.674 +564.724 +171.553 +0.372383 +0.372388 -0.850094 +208505.691 0
9773 +484.627 +564.548 +171.553 +0.136178 -0.508928 -0.849971 +208507.646 0
9780 +484.649 +564.465 +171.664 +0.247203 -0.922979 -0.294947 +208507.435 0
9779 +484.718 +564.532 +171.612 +0.588082 -0.588301 -0.555032 +208509.463 0
9761 +484.761 +564.693 +171.612 +0.803431 +0.215201 -0.555144 +208507.428 0
9778 +484.785 +564.601 +171.664 +0.922882 -0.247386 -0.295117 +208506.648 0
808997243 11 17 +484.600 +564.650 +180.570 +0.999986 +0.002505 -0.004416 -0.001641 +38559.797 0 31
15376 +484.761 +564.607 +180.681 +0.803578 -0.215292 +0.554898 +208563.037 0
15417 +484.551 +564.465 +180.629 -0.247312 -0.922898 +0.295129 +208563.234 0
15410 +484.735 +564.515 +180.629 +0.675638 -0.675650 +0.294963 +208564.519 0
15412 +484.785 +564.699 +180.629 +0.922995 +0.247277 +0.294834 +208563.158 0
15418 +484.718 +564.768 +180.681 +0.588331 +0.588222 +0.554852 +208562.265 0
15413 +484.643 +564.489 +180.681 +0.215341 -0.803462 +0.555046 +208564.005 0
15405 +484.649 +564.835 +180.629 +0.247402 +0.922956 +0.294871 +208562.467 0
15416 +484.482 +564.532 +180.681 -0.588161 -0.588112 +0.555148 +208560.419 0
15411 +484.557 +564.811 +180.681 -0.215171 +0.803571 +0.554954 +208561.456 0
15384 +484.439 +564.693 +180.681 -0.803407 +0.215402 +0.555102 +208563.894 0
15408 +484.465 +564.785 +180.629 -0.675548 +0.675708 +0.295037 +208564.419 0
15409 +484.415 +564.601 +180.629 -0.922905 -0.247219 +0.295166 +208562.927 0
9194 +484.415 +564.699 +180.511 -0.922972 +0.247328 -0.294883 +208561.275 0
9195 +484.482 +564.768 +180.459 -0.588252 +0.588191 -0.554968 +208559.453 0
8301 +484.498 +564.677 +180.400 -0.508953 +0.136287 -0.849935 +208559.636 0
9200 +484.551 +564.835 +180.511 -0.247293 +0.922921 -0.295053 +208559.300 0
9187 +484.465 +564.515 +180.511 -0.675725 -0.675622 -0.294830 +208560.568 0
9190 +484.439 +564.607 +180.459 -0.803602 -0.215311 -0.554856 +208557.591 0
8304 +484.525 +564.575 +180.400 -0.372644 -0.372556 -0.849906 +208559.057 0
9199 +484.573 +564.752 +180.400 -0.136439 +0.508760 -0.850029 +208560.829 0
8300 +484.557 +564.489 +180.459 -0.215432 -0.803547 -0.554888 +208557.589 0
9183 +484.643 +564.811 +180.459 +0.215262 +0.803438 -0.555112 +208558.463 0
8310 +484.600 +564.650 +180.370 -0.000153 -0.000099 -1.000000 +208556.859 0
9186 +484.735 +564.785 +180.511 +0.675634 +0.675564 -0.295170 +208558.039 0
8297 +484.702 +564.623 +180.400 +0.508692 -0.136455 -0.850065 +208558.965 0
9192 +484.674 +564.724 +180.400 +0.372383 +0.372388 -0.850094 +208560.846 0
8303 +484.627 +564.548 +180.400 +0.136178 -0.508928 -0.849971 +208559.714 0
8299 +484.649 +564.465 +180.511 +0.247203 -0.922979 -0.294947 +208558.352 0
9191 +484.718 +564.532 +180.459 +0.588082 -0.588301 -0.555032 +208560.878 0
8302 +484.761 +564.693 +180.459 +0.803431 +0.215201 -0.555144 +208561.255 0
9184 +484.785 +564.601 +180.511 +0.922882 -0.247386 -0.295117 +208558.896 0
808976219 11 18 +484.600 +564.650 +190.731 +0.999548 -0.003929 -0.014826 +0.025852 +38612.328 0 31
9892 +484.761 +564.607 +190.842 +0.803578 -0.215292 +0.554898 +208612.930 0
9897 +484.551 +564.465 +190.790 -0.247312 -0.922898 +0.295129 +208613.439 0
9891 +484.735 +564.515 +190.790 +0.675638 -0.675650 +0.294963 +208615.099 0
9815 +484.785 +564.699 +190.790 +0.922995 +0.247277 +0.294834 +208616.764 0
9896 +484.718 +564.768 +190.842 +0.588331 +0.588222 +0.554852 +208615.303 0
9898 +484.643 +564.489 +190.842 +0.215341 -0.803462 +0.555046 +208612.732 0
9883 +484.649 +564.835 +190.790 +0.247402 +0.922956 +0.294871 +208614.557 0
9820 +484.482 +564.532 +190.842 -0.588161 -0.588112 +0.555148 +208613.856 0
9879 +484.557 +564.811 +190.842 -0.215171 +0.803571 +0.554954 +208616.428 0
9818 +484.439 +564.693 +190.842 -0.803407 +0.215402 +0.555102 +208612.001 0
9899 +484.465 +564.785 +190.790 -0.675548 +0.675708 +0.295037 +208613.131 0
9814 +484.415 +564.601 +190.790 -0.922905 -0.247219 +0.295166 +208613.566 0
12432 +484.415 +564.699 +190.672 -0.922972 +0.247328 -0.294883 +208614.275 0
12440 +484.482 +564.768 +190.620 -0.588252 +0.588191 -0.554968 +208612.902 0
12435 +484.498 +564.677 +190.561 -0.508953 +0.136287 -0.849935 +208615.153 0
12426 +484.551 +564.835 +190.672 -0.247293 +0.922921 -0.295053 +208612.615 0
12359 +484.465 +564.515 +190.672 -0.675725 -0.675622 -0.294830 +208612.529 0
12343 +484.439 +564.607 +190.620 -0.803602 -0.215311 -0.554856 +208608.554 0
12342 +484.525 +564.575 +190.561 -0.372644 -0.372556 -0.849906 +208614.325 0
12354 +484.573 +564.752 +190.561 -0.136439 +0.508760 -0.850029 +208611.440 0
12347 +484.557 +564.489 +190.620 -0.215432 -0.803547 -0.554888 +208612.406 0
12360 +484.643 +564.811 +190.620 +0.215262 +0.803438 -0.555112 +208613.591 0
12348 +484.600 +564.650 +190.531 -0.000153 -0.000099 -1.000000 +208611.711 0
12351 +484.735 +564.785 +190.672 +0.675634 +0.675564 -0.295170 +208612.103 0
12350 +484.702 +564.623 +190.561 +0.508692 -0.136455 -0.850065 +208614.373 0
12434 +484.674 +564.724 +190.561 +0.372383 +0.372388 -0.850094 +208613.396 0
12427 +484.627 +564.548 +190.561 +0.136178 -0.508928 -0.849971 +208613.609 0
12429 +484.649 +564.465 +190.672 +0.247203 -0.922979 -0.294947 +208614.010 0
12357 +484.718 +564.532 +190.620 +0.588082 -0.588301 -0.555032 +208615.250 0
12349 +484.761 +564.693 +190.620 +0.803431 +0.215201 -0.555144 +208614.438 0
12341 +484.785 +564.601 +190.672 +0.922882 -0.247386 -0.295117 +208614.616 0
808476701 11 0 +484.600 +564.650 +0.910 +1.000000 +0.000000 +0.000000 +0.000000 -50000.000 0 0
808961448 10 1 +464.400 +564.700 +27.633 +0.999341 -0.014573 -0.023518 -0.023498 +37478.734 0 31
13424 +464.564 +564.729 +27.744 +0.819300 +0.144467 +0.554866 +207480.949 0
13426 +464.433 +564.512 +27.692 +0.165863 -0.940946 +0.295152 +207480.500 0
13439 +464.580 +564.635 +27.692 +0.897874 -0.326839 +0.294942 +207479.124 0
13437 +464.546 +564.823 +27.692 +0.732050 +0.614161 +0.294790 +207478.274 0
13019 +464.457 +564.856 +27.744 +0.284668 +0.781754 +0.554818 +207478.173 0
13011 +464.507 +564.573 +27.744 +0.534715 -0.637183 +0.555047 +207478.674 0
13012 +464.367 +564.888 +27.692 -0.165785 +0.941055 +0.294848 +207477.919 0
13014 +464.343 +564.544 +27.744 -0.284522 -0.781549 +0.555182 +207477.632 0
13001 +464.293 +564.827 +27.744 -0.534569 +0.637387 +0.554953 +207480.951 0
13015 +464.236 +564.671 +27.744 -0.819154 -0.144263 +0.555134 +207481.011 0
13018 +464.220 +564.765 +27.692 -0.897797 +0.326948 +0.295058 +207477.983 0
13435 +464.254 +564.577 +27.692 -0.731973 -0.614053 +0.295210 +207479.271 0
11321 +464.212 +564.667 +27.574 -0.941040 -0.165879 -0.294846 +207478.725 0
11328 +464.244 +564.757 +27.522 -0.781725 +0.284493 -0.554950 +207475.991 0
11326 +464.296 +564.682 +27.463 -0.518898 -0.091578 -0.849915 +207477.873 0
11333 +464.277 +564.846 +27.574 -0.614146 +0.731957 -0.295054 +207479.168 0
11268 +464.335 +564.520 +27.574 -0.326933 -0.897890 -0.294791 +207476.862 0
11263 +464.273 +564.593 +27.522 -0.637358 -0.534744 -0.554817 +207475.539 0
11257 +464.364 +564.601 +27.463 -0.180331 -0.495155 -0.849885 +207476.207 0
11256 +464.332 +564.781 +27.463 -0.338679 +0.403420 -0.850030 +207475.022 0
11262 +464.429 +564.536 +27.522 +0.144292 -0.819330 -0.554868 +207478.027 0
11261 +464.371 +564.864 +27.522 -0.144438 +0.819125 -0.555132 +207477.511 0
11267 +464.400 +564.700 +27.433 -0.000132 -0.000185 -1.000000 +207475.496 0
11275 +464.465 +564.880 +27.574 +0.326855 +0.897781 -0.295209 +207476.331 0
11400 +464.504 +564.718 +27.463 +0.518675 +0.091264 -0.850085 +207475.861 0
11270 +464.436 +564.799 +27.463 +0.180108 +0.494841 -0.850115 +207475.927 0
11264 +464.468 +564.619 +27.463 +0.338455 -0.403734 -0.849970 +207477.270 0
11265 +464.523 +564.554 +27.574 +0.614068 -0.732066 -0.294946 +207478.269 0
11258 +464.556 +564.643 +27.522 +0.781579 -0.284698 -0.555050 +207475.953 0
11259 +464.527 +564.807 +27.522 +0.637212 +0.534539 -0.555183 +207479.107 0
11332 +464.588 +564.733 +27.574 +0.940962 +0.165770 -0.295154 +207475.951 0
808951460 10 2 +464.400 +564.700 +36.906 +0.999943 -0.006891 +0.007947 +0.001687 +37537.509 0 31
13436 +464.564 +564.729 +37.017 +0.819300 +0.144467 +0.554866 +207539.188 0
13438 +464.433 +564.512 +36.966 +0.165863 -0.940946 +0.295152 +207538.206 0
13020 +464.580 +564.635 +36.965 +0.897874 -0.326839 +0.294942 +207537.187 0
13535 +464.546 +564.823 +36.965 +0.732050 +0.614161 +0.294790 +207537.264 0
13434 +464.457 +564.856 +37.017 +0.284668 +0.781754 +0.554818 +207536.604 0
13006 +464.507 +564.573 +37.017 +0.534715 -0.637183 +0.555047 +207536.707 0
13009 +464.367 +564.888 +36.965 -0.165785 +0.941055 +0.294848 +207535.295 0
13010 +464.343 +564.544 +37.018 -0.284522 -0.781549 +0.555182 +207535.895 0
13007 +464.293 +564.827 +37.017 -0.534569 +0.637387 +0.554953 +207536.523 0
13013 +464.236 +564.671 +37.018 -0.819154 -0.144263 +0.555134 +207539.729 0
13440 +464.220 +564.765 +36.965 -0.897797 +0.326948 +0.295058 +207538.227 0
13431 +464.254 +564.577 +36.966 -0.731973 -0.614053 +0.295210 +207536.785 0
15216 +464.212 +564.667 +36.848 -0.941040 -0.165879 -0.294846 +207536.335 0
11322 +464.244 +564.757 +36.795 -0.781725 +0.284493 -0.554950 +207538.255 0
11335 +464.296 +564.682 +36.737 -0.518898 -0.091578 -0.849915 +207534.395 0
11324 +464.277 +564.846 +36.847 -0.614146 +0.731957 -0.295054 +207536.171 0
11329 +464.335 +564.520 +36.848 -0.326933 -0.897890 -0.294791 +207538.118 0
11325 +464.273 +564.593 +36.796 -0.637358 -0.534744 -0.554817 +207532.944 0
11334 +464.364 +564.601 +36.737 -0.180331 -0.495155 -0.849885 +207535.734 0
11323 +464.332 +564.781 +36.736 -0.338679 +0.403420 -0.850030 +207534.051 0
11330 +464.429 +564.536 +36.796 +0.144292 -0.819330 -0.554868 +207536.756 0
11327 +464.371 +564.864 +36.795 -0.144438 +0.819125 -0.555132 +207536.054 0
15224 +464.400 +564.700 +36.706 -0.000132 -0.000185 -1.000000 +207535.380 0
15223 +464.465 +564.880 +36.847 +0.326855 +0.897781 -0.295209 +207537.282 0
12896 +464.504 +564.718 +36.736 +0.518675 +0.091264 -0.850085 +207534.410 0
15217 +464.436 +564.799 +36.736 +0.180108 +0.494841 -0.850115 +207535.915 0
12875 +464.468 +564.619 +36.736 +0.338455 -0.403734 -0.849970 +207539.234 0
15213 +464.523 +564.554 +36.847 +0.614068 -0.732066 -0.294946 +207538.825 0
12893 +464.556 +564.643 +36.795 +0.781579 -0.284698 -0.555050 +207535.856 0
12898 +464.527 +564.807 +36.795 +0.637212 +0.534539 -0.555183 +207534.842 0
12894 +464.588 +564.733 +36.847 +0.940962 +0.165770 -0.295154 +207535.398 0
808996773 10 3 +464.400 +564.700 +45.544 +0.999926 -0.006009 +0.009547 +0.004627 +37589.417 0 31
10422 +464.564 +564.729 +45.655 +0.819300 +0.144467 +0.554866 +207589.583 0
10421 +464.433 +564.512 +45.603 +0.165863 -0.940946 +0.295152 +207589.372 0
10415 +464.580 +564.635 +45.603 +0.897874 -0.326839 +0.294942 +207588.393 0
10417 +464.546 +564.823 +45.603 +0.732050 +0.614161 +0.294790 +207589.930 0
10412 +464.457 +564.856 +45.655 +0.284668 +0.781754 +0.554818 +207591.679 0
10419 +464.507 +564.573 +45.655 +0.534715 -0.637183 +0.555047 +207589.308 0
10430 +464.367 +564.888 +45.603 -0.165785 +0.941055 +0.294848 +207589.013 0
10414 +464.343 +564.544 +45.655 -0.284522 -0.781549 +0.555182 +207588.523 0
10438 +464.293 +564.827 +45.655 -0.534569 +0.637387 +0.554953 +207588.519 0
10434 +464.236 +564.671 +45.655 -0.819154 -0.144263 +0.555134 +207586.817 0
10436 +464.220 +564.765 +45.603 -0.897797 +0.326948 +0.295058 +207588.045 0
10425 +464.254 +564.577 +45.603 -0.731973 -0.614053 +0.295210 +207588.591 0
15305 +464.212 +564.667 +45.485 -0.941040 -0.165879 -0.294846 +207588.787 0
15307 +464.244 +564.757 +45.433 -0.781725 +0.284493 -0.554950 +207588.489 0
15302 +464.296 +564.682 +45.374 -0.518898 -0.091578 -0.849915 +207588.127 0
12420 +464.277 +564.846 +45.485 -0.614146 +0.731957 -0.295054 +207591.117 0
12316 +464.335 +564.520 +45.485 -0.326933 -0.897890 -0.294791 +207587.234 0
12318 +464.273 +564.593 +45.433 -0.637358 -0.534744 -0.554817 +207586.459 0
12329 +464.364 +564.601 +45.374 -0.180331 -0.495155 -0.849885 +207587.590 0
12324 +464.332 +564.781 +45.374 -0.338679 +0.403420 -0.850030 +207588.688 0
12363 +464.429 +564.536 +45.433 +0.144292 -0.819330 -0.554868 +207588.615 0
12364 +464.371 +564.864 +45.433 -0.144438 +0.819125 -0.555132 +207590.129 0
12326 +464.400 +564.700 +45.344 -0.000132 -0.000185 -1.000000 +207586.444 0
15308 +464.465 +564.880 +45.485 +0.326855 +0.897781 -0.295209 +207586.818 0
12325 +464.504 +564.718 +45.374 +0.518675 +0.091264 -0.850085 +207586.889 0
12321 +464.436 +564.799 +45.374 +0.180108 +0.494841 -0.850115 +207586.733 0
12319 +464.468 +564.619 +45.374 +0.338455 -0.403734 -0.849970 +207589.871 0
12320 +464.523 +564.554 +45.485 +0.614068 -0.732066 -0.294946 +207586.621 0
15306 +464.556 +564.643 +45.433 +0.781579 -0.284698 -0.555050 +207588.930 0
15301 +464.527 +564.807 +45.433 +0.637212 +0.534539 -0.555183 +207589.051 0
15304 +464.588 +564.733 +45.485 +0.940962 +0.165770 -0.295154 +207588.371 0
808493910 10 4 +464.400 +564.700 +55.597 +0.999880 +0.003479 +0.009702 +0.011540 +37642.029 0 31
9067 +464.564 +564.729 +55.708 +0.819300 +0.144467 +0.554866 +207641.713 0
8516 +464.433 +564.512 +55.656 +0.165863 -0.940946 +0.295152 +207640.660 0
9078 +464.580 +564.635 +55.656 +0.897874 -0.326839 +0.294942 +207642.542 0
9079 +464.546 +564.823 +55.656 +0.732050 +0.614161 +0.294790 +207644.531 0
8512 +464.457 +564.856 +55.708 +0.284668 +0.781754 +0.554818 +207639.668 0
8520 +464.507 +564.573 +55.708 +0.534715 -0.637183 +0.555047 +207641.940 0
8510 +464.367 +564.888 +55.656 -0.165785 +0.941055 +0.294848 +207642.396 0
8506 +464.343 +564.544 +55.708 -0.284522 -0.781549 +0.555182 +207640.944 0
8502 +464.293 +564.827 +55.708 -0.534569 +0.637387 +0.554953 +207643.811 0
8515 +464.236 +564.671 +55.708 -0.819154 -0.144263 +0.555134 +207641.648 0
9163 +464.220 +564.765 +55.656 -0.897797 +0.326948 +0.295058 +207643.879 0
9161 +464.254 +564.577 +55.656 -0.731973 -0.614053 +0.295210 +207640.606 0
9070 +464.212 +564.667 +55.538 -0.941040 -0.165879 -0.294846 +207641.245 0
9073 +464.244 +564.757 +55.486 -0.781725 +0.284493 -0.554950 +207639.003 0
9071 +464.296 +564.682 +55.427 -0.518898 -0.091578 -0.849915 +207641.005 0
9072 +464.277 +564.846 +55.538 -0.614146 +0.731957 -0.295054 +207638.826 0
9080 +464.335 +564.520 +55.538 -0.326933 -0.897890 -0.294791 +207643.243 0
9077 +464.273 +564.593 +55.486 -0.637358 -0.534744 -0.554817 +207639.809 0
9085 +464.364 +564.601 +55.427 -0.180331 -0.495155 -0.849885 +207639.165 0
9090 +464.332 +564.781 +55.427 -0.338679 +0.403420 -0.850030 +207639.508 0
9083 +464.429 +564.536 +55.486 +0.144292 -0.819330 -0.554868 +207640.723 0
9082 +464.371 +564.864 +55.486 -0.144438 +0.819125 -0.555132 +207637.196 0
9064 +464.400 +564.700 +55.397 -0.000132 -0.000185 -1.000000 +207640.165 0
9074 +464.465 +564.880 +55.538 +0.326855 +0.897781 -0.295209 +207638.392 0
9069 +464.504 +564.718 +55.427 +0.518675 +0.091264 -0.850085 +207639.526 0
9063 +464.436 +564.799 +55.427 +0.180108 +0.494841 -0.850115 +207640.855 0
9068 +464.468 +564.619 +55.427 +0.338455 -0.403734 -0.849970 +207642.515 0
9075 +464.523 +564.554 +55.538 +0.614068 -0.732066 -0.294946 +207640.986 0
9062 +464.556 +564.643 +55.486 +0.781579 -0.284698 -0.555050 +207641.357 0
8518 +464.527 +564.807 +55.486 +0.637212 +0.534539 -0.555183 +207643.336 0
8517 +464.588 +564.733 +55.538 +0.940962 +0.165770 -0.295154 +207642.507 0
808489117 10 5 +464.400 +564.700 +64.764 +0.999475 +0.017817 -0.016308 +0.021600 +37694.916 0 31
9164 +464.564 +564.729 +64.875 +0.819300 +0.144467 +0.554866 +207695.941 0
9158 +464.433 +564.512 +64.823 +0.165863 -0.940946 +0.295152 +207696.034 0
9157 +464.580 +564.635 +64.823 +0.897874 -0.326839 +0.294942 +207691.757 0
9153 +464.546 +564.823 +64.823 +0.732050 +0.614161 +0.294790 +207696.115 0
9152 +464.457 +564.856 +64.875 +0.284668 +0.781754 +0.554818 +207693.040 0
9154 +464.507 +564.573 +64.875 +0.534715 -0.637183 +0.555047 +207693.935 0
9160 +464.367 +564.888 +64.823 -0.165785 +0.941055 +0.294848 +207693.601 0
8513 +464.343 +564.544 +64.875 -0.284522 -0.781549 +0.555182 +207694.050 0
8504 +464.293 +564.827 +64.875 -0.534569 +0.637387 +0.554953 +207693.814 0
9165 +464.236 +564.671 +64.875 -0.819154 -0.144263 +0.555134 +207694.611 0
13184 +464.220 +564.765 +64.823 -0.897797 +0.326948 +0.295058 +207695.790 0
13190 +464.254 +564.577 +64.823 -0.731973 -0.614053 +0.295210 +207693.777 0
15053 +464.212 +564.667 +64.705 -0.941040 -0.165879 -0.294846 +207693.655 0
15055 +464.244 +564.757 +64.653 -0.781725 +0.284493 -0.554950 +207691.235 0
15050 +464.296 +564.682 +64.594 -0.518898 -0.091578 -0.849915 +207693.232 0
15051 +464.277 +564.846 +64.705 -0.614146 +0.731957 -0.295054 +207692.301 0
13373 +464.335 +564.520 +64.705 -0.326933 -0.897890 -0.294791 +207696.012 0
13376 +464.273 +564.593 +64.653 -0.637358 -0.534744 -0.554817 +207693.907 0
13372 +464.364 +564.601 +64.594 -0.180331 -0.495155 -0.849885 +207695.908 0
13363 +464.332 +564.781 +64.594 -0.338679 +0.403420 -0.850030 +207694.538 0
13362 +464.429 +564.536 +64.653 +0.144292 -0.819330 -0.554868 +207694.416 0
13361 +464.371 +564.864 +64.653 -0.144438 +0.819125 -0.555132 +207693.477 0
13032 +464.400 +564.700 +64.564 -0.000132 -0.000185 -1.000000 +207691.751 0
13095 +464.465 +564.880 +64.705 +0.326855 +0.897781 -0.295209 +207694.761 0
13142 +464.504 +564.718 +64.594 +0.518675 +0.091264 -0.850085 +207691.445 0
13199 +464.436 +564.799 +64.594 +0.180108 +0.494841 -0.850115 +207691.902 0
8505 +464.468 +564.619 +64.594 +0.338455 -0.403734 -0.849970 +207695.137 0
13188 +464.523 +564.554 +64.705 +0.614068 -0.732066 -0.294946 +207694.346 0
13195 +464.556 +564.643 +64.653 +0.781579 -0.284698 -0.555050 +207693.073 0
13193 +464.527 +564.807 +64.653 +0.637212 +0.534539 -0.555183 +207695.382 0
13194 +464.588 +564.733 +64.705 +0.940962 +0.165770 -0.295154 +207694.266 0
806451572 10 6 +464.400 +564.700 +74.496 +0.999846 -0.010081 -0.011768 -0.008229 +37746.445 0 31
12327 +464.564 +564.729 +74.607 +0.819300 +0.144467 +0.554866 +207746.316 0
15303 +464.433 +564.512 +74.555 +0.165863 -0.940946 +0.295152 +207745.146 0
12322 +464.580 +564.635 +74.555 +0.897874 -0.326839 +0.294942 +207742.960 0
12328 +464.546 +564.823 +74.555 +0.732050 +0.614161 +0.294790 +207747.193 0
12317 +464.457 +564.856 +74.607 +0.284668 +0.781754 +0.554818 +207744.800 0
12323 +464.507 +564.573 +74.607 +0.534715 -0.637183 +0.555047 +207742.743 0
12330 +464.367 +564.888 +74.555 -0.165785 +0.941055 +0.294848 +207748.881 0
9141 +464.343 +564.544 +74.607 -0.284522 -0.781549 +0.555182 +207747.437 0
9142 +464.293 +564.827 +74.607 -0.534569 +0.637387 +0.554953 +207747.305 0
9131 +464.236 +564.671 +74.607 -0.819154 -0.144263 +0.555134 +207745.335 0
9144 +464.220 +564.765 +74.555 -0.897797 +0.326948 +0.295058 +207745.875 0
9147 +464.254 +564.577 +74.555 -0.731973 -0.614053 +0.295210 +207746.835 0
13031 +464.212 +564.667 +74.437 -0.941040 -0.165879 -0.294846 +207747.039 0
13045 +464.244 +564.757 +74.385 -0.781725 +0.284493 -0.554950 +207744.015 0
13049 +464.296 +564.682 +74.326 -0.518898 -0.091578 -0.849915 +207743.382 0
13047 +464.277 +564.846 +74.437 -0.614146 +0.731957 -0.295054 +207745.110 0
13187 +464.335 +564.520 +74.437 -0.326933 -0.897890 -0.294791 +207745.567 0
13086 +464.273 +564.593 +74.385 -0.637358 -0.534744 -0.554817 +207741.878 0
13200 +464.364 +564.601 +74.326 -0.180331 -0.495155 -0.849885 +207743.989 0
13191 +464.332 +564.781 +74.326 -0.338679 +0.403420 -0.850030 +207745.438 0
13182 +464.429 +564.536 +74.385 +0.144292 -0.819330 -0.554868 +207743.915 0
13173 +464.371 +564.864 +74.385 -0.144438 +0.819125 -0.555132 +207743.772 0
13189 +464.400 +564.700 +74.296 -0.000132 -0.000185 -1.000000 +207745.760 0
13062 +464.465 +564.880 +74.437 +0.326855 +0.897781 -0.295209 +207747.299 0
13109 +464.504 +564.718 +74.326 +0.518675 +0.091264 -0.850085 +207746.758 0
8496 +464.436 +564.799 +74.326 +0.180108 +0.494841 -0.850115 +207746.168 0
13050 +464.468 +564.619 +74.326 +0.338455 -0.403734 -0.849970 +207746.185 0
13186 +464.523 +564.554 +74.437 +0.614068 -0.732066 -0.294946 +207745.920 0
13183 +464.556 +564.643 +74.385 +0.781579 -0.284698 -0.555050 +207746.866 0
13181 +464.527 +564.807 +74.385 +0.637212 +0.534539 -0.555183 +207745.259 0
13192 +464.588 +564.733 +74.437 +0.940962 +0.165770 -0.295154 +207745.438 0
808961655 10 7 +464.400 +564.700 +85.526 +0.999280 +0.016764 +0.000388 -0.034033 +37809.082 0 31
13419 +464.564 +564.729 +85.637 +0.819300 +0.144467 +0.554866 +207811.696 0
13417 +464.433 +564.512 +85.585 +0.165863 -0.940946 +0.295152 +207806.282 0
13420 +464.580 +564.635 +85.585 +0.897874 -0.326839 +0.294942 +207808.545 0
13422 +464.546 +564.823 +85.585 +0.732050 +0.614161 +0.294790 +207809.025 0
13425 +464.457 +564.856 +85.637 +0.284668 +0.781754 +0.554818 +207807.938 0
13421 +464.507 +564.573 +85.637 +0.534715 -0.637183 +0.555047 +207810.875 0
12994 +464.367 +564.888 +85.585 -0.165785 +0.941055 +0.294848 +207807.553 0
9364 +464.343 +564.544 +85.637 -0.284522 -0.781549 +0.555182 +207808.432 0
9365 +464.293 +564.827 +85.637 -0.534569 +0.637387 +0.554953 +207809.897 0
12991 +464.236 +564.671 +85.637 -0.819154 -0.144263 +0.555134 +207807.882 0
13414 +464.220 +564.765 +85.585 -0.897797 +0.326948 +0.295058 +207806.188 0
13359 +464.254 +564.577 +85.585 -0.731973 -0.614053 +0.295210 +207809.221 0
8404 +464.212 +564.667 +85.467 -0.941040 -0.165879 -0.294846 +207807.956 0
8411 +464.244 +564.757 +85.415 -0.781725 +0.284493 -0.554950 +207809.561 0
8413 +464.296 +564.682 +85.356 -0.518898 -0.091578 -0.849915 +207807.742 0
8424 +464.277 +564.846 +85.467 -0.614146 +0.731957 -0.295054 +207807.204 0
8425 +464.335 +564.520 +85.467 -0.326933 -0.897890 -0.294791 +207808.003 0
13003 +464.273 +564.593 +85.415 -0.637358 -0.534744 -0.554817 +207805.418 0
13000 +464.364 +564.601 +85.356 -0.180331 -0.495155 -0.849885 +207807.285 0
12997 +464.332 +564.781 +85.356 -0.338679 +0.403420 -0.850030 +207808.341 0
12996 +464.429 +564.536 +85.415 +0.144292 -0.819330 -0.554868 +207808.423 0
12998 +464.371 +564.864 +85.415 -0.144438 +0.819125 -0.555132 +207806.684 0
8409 +464.400 +564.700 +85.326 -0.000132 -0.000185 -1.000000 +207808.193 0
8482 +464.465 +564.880 +85.467 +0.326855 +0.897781 -0.295209 +207805.218 0
8423 +464.504 +564.718 +85.356 +0.518675 +0.091264 -0.850085 +207807.610 0
8481 +464.436 +564.799 +85.356 +0.180108 +0.494841 -0.850115 +207809.049 0
8488 +464.468 +564.619 +85.356 +0.338455 -0.403734 -0.849970 +207808.889 0
8410 +464.523 +564.554 +85.467 +0.614068 -0.732066 -0.294946 +207809.109 0
8405 +464.556 +564.643 +85.415 +0.781579 -0.284698 -0.555050 +207808.521 0
12999 +464.527 +564.807 +85.415 +0.637212 +0.534539 -0.555183 +207807.448 0
12992 +464.588 +564.733 +85.467 +0.940962 +0.165770 -0.295154 +207808.154 0
808981864 10 8 +464.400 +564.700 +95.389 +0.999954 -0.007847 +0.003911 +0.004008 +37861.343 0 31
15049 +464.564 +564.729 +95.500 +0.819300 +0.144467 +0.554866 +207859.769 0
15056 +464.433 +564.512 +95.448 +0.165863 -0.940946 +0.295152 +207862.474 0
13364 +464.580 +564.635 +95.448 +0.897874 -0.326839 +0.294942 +207861.530 0
13367 +464.546 +564.823 +95.448 +0.732050 +0.614161 +0.294790 +207862.961 0
13369 +464.457 +564.856 +95.500 +0.284668 +0.781754 +0.554818 +207863.213 0