-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNORAD_Catalog.csv
We can't make this file beautiful and searchable because it's too large.
4006 lines (4006 loc) · 580 KB
/
NORAD_Catalog.csv
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
NORAD ID,COSPAR ID,Name,Source,Period,Inclination (deg),Apogee (km),Perigee (km),Eccentric,Radar Cross Section,Size,A/M,Orbit Memo,Launch Time,Deacy Time,Is Active Satellite,Decay?,Debris?,Rocket?
"40374","2015-002A","MUOS 3","US","","","","","","0.00","0.00","","",","2015-01-21","","true","false","false","false"
"40370","2015-001A","DRAGON CRS-5","US","92.65","51.65","408","401","0.00","0.00","0.00","","","2015-01-10","","true","false","false","false"
"40367","2014-090A","FENGYUN 2G","PRC","1,436.19","2.22","35,803","35,774","0.00","0.00","0.00","","","2014-12-31","","true","false","false","false"
"40364","2014-089A","ASTRA 2G","SES","1,436.07","0.07","35,790","35,782","0.00","0.00","0.00","","","2014-12-27","","true","false","false","false"
"40362","2014-088A","YAOGAN 26","PRC","94.36","97.43","491","484","0.00","0.00","0.00","","","2014-12-27","","true","false","false","false"
"40360","2014-087A","RESURS P2","CIS","93.91","97.29","470","462","0.00","0.00","0.00","","","2014-12-26","","true","false","false","false"
"40358","2014-086A","COSMOS 2502","CIS","103.10","67.15","910","900","0.00","0.00","0.00","","","2014-12-25","","true","false","false","false"
"40355","2014-085A","DUMMY SAT 2/BREEZE-M","CIS","1,530.93","0.32","39,092","36,154","0.03","0.00","0.00","","","2014-12-23","","true","false","false","false"
"40353","2014-084A","KONDOR E","SAFR","94.57","74.75","499","497","0.00","0.00","0.00","","","2014-12-19","","true","false","false","false"
"40351","2014-083D","O3B FM9","O3B","287.93","0.03","8,069","8,063","0.00","0.00","0.00","","","2014-12-18","","true","false","false","false"
"40350","2014-083C","O3B FM12","O3B","287.93","0.03","8,069","8,063","0.00","0.00","0.00","","","2014-12-18","","true","false","false","false"
"40349","2014-083B","O3B FM11","O3B","287.93","0.03","8,069","8,063","0.00","0.00","0.00","","","2014-12-18","","true","false","false","false"
"40348","2014-083A","O3B FM10","O3B","287.93","0.03","8,069","8,063","0.00","0.00","0.00","","","2014-12-18","","true","false","false","false"
"40345","2014-082A","YAMAL 401","CIS","1,436.10","0.04","35,788","35,785","0.00","0.00","0.00","","","2014-12-15","","true","false","false","false"
"40344","2014-081A","USA 259","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-12-13","","true","false","false","false"
"40340","2014-080C","YAOGAN 25C","PRC","107.05","63.41","1,099","1,082","0.00","0.00","0.00","","","2014-12-10","","true","false","false","false"
"40339","2014-080B","YAOGAN 25B","PRC","107.05","63.41","1,099","1,082","0.00","0.00","0.00","","","2014-12-10","","true","false","false","false"
"40338","2014-080A","YAOGAN 25A","PRC","107.05","63.41","1,099","1,082","0.00","0.00","0.00","","","2014-12-10","","true","false","false","false"
"40336","2014-079A","CBERS-4","PRC","100.32","98.54","775","772","0.00","0.00","0.00","","","2014-12-07","","true","false","false","false"
"40333","2014-078B","DIRECTV 14","US","1,436.09","0.01","35,787","35,786","0.00","0.00","0.00","","","2014-12-06","","true","false","false","false"
"40332","2014-078A","GSAT 16","IND","1,436.11","0.08","35,798","35,775","0.00","0.00","0.00","","","2014-12-06","","true","false","false","false"
"40322","2014-076D","PROCYON","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2014-12-03","","true","false","false","false"
"40321","2014-076C","DESPATCH (ARTSAT 2)","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2014-12-03","","true","false","false","false"
"40320","2014-076B","SHIN EN 2","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2014-12-03","","true","false","false","false"
"40319","2014-076A","HAYABUSA 2","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2014-12-03","","true","false","false","false"
"40315","2014-075A","COSMOS 2501 (GLONASS)","CIS","675.73","64.81","19,175","19,085","0.00","0.00","0.00","","","2014-11-30","","true","false","false","false"
"40314","1998-067FL","SPINSAT","US","92.64","51.64","408","400","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40312","2014-074A","SOYUZ-TMA 15M","CIS","92.65","51.65","408","401","0.00","0.00","0.00","","","2014-11-23","","true","false","false","false"
"40311","2014-073A","KUAIZHOU 2 (KZ-2)","PRC","90.51","96.54","320","279","0.00","0.00","0.00","","","2014-11-21","","true","false","false","false"
"40310","2014-072A","YAOGAN 24","PRC","97.53","97.91","653","629","0.00","0.00","0.00","","","2014-11-20","","true","false","false","false"
"40305","2014-071A","YAOGAN 23","PRC","94.84","97.34","513","509","0.00","0.00","0.00","","","2014-11-14","","true","false","false","false"
"40304","2014-070G","SL-24 PLAT","CIS","94.23","97.47","495","468","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40302","2014-070E","TSUBAME","JPN","95.28","97.46","562","502","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40301","2014-070D","QSAT-EOS","JPN","95.11","97.46","547","501","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40300","2014-070C","CHUBUSAT 1","JPN","94.99","97.46","533","503","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40299","2014-070B","HODOYOSHI 1","JPN","94.86","97.47","520","504","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40298","2014-070A","ASNARO","JPN","94.77","97.47","508","507","0.00","0.00","0.00","","","2014-11-06","","true","false","false","false"
"40296","2014-069A","MERIDIAN 7","CIS","717.77","62.82","39,398","956","0.72","0.00","0.00","","","2014-10-30","","true","false","false","false"
"40294","2014-068A","NAVSTAR 72 (USA 258)","US","718.02","54.97","20,210","20,156","0.00","0.00","0.00","","","2014-10-29","","true","false","false","false"
"40292","2014-067A","PROGRESS-M 25M","CIS","92.65","51.65","408","401","0.00","0.00","0.00","","","2014-10-29","","true","false","false","false"
"40286","2014-066A","SJ-11-08","PRC","98.60","98.22","699","684","0.00","0.00","0.00","","","2014-10-27","","true","false","false","false"
"40277","2014-064A","EXPRESS AM-6","CIS","1,439.85","0.50","37,083","34,637","0.03","0.00","0.00","","","2014-10-21","","true","false","false","false"
"40275","2014-063A","YAOGAN 22","PRC","109.48","100.33","1,207","1,198","0.00","0.00","0.00","","","2014-10-20","","true","false","false","false"
"40272","2014-062B","ARSAT 1","ARGN","1,436.08","0.04","35,795","35,777","0.00","0.00","0.00","","","2014-10-16","","true","false","false","false"
"40271","2014-062A","INTELSAT 30","ITSO","1,436.10","0.02","35,797","35,776","0.00","0.00","0.00","","","2014-10-16","","true","false","false","false"
"40269","2014-061A","IRNSS 1C","IND","1,436.14","4.77","35,882","35,693","0.00","0.00","0.00","","","2014-10-15","","true","false","false","false"
"40267","2014-060A","HIMAWARI 8","JPN","1,436.11","0.03","35,792","35,782","0.00","0.00","0.00","","","2014-10-07","","true","false","false","false"
"40261","2014-059A","SJ-11-07","PRC","98.62","98.11","702","683","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40258","2014-058A","LUCH (OLYMP)","CIS","1,437.58","0.02","35,885","35,747","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40246","2014-057A","SOYUZ-TMA 14M","CIS","92.65","51.65","408","401","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40208","2014-055A","USA 257","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-30","","true","false","false","false"
"40147","2014-054B","MEASAT 3B","MALA","1,436.09","0.03","35,799","35,774","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40146","2014-054A","OPTUS 10","AUS","1,436.11","0.02","35,800","35,774","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40144","2014-053B","TIANTUO 2","PRC","94.20","97.40","490","470","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40143","2014-053A","YAOGAN 21","PRC","94.42","97.40","500","482","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40141","2014-052A","ASIASAT 6","AC","1,436.09","0.01","35,790","35,783","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40140","1998-067FF","FLOCK 1B 17","US","90.81","51.63","317","311","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40137","2014-051B","CHUANG XIN 1-04","PRC","100.74","98.46","810","777","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40136","2014-051A","LING QIAO","PRC","100.73","98.45","809","778","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40133","1998-067FC","FLOCK 1B 8","US","90.91","51.63","322","316","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40132","1998-067FB","FLOCK 1B 2","US","91.11","51.63","332","326","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40129","2014-050B","GALILEO 6 (262)","ESA","705.11","49.77","25,918","13,810","0.23","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40128","2014-050A","GALILEO 5 (261)","ESA","776.19","49.73","25,966","17,232","0.16","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40125","1998-067EX","FLOCK 1B 25","US","87.59","51.61","160","150","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40123","1998-067EV","FLOCK 1B 23","US","90.90","51.63","323","315","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40122","1998-067EU","FLOCK 1B 24","US","91.28","51.63","339","335","0.00","0.00","0.00","","","1998-11-20","","true","false","false","false"
"40119","2014-049B","BRITE-PL 2","POL","97.09","98.00","633","607","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40118","2014-049A","GAOFEN 2","PRC","97.25","98.00","635","619","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40115","2014-048A","WORLDVIEW 3","US","96.98","97.97","615","612","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40111","2014-047C","YAOGAN 20C","PRC","107.05","63.40","1,105","1,076","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40110","2014-047B","YAOGAN 20B","PRC","107.05","63.40","1,104","1,076","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40109","2014-047A","YAOGAN 20A","PRC","107.05","63.40","1,104","1,076","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40107","2014-046A","ASIASAT 8","AC","1,436.10","0.03","35,794","35,779","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40105","2014-045A","NAVSTAR 71 (USA 256)","US","717.98","54.91","20,187","20,177","0.00","0.00","0.00","","","2013-12-30","","true","false","false","false"
"40103","2014-044A","ATV 5","ESA","92.65","51.65","408","401","0.00","0.00","0.00","","","2014-07-29","","true","false","false","false"
"40101","2014-043C","USA 255","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-07-28","","true","false","false","false"
"40100","2014-043B","USA 254","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-07-28","","true","false","false","false"
"40099","2014-043A","USA 253","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-07-28","","true","false","false","false"
"40091","2014-040F","ORBCOMM FM 103","US","99.13","47.01","727","706","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40090","2014-040E","ORBCOMM FM 104","US","99.13","47.01","730","703","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40089","2014-040D","ORBCOMM FM 111","US","97.60","47.01","670","617","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40088","2014-040C","ORBCOMM FM 106","US","99.13","47.01","733","701","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40087","2014-040B","ORBCOMM FM 107","US","99.13","47.01","735","698","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40086","2014-040A","ORBCOMM FM 109","US","99.13","47.01","728","705","0.00","0.00","0.00","","","2014-07-14","","true","false","false","false"
"40082","2014-038D","O3B FM8","O3B","287.93","0.04","8,071","8,061","0.00","0.00","0.00","","","2014-07-10","","true","false","false","false"
"40081","2014-038C","O3B FM6","O3B","287.93","0.04","8,070","8,062","0.00","0.00","0.00","","","2014-07-10","","true","false","false","false"
"40080","2014-038B","O3B FM7","O3B","287.93","0.04","8,070","8,062","0.00","0.00","0.00","","","2014-07-10","","true","false","false","false"
"40079","2014-038A","O3B FM3","O3B","287.93","0.04","8,072","8,059","0.00","0.00","0.00","","","2014-07-10","","true","false","false","false"
"40076","2014-037H","TDS 1","UK","97.25","98.37","631","623","0.00","0.00","0.00","","","2014-06-30","","false","false","false","false"
"40075","2014-037G","AISSAT 2","NOR","97.23","98.37","630","622","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40074","2014-037F","UKUBE 1","UK","97.20","98.38","628","622","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40073","2014-037E","DUMMY SAT","CIS","97.28","98.37","632","625","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40072","2014-037D","SKYSAT 2","US","97.28","98.37","633","624","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40071","2014-037C","DX 1","CIS","97.29","98.37","635","624","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40070","2014-037B","MKA PN2 (RELEK)","CIS","99.21","98.35","819","623","0.01","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40069","2014-037A","METEOR M2","CIS","101.37","98.78","827","819","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40063","2014-036C","GONETS M 10 (M20)","CIS","115.86","82.51","1,511","1,478","0.00","0.00","0.00","","","2014-07-03","","true","false","false","false"
"40062","2014-036B","GONETS M 09 (M19)","CIS","115.86","82.51","1,511","1,478","0.00","0.00","0.00","","","2014-07-03","","true","false","false","false"
"40061","2014-036A","GONETS M 08 (M18)","CIS","115.86","82.51","1,517","1,472","0.00","0.00","0.00","","","2014-07-03","","true","false","false","false"
"40059","2014-035A","OCO 2","US","98.83","98.22","703","702","0.00","0.00","0.00","","","2014-07-02","","true","false","false","false"
"40057","2014-034E","VELOX 1","SING","97.62","98.23","652","637","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40056","2014-034D","NLS 7.2/CANX 5","CA","97.71","98.23","659","639","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40055","2014-034C","NLS 7.1/CANX 4","CA","97.71","98.23","659","639","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40054","2014-034B","AISAT","GER","97.66","98.23","656","638","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40053","2014-034A","SPOT 7","FR","98.73","98.18","699","697","0.00","0.00","0.00","","","2014-06-30","","true","false","false","false"
"40049","2014-033AR","SL-24 PLAT","CIS","96.91","97.98","619","602","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40046","2014-033AN","AEROCUBE 6B","US","97.78","97.96","694","611","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40045","2014-033AM","AEROCUBE 6A","US","97.79","97.96","695","611","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40044","2014-033AL","LEMUR 1","US","97.78","97.96","694","610","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40043","2014-033AK","TIGRISAT","IRAQ","97.77","97.96","695","609","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40042","2014-033AJ","POLYITAN 1","UKR","96.93","97.97","622","601","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40041","2014-033AH","FLOCK 1C 3","US","96.86","97.97","617","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40040","2014-033AG","FLOCK 1C 8","US","96.85","97.97","617","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40039","2014-033AF","PERSEUS M1","CIS","96.98","97.97","623","605","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40038","2014-033AE","FLOCK 1C 5","US","96.86","97.97","618","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40037","2014-033AD","PERSEUS M2","CIS","96.95","97.97","622","603","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40036","2014-033AC","FLOCK 1C 6","US","96.85","97.97","616","600","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40035","2014-033AB","FLOCK 1C 9","US","96.86","97.97","616","600","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40034","2014-033AA","ANTELSAT","URY","97.81","97.96","697","612","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40033","2014-033Z","FLOCK 1C 11","US","96.85","97.97","617","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40032","2014-033Y","QB50P2","BEL","96.90","97.96","618","602","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40031","2014-033X","FLOCK 1C 4","US","96.86","97.97","618","598","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40030","2014-033W","DTUSAT 2","DEN","96.90","97.96","618","602","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40029","2014-033V","FLOCK 1C 2","US","96.86","97.97","618","598","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40028","2014-033U","POPSAT HIP 1","SING","96.89","97.97","619","600","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40027","2014-033T","FLOCK 1C 1","US","96.86","97.97","617","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40026","2014-033S","FLOCK 1C 7","US","96.86","97.97","616","600","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40025","2014-033R","QB50P1","BEL","96.88","97.96","617","601","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40024","2014-033Q","NANOSAT C BR1","BRAZ","96.86","97.96","616","600","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40023","2014-033P","FLOCK 1C 10","US","96.86","97.97","617","599","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40022","2014-033N","PACE","ROC","96.88","97.96","618","600","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40021","2014-033M","DUCHIFAT 1","ISRA","96.84","97.97","616","598","0.00","0.00","0.00","","","2014-06-19","","false","false","false","false"
"40020","2014-033L","BRITE TORONTO","CA","98.24","97.95","737","613","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40019","2014-033K","APRIZESAT 10","US","98.20","97.95","732","613","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40018","2014-033J","APRIZESAT 9","US","98.00","97.95","714","613","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40017","2014-033H","TABLETSAT AURORA","CIS","96.61","97.98","613","579","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40016","2014-033G","SAUDISAT 4","SAUD","97.65","97.96","680","613","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40015","2014-033F","HODOYOSHI 3","JPN","97.47","97.96","664","612","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40014","2014-033E","BUGSAT 1","ARGN","96.47","97.98","613","567","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40013","2014-033D","DEIMOS 2","SPN","97.06","97.95","618","618","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40012","2014-033C","UNISAT 6","IT","97.81","97.96","696","612","0.01","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40011","2014-033B","HODOYOSHI 4","JPN","97.30","97.97","648","611","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40010","2014-033A","KAZEOSAT 2","KAZ","97.17","97.97","635","611","0.00","0.00","0.00","","","2014-06-19","","true","false","false","false"
"40001","2014-032A","COSMOS 2500 (GLONASS)","CIS","675.73","64.85","19,149","19,111","0.00","0.00","0.00","","","2014-06-14","","true","false","false","false"
"39773","2014-030A","EUTE 3B","EUTE","1,436.10","0.05","35,802","35,771","0.00","0.00","0.00","","","2014-05-26","","true","false","false","false"
"39770","2014-029E","SPROUT","JPN","97.08","97.87","625","613","0.00","0.00","0.00","","","2014-05-24","","true","false","false","false"
"39769","2014-029D","RISING 2","JPN","97.23","97.88","629","624","0.00","0.00","0.00","","","2014-05-24","","true","false","false","false"
"39768","2014-029C","SOCRATES","JPN","97.11","97.87","625","616","0.00","0.00","0.00","","","2014-05-24","","true","false","false","false"
"39767","2014-029B","UNIFORM 1","JPN","97.16","97.87","626","619","0.00","0.00","0.00","","","2014-05-24","","true","false","false","false"
"39766","2014-029A","ALOS 2","JPN","97.33","97.92","632","630","0.00","0.00","0.00","","","2014-05-24","","true","false","false","false"
"39765","2014-028E","COSMOS 2499","CIS","112.19","82.44","1,504","1,151","0.02","0.00","0.00","","","2014-05-23","","false","false","false","false"
"39763","2014-028C","COSMOS 2498","CIS","115.86","82.45","1,512","1,477","0.00","0.00","0.00","","","2014-05-23","","true","false","false","false"
"39762","2014-028B","COSMOS 2497","CIS","115.86","82.45","1,511","1,478","0.00","0.00","0.00","","","2014-05-23","","true","false","false","false"
"39761","2014-028A","COSMOS 2496","CIS","115.86","82.44","1,510","1,479","0.00","0.00","0.00","","","2014-05-23","","true","false","false","false"
"39751","2014-027A","USA 252","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-05-22","","true","false","false","false"
"39741","2014-026A","NAVSTAR 70 (USA 251)","US","717.98","55.10","20,193","20,171","0.00","0.00","0.00","","","2014-05-17","","true","false","false","false"
"39731","2014-024A","KAZEOSAT 1","KAZ","99.86","98.50","753","751","0.00","0.00","0.00","","","2014-04-30","","true","false","false","false"
"39728","2014-023B","KAZSAT 3","KAZ","1,436.13","0.05","35,790","35,785","0.00","0.00","0.00","","","2014-04-28","","true","false","false","false"
"39727","2014-023A","LUCH 5V","CIS","1,436.07","4.31","35,798","35,775","0.00","0.00","0.00","","","2014-04-28","","true","false","false","false"
"39678","2014-021A","EGYPTSAT 2","EGYP","99.05","51.62","714","713","0.00","0.00","0.00","","","2014-04-16","","true","false","false","false"
"39652","2014-020A","USA 250","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2014-04-10","","true","false","false","false"
"39650","2014-019A","OFEQ 10","ISRA","","","","","","0.00","0.00","","",","2014-03-31","","true","false","false","false"
"39635","2014-017A","IRNSS 1B","IND","1,436.07","30.56","35,864","35,708","0.00","0.00","0.00","","","2014-04-04","","true","false","false","false"
"39634","2014-016A","SENTINEL 1A","ESA","98.68","98.18","697","695","0.00","0.00","0.00","","","2014-04-03","","true","false","false","false"
"39630","2014-015A","DMSP 5D-3 F19 (USA 249)","US","","","","","","0.00","0.00","","",","2014-04-03","","true","false","false","false"
"39624","2014-014A","SJ-11-06","PRC","98.67","98.22","704","686","0.00","0.00","0.00","","","2014-03-31","","true","false","false","false"
"39620","2014-012A","COSMOS 2492 (GLONASS)","CIS","675.73","64.91","19,170","19,090","0.00","0.00","0.00","","","2014-03-23","","true","false","false","false"
"39617","2014-011B","ASTRA 5B","SES","1,436.11","0.04","35,798","35,775","0.00","0.00","0.00","","","2014-03-22","","true","false","false","false"
"39616","2014-011A","AMAZONAS 4A","SPN","1,436.10","0.04","35,804","35,770","0.00","0.00","0.00","","","2014-03-22","","true","false","false","false"
"39613","2014-010B","EXPRESS AT2","CIS","1,436.12","0.05","35,789","35,785","0.00","0.00","0.00","","","2014-03-15","","false","false","false","false"
"39612","2014-010A","EXPRESS AT1","CIS","1,436.07","0.04","35,787","35,785","0.00","0.00","0.00","","","2014-03-15","","true","false","false","false"
"39574","2014-009C","GPM","JPN","92.55","65.02","405","394","0.00","0.00","0.00","","","2014-02-27","","true","false","false","false"
"39533","2014-008A","NAVSTAR 69 (USA 248)","US","717.95","54.84","20,208","20,155","0.00","0.00","0.00","","","2014-02-21","","true","false","false","false"
"39522","2014-007A","TURKSAT 4A","TURK","1,436.05","0.07","35,805","35,766","0.00","0.00","0.00","","","2014-02-14","","true","false","false","false"
"39509","2014-006B","ATHENA-FIDUS","FRIT","1,436.06","0.01","35,791","35,781","0.00","0.00","0.00","","","2014-02-06","","true","false","false","false"
"39508","2014-006A","ABS 2","PRC","1,436.10","0.06","35,799","35,774","0.00","0.00","0.00","","","2014-02-06","","true","false","false","false"
"39504","2014-004A","TDRS 12","US","1,436.08","6.77","35,793","35,780","0.00","0.00","0.00","","","2014-01-24","","true","false","false","false"
"39500","2014-002A","THAICOM 6","THAI","1,436.11","0.06","35,789","35,785","0.00","0.00","0.00","","","2014-01-06","","true","false","false","false"
"39498","2014-001A","GSAT 14","IND","1,436.09","0.09","35,805","35,768","0.00","0.00","0.00","","","2014-01-05","","true","false","false","false"
"39497","2013-076E","COSMOS 2491","CIS","115.88","82.48","1,509","1,482","0.00","0.00","0.00","-0.01","","2013-12-25","","false","false","false","false"
"39492","2013-078C","AIST 1","CIS","96.87","82.42","624","594","0.00","0.00","0.00","0.01","","2013-12-28","","true","false","false","false"
"39491","2013-078B","COSMOS 2494 (SKRL 756)","CIS","96.78","82.42","621","588","0.00","0.00","0.00","0.01","","2013-12-28","","false","false","false","false"
"39490","2013-078A","COSMOS 2493 (SKRL 756)","CIS","96.86","82.42","622","595","0.00","0.00","0.00","0.01","","2013-12-28","","false","false","false","false"
"39487","2013-077A","EXPRESS AM-5","CIS","1,436.11","0.03","35,791","35,782","0.00","0.00","0.00","","","2013-12-26","","true","false","false","false"
"39485","2013-076C","COSMOS 2490","CIS","115.86","82.48","1,511","1,477","0.00","0.00","0.00","0.02","","2013-12-25","","true","false","false","false"
"39484","2013-076B","COSMOS 2489","CIS","115.86","82.48","1,512","1,477","0.00","0.00","0.00","2.05","","2013-12-25","","true","false","false","false"
"39483","2013-076A","COSMOS 2488","CIS","115.86","82.48","1,510","1,479","0.00","0.00","0.00","-0.02","","2013-12-25","","true","false","false","false"
"39481","2013-075A","TKSAT 1","BOL","1,436.13","0.01","35,800","35,775","0.00","0.00","0.00","","","2013-12-20","","true","false","false","false"
"39479","2013-074A","GAIA","ESA","","","","","","0.00","0.00","","L2 LAGRANGIAN ORBIT","2013-12-19","","false","false","false","false"
"39476","2013-073A","INMARSAT 5-F1","IM","1,436.08","0.01","35,787","35,785","0.00","0.00","0.00","","","2013-11-30","","true","false","false","false"
"39474","2013-072N","SMDC ONE 2.3","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39473","2013-072M","TACSAT 6","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39472","2013-072L","SMDC ONE 2.4","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39471","2013-072K","IPEX","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39470","2013-072J","CUNYSAT-1","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39469","2013-072H","MCUBED-2","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","false","false","false","false"
"39468","2013-072G","SNAP-3","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39467","2013-072F","ALICE","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39466","2013-072E","AEROCUBE 5B","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39465","2013-072D","AEROCUBE 5A","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39464","2013-072C","FIREBIRD B","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39463","2013-072B","FIREBIRD A","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39462","2013-072A","USA 247","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2013-12-06","","true","false","false","false"
"39460","2013-071A","SES 8","SES","1,436.13","0.05","35,793","35,782","0.00","0.00","0.00","","","2013-12-03","","true","false","false","false"
"39455","2013-068A","SHIYUAN 5 (SY-5)","PRC","99.75","97.94","756","738","0.00","0.00","0.00","0.01","","2013-11-25","","true","false","false","false"
"39453","2013-067C","SWARM C","ESA","93.72","87.35","459","454","0.00","0.00","0.00","0.01","","2013-11-22","","true","false","false","false"
"39452","2013-067B","SWARM A","ESA","93.72","87.35","459","454","0.00","0.00","0.00","0.01","","2013-11-22","","true","false","false","false"
"39451","2013-067A","SWARM B","ESA","94.81","87.76","512","507","0.00","0.00","0.00","-0.00","","2013-11-22","","true","false","false","false"
"39448","2013-066AJ","BPA 3/SL-24","CIS","107.27","97.68","1,610","590","0.07","0.00","0.00","0.00","","2013-11-21","","false","false","false","false"
"39446","2013-066AG","UWE-3","GER","97.66","97.80","700","593","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39445","2013-066AF","HINCUBE","NOR","97.33","97.75","673","589","0.01","0.00","0.00","0.02","","2013-11-21","","false","false","false","false"
"39444","2013-066AE","FUNCUBE 1","UK","97.48","97.80","683","594","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39443","2013-066AD","QUBESCOUT-S1","US","96.71","97.75","620","582","0.00","0.00","0.00","0.04","","2013-11-21","","false","false","false","false"
"39442","2013-066AC","PUCP-SAT 1","PER","96.80","97.76","628","582","0.00","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39441","2013-066AB","NEE 02 KRYSAOR","ECU","97.72","97.74","708","591","0.01","0.00","0.00","0.01","","2013-11-21","","false","false","false","false"
"39440","2013-066AA","CUBEBUG 2","ARGN","97.69","97.74","706","591","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39439","2013-066Z","FIRST-MOVE","GER","97.42","97.75","684","587","0.01","0.00","0.00","0.03","","2013-11-21","","false","false","false","false"
"39438","2013-066Y","VELOX-P 2","SING","97.55","97.74","692","591","0.01","0.00","0.00","0.02","","2013-11-21","","false","false","false","false"
"39437","2013-066X","BEAKERSAT 1","US","96.14","97.77","590","558","0.00","0.00","0.00","0.07","","2013-11-21","","false","false","false","false"
"39436","2013-066W","50 SAT","US","96.05","97.75","585","553","0.00","0.00","0.00","0.08","","2013-11-21","","true","false","false","false"
"39435","2013-066V","WREN","GER","97.02","97.80","638","594","0.00","0.00","0.00","","","2013-11-21","","true","false","false","false"
"39434","2013-066U","DOVE 4","US","96.45","97.76","609","568","0.00","0.00","0.00","0.05","","2013-11-21","","false","false","false","false"
"39433","2013-066T","HUMSAT D","SPN","96.75","97.76","626","580","0.00","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39432","2013-066S","ICUBE 1","PAKI","96.81","97.76","629","583","0.00","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39431","2013-066R","BRITE-PL","POL","99.61","97.78","886","594","0.02","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39430","2013-066Q","GOMX 1","DEN","98.79","97.73","810","592","0.02","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39429","2013-066P","DOVE 3","US","98.87","97.78","815","594","0.02","0.00","0.00","0.03","","2013-11-21","","true","false","false","false"
"39428","2013-066N","DELFI-N3XT","NETH","98.50","97.79","780","594","0.01","0.00","0.00","0.03","","2013-11-21","","false","false","false","false"
"39427","2013-066M","TRITON 1","UK","98.32","97.79","763","594","0.01","0.00","0.00","0.02","","2013-11-21","","false","false","false","false"
"39426","2013-066L","CINEMA 3","US","98.08","97.73","741","592","0.01","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39425","2013-066K","APRIZESAT 8","US","97.34","97.80","669","594","0.01","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39424","2013-066J","CINEMA 2","US","97.89","97.74","724","592","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39423","2013-066H","WNISAT 1","JPN","99.16","97.72","844","593","0.02","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39422","2013-066G","STSAT 3","SKOR","96.77","97.76","620","588","0.00","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39421","2013-066F","UNISAT 5","IT","96.91","97.75","633","589","0.00","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39420","2013-066E","OPTOS","SPN","98.58","97.73","789","592","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39419","2013-066D","DUBAISAT 2","UAE","96.49","97.76","599","582","0.00","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39418","2013-066C","SKYSAT 1","US","96.20","97.77","592","562","0.00","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39417","2013-066B","ZACUBE","SAFR","97.35","97.75","674","590","0.01","0.00","0.00","0.02","","2013-11-21","","true","false","false","false"
"39416","2013-066A","APRIZESAT 7","US","97.11","97.75","649","591","0.00","0.00","0.00","0.01","","2013-11-21","","true","false","false","false"
"39410","2013-065A","YAOGAN 19","PRC","109.51","100.43","1,207","1,201","0.00","0.00","0.00","0.01","","2013-11-20","","true","false","false","false"
"39408","2013-064AE","PROMETHEUS 1-3","US","93.37","40.50","446","433","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39407","2013-064AD","VERMONT LUNAR","US","93.33","40.52","444","432","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39406","2013-064AC","PROMETHEUS 1-1","US","93.37","40.50","446","433","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39405","2013-064AB","CHARGERSAT","US","93.55","40.50","454","442","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39404","2013-064AA","FIREFLY","US","93.83","40.51","465","458","0.00","0.00","0.00","0.01","","2013-11-20","","false","false","false","false"
"39403","2013-064Z","HO OPONOPONO 2","US","94.02","40.53","473","469","0.00","0.00","0.00","0.01","","2013-11-20","","false","false","false","false"
"39402","2013-064Y","SWAMPSAT","US","93.39","40.49","447","433","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39401","2013-064X","PROMETHEUS 1-8","US","93.36","40.51","447","432","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39400","2013-064W","TRAILBLAZER","US","93.61","40.51","458","444","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39399","2013-064V","PROMETHEUS 1-7","US","93.36","40.52","446","432","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39398","2013-064U","BLACK KNIGHT","US","93.01","40.52","430","415","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39397","2013-064T","HORUS","US","93.87","40.50","467","461","0.00","0.00","0.00","0.01","","2013-11-20","","false","false","false","false"
"39396","2013-064S","ORS TECH 2","US","92.25","40.51","397","373","0.00","0.00","0.00","0.03","","2013-11-20","","true","false","false","false"
"39395","2013-064R","COPPER","US","93.48","40.50","451","438","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39394","2013-064Q","PROMETHEUS 1-6","US","93.38","40.51","447","433","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39393","2013-064P","PROMETHEUS 1-5","US","93.35","40.52","446","431","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39392","2013-064N","SENSE SV2","US","93.95","40.50","471","464","0.00","0.00","0.00","0.01","","2013-11-20","","false","false","false","false"
"39391","2013-064M","PROMETHEUS 1-2","US","93.38","40.50","446","434","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39390","2013-064L","PROMETHEUS 1-4","US","93.38","40.50","446","434","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39389","2013-064K","NPS-SCAT","US","93.29","40.49","443","428","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39388","2013-064J","SENSE SV1","US","92.06","40.52","385","367","0.00","0.00","0.00","0.02","","2013-11-20","","false","false","false","false"
"39387","2013-064H","ORS TECH 1","US","92.08","40.51","389","364","0.00","0.00","0.00","0.03","","2013-11-20","","true","false","false","false"
"39386","2013-064G","ORSES","US","93.44","40.50","449","437","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39385","2013-064F","TJ3SAT","US","93.18","40.52","436","424","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39384","2013-064E","KYSAT II","US","90.77","40.48","327","298","0.00","0.00","0.00","0.03","","2013-11-20","","true","false","false","false"
"39383","2013-064D","DRAGONSAT","US","93.69","40.50","461","449","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39381","2013-064B","PHONESAT 2.4","US","93.75","40.50","464","452","0.00","0.00","0.00","0.02","","2013-11-20","","true","false","false","false"
"39380","2013-064A","STPSAT-3","US","94.35","40.51","489","486","0.00","0.00","0.00","0.01","","2013-11-20","","true","false","false","false"
"39378","2013-063A","MAVEN","US","","","","","","0.00","0.00","","MARS ORBIT","2013-11-18","","false","false","false","false"
"39375","2013-062A","RADUGA 1M-3","CIS","1,436.09","0.02","35,796","35,777","0.00","0.00","0.00","","","2013-11-11","","true","false","false","false"
"39370","2013-060A","MARS ORBITER MISSION","IND","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2013-11-05","","false","false","false","false"
"39363","2013-059A","YAOGAN 18","PRC","94.87","97.49","513","512","0.00","0.00","0.00","0.00","","2013-10-29","","true","false","false","false"
"39360","2013-058A","SIRIUS FM-6","US","1,436.09","0.02","35,790","35,783","0.00","0.00","0.00","","","2013-10-25","","true","false","false","false"
"39358","2013-057A","SJ-16","PRC","96.77","74.97","612","596","0.00","0.00","0.00","0.01","","2013-10-25","","true","false","false","false"
"39285","2013-056A","ASTRA 2E","SES","1,436.08","0.05","35,797","35,776","0.00","0.00","0.00","","","2012-12-28","","true","false","false","false"
"39271","2013-055G","CUSAT 2/FALCON 9","US","101.71","80.98","1,360","319","0.07","0.00","0.00","0.01","","2012-12-28","","false","false","false","false"
"39270","2013-055F","POPACS 3","US","102.48","80.99","1,427","324","0.08","0.00","0.00","0.00","","2012-12-28","","false","false","false","false"
"39269","2013-055E","POPACS 2","US","102.25","81.00","1,406","324","0.07","0.00","0.00","0.00","","2012-12-28","","false","false","false","false"
"39268","2013-055D","POPACS 1","US","101.86","81.01","1,368","325","0.07","0.00","0.00","0.01","","2012-12-28","","false","false","false","false"
"39267","2013-055C","DANDE","US","102.38","80.99","1,418","325","0.08","0.00","0.00","0.00","","2012-12-28","","true","false","false","false"
"39266","2013-055B","CUSAT 1","US","101.96","80.99","1,380","323","0.07","0.00","0.00","0.01","","2012-12-28","","true","false","false","false"
"39265","2013-055A","CASSIOPE","CA","102.18","80.98","1,400","323","0.07","0.00","0.00","0.00","","2012-12-28","","true","false","false","false"
"39262","2013-053A","KUAIZHOU 1 (KZ-1)","PRC","91.51","96.56","358","340","0.00","0.00","0.00","0.00","","2012-12-28","","true","false","false","false"
"39260","2013-052A","FENGYUN 3C","PRC","101.44","98.75","827","826","0.00","0.00","0.00","-0.00","","2012-12-28","","true","false","false","false"
"39256","2013-050A","AEHF 3 (USA 246)","US","","","","","","0.00","0.00","","",","2012-12-28","","true","false","false","false"
"39253","2013-049A","SPRINT A","JPN","106.26","29.72","1,155","952","0.01","0.00","0.00","0.03","","2012-12-28","","true","false","false","false"
"39251","2013-048C","GONETS M 07","CIS","115.85","82.49","1,506","1,483","0.00","0.00","0.00","0.04","","2012-12-28","","true","false","false","false"
"39250","2013-048B","GONETS M 06","CIS","115.86","82.48","1,508","1,481","0.00","0.00","0.00","0.06","","2012-12-28","","true","false","false","false"
"39249","2013-048A","GONETS M 05","CIS","115.86","82.48","1,506","1,483","0.00","0.00","0.00","0.51","","2012-12-28","","true","false","false","false"
"39241","2013-046C","YAOGAN 17C","PRC","107.05","63.42","1,131","1,049","0.01","0.00","0.00","-1.15","","2012-12-28","","true","false","false","false"
"39240","2013-046B","YAOGAN 17B","PRC","107.05","63.42","1,131","1,050","0.01","0.00","0.00","0.16","","2012-12-28","","true","false","false","false"
"39239","2013-046A","YAOGAN 17A","PRC","107.05","63.42","1,131","1,050","0.01","0.00","0.00","0.15","","2012-12-28","","true","false","false","false"
"39237","2013-045A","AMOS 4","ISRA","1,436.11","0.02","35,795","35,778","0.00","0.00","0.00","","","2012-12-28","","true","false","false","false"
"39234","2013-044B","GSAT 7","IND","1,436.10","0.05","35,829","35,744","0.00","0.00","0.00","","","2012-12-28","","true","false","false","false"
"39233","2013-044A","EUTE 25B","EUTE","1,436.05","0.05","35,792","35,779","0.00","0.00","0.00","","","2012-12-28","","true","false","false","false"
"39232","2013-043A","USA 245","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2012-12-28","","true","false","false","false"
"39227","2013-042A","KOMPSAT 5","SKOR","95.71","97.60","557","549","0.00","0.00","0.00","0.01","","2012-12-28","","true","false","false","false"
"39222","2013-041A","WGS 6 (USA 244)","US","","","","","","0.00","0.00","","",","2012-12-28","","true","false","false","false"
"39216","2013-038B","INSAT 3D","IND","1,436.11","0.02","35,798","35,776","0.00","0.00","0.00","","","2013-07-25","","true","false","false","false"
"39215","2013-038A","ALPHASAT (I-4A F4)","IM","1,436.06","0.67","35,793","35,778","0.00","0.00","0.00","","","2013-07-25","","true","false","false","false"
"39210","2013-037C","PAYLOAD C","PRC","96.36","97.67","607","562","0.00","0.00","0.00","0.01","","2013-07-19","","true","false","false","false"
"39209","2013-037B","PAYLOAD B","PRC","98.11","98.03","672","664","0.00","0.00","0.00","0.01","","2013-07-19","","true","false","false","false"
"39208","2013-037A","PAYLOAD A","PRC","98.10","98.03","674","661","0.00","0.00","0.00","0.00","","2013-07-19","","true","false","false","false"
"39206","2013-036A","MUOS 2","US","","","","","","0.00","0.00","","",","2013-07-19","","true","false","false","false"
"39202","2013-035A","SJ-11-05","PRC","98.64","98.18","701","686","0.00","0.00","0.00","0.01","","2013-07-15","","true","false","false","false"
"39199","2013-034A","IRNSS R1A","IND","1,436.01","27.60","35,877","35,693","0.00","0.00","0.00","","","2013-07-01","","true","false","false","false"
"39197","2013-033A","IRIS","US","97.46","97.90","658","617","0.00","0.00","0.00","0.01","","2013-06-28","","true","false","false","false"
"39194","2013-032A","COSMOS 2487","CIS","94.38","74.73","490","487","0.00","0.00","0.00","0.01","","2013-06-27","","true","false","false","false"
"39191","2013-031D","O3B PFM","O3B","287.93","0.03","8,071","8,061","0.00","0.00","0.00","","","2013-06-25","","true","false","false","false"
"39190","2013-031C","O3B FM2","O3B","287.93","0.04","8,072","8,060","0.00","0.00","0.00","","","2013-06-25","","true","false","false","false"
"39189","2013-031B","O3B FM4","O3B","287.93","0.04","8,071","8,061","0.00","0.00","0.00","","","2013-06-25","","true","false","false","false"
"39188","2013-031A","O3B FM5","O3B","287.93","0.03","8,071","8,061","0.00","0.00","0.00","","","2013-06-25","","true","false","false","false"
"39186","2013-030A","RESURS P1","CIS","93.91","97.21","469","463","0.00","0.00","0.00","0.00","","2013-06-25","","true","false","false","false"
"39177","2013-028A","COSMOS 2486","CIS","99.22","98.24","731","712","0.00","0.00","0.00","0.02","","2013-06-07","","true","false","false","false"
"39172","2013-026A","SES 6","SES","1,436.10","0.04","35,797","35,776","0.00","0.00","0.00","","","2013-06-03","","true","false","false","false"
"39168","2013-024A","WGS 5 (USA 243)","US","","","","","","0.00","0.00","","",","2013-05-25","","true","false","false","false"
"39166","2013-023A","NAVSTAR 68 (USA 242)","US","717.98","55.35","20,231","20,134","0.00","0.00","0.00","","","2013-05-15","","true","false","false","false"
"39163","2013-022A","EUTE 7B (EUTE 3D)","EUTE","1,436.08","0.05","35,803","35,769","0.00","0.00","0.00","","","2013-05-14","","true","false","false","false"
"39161","2013-021C","ESTCUBE 1","EST","97.91","98.08","666","651","0.00","0.00","0.00","0.02","","2013-05-07","","true","false","false","false"
"39160","2013-021B","VNREDSAT 1","VTNM","98.43","98.16","684","683","0.00","0.00","0.00","-0.00","","2013-05-07","","true","false","false","false"
"39159","2013-021A","PROBA V","ESA","101.21","98.67","819","813","0.00","0.00","0.00","0.01","","2013-05-07","","true","false","false","false"
"39157","2013-020A","CHINASAT 11","PRC","1,436.09","0.07","35,792","35,780","0.00","0.00","0.00","","","2013-05-01","","true","false","false","false"
"39155","2013-019A","COSMOS 2485 (GLONASS)","CIS","675.73","64.68","19,166","19,094","0.00","0.00","0.00","","","2013-04-26","","true","false","false","false"
"39153","2013-018D","CUBEBUG 1","ARGN","97.38","98.03","645","622","0.00","0.00","0.00","0.02","","2013-04-26","","true","false","false","false"
"39152","2013-018C","TURKSAT 3U","TURK","97.38","98.00","645","622","0.00","0.00","0.00","0.02","","2013-04-26","","false","false","false","false"
"39151","2013-018B","NEE 01 PEGASUS","ECU","97.40","98.02","646","623","0.00","0.00","0.00","0.01","","2013-04-26","","false","false","false","false"
"39150","2013-018A","GAOFEN 1","PRC","97.53","98.01","653","628","0.00","0.00","0.00","0.01","","2013-04-26","","true","false","false","false"
"39136","2013-015G","BEESAT 2","GER","95.47","64.88","566","517","0.00","0.00","0.00","0.02","","2013-04-19","","true","false","false","false"
"39135","2013-015F","SOMP","GER","95.46","64.88","566","516","0.00","0.00","0.00","0.02","","2013-04-19","","false","false","false","false"
"39134","2013-015E","BEESAT 3","GER","95.40","64.87","562","513","0.00","0.00","0.00","0.02","","2013-04-19","","true","false","false","false"
"39133","2013-015D","AIST 2","CIS","95.86","64.88","587","533","0.00","0.00","0.00","0.01","","2013-04-19","","true","false","false","false"
"39132","2013-015C","DOVE 2","US","95.78","64.88","584","529","0.00","0.00","0.00","0.01","","2013-04-19","","true","false","false","false"
"39127","2013-014A","ANIK G1","CA","1,436.10","0.03","35,798","35,775","0.00","0.00","0.00","","","2013-04-15","","true","false","false","false"
"39122","2013-012A","EUTE 117 WEST A(SATMEX 8","EUTE","1,436.09","0.02","35,798","35,775","0.00","0.00","0.00","","","2013-03-26","","true","false","false","false"
"39120","2013-011A","SBIRS GEO 2 (USA 241)","US","","","","","","0.00","0.00","","",","2013-03-19","","true","false","false","false"
"39092","2013-009G","BRITE-U UNIBRITE","ASRA","100.37","98.61","783","770","0.00","0.00","0.00","0.01","","2013-02-25","","true","false","false","false"
"39091","2013-009F","BRITE-A TUGSAT-1","ASRA","100.36","98.61","783","768","0.00","0.00","0.00","0.01","","2013-02-25","","true","false","false","false"
"39090","2013-009E","STRAND 1","UK","100.37","98.61","782","770","0.00","0.00","0.00","0.02","","2013-02-25","","true","false","false","false"
"39089","2013-009D","NEOSSAT","CA","100.41","98.61","785","770","0.00","0.00","0.00","0.01","","2013-02-25","","true","false","false","false"
"39088","2013-009C","SAPPHIRE","CA","100.42","98.61","787","770","0.00","0.00","0.00","0.01","","2013-02-25","","true","false","false","false"
"39087","2013-009B","AAUSAT3","DEN","100.35","98.61","784","766","0.00","0.00","0.00","0.03","","2013-02-25","","true","false","false","false"
"39086","2013-009A","SARAL","IND","100.54","98.54","785","783","0.00","0.00","0.00","-0.01","","2013-02-25","","true","false","false","false"
"39084","2013-008A","LANDSAT 8","US","98.83","98.19","703","702","0.00","0.00","0.00","-0.01","","2013-02-11","","true","false","false","false"
"39079","2013-006B","AZERSPACE 1","AZER","1,436.08","0.01","35,797","35,776","0.00","0.00","0.00","","","2013-02-07","","true","false","false","false"
"39078","2013-006A","AMAZONAS 3","SPN","1,436.11","0.07","35,804","35,770","0.00","0.00","0.00","","","2013-02-07","","true","false","false","false"
"39077","2013-005F","GLOBALSTAR M095","GLOB","114.08","51.98","1,414","1,413","0.00","0.00","0.00","-25.94","","2013-02-06","","true","false","false","false"
"39076","2013-005E","GLOBALSTAR M078","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","0.02","","2013-02-06","","true","false","false","false"
"39075","2013-005D","GLOBALSTAR M096","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","-1.16","","2013-02-06","","true","false","false","false"
"39074","2013-005C","GLOBALSTAR M094","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","-0.84","","2013-02-06","","true","false","false","false"
"39073","2013-005B","GLOBALSTAR M093","GLOB","114.08","51.98","1,415","1,412","0.00","0.00","0.00","-4.75","","2013-02-06","","true","false","false","false"
"39072","2013-005A","GLOBALSTAR M097","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","-0.88","","2013-02-06","","true","false","false","false"
"39070","2013-004A","TDRS 11","US","1,436.19","6.38","35,833","35,744","0.00","0.00","0.00","","","2013-01-31","","true","false","false","false"
"39068","2013-003A","STSAT 2C","SKOR","99.37","80.25","1,169","288","0.06","0.00","0.00","0.01","","2013-01-30","","true","false","false","false"
"39062","2013-002B","IGS 8B (DEMO)","JPN","","","","","","0.00","0.00","","",","2013-01-27","","true","false","false","false"
"39061","2013-002A","IGS 8A","JPN","","","","","","0.00","0.00","","",","2013-01-27","","true","false","false","false"
"39059","2013-001C","COSMOS 2484","CIS","115.86","82.50","1,514","1,475","0.00","0.00","0.00","-0.00","","2013-01-15","","true","false","false","false"
"39058","2013-001B","COSMOS 2483","CIS","115.76","82.50","1,503","1,477","0.00","0.00","0.00","0.01","","2013-01-15","","true","false","false","false"
"39057","2013-001A","COSMOS 2482","CIS","115.86","82.50","1,516","1,473","0.00","0.00","0.00","0.08","","2013-01-15","","true","false","false","false"
"39035","2012-075B","MEXSAT 3","MEX","1,436.10","0.05","35,794","35,780","0.00","0.00","0.00","","","2012-12-19","","true","false","false","false"
"39034","2012-075A","SKYNET 5D","UK","1,436.09","0.07","35,803","35,770","0.00","0.00","0.00","","","2012-12-19","","true","false","false","false"
"39030","2012-073A","GOKTURK 2","TURK","98.30","98.09","688","666","0.00","0.00","0.00","0.01","","2012-12-18","","true","false","false","false"
"39026","2012-072A","KMS 3-2","NKOR","94.88","97.30","546","479","0.00","0.00","0.00","0.01","","2012-12-12","","false","false","false","false"
"39025","2012-071A","OTV 3 (USA 240)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2012-12-11","","true","false","false","false"
"39022","2012-070A","YAMAL 402","CIS","1,436.08","0.03","35,790","35,783","0.00","0.00","0.00","","","2012-11-30","","true","false","false","false"
"39020","2012-069A","EUTE 70B","EUTE","1,436.10","0.06","35,802","35,772","0.00","0.00","0.00","","","2012-12-03","","true","false","false","false"
"39019","2012-068A","PLEIADES 1B","FR","98.73","98.18","699","697","0.00","0.00","0.00","-0.00","","2012-12-02","","true","false","false","false"
"39017","2012-067A","CHINASAT 12","PRC","1,436.10","0.02","35,799","35,774","0.00","0.00","0.00","","","2012-11-27","","true","false","false","false"
"39013","2012-066C","YAOGAN 16C","PRC","107.05","63.38","1,144","1,036","0.01","0.00","0.00","-0.10","","2012-11-25","","true","false","false","false"
"39012","2012-066B","YAOGAN 16B","PRC","107.05","63.38","1,144","1,036","0.01","0.00","0.00","-0.35","","2012-11-25","","true","false","false","false"
"39011","2012-066A","YAOGAN 16A","PRC","107.05","63.38","1,144","1,036","0.01","0.00","0.00","0.01","","2012-11-25","","true","false","false","false"
"39008","2012-065A","ECHOSTAR 16","US","1,436.11","0.01","35,798","35,775","0.00","0.00","0.00","","","2012-11-20","","true","false","false","false"
"38999","2012-064C","XINYAN 1 (XY-1)","PRC","93.59","97.34","454","446","0.00","0.00","0.00","0.01","","2012-11-18","","true","false","false","false"
"38998","2012-064B","FENGNIAO 1 (FN-1)","PRC","93.94","97.35","472","463","0.00","0.00","0.00","0.01","","2012-11-18","","true","false","false","false"
"38997","2012-064A","HJ-1C","PRC","92.57","97.34","412","390","0.00","0.00","0.00","0.01","","2012-11-18","","true","false","false","false"
"38995","2012-063A","MERIDIAN 6","CIS","717.76","63.76","38,860","1,493","0.70","0.00","0.00","","","2012-11-14","","true","false","false","false"
"38992","2012-062B","EUTE 21B","EUTE","1,436.10","0.06","35,796","35,777","0.00","0.00","0.00","","","2012-11-10","","true","false","false","false"
"38991","2012-062A","STARONE C3","BRAZ","1,436.12","0.06","35,800","35,774","0.00","0.00","0.00","","","2012-11-10","","true","false","false","false"
"38978","2012-061B","YAMAL 300K","CIS","1,436.12","0.06","35,789","35,785","0.00","0.00","0.00","","","2012-11-02","","true","false","false","false"
"38977","2012-061A","LUCH 5B","CIS","1,436.06","1.80","35,800","35,772","0.00","0.00","0.00","","","2012-11-02","","true","false","false","false"
"38953","2012-059A","BEIDOU G6","PRC","1,436.09","0.17","35,797","35,776","0.00","0.00","0.00","","","2012-10-25","","true","false","false","false"
"38867","2012-057A","INTELSAT 23","ITSO","1,436.09","0.05","35,794","35,779","0.00","0.00","0.00","","","2012-10-14","","true","false","false","false"
"38861","2012-056B","SJ-9B","PRC","97.31","97.91","643","616","0.00","0.00","0.00","0.01","","2012-10-14","","true","false","false","false"
"38860","2012-056A","SJ-9A","PRC","97.32","97.91","648","613","0.00","0.00","0.00","0.01","","2012-10-14","","true","false","false","false"
"38858","2012-055B","GALILEO-FM4","ESA","844.70","55.03","23,227","23,218","0.00","0.00","0.00","","","2012-10-12","","true","false","false","false"
"38857","2012-055A","GALILEO-FM3","ESA","844.70","55.02","23,228","23,217","0.00","0.00","0.00","","","2012-10-12","","true","false","false","false"
"38833","2012-053A","NAVSTAR 67 (USA 239)","US","717.98","54.70","20,261","20,104","0.00","0.00","0.00","","","2012-10-04","","true","false","false","false"
"38782","2012-052A","VRSS-1","VENZ","97.37","97.95","650","616","0.00","0.00","0.00","0.01","","2011-12-29","","true","false","false","false"
"38779","2012-051B","GSAT 10","IND","1,436.09","0.13","35,800","35,773","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38778","2012-051A","ASTRA 2F","SES","1,436.10","0.04","35,801","35,772","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38775","2012-050B","BEIDOU M6","PRC","773.22","54.87","21,575","21,481","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38774","2012-050A","BEIDOU M5","PRC","773.15","54.77","21,626","21,426","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38771","2012-049A","METOP-B","EUME","101.30","98.72","821","819","0.00","0.00","0.00","0.00","","2011-12-29","","true","false","false","false"
"38769","2012-048M","AEROCUBE 4","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38768","2012-048L","AEROCUBE 4.5B","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38767","2012-048K","AEROCUBE 4.5A","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38766","2012-048J","SMDC ONE 1.1","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38765","2012-048H","RE","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38764","2012-048G","CINEMA","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38763","2012-048F","CP5","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38762","2012-048E","CXBN","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38761","2012-048D","CSSWE","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38760","2012-048C","AENEAS","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38759","2012-048B","SMDC ONE 1.2","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","true","false","false","false"
"38758","2012-048A","USA 238","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-29","","false","false","false","false"
"38756","2012-047B","PROITERES","JPN","97.59","98.22","652","635","0.00","0.00","0.00","0.01","","2011-12-29","","false","false","false","false"
"38755","2012-047A","SPOT 6","FR","98.73","98.17","699","697","0.00","0.00","0.00","-0.00","","2011-12-29","","true","false","false","false"
"38753","2012-046B","RBSP B","US","541.63","9.80","30,686","579","0.68","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38752","2012-046A","RBSP A","US","538.57","9.84","30,531","567","0.68","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38749","2012-045A","INTELSAT 21","ITSO","1,436.09","0.02","35,797","35,776","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38745","2012-044B","EXPRESS MD2","CIS","136.04","49.92","4,504","264","0.24","0.00","0.00","0.01","","2011-12-29","","false","false","false","false"
"38744","2012-044A","TELKOM 3","INDO","125.80","49.90","3,618","259","0.20","0.00","0.00","0.02","","2011-12-29","","false","false","false","false"
"38741","2012-043B","HYLAS 2","UK","1,436.13","0.04","35,796","35,778","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38740","2012-043A","INTELSAT 20","ITSO","1,436.10","0.03","35,792","35,782","0.00","0.00","0.00","","","2011-12-29","","true","false","false","false"
"38736","2012-041D","GONETS M 04","CIS","115.86","82.48","1,512","1,477","0.00","0.00","0.00","0.02","","2012-07-28","","true","false","false","false"
"38735","2012-041C","YUBELEINY 2","CIS","115.89","82.48","1,510","1,482","0.00","0.00","0.00","0.00","","2012-07-28","","true","false","false","false"
"38734","2012-041B","GONETS M 03","CIS","115.86","82.48","1,510","1,479","0.00","0.00","0.00","0.03","","2012-07-28","","true","false","false","false"
"38733","2012-041A","COSMOS 2481","CIS","115.91","82.48","1,512","1,481","0.00","0.00","0.00","0.01","","2012-07-28","","true","false","false","false"
"38730","2012-040A","TIANLIAN 1-03","PRC","1,436.10","0.14","35,806","35,767","0.00","0.00","0.00","","","2012-07-25","","true","false","false","false"
"38711","2012-039E","MKA-FKI 1","CIS","101.12","98.98","820","804","0.00","0.00","0.00","0.01","","2012-07-22","","true","false","false","false"
"38710","2012-039D","TET-1","GER","93.93","97.48","470","464","0.00","0.00","0.00","0.01","","2012-07-22","","true","false","false","false"
"38709","2012-039C","EXACTVIEW-1","CA","101.14","98.98","820","805","0.00","0.00","0.00","0.01","","2012-07-22","","true","false","false","false"
"38708","2012-039B","BKA 2","BELA","94.78","97.46","509","507","0.00","0.00","0.00","0.00","","2012-07-22","","true","false","false","false"
"38707","2012-039A","KANOPUS-V 1","CIS","94.80","97.47","510","508","0.00","0.00","0.00","-0.00","","2012-07-22","","true","false","false","false"
"38652","2012-036A","SES 5","SES","1,436.09","0.06","35,794","35,778","0.00","0.00","0.00","","","2012-06-30","","true","false","false","false"
"38552","2012-035B","METEOSAT 10 (MSG 3)","EUME","1,436.02","0.58","35,790","35,781","0.00","0.00","0.00","","","2012-07-05","","true","false","false","false"
"38551","2012-035A","ECHOSTAR 17","US","1,436.10","0.02","35,796","35,777","0.00","0.00","0.00","","","2012-07-05","","true","false","false","false"
"38528","2012-034A","USA 237","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2012-06-29","","true","false","false","false"
"38466","2012-033A","USA 236","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2012-06-20","","true","false","false","false"
"38358","2012-031A","NUSTAR","US","96.92","6.03","619","603","0.00","0.00","0.00","0.01","","2012-06-13","","true","false","false","false"
"38356","2012-030A","INTELSAT 19","ITSO","1,436.08","0.03","35,800","35,772","0.00","0.00","0.00","","","2012-06-01","","true","false","false","false"
"38354","2012-029A","YAOGAN 15","PRC","109.45","100.63","1,207","1,196","0.00","0.00","0.00","0.01","","2012-05-29","","true","false","false","false"
"38352","2012-028A","CHINASAT 2A","PRC","1,436.12","0.05","35,806","35,768","0.00","0.00","0.00","","","2012-05-26","","true","false","false","false"
"38342","2012-026A","NIMIQ 6","CA","1,436.11","0.03","35,797","35,777","0.00","0.00","0.00","","","2012-05-17","","true","false","false","false"
"38340","2012-025D","HORYU 2","JPN","97.72","98.30","658","641","0.00","0.00","0.00","0.02","","2012-05-17","","true","false","false","false"
"38339","2012-025C","SDS-4","JPN","97.98","98.30","668","656","0.00","0.00","0.00","0.01","","2012-05-17","","true","false","false","false"
"38338","2012-025B","KOMPSAT 3","SKOR","98.51","98.12","696","679","0.00","0.00","0.00","0.01","","2012-05-17","","true","false","false","false"
"38337","2012-025A","GCOM W1","JPN","98.82","98.22","703","702","0.00","0.00","0.00","-0.00","","2012-05-17","","true","false","false","false"
"38332","2012-023B","VINASAT 2","VTNM","1,436.10","0.01","35,794","35,779","0.00","0.00","0.00","","","2012-05-15","","true","false","false","false"
"38331","2012-023A","JCSAT 13","JPN","1,436.11","0.02","35,795","35,779","0.00","0.00","0.00","","","2012-05-15","","true","false","false","false"
"38257","2012-021A","YAOGAN 14","PRC","94.12","97.35","480","472","0.00","0.00","0.00","0.00","","2012-05-10","","true","false","false","false"
"38256","2012-020A","TIANHUI 1-02","PRC","94.53","97.46","507","485","0.00","0.00","0.00","0.00","","2012-05-06","","true","false","false","false"
"38254","2012-019A","AEHF 2 (USA 235)","US","","","","","","0.00","0.00","","",","2012-05-04","","true","false","false","false"
"38251","2012-018B","BEIDOU M4","PRC","773.22","55.60","21,605","21,450","0.00","0.00","0.00","","","2012-04-29","","true","false","false","false"
"38250","2012-018A","BEIDOU M3","PRC","773.22","55.67","21,598","21,458","0.00","0.00","0.00","","","2012-04-29","","true","false","false","false"
"38248","2012-017A","RISAT 1","IND","95.43","97.56","542","536","0.00","0.00","0.00","0.00","","2012-04-26","","true","false","false","false"
"38245","2012-016A","YAHSAT 1B","UAE","1,436.07","0.00","35,797","35,775","0.00","0.00","0.00","","","2012-04-23","","true","false","false","false"
"38109","2012-014A","USA 234","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2012-04-03","","true","false","false","false"
"38107","2012-013A","APSTAR 7","PRC","1,436.10","0.04","35,797","35,776","0.00","0.00","0.00","","","2012-03-31","","true","false","false","false"
"38101","2012-012A","COSMOS 2479","CIS","1,434.93","0.47","35,770","35,758","0.00","0.00","0.00","","","2012-03-30","","false","false","false","false"
"38098","2012-011A","INTELSAT 22","ITSO","1,436.10","0.02","35,796","35,777","0.00","0.00","0.00","","","2012-03-25","","true","false","false","false"
"38093","2012-009A","MUOS 1","US","","","","","","0.00","0.00","","",","2012-02-23","","true","false","false","false"
"38091","2012-008A","BEIDOU G5","PRC","1,436.15","1.02","35,792","35,783","0.00","0.00","0.00","","","2012-02-23","","true","false","false","false"
"38087","2012-007A","SES 4","SES","1,436.10","0.03","35,799","35,775","0.00","0.00","0.00","","","2012-02-13","","true","false","false","false"
"38085","2012-006J","UNICUBESAT","IT","90.86","69.42","397","236","0.01","0.00","0.00","0.01","","2012-02-12","","false","false","false","false"
"38078","2012-006B","ALMASAT-1","IT","98.15","69.46","1,038","302","0.05","0.00","0.00","0.01","","2012-02-12","","false","false","false","false"
"38077","2012-006A","LARES","IT","114.75","69.49","1,451","1,437","0.00","0.00","0.00","0.00","","2012-02-12","","false","false","false","false"
"38070","2012-003A","WGS F4 (USA 233)","US","","","","","","0.00","0.00","","",","2012-01-20","","true","false","false","false"
"38049","2012-002A","FENGYUN 2F","PRC","1,436.02","0.17","35,793","35,777","0.00","0.00","0.00","","","2012-01-13","","true","false","false","false"
"38047","2012-001B","VESSELSAT 2","LUXE","93.10","97.40","430","423","0.00","0.00","0.00","0.01","","2011-12-31","","true","false","false","false"
"38046","2012-001A","ZY 3","PRC","94.66","97.38","504","500","0.00","0.00","0.00","0.00","","2011-12-31","","true","false","false","false"
"38045","2011-080F","GLOBALSTAR M086","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","-0.39","","2011-12-28","","true","false","false","false"
"38044","2011-080E","GLOBALSTAR M090","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","-0.06","","2011-12-28","","true","false","false","false"
"38043","2011-080D","GLOBALSTAR M092","GLOB","114.08","52.01","1,414","1,413","0.00","0.00","0.00","-1.97","","2011-12-28","","true","false","false","false"
"38042","2011-080C","GLOBALSTAR M082","GLOB","114.08","52.01","1,414","1,414","0.00","0.00","0.00","-0.97","","2011-12-28","","true","false","false","false"
"38041","2011-080B","GLOBALSTAR M080","GLOB","114.08","52.01","1,414","1,413","0.00","0.00","0.00","-7.13","","2011-12-28","","true","false","false","false"
"38040","2011-080A","GLOBALSTAR M084","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","-2.13","","2011-12-28","","true","false","false","false"
"38038","2011-079A","ZY 1","PRC","100.32","98.44","775","773","0.00","0.00","0.00","0.00","","2011-12-22","","true","false","false","false"
"38014","2011-077A","NIGCOMSAT 1R","NIG","1,436.04","0.01","35,796","35,775","0.00","0.00","0.00","","","2011-12-19","","true","false","false","false"
"38013","2011-076G","ASAP-S","FR","96.43","97.92","594","581","0.00","0.00","0.00","0.01","","2011-12-17","","false","false","false","false"
"38012","2011-076F","PLEIADES 1","FR","98.73","98.17","699","697","0.00","0.00","0.00","0.00","","2011-12-17","","true","false","false","false"
"38011","2011-076E","SSOT","CHLE","97.16","97.87","624","622","0.00","0.00","0.00","0.00","","2011-12-17","","true","false","false","false"
"38010","2011-076D","ELISA E12","FR","","","","","","0.00","0.00","","",","2011-12-17","","true","false","false","false"
"38009","2011-076C","ELISA W23","FR","","","","","","0.00","0.00","","",","2011-12-17","","true","false","false","false"
"38008","2011-076B","ELISA E24","FR","","","","","","0.00","0.00","","",","2011-12-17","","true","false","false","false"
"38007","2011-076A","ELISA W11","FR","","","","","","0.00","0.00","","",","2011-12-17","","true","false","false","false"
"37954","2011-075A","IGS 7A","JPN","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-12-12","","true","false","false","false"
"37951","2011-074B","LUCH 5A","CIS","1,436.13","2.49","35,798","35,776","0.00","0.00","0.00","","","2011-12-11","","true","false","false","false"
"37950","2011-074A","AMOS 5","ISRA","1,436.10","0.04","35,797","35,776","0.00","0.00","0.00","","","2011-12-11","","true","false","false","false"
"37948","2011-073A","BEIDOU IGSO 5","PRC","1,435.89","54.23","35,909","35,656","0.00","0.00","0.00","","","2011-12-01","","true","false","false","false"
"37941","2011-072A","YAOGAN 13","PRC","94.85","97.45","514","509","0.00","0.00","0.00","0.00","","2011-11-29","","true","false","false","false"
"37938","2011-071A","COSMOS 2478 (GLONASS)","CIS","675.73","65.05","19,168","19,092","0.00","0.00","0.00","","","2011-11-28","","true","false","false","false"
"37933","2011-069A","ASIASAT 7","AC","1,436.10","0.03","35,796","35,777","0.00","0.00","0.00","","","2011-11-25","","true","false","false","false"
"37931","2011-068B","SHIYUAN 4","PRC","100.72","98.46","803","782","0.00","0.00","0.00","0.01","","2011-11-20","","true","false","false","false"
"37930","2011-068A","CHUANG XIN 1-03","PRC","100.73","98.46","805","782","0.00","0.00","0.00","0.01","","2011-11-20","","true","false","false","false"
"37875","2011-066B","YAOGAN 12","PRC","94.42","97.29","496","485","0.00","0.00","0.00","0.00","","2011-10-31","","true","false","false","false"
"37874","2011-066A","TX 1","PRC","92.56","97.31","403","396","0.00","0.00","0.00","0.01","","2011-10-31","","true","false","false","false"
"37869","2011-064C","COSMOS 2475 (GLONASS)","CIS","675.73","64.53","19,177","19,083","0.00","0.00","0.00","","","2011-11-04","","true","false","false","false"
"37868","2011-064B","COSMOS 2477 (GLONASS)","CIS","675.73","64.52","19,160","19,100","0.00","0.00","0.00","","","2011-11-04","","true","false","false","false"
"37867","2011-064A","COSMOS 2476 (GLONASS)","CIS","675.73","64.51","19,165","19,095","0.00","0.00","0.00","","","2011-11-04","","true","false","false","false"
"37855","2011-061F","M-CUBED/EXP-1 PRIME","US","96.34","101.71","725","442","0.02","0.00","0.00","0.01","","2011-10-28","","true","false","false","false"
"37854","2011-061E","AUBIESAT-1","US","96.28","101.71","719","441","0.02","0.00","0.00","0.01","","2011-10-28","","false","false","false","false"
"37853","2011-061D","RAX-2","US","96.40","101.71","728","445","0.02","0.00","0.00","0.01","","2011-10-28","","false","false","false","false"
"37852","2011-061C","DICE 2","US","96.31","101.71","721","443","0.02","0.00","0.00","0.01","","2011-10-28","","false","false","false","false"
"37851","2011-061B","DICE 1","US","96.44","101.71","731","445","0.02","0.00","0.00","0.01","","2011-10-28","","false","false","false","false"
"37849","2011-061A","NPP","US","101.44","98.69","828","826","0.00","0.00","0.00","0.01","","2011-10-28","","true","false","false","false"
"37847","2011-060B","GALILEO-FM2","ESA","844.70","55.21","23,238","23,206","0.00","0.00","0.00","","","2011-10-21","","true","false","false","false"
"37846","2011-060A","GALILEO-PFM","ESA","844.70","55.21","23,234","23,210","0.00","0.00","0.00","","","2011-10-21","","true","false","false","false"
"37843","2011-059A","VIASAT 1","US","1,436.09","0.01","35,797","35,776","0.00","0.00","0.00","","","2011-10-19","","true","false","false","false"
"37841","2011-058D","SRMSAT","IND","102.10","19.97","866","849","0.00","0.00","0.00","0.02","","2011-10-12","","true","false","false","false"
"37840","2011-058C","VESSELSAT 1","LUXE","102.07","19.97","867","847","0.00","0.00","0.00","0.01","","2011-10-12","","true","false","false","false"
"37839","2011-058B","JUGNU","IND","101.95","19.96","865","837","0.00","0.00","0.00","0.02","","2011-10-12","","true","false","false","false"
"37838","2011-058A","MEGHA-TROPIQUES","IND","102.15","19.98","868","853","0.00","0.00","0.00","0.02","","2011-10-12","","true","false","false","false"
"37836","2011-057A","EUTE 16A (EUTE W3C)","EUTE","1,436.09","0.06","35,806","35,767","0.00","0.00","0.00","","","2011-10-07","","true","false","false","false"
"37834","2011-056A","INTELSAT 18","ITSO","1,436.10","0.00","35,797","35,776","0.00","0.00","0.00","","","2011-10-05","","true","false","false","false"
"37829","2011-055A","COSMOS 2474 (GLONASS)","CIS","675.73","64.53","19,143","19,117","0.00","0.00","0.00","","","2011-10-02","","true","false","false","false"
"37826","2011-054A","QUETZSAT 1","MEX","1,436.08","0.04","35,798","35,774","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37820","2011-053A","TIANGONG 1","PRC","91.82","42.77","373","354","0.00","0.00","0.00","0.00","","2010-12-30","","true","false","false","false"
"37818","2011-052A","TACSAT 4","US","238.92","63.38","12,072","681","0.45","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37816","2011-051A","EUTE 7 WEST A (AB 7)","EUTE","1,436.09","0.07","35,798","35,775","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37813","2011-050A","IGS 6A","JPN","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-12-30","","true","false","false","false"
"37810","2011-049B","ARABSAT 5C","AB","1,436.08","0.06","35,797","35,775","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37809","2011-049A","SES 2","SES","1,436.09","0.05","35,798","35,775","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37806","2011-048A","COSMOS 2473","CIS","1,436.11","0.07","35,790","35,783","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37804","2011-047A","CHINASAT 1A","PRC","1,436.06","0.06","35,794","35,777","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37794","2011-044G","SICH 2","CIS","98.55","98.15","698","681","0.00","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37793","2011-044F","APRIZESAT 6","US","97.86","98.22","689","624","0.00","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37792","2011-044E","APRIZESAT 5","US","97.67","98.24","688","607","0.01","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37791","2011-044D","RASAT","TURK","98.34","98.17","695","664","0.00","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37790","2011-044C","NIGERIASAT X","NIG","98.75","98.17","708","690","0.00","0.00","0.00","-0.00","","2010-12-30","","true","false","false","false"
"37789","2011-044B","NIGERIASAT 2","NIG","98.51","98.13","694","680","0.00","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37788","2011-044A","EDUSAT","IT","97.97","98.20","688","635","0.00","0.00","0.00","0.01","","2010-12-30","","true","false","false","false"
"37781","2011-043A","HAIYANG 2A","PRC","104.40","99.35","967","965","0.00","0.00","0.00","-0.00","","2010-12-30","","true","false","false","false"
"37779","2011-042A","PAKSAT 1R","PAKI","1,436.06","0.02","35,802","35,770","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37776","2011-041B","BSAT-3C","JPN","1,436.11","0.04","35,788","35,785","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37775","2011-041A","ASTRA 1N","SES","1,436.08","0.06","35,803","35,769","0.00","0.00","0.00","","","2010-12-30","","true","false","false","false"
"37773","2011-040A","JUNO","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2010-12-30","","false","false","false","false"
"37765","2011-039A","SJ-11-02","PRC","98.60","98.25","700","684","0.00","0.00","0.00","0.01","","2011-07-29","","true","false","false","false"
"37763","2011-038A","BEIDOU IGSO 4","PRC","1,436.18","54.66","35,921","35,655","0.00","0.00","0.00","","","2011-07-26","","true","false","false","false"
"37755","2011-037A","SPEKTR R","CIS","12,542.04","57.34","284,055","60,820","0.62","0.00","0.00","","","2011-07-18","","true","false","false","false"
"37753","2011-036A","NAVSTAR 66 (USA 232)","US","717.98","55.11","20,282","20,082","0.00","0.00","0.00","","","2011-07-16","","true","false","false","false"
"37749","2011-035B","KAZSAT 2","KAZ","1,436.11","0.02","35,789","35,785","0.00","0.00","0.00","","","2011-07-15","","true","false","false","false"
"37748","2011-035A","SES 3","US","1,436.11","0.04","35,798","35,775","0.00","0.00","0.00","","","2011-07-15","","true","false","false","false"
"37746","2011-034A","GSAT 12","IND","1,436.11","0.10","35,806","35,767","0.00","0.00","0.00","","","2011-07-15","","true","false","false","false"
"37744","2011-033F","GLOBALSTAR M089","GLOB","114.08","51.99","1,415","1,412","0.00","0.00","0.00","-0.54","","2011-07-13","","true","false","false","false"
"37743","2011-033E","GLOBALSTAR M081","GLOB","114.08","51.99","1,415","1,413","0.00","0.00","0.00","-0.56","","2011-07-13","","true","false","false","false"
"37742","2011-033D","GLOBALSTAR M085","GLOB","114.08","51.98","1,414","1,413","0.00","0.00","0.00","0.01","","2011-07-13","","true","false","false","false"
"37741","2011-033C","GLOBALSTAR M091","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","0.01","","2011-07-13","","true","false","false","false"
"37740","2011-033B","GLOBALSTAR M088","GLOB","114.08","51.97","1,414","1,413","0.00","0.00","0.00","0.01","","2011-07-13","","true","false","false","false"
"37739","2011-033A","GLOBALSTAR M083","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","-0.92","","2011-07-13","","true","false","false","false"
"37737","2011-032A","TIANLIAN 1-02","PRC","1,436.12","0.83","35,925","35,650","0.00","0.00","0.00","","","2011-07-11","","true","false","false","false"
"37730","2011-030A","SJ-11-03","PRC","98.62","98.12","699","686","0.00","0.00","0.00","0.01","","2011-07-06","","true","false","false","false"
"37728","2011-029A","ORS 1 (USA 231)","US","","","","","","0.00","0.00","","",","2011-06-30","","true","false","false","false"
"37677","2011-026A","CHINASAT 10","PRC","1,436.13","0.05","35,809","35,765","0.00","0.00","0.00","","","2011-06-20","","true","false","false","false"
"37673","2011-024A","SAC-D (AQUARIUS)","ARGN","97.81","98.01","655","653","0.00","0.00","0.00","0.00","","2011-06-10","","true","false","false","false"
"37606","2011-022B","ST 2","STCT","1,436.11","0.01","35,793","35,780","0.00","0.00","0.00","","","2011-05-20","","true","false","false","false"
"37605","2011-022A","GSAT 8","IND","1,436.09","0.02","35,822","35,751","0.00","0.00","0.00","","","2011-05-20","","true","false","false","false"
"37602","2011-021A","TELSTAR 14R","CA","1,436.10","0.05","35,798","35,775","0.00","0.00","0.00","","","2011-05-20","","true","false","false","false"
"37481","2011-019A","SBIRS GEO 1 (USA 230)","US","","","","","","0.00","0.00","","",","2011-05-07","","true","false","false","false"
"37398","2011-018A","MERIDIAN 4","CIS","717.86","64.47","38,646","1,713","0.70","0.00","0.00","","","2011-05-04","","true","false","false","false"
"37393","2011-016B","YAHSAT 1A","UAE","1,436.07","0.00","35,797","35,775","0.00","0.00","0.00","","","2011-04-22","","true","false","false","false"
"37392","2011-016A","INTELSAT NEW DAWN","ITSO","1,436.06","0.03","35,794","35,778","0.00","0.00","0.00","","","2011-04-22","","true","false","false","false"
"37389","2011-015C","XSAT","SING","101.11","98.65","821","802","0.00","0.00","0.00","0.01","","2011-04-20","","true","false","false","false"
"37388","2011-015B","YOUTHSAT","IND","101.13","98.65","822","802","0.00","0.00","0.00","0.01","","2011-04-20","","true","false","false","false"
"37387","2011-015A","RESOURCESAT 2","IND","101.29","98.64","821","818","0.00","0.00","0.00","0.00","","2011-04-20","","true","false","false","false"
"37386","2011-014A","USA 229","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-04-15","","true","false","false","false"
"37384","2011-013A","BEIDOU IGSO 3","PRC","1,435.72","56.78","35,899","35,659","0.00","0.00","0.00","","","2011-03-31","","true","false","false","false"
"37380","2010-062M","FAST 2 (USA 228)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37377","2011-011A","USA 227","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-03-11","","true","false","false","false"
"37375","2011-010A","OTV 2 (USA 226)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-03-05","","false","false","false","false"
"37372","2011-009A","COSMOS 2471 (GLONASS)","CIS","675.73","65.02","19,153","19,107","0.00","0.00","0.00","","","2011-02-26","","true","false","false","false"
"37364","2011-006A","USA 225","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-02-06","","true","false","false","false"
"37361","2010-062L","NANOSAIL-D-002","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37348","2011-002A","USA 224","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2011-01-20","","true","false","false","false"
"37344","2011-001A","ELEKTRO-L","CIS","1,436.16","0.70","35,792","35,784","0.00","0.00","0.00","","","2011-01-20","","true","false","false","false"
"37265","2010-070B","KOREASAT 6","SKOR","1,436.09","0.02","35,793","35,780","0.00","0.00","0.00","","","2010-12-29","","true","false","false","false"
"37264","2010-070A","HISPASAT 1E","SPN","1,436.11","0.03","35,794","35,780","0.00","0.00","0.00","","","2010-12-29","","true","false","false","false"
"37258","2010-069A","EUTE KA SAT 9A (KA SAT)","EUTE","1,436.08","0.05","35,794","35,779","0.00","0.00","0.00","","","2010-12-26","","true","false","false","false"
"37256","2010-068A","BEIDOU IGSO 2","PRC","1,435.94","54.13","35,915","35,652","0.00","0.00","0.00","","","2010-12-17","","true","false","false","false"
"37238","2010-065B","INTELSAT 17","ITSO","1,436.07","0.02","35,801","35,771","0.00","0.00","0.00","","","2010-11-26","","true","false","false","false"
"37237","2010-065A","HYLAS 1","UK","1,436.15","0.01","35,798","35,777","0.00","0.00","0.00","","","2010-11-26","","true","false","false","false"
"37234","2010-064A","CHINASAT 20A","PRC","1,436.14","0.10","35,798","35,777","0.00","0.00","0.00","","","2010-11-24","","true","false","false","false"
"37232","2010-063A","USA 223","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-21","","true","false","false","false"
"37231","2010-062K","BALLAST B","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37230","2010-062J","BALLAST A","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37227","2010-062F","FAST 1 (USA 222)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","true","false","false","false"
"37226","2010-062E","FALCONSAT 5 (USA 221)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37225","2010-062D","FASTSAT-HSV01 (USA 220)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37224","2010-062C","O/OREOS (USA 219)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","true","false","false","false"
"37223","2010-062B","RAX (USA 218)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","false","false","false","false"
"37222","2010-062A","STPSAT 2 (USA 217)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-11-20","","true","false","false","false"
"37218","2010-061A","SKYTERRA 1","US","1,436.11","4.27","35,803","35,770","0.00","0.00","0.00","","","2010-11-14","","true","false","false","false"
"37216","2010-060A","SKYMED 4","IT","97.16","97.88","623","622","0.00","0.00","0.00","0.00","","2010-11-06","","true","false","false","false"
"37214","2010-059A","FENGYUN 3B","PRC","101.44","98.88","828","826","0.00","0.00","0.00","0.01","","2010-11-04","","true","false","false","false"
"37212","2010-058A","MERIDIAN 3","CIS","717.84","62.85","38,105","2,253","0.68","0.00","0.00","","","2010-11-02","","true","false","false","false"
"37210","2010-057A","BEIDOU G4","PRC","1,436.11","0.79","35,818","35,756","0.00","0.00","0.00","","","2010-10-31","","true","false","false","false"
"37207","2010-056B","BSAT-3B","JPN","1,436.12","0.07","35,810","35,764","0.00","0.00","0.00","","","2010-10-28","","true","false","false","false"
"37206","2010-056A","EUTELSAT W3B","EUTE","598.85","2.15","34,074","239","0.72","0.00","0.00","","","2010-10-28","","false","false","false","false"
"37193","2010-054F","GLOBALSTAR M073","GLOB","114.08","52.01","1,414","1,413","0.00","0.00","0.00","0.02","","2010-10-19","","true","false","false","false"
"37192","2010-054E","GLOBALSTAR M075","GLOB","114.08","51.99","1,414","1,413","0.00","0.00","0.00","0.01","","2010-10-19","","true","false","false","false"
"37191","2010-054D","GLOBALSTAR M077","GLOB","114.08","52.01","1,414","1,413","0.00","0.00","0.00","0.01","","2010-10-19","","true","false","false","false"
"37190","2010-054C","GLOBALSTAR M076","GLOB","114.08","52.00","1,415","1,412","0.00","0.00","0.00","0.02","","2010-10-19","","true","false","false","false"
"37189","2010-054B","GLOBALSTAR M074","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","0.02","","2010-10-19","","true","false","false","false"
"37188","2010-054A","GLOBALSTAR M079","GLOB","114.08","52.00","1,414","1,413","0.00","0.00","0.00","0.01","","2010-10-19","","true","false","false","false"
"37185","2010-053A","XM-5","US","1,436.11","0.03","35,790","35,784","0.00","0.00","0.00","","","2010-10-14","","true","false","false","false"
"37180","2010-051B","SJ-6H","PRC","96.49","97.61","600","581","0.00","0.00","0.00","0.00","","2010-10-06","","true","false","false","false"
"37179","2010-051A","SJ-6G","PRC","96.47","97.61","601","579","0.00","0.00","0.00","0.00","","2010-10-06","","true","false","false","false"
"37174","2010-050A","CHANG E 2","PRC","","","","","","0.00","0.00","","SELENOCENTRIC ORBIT (MOON)","2010-10-01","","false","false","false","false"
"37170","2010-049A","COSMOS 2469","CIS","716.83","64.84","39,358","950","0.72","0.00","0.00","","","2010-01-01","","false","false","false","false"
"37168","2010-048A","SBSS (USA 216)","US","","","","","","0.00","0.00","","",","2010-01-01","","true","false","false","false"
"37167","2010-047C","ZHEDA PIXING 1C","PRC","97.33","97.77","648","614","0.00","0.00","0.00","0.01","","2010-01-01","","true","false","false","false"
"37166","2010-047B","ZHEDA PIXING 1B","PRC","97.32","97.78","647","614","0.00","0.00","0.00","0.01","","2010-01-01","","true","false","false","false"
"37165","2010-047A","YAOGAN 11","PRC","97.63","97.78","666","625","0.00","0.00","0.00","0.00","","2010-01-01","","true","false","false","false"
"37162","2010-046A","USA 215","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-01-01","","true","false","false","false"
"37158","2010-045A","QZS-1 (MICHIBIKI)","JPN","1,436.09","40.61","38,940","32,633","0.07","0.00","0.00","","","2010-01-01","","true","false","false","false"
"37154","2010-043C","COSMOS 2468","CIS","115.86","82.46","1,505","1,484","0.00","0.00","0.00","0.02","","2010-01-01","","true","false","false","false"
"37153","2010-043B","STRELA 3","CIS","116.06","82.46","1,510","1,497","0.00","0.00","0.00","0.01","","2010-01-01","","true","false","false","false"
"37152","2010-043A","COSMOS 2467","CIS","115.86","82.46","1,495","1,494","0.00","0.00","0.00","0.02","","2010-01-01","","true","false","false","false"
"37150","2010-042A","CHINASAT 6A","PRC","1,436.10","0.04","35,795","35,779","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"37139","2010-041C","COSMOS 2464 (GLONASS)","CIS","675.73","65.04","19,187","19,072","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"37138","2010-041B","COSMOS 2465 (GLONASS)","CIS","675.73","65.04","19,213","19,046","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"37137","2010-041A","COSMOS 2466 (GLONASS)","CIS","675.73","65.02","19,177","19,083","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"36985","2010-040A","TIANHUI 1","PRC","94.54","97.50","506","486","0.00","0.00","0.00","-0.00","","2010-01-01","","true","false","false","false"
"36868","2010-039A","AEHF 1 (USA 214)","US","","","","","","0.00","0.00","","",","2010-01-01","","true","false","false","false"
"36834","2010-038A","YAOGAN 10","PRC","97.28","97.88","629","628","0.00","0.00","0.00","0.00","","2010-01-01","","true","false","false","false"
"36831","2010-037B","RASCOM QAF 1R","RASC","1,436.08","0.02","35,806","35,767","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"36830","2010-037A","NILESAT 201","EGYP","1,436.10","0.06","35,804","35,770","0.00","0.00","0.00","","","2010-01-01","","true","false","false","false"
"36828","2010-036A","BEIDOU IGSO 1","PRC","1,436.04","54.34","35,940","35,631","0.00","0.00","0.00","","","2010-07-31","","true","false","false","false"
"36827","2010-028F","PRISMA (TANGO)","SWED","99.87","98.38","783","721","0.00","0.00","0.00","0.02","","2010-06-15","","false","false","false","false"
"36799","2010-035E","TISAT 1","SWTZ","96.81","98.01","614","597","0.00","0.00","0.00","0.02","","2010-07-12","","true","false","false","false"
"36798","2010-035D","ALSAT 2A","ALG","98.19","98.02","673","671","0.00","0.00","0.00","0.01","","2010-07-12","","true","false","false","false"
"36797","2010-035C","AISSAT 1","NOR","97.01","98.01","623","608","0.00","0.00","0.00","0.01","","2010-07-12","","true","false","false","false"
"36796","2010-035B","STUDSAT","IND","96.96","98.00","622","605","0.00","0.00","0.00","0.01","","2010-07-12","","true","false","false","false"
"36795","2010-035A","CARTOSAT 2B","IND","97.38","97.91","643","624","0.00","0.00","0.00","0.00","","2010-07-12","","true","false","false","false"
"36792","2010-034A","ECHOSTAR 15","US","1,436.09","0.05","35,799","35,774","0.00","0.00","0.00","","","2010-07-10","","true","false","false","false"
"36745","2010-032B","ARABSAT 5A","AB","1,436.05","0.05","35,797","35,774","0.00","0.00","0.00","","","2010-06-26","","true","false","false","false"
"36744","2010-032A","COMS 1","SKOR","1,436.11","0.02","35,793","35,781","0.00","0.00","0.00","","","2010-06-26","","true","false","false","false"
"36608","2010-031A","OFEQ 9","ISRA","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-06-22","","true","false","false","false"
"36605","2010-030A","TANDEM X","GER","94.79","97.45","510","507","0.00","0.00","0.00","","","2010-06-21","","true","false","false","false"
"36599","2010-028B","PRISMA (MANGO)","SWED","98.96","98.43","750","667","0.01","0.00","0.00","0.01","","2010-06-15","","false","false","false","false"
"36598","2010-028A","PICARD","FR","99.30","98.30","727","723","0.00","0.00","0.00","0.01","","2010-06-15","","true","false","false","false"
"36596","2010-027A","SJ-12","PRC","96.36","97.60","593","575","0.00","0.00","0.00","0.01","","2010-06-15","","true","false","false","false"
"36592","2010-025A","BADR-5 (ARABSAT 5B)","AB","1,436.08","0.01","35,798","35,774","0.00","0.00","0.00","","","2010-06-03","","true","false","false","false"
"36590","2010-024A","BEIDOU G3","PRC","1,436.20","1.42","35,803","35,775","0.00","0.00","0.00","","","2010-06-02","","true","false","false","false"
"36588","2010-023A","SERVIS 2","JPN","109.44","100.43","1,214","1,188","0.00","0.00","0.00","0.02","","2010-06-02","","false","false","false","false"
"36585","2010-022A","NAVSTAR 65 (USA 213)","US","718.00","56.03","20,289","20,076","0.00","0.00","0.00","","","2010-05-28","","true","false","false","false"
"36582","2010-021B","COMSATBW-2","GER","1,436.04","0.02","35,794","35,778","0.00","0.00","0.00","","","2010-05-21","","true","false","false","false"
"36581","2010-021A","ASTRA 3B","SES","1,436.11","0.07","35,796","35,778","0.00","0.00","0.00","","","2010-05-21","","true","false","false","false"
"36578","2010-020F","UNITEC-1","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2010-05-20","","false","false","false","false"
"36577","2010-020E","IKAROS","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2010-05-20","","false","false","false","false"
"36576","2010-020D","AKATSUKI (PLANET-C)","JPN","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2010-05-20","","false","false","false","false"
"36519","2010-017A","COSMOS 2463","CIS","105.00","82.96","1,022","967","0.00","0.00","0.00","0.01","","2010-04-27","","true","false","false","false"
"36516","2010-016A","SES 1","SES","1,436.11","0.03","35,796","35,777","0.00","0.00","0.00","","","2010-04-24","","true","false","false","false"
"36514","2010-015A","OTV 1 (USA 212)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2010-04-22","","false","false","false","false"
"36508","2010-013A","CRYOSAT 2","ESA","99.16","92.03","726","712","0.00","0.00","0.00","0.00","","2010-03-31","","true","false","false","false"
"36499","2010-010A","ECHOSTAR 14","US","1,436.06","0.01","35,797","35,774","0.00","0.00","0.00","","","2010-03-20","","true","false","false","false"
"36415","2010-009C","YAOGAN 9C","PRC","107.05","63.41","1,217","963","0.02","0.00","0.00","0.01","","2010-03-05","","true","false","false","false"
"36414","2010-009B","YAOGAN 9B","PRC","107.05","63.41","1,217","964","0.02","0.00","0.00","0.01","","2010-03-05","","true","false","false","false"
"36413","2010-009A","YAOGAN 9A","PRC","107.05","63.41","1,217","964","0.02","0.00","0.00","0.01","","2010-03-05","","true","false","false","false"
"36411","2010-008A","GOES 15","US","1,436.24","0.11","35,798","35,781","0.00","0.00","0.00","","","2010-03-04","","true","false","false","false"
"36402","2010-007C","COSMOS 2460 (GLONASS)","CIS","675.73","65.02","19,134","19,126","0.00","0.00","0.00","","","2010-03-01","","true","false","false","false"
"36401","2010-007B","COSMOS 2461 (GLONASS)","CIS","675.73","65.03","19,141","19,119","0.00","0.00","0.00","","","2010-03-01","","true","false","false","false"
"36400","2010-007A","COSMOS 2459 (GLONASS)","CIS","675.73","65.04","19,202","19,057","0.00","0.00","0.00","","","2010-03-01","","true","false","false","false"
"36397","2010-006A","INTELSAT 16","ITSO","1,436.09","0.02","35,795","35,778","0.00","0.00","0.00","","","2010-02-12","","true","false","false","false"
"36395","2010-005A","SDO","US","1,436.13","28.05","35,799","35,776","0.00","0.00","0.00","","","2010-02-11","","true","false","false","false"
"36358","2010-002A","RADUGA 1M-2","CIS","1,436.09","0.02","35,798","35,775","0.00","0.00","0.00","","","2010-01-28","","true","false","false","false"
"36287","2010-001A","BEIDOU G1","PRC","1,436.02","1.59","35,802","35,768","0.00","0.00","0.00","","","2010-01-16","","true","false","false","false"
"36131","2009-075A","DIRECTV 12","US","1,436.10","0.01","35,787","35,786","0.00","0.00","0.00","","","2009-12-29","","true","false","false","false"
"36124","2009-073A","HELIOS 2B","FR","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2009-12-17","","true","false","false","false"
"36122","2009-072B","XIWANG-1 (HOPE-1)","PRC","109.40","100.22","1,205","1,193","0.00","0.00","0.00","0.01","","2009-12-15","","true","false","false","false"
"36121","2009-072A","YAOGAN 8","PRC","109.37","100.22","1,205","1,191","0.00","0.00","0.00","0.01","","2009-12-15","","true","false","false","false"
"36119","2009-071A","WISE","US","94.53","97.51","499","493","0.00","0.00","0.00","0.01","","2009-12-14","","false","false","false","false"
"36113","2009-070C","COSMOS 2458 (GLONASS)","CIS","675.73","64.20","19,138","19,121","0.00","0.00","0.00","","","2009-12-14","","true","false","false","false"
"36112","2009-070B","COSMOS 2457 (GLONASS)","CIS","675.73","64.19","19,149","19,111","0.00","0.00","0.00","","","2009-12-14","","true","false","false","false"
"36111","2009-070A","COSMOS 2456 (GLONASS)","CIS","675.73","64.21","19,140","19,120","0.00","0.00","0.00","","","2009-12-14","","true","false","false","false"
"36110","2009-069A","YAOGAN 7","PRC","97.63","98.09","663","628","0.00","0.00","0.00","0.00","","2009-11-30","","true","false","false","false"
"36108","2009-068A","WGS F3 (USA 211)","US","","","","","","0.00","0.00","","",","2009-12-06","","true","false","false","false"
"36106","2009-067A","INTELSAT 15","ITSO","1,436.11","0.02","35,798","35,776","0.00","0.00","0.00","","","2009-11-30","","true","false","false","false"
"36104","2009-066A","IGS 5A","JPN","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2009-11-28","","true","false","false","false"
"36101","2009-065A","EUTE 36B (EUTE W7)","EUTE","1,436.05","0.07","35,804","35,768","0.00","0.00","0.00","","","2009-11-24","","true","false","false","false"
"36097","2009-064A","INTELSAT 14","ITSO","1,436.09","0.02","35,795","35,778","0.00","0.00","0.00","","","2009-11-23","","true","false","false","false"
"36095","2009-063A","COSMOS 2455","CIS","103.10","67.15","908","903","0.00","0.00","0.00","0.00","","2009-11-20","","true","false","false","false"
"36088","2009-061A","SJ-11-01","PRC","98.62","98.26","701","684","0.00","0.00","0.00","0.01","","2009-11-12","","true","false","false","false"
"36086","2009-060A","POISK","ISS","","","","","","0.00","0.00","","DOCKED TO ISS","2009-11-10","","false","false","false","false"
"36037","2009-059B","PROBA 2","ESA","99.12","98.28","727","706","0.00","0.00","0.00","0.01","","2009-11-02","","true","false","false","false"
"36036","2009-059A","SMOS","ESA","100.02","98.44","760","758","0.00","0.00","0.00","0.01","","2009-11-02","","true","false","false","false"
"36033","2009-058B","THOR 6","NOR","1,436.09","0.04","35,795","35,778","0.00","0.00","0.00","","","2009-10-29","","true","false","false","false"
"36032","2009-058A","NSS 12","SES","1,436.09","0.04","35,797","35,776","0.00","0.00","0.00","","","2009-10-29","","true","false","false","false"
"35951","2009-057A","DMSP 5D-3 F18 (USA 210)","US","","","","","","0.00","0.00","","",","2009-10-18","","true","false","false","false"
"35946","2009-055A","WORLDVIEW 2","US","100.16","98.40","767","765","0.00","0.00","0.00","0.01","","2009-09-30","","true","false","false","false"
"35943","2009-054B","COMSATBW-1","GER","1,436.09","0.06","35,796","35,777","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35942","2009-054A","AMAZONAS 2","SPN","1,436.09","0.04","35,794","35,779","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35938","2009-052B","STSS DEMO 2 (USA 209)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-12-30","","true","false","false","false"
"35937","2009-052A","STSS DEMO 1 (USA 208)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-12-30","","true","false","false","false"
"35936","2009-051F","RUBIN 9.1/RUBIN 9.2/PSLV","GER","99.89","98.12","793","713","0.01","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35935","2009-051E","ITUPSAT 1","TURK","99.00","98.40","717","705","0.00","0.00","0.00","0.02","","2008-12-30","","true","false","false","false"
"35934","2009-051D","UWE-2","GER","98.97","98.39","715","704","0.00","0.00","0.00","0.02","","2008-12-30","","false","false","false","false"
"35933","2009-051C","BEESAT","GER","98.95","98.39","713","704","0.00","0.00","0.00","0.02","","2008-12-30","","true","false","false","false"
"35932","2009-051B","SWISSCUBE","SWTZ","98.96","98.39","715","703","0.00","0.00","0.00","0.02","","2008-12-30","","true","false","false","false"
"35931","2009-051A","OCEANSAT 2","IND","99.25","98.27","724","722","0.00","0.00","0.00","0.00","","2008-12-30","","true","false","false","false"
"35873","2009-050A","NIMIQ 5","CA","1,436.12","0.00","35,798","35,776","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35871","2009-049G","BLITS","CIS","101.29","98.51","823","816","0.00","0.00","0.00","0.00","","2008-12-30","","false","false","false","false"
"35870","2009-049F","SUMBANDILA","SAFR","93.62","97.15","453","450","0.00","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35869","2009-049E","UGATUSAT","CIS","101.25","98.51","821","814","0.00","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35868","2009-049D","TATIANA 2","CIS","101.22","98.52","820","813","0.00","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35867","2009-049C","FREGAT/IRIS","CIS","93.37","97.12","444","434","0.00","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35866","2009-049B","STERKH 2","CIS","101.21","98.52","819","813","0.00","0.00","0.00","0.01","","2008-12-30","","false","false","false","false"
"35865","2009-049A","METEOR-M","CIS","101.27","98.52","821","817","0.00","0.00","0.00","0.00","","2008-12-30","","true","false","false","false"
"35815","2009-047A","USA 207","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-12-30","","true","false","false","false"
"35812","2009-046A","PALAPA D","INDO","1,436.12","0.02","35,795","35,779","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35756","2009-044B","OPTUS D3","AUS","1,436.10","0.04","35,804","35,769","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35755","2009-044A","JCSAT 12","JPN","1,436.11","0.05","35,794","35,780","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35752","2009-043A","NAVSTAR 64 (USA 206)","US","718.02","54.24","20,288","20,078","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35696","2009-042A","ASIASAT 5","AC","1,436.11","0.04","35,795","35,778","0.00","0.00","0.00","","","2008-12-30","","true","false","false","false"
"35686","2009-041F","APRIZESAT 3","US","96.91","98.18","662","559","0.01","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35685","2009-041E","NANOSAT 1B","SPN","97.12","98.13","663","579","0.01","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35684","2009-041D","APRIZESAT 4","US","97.41","98.07","668","601","0.00","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35683","2009-041C","DMC 2","UK","97.92","97.95","660","658","0.00","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35682","2009-041B","DUBAISAT 1","UAE","98.09","97.92","677","658","0.00","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35681","2009-041A","DEIMOS 1","SPN","97.88","98.04","658","656","0.00","0.00","0.00","0.01","","2009-07-29","","true","false","false","false"
"35636","2009-039B","STERKH","CIS","103.62","82.96","943","916","0.00","0.00","0.00","0.01","","2009-07-21","","false","false","false","false"
"35635","2009-039A","COSMOS 2454","CIS","103.63","82.96","943","917","0.00","0.00","0.00","0.01","","2009-07-21","","true","false","false","false"
"35578","2009-037A","RAZAKSAT","MALA","98.20","8.99","685","661","0.00","0.00","0.00","0.01","","2009-07-14","","true","false","false","false"
"35500","2009-036C","COSMOS 2453","CIS","115.99","82.49","1,506","1,495","0.00","0.00","0.00","0.01","","2009-07-06","","true","false","false","false"
"35499","2009-036B","COSMOS 2452","CIS","115.86","82.49","1,507","1,482","0.00","0.00","0.00","0.02","","2009-07-06","","true","false","false","false"
"35498","2009-036A","COSMOS 2451","CIS","116.05","82.49","1,508","1,498","0.00","0.00","0.00","0.01","","2009-07-06","","true","false","false","false"
"35496","2009-035A","TERRESTAR 1","US","1,436.09","3.65","35,801","35,773","0.00","0.00","0.00","","","2009-07-01","","true","false","false","false"
"35493","2009-034A","SIRIUS FM-5","US","1,436.11","0.01","35,790","35,783","0.00","0.00","0.00","","","2009-06-30","","true","false","false","false"
"35491","2009-033A","GOES 14","US","1,436.10","0.04","35,795","35,779","0.00","0.00","0.00","","","2009-06-27","","true","false","false","false"
"35362","2009-032A","MEASAT 3A","MALA","1,436.10","0.05","35,799","35,775","0.00","0.00","0.00","","","2009-06-21","","true","false","false","false"
"35315","2009-031A","LRO","US","","","","","","0.00","0.00","","CIRCUMLUNAR","2009-06-18","","false","false","false","false"
"35008","2009-029A","MERIDIAN 2","CIS","641.51","64.85","35,185","1,337","0.69","0.00","0.00","","","2009-05-21","","false","false","false","false"
"34941","2009-027A","SES 7 (PROTOSTAR 2)","SES","1,436.11","0.02","35,801","35,772","0.00","0.00","0.00","","","2009-05-16","","true","false","false","false"
"34938","2009-026B","PLANCK","ESA","","","","","","0.00","0.00","","L2 LAGRANGIAN ORBIT","2009-05-14","","false","false","false","false"
"34937","2009-026A","HERSCHEL","ESA","","","","","","0.00","0.00","","L2 LAGRANGIAN ORBIT","2009-05-14","","false","false","false","false"
"34903","2009-023A","STSS ATRR (USA 205)","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2009-05-05","","true","false","false","false"
"34839","2009-021A","YAOGAN 6","PRC","94.61","97.26","522","478","0.00","0.00","0.00","0.01","","2009-04-22","","true","false","false","false"
"34810","2009-020A","SICRAL 1B","IT","","","","","","0.00","0.00","","",","2009-04-20","","true","false","false","false"
"34807","2009-019A","RISAT-2","IND","93.10","41.22","436","416","0.00","0.00","0.00","0.01","","2009-04-20","","true","false","false","false"
"34779","2009-018A","BEIDOU G2","PRC","1,436.99","3.76","36,174","35,434","0.01","0.00","0.00","","","2009-04-14","","false","false","false","false"
"34713","2009-017A","WGS F2 (USA 204)","US","","","","","","0.00","0.00","","",","2009-04-04","","true","false","false","false"
"34710","2009-016A","EUTE 10A (EUTE W2A)","EUTE","1,436.06","0.06","35,809","35,763","0.00","0.00","0.00","","","2009-04-03","","true","false","false","false"
"34661","2009-014A","NAVSTAR 63 (USA 203)","US","717.97","56.30","20,371","19,993","0.01","0.00","0.00","","","2009-03-24","","false","false","false","false"
"34380","2009-011A","KEPLER","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2009-03-07","","false","false","false","false"
"34264","2009-010A","RADUGA-1 8","CIS","1,436.27","4.03","35,796","35,784","0.00","0.00","0.00","","","2009-02-28","","true","false","false","false"
"34111","2009-009A","TELSTAR 11N","CA","1,436.11","0.01","35,799","35,775","0.00","0.00","0.00","","","2009-02-26","","true","false","false","false"
"33752","2009-008D","SPIRALE B","FR","559.12","2.05","31,981","226","0.71","0.00","0.00","","","2009-02-12","","true","false","false","false"
"33751","2009-008C","SPIRALE A","FR","314.69","2.09","17,572","323","0.56","0.00","0.00","","","2009-02-12","","true","false","false","false"
"33750","2009-008B","EUTE HOT BIRD 13D (HB10)","EUTE","1,436.07","0.03","35,807","35,765","0.00","0.00","0.00","","","2009-02-12","","true","false","false","false"
"33749","2009-008A","NSS 9","SES","1,436.09","0.04","35,796","35,777","0.00","0.00","0.00","","","2009-02-12","","true","false","false","false"
"33596","2009-007B","EXPRESS MD1","CIS","1,452.92","1.22","36,152","36,079","0.00","0.00","0.00","","","2009-02-11","","false","false","false","false"
"33595","2009-007A","EXPRESS AM-44","CIS","1,436.10","0.02","35,788","35,786","0.00","0.00","0.00","","","2009-02-11","","true","false","false","false"
"33591","2009-005A","NOAA 19","US","101.99","98.98","863","843","0.00","0.00","0.00","0.02","","2009-02-06","","true","false","false","false"
"33504","2009-003A","KORONAS-FOTON","CIS","95.23","82.44","543","516","0.00","0.00","0.00","0.01","","2009-01-30","","false","false","false","false"
"33499","2009-002H","KKS-1 (KISEKI)","JPN","97.69","98.22","654","642","0.00","0.00","0.00","0.01","","2009-01-23","","true","false","false","false"
"33498","2009-002G","STARS (KUKAI)","JPN","97.51","98.22","647","632","0.00","0.00","0.00","0.02","","2009-01-23","","false","false","false","false"
"33497","2009-002F","SDS-1","JPN","97.98","98.17","664","660","0.00","0.00","0.00","0.01","","2009-01-23","","false","false","false","false"
"33496","2009-002E","SOHLA-1 (MAIDO-1)","JPN","97.88","98.19","661","653","0.00","0.00","0.00","0.01","","2009-01-23","","true","false","false","false"
"33495","2009-002D","KAGAYAKI","JPN","97.85","98.20","661","651","0.00","0.00","0.00","0.01","","2009-01-23","","false","false","false","false"
"33494","2009-002C","SPRITE-SAT (RISING)","JPN","97.91","98.19","661","656","0.00","0.00","0.00","0.01","","2009-01-23","","false","false","false","false"
"33493","2009-002B","PRISM (HITOMI)","JPN","96.52","98.25","604","580","0.00","0.00","0.00","0.02","","2009-01-23","","true","false","false","false"
"33492","2009-002A","GOSAT (IBUKI)","JPN","98.12","98.06","670","668","0.00","0.00","0.00","0.00","","2009-01-23","","true","false","false","false"
"33490","2009-001A","USA 202","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2009-01-18","","true","false","false","false"
"33468","2008-067C","COSMOS 2448 (GLONASS)","CIS","675.71","63.97","19,140","19,118","0.00","0.00","0.00","","","2008-12-25","","false","false","false","false"
"33467","2008-067B","COSMOS 2449 (GLONASS)","CIS","675.75","63.97","19,186","19,074","0.00","0.00","0.00","","","2008-12-25","","true","false","false","false"
"33466","2008-067A","COSMOS 2447 (GLONASS)","CIS","675.68","63.98","19,135","19,122","0.00","0.00","0.00","","","2008-12-25","","true","false","false","false"
"33463","2008-066A","FENGYUN 2E","PRC","1,436.07","2.35","35,788","35,784","0.00","0.00","0.00","","","2008-12-23","","true","false","false","false"
"33460","2008-065B","EUTE 28B (EUTE W2M)","EUTE","1,436.05","0.09","35,795","35,776","0.00","0.00","0.00","","","2008-12-20","","true","false","false","false"
"33459","2008-065A","EUTE HOT BIRD 13C (HB 9)","EUTE","1,436.08","0.05","35,797","35,776","0.00","0.00","0.00","","","2008-12-20","","true","false","false","false"
"33453","2008-063A","CIEL-2","CA","1,436.09","0.05","35,799","35,773","0.00","0.00","0.00","","","2008-12-10","","true","false","false","false"
"33447","2008-062A","COSMOS 2446","CIS","717.94","65.99","39,059","1,304","0.71","0.00","0.00","","","2008-12-02","","true","false","false","false"
"33446","2008-061A","YAOGAN 4","PRC","97.58","97.66","654","632","0.00","0.00","0.00","0.01","","2008-12-01","","true","false","false","false"
"33436","2008-057A","ASTRA 1M","SES","1,436.08","0.02","35,789","35,784","0.00","0.00","0.00","","","2008-11-05","","true","false","false","false"
"33434","2008-056B","CHUANG XIN 1-02(CX-1-02)","PRC","100.75","98.56","805","783","0.00","0.00","0.00","0.01","","2008-11-05","","true","false","false","false"
"33433","2008-056A","SHIYUAN 3 (SY-3)","PRC","100.74","98.56","804","783","0.00","0.00","0.00","0.01","","2008-11-05","","true","false","false","false"
"33414","2008-055A","VENESAT-1","VENZ","1,436.06","0.05","35,796","35,776","0.00","0.00","0.00","","","2008-10-29","","true","false","false","false"
"33412","2008-054A","SKYMED 3","IT","97.16","97.88","623","622","0.00","0.00","0.00","0.00","","2008-10-25","","true","false","false","false"
"33409","2008-053B","SJ-6F","PRC","96.40","97.57","597","575","0.00","0.00","0.00","0.00","","2008-10-25","","true","false","false","false"
"33408","2008-053A","SJ-6E","PRC","96.46","97.57","600","578","0.00","0.00","0.00","0.00","","2008-10-25","","true","false","false","false"
"33405","2008-052A","CHANDRAYAAN 1","IND","","","","","","0.00","0.00","","SELENOCENTRIC ORBIT (MOON)","2008-10-22","","false","false","false","false"
"33401","2008-051A","IBEX","US","11,813.03","15.20","268,679","62,200","0.60","0.00","0.00","","","2008-10-19","","true","false","false","false"
"33396","2008-049A","THEOS","THAI","101.40","98.68","826","824","0.00","0.00","0.00","0.01","","2008-10-01","","true","false","false","false"
"33393","2008-048A","DEMOSAT/FALCON 1","US","97.09","9.35","629","610","0.00","0.00","0.00","0.01","","2007-12-27","","false","false","false","false"
"33380","2008-046C","COSMOS 2444 (GLONASS)","CIS","675.69","65.07","19,187","19,070","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33379","2008-046B","COSMOS 2443 (GLONASS)","CIS","675.73","65.06","19,179","19,080","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33378","2008-046A","COSMOS 2442 (GLONASS)","CIS","675.72","65.05","19,188","19,071","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33376","2008-045A","GALAXY 19","US","1,436.11","0.02","35,800","35,774","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33373","2008-044A","NIMIQ 4","CA","1,436.12","0.02","35,796","35,778","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33331","2008-042A","GEOEYE 1","US","98.33","98.12","686","672","0.00","0.00","0.00","0.00","","2007-12-27","","true","false","false","false"
"33321","2008-041B","HJ-1B","PRC","97.57","98.05","667","618","0.00","0.00","0.00","0.01","","2007-12-27","","true","false","false","false"
"33320","2008-041A","HJ-1A","PRC","97.57","98.05","661","624","0.00","0.00","0.00","0.01","","2007-12-27","","true","false","false","false"
"33316","2008-040E","RAPIDEYE 4","GER","97.30","97.87","638","621","0.00","0.00","0.00","0.00","","2007-12-27","","true","false","false","false"
"33315","2008-040D","RAPIDEYE 3","GER","97.30","97.87","638","621","0.00","0.00","0.00","0.00","","2007-12-27","","true","false","false","false"
"33314","2008-040C","RAPIDEYE 1","GER","97.30","97.87","646","613","0.00","0.00","0.00","0.00","","2007-12-27","","true","false","false","false"
"33313","2008-040B","RAPIDEYE 5","GER","97.30","97.87","642","617","0.00","0.00","0.00","0.01","","2007-12-27","","true","false","false","false"
"33312","2008-040A","RAPIDEYE 2","GER","97.30","97.88","637","622","0.00","0.00","0.00","0.00","","2007-12-27","","true","false","false","false"
"33278","2008-039A","INMARSAT 4-F3","IM","1,436.11","3.01","35,800","35,774","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33275","2008-038B","AMC-21","SES","1,436.08","0.05","35,795","35,777","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33274","2008-038A","SUPERBIRD 7","JPN","1,436.11","0.04","35,790","35,783","0.00","0.00","0.00","","","2007-12-27","","true","false","false","false"
"33272","2008-037A","COSMOS 2441","CIS","99.21","98.01","732","709","0.00","0.00","0.00","0.01","","2008-07-26","","false","false","false","false"
"33244","2008-036A","SAR LUPE 5","GER","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-07-22","","true","false","false","false"
"33207","2008-035A","ECHOSTAR 11","US","1,436.09","0.03","35,800","35,773","0.00","0.00","0.00","","","2008-07-16","","true","false","false","false"
"33154","2008-034B","BADR 6","AB","1,436.08","0.07","35,805","35,767","0.00","0.00","0.00","","","2008-07-07","","true","false","false","false"
"33153","2008-034A","INTELSAT 25(PROTOSTAR 1)","ITSO","1,436.10","0.03","35,799","35,775","0.00","0.00","0.00","","","2008-07-07","","true","false","false","false"
"33108","2008-033A","COSMOS 2440","CIS","1,436.12","3.13","35,799","35,775","0.00","0.00","0.00","","","2008-06-27","","false","false","false","false"
"33105","2008-032A","JASON 2","FR","112.42","66.04","1,344","1,332","0.00","0.00","0.00","-0.00","","2008-06-20","","true","false","false","false"
"33065","2008-031F","ORBCOMM FM 40","ORB","97.83","48.44","661","650","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33064","2008-031E","ORBCOMM FM 37","ORB","97.85","48.44","661","651","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33063","2008-031D","ORBCOMM FM 39","ORB","97.87","48.44","663","651","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33062","2008-031C","ORBCOMM FM 29","ORB","97.84","48.44","660","650","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33061","2008-031B","ORBCOMM FM 41","ORB","97.82","48.45","658","651","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33060","2008-031A","ORBCOMM FM 38","ORB","97.81","48.44","658","650","0.00","0.00","0.00","0.02","","2008-06-19","","false","false","false","false"
"33056","2008-030B","TURKSAT 3A","TURK","1,436.08","0.04","35,801","35,771","0.00","0.00","0.00","","","2008-06-12","","true","false","false","false"
"33055","2008-030A","SKYNET 5C","UK","1,436.10","0.07","35,802","35,771","0.00","0.00","0.00","","","2008-06-12","","true","false","false","false"
"33053","2008-029A","GLAST","US","95.40","25.58","547","529","0.00","0.00","0.00","0.00","","2008-06-11","","true","false","false","false"
"33051","2008-028A","CHINASAT 9","PRC","1,436.09","0.01","35,803","35,770","0.00","0.00","0.00","","","2008-05-31","","true","false","false","false"
"32958","2008-026A","FENGYUN 3A","PRC","101.44","98.52","833","820","0.00","0.00","0.00","0.01","","2008-05-27","","true","false","false","false"
"32956","2008-025D","COSMOS 2439","CIS","115.85","82.50","1,510","1,478","0.00","0.00","0.00","0.01","","2008-05-23","","true","false","false","false"
"32955","2008-025C","COSMOS 2438","CIS","115.82","82.50","1,509","1,476","0.00","0.00","0.00","0.01","","2008-05-23","","true","false","false","false"
"32954","2008-025B","COSMOS 2437","CIS","115.88","82.50","1,511","1,479","0.00","0.00","0.00","0.01","","2008-05-23","","true","false","false","false"
"32953","2008-025A","YUBELEINY","CIS","115.84","82.50","1,509","1,479","0.00","0.00","0.00","0.02","","2008-05-23","","true","false","false","false"
"32951","2008-024A","GALAXY 18","US","1,436.11","0.02","35,800","35,773","0.00","0.00","0.00","","","2008-05-21","","true","false","false","false"
"32794","2008-022A","AMOS 3","ISRA","1,436.09","0.03","35,793","35,780","0.00","0.00","0.00","","","2008-04-28","","true","false","false","false"
"32792","2008-021K","RUBIN 8/PSLV","GER","97.38","97.66","654","613","0.00","0.00","0.00","0.01","","2008-04-28","","false","false","false","false"
"32791","2008-021J","SEEDS","JPN","96.78","97.67","615","594","0.00","0.00","0.00","0.02","","2008-04-28","","true","false","false","false"
"32790","2008-021H","CANX-2","CA","96.90","97.66","621","599","0.00","0.00","0.00","0.01","","2008-04-28","","true","false","false","false"
"32789","2008-021G","DELFI C3","NETH","96.17","97.69","584","566","0.00","0.00","0.00","0.03","","2008-04-28","","true","false","false","false"
"32788","2008-021F","AAUSAT CUBESAT 2","DEN","96.61","97.67","606","586","0.00","0.00","0.00","0.02","","2008-04-28","","false","false","false","false"
"32787","2008-021E","COMPASS 1","GER","96.66","97.67","609","589","0.00","0.00","0.00","0.02","","2008-04-28","","false","false","false","false"
"32786","2008-021D","IMS-1","IND","97.10","97.67","628","611","0.00","0.00","0.00","0.01","","2008-04-28","","false","false","false","false"
"32785","2008-021C","CUTE-1.7+APD II","JPN","96.88","97.67","620","599","0.00","0.00","0.00","0.01","","2008-04-28","","true","false","false","false"
"32784","2008-021B","CANX-6","CA","96.96","97.67","624","602","0.00","0.00","0.00","0.01","","2008-04-28","","true","false","false","false"
"32783","2008-021A","CARTOSAT 2A","IND","97.39","97.91","642","625","0.00","0.00","0.00","-0.00","","2008-04-28","","true","false","false","false"
"32781","2008-020A","GIOVE-B","ESA","870.59","56.97","23,832","23,816","0.00","0.00","0.00","","","2008-04-27","","false","false","false","false"
"32779","2008-019A","TIANLIAN 1-01","PRC","1,436.15","1.05","35,946","35,629","0.00","0.00","0.00","","","2008-04-25","","true","false","false","false"
"32768","2008-018B","STAR ONE C2","BRAZ","1,436.15","0.00","35,802","35,773","0.00","0.00","0.00","","","2008-04-18","","true","false","false","false"
"32767","2008-018A","VINASAT 1","VTNM","1,436.11","0.04","35,794","35,780","0.00","0.00","0.00","","","2008-04-18","","true","false","false","false"
"32765","2008-017A","C/NOFS","US","93.59","13.00","540","360","0.01","0.00","0.00","0.01","","2008-04-16","","true","false","false","false"
"32763","2008-016A","ICO G-1","US","1,436.10","4.20","35,802","35,771","0.00","0.00","0.00","","","2008-04-14","","true","false","false","false"
"32750","2008-014A","SAR LUPE 4","GER","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-03-27","","true","false","false","false"
"32729","2008-013A","DIRECTV 11","US","1,436.09","0.02","35,787","35,786","0.00","0.00","0.00","","","2008-03-19","","true","false","false","false"
"32711","2008-012A","NAVSTAR 62 (USA 201)","US","718.00","55.66","20,397","19,968","0.01","0.00","0.00","","","2008-03-15","","true","false","false","false"
"32708","2008-011A","AMC-14","US","1,436.04","17.46","35,973","35,598","0.00","0.00","0.00","","","2008-03-14","","false","false","false","false"
"32706","2008-010A","USA 200","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-03-13","","true","false","false","false"
"32500","2008-007A","WINDS (KIZUNA)","JPN","1,436.11","0.08","35,798","35,776","0.00","0.00","0.00","","","2008-02-22","","true","false","false","false"
"32487","2008-006A","THOR 5","NOR","1,436.08","0.05","35,798","35,775","0.00","0.00","0.00","","","2008-02-10","","true","false","false","false"
"32478","2008-003A","EXPRESS AM-33","CIS","1,436.10","0.05","35,790","35,783","0.00","0.00","0.00","","","2008-01-28","","true","false","false","false"
"32476","2008-002A","TECSAR","ISRA","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2008-01-21","","true","false","false","false"
"32404","2008-001A","THURAYA 3","UAE","1,436.10","4.44","35,809","35,765","0.00","0.00","0.00","","","2008-01-15","","true","false","false","false"
"32395","2007-065C","COSMOS 2436 (GLONASS)","CIS","675.73","65.45","19,178","19,082","0.00","0.00","0.00","","","2007-12-25","","true","false","false","false"
"32394","2007-065B","COSMOS 2435 (GLONASS)","CIS","675.70","65.44","19,188","19,070","0.00","0.00","0.00","","","2007-12-25","","true","false","false","false"
"32393","2007-065A","COSMOS 2434 (GLONASS)","CIS","675.73","65.44","19,135","19,125","0.00","0.00","0.00","","","2007-12-25","","true","false","false","false"
"32388","2007-063B","HORIZONS 2","ITSO","1,436.11","0.04","35,800","35,774","0.00","0.00","0.00","","","2007-12-21","","true","false","false","false"
"32387","2007-063A","RASCOM 1","RASC","1,453.56","3.54","36,161","36,094","0.00","0.00","0.00","","","2007-12-21","","false","false","false","false"
"32384","2007-062A","NAVSTAR 61 (USA 199)","US","717.93","55.69","20,220","20,142","0.00","0.00","0.00","","","2007-12-20","","true","false","false","false"
"32382","2007-061A","RADARSAT 2","CA","100.70","98.58","792","791","0.00","0.00","0.00","0.00","","2007-12-14","","true","false","false","false"
"32378","2007-060A","USA 198","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-12-10","","true","false","false","false"
"32376","2007-059A","SKYMED 2","IT","97.16","97.88","623","622","0.00","0.00","0.00","0.00","","2007-11-30","","true","false","false","false"
"32373","2007-058A","RADUGA 1M-1","CIS","1,448.74","1.34","36,039","36,029","0.00","0.00","0.00","","","2007-11-30","","false","false","false","false"
"32299","2007-057A","ASTRA 4A (SIRIUS 4)","SES","1,436.10","0.03","35,799","35,775","0.00","0.00","0.00","","","2007-11-17","","true","false","false","false"
"32294","2007-056B","SKYNET 5B","UK","1,436.05","0.06","35,803","35,768","0.00","0.00","0.00","","","2007-11-14","","true","false","false","false"
"32293","2007-056A","STAR ONE C1","BRAZ","1,436.14","0.05","35,796","35,779","0.00","0.00","0.00","","","2007-11-14","","true","false","false","false"
"32289","2007-055A","YAOGAN 3","PRC","97.28","97.96","629","628","0.00","0.00","0.00","0.00","","2007-11-11","","true","false","false","false"
"32287","2007-054A","USA 197","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-11-11","","false","false","false","false"
"32283","2007-053A","SAR LUPE 3","GER","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-11-01","","true","false","false","false"
"32277","2007-052C","COSMOS 2431 (GLONASS)","CIS","675.40","65.15","19,167","19,076","0.00","0.00","0.00","","","2007-10-26","","false","false","false","false"
"32276","2007-052B","COSMOS 2432 (GLONASS)","CIS","675.73","65.14","19,160","19,099","0.00","0.00","0.00","","","2007-10-26","","true","false","false","false"
"32275","2007-052A","COSMOS 2433 (GLONASS)","CIS","675.72","65.13","19,140","19,119","0.00","0.00","0.00","","","2007-10-26","","true","false","false","false"
"32268","2007-049A","COSMOS 2430","CIS","717.86","65.18","39,316","1,042","0.72","0.00","0.00","","","2007-10-23","","false","false","false","false"
"32266","2007-048D","GLOBALSTAR M068","GLOB","114.05","51.99","1,413","1,411","0.00","0.00","0.00","0.02","","2007-10-20","","true","false","false","false"
"32265","2007-048C","GLOBALSTAR M066","GLOB","114.08","51.97","1,414","1,413","0.00","0.00","0.00","0.02","","2007-10-20","","true","false","false","false"
"32264","2007-048B","GLOBALSTAR M070","GLOB","114.08","51.98","1,415","1,413","0.00","0.00","0.00","0.06","","2007-10-20","","true","false","false","false"
"32263","2007-048A","GLOBALSTAR M067","GLOB","114.08","51.98","1,414","1,413","0.00","0.00","0.00","0.02","","2007-10-20","","true","false","false","false"
"32260","2007-047A","NAVSTAR 60 (USA 196)","US","717.94","53.53","20,367","19,996","0.01","0.00","0.00","","","2007-10-17","","true","false","false","false"
"32258","2007-046A","WGS F1 (USA 195)","US","","","","","","0.00","0.00","","",","2007-10-11","","true","false","false","false"
"32253","2007-044B","INTELSAT 11 (PAS 11)","ITSO","1,436.13","0.06","35,801","35,773","0.00","0.00","0.00","","","2007-10-05","","true","false","false","false"
"32252","2007-044A","OPTUS D2","AUS","1,436.12","0.02","35,798","35,776","0.00","0.00","0.00","","","2007-10-05","","true","false","false","false"
"32249","2007-043A","DAWN","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2006-12-08","","false","false","false","false"
"32062","2007-042A","CBERS 2B","CHBZ","100.04","98.26","783","738","0.00","0.00","0.00","0.01","","2006-12-08","","false","false","false","false"
"32060","2007-041A","WORLDVIEW 1","US","94.49","97.86","497","490","0.00","0.00","0.00","-0.00","","2006-12-08","","true","false","false","false"
"32056","2007-039C","VRAD","JPN","","","","","","0.00","0.00","","SELENOCENTRIC ORBIT (MOON)","2006-12-08","","false","false","false","false"
"32052","2007-038A","COSMOS 2429","CIS","104.74","82.98","1,010","955","0.00","0.00","0.00","0.01","","2006-12-08","","true","false","false","false"
"32050","2007-037A","INSAT 4CR","IND","1,436.10","0.12","35,815","35,758","0.00","0.00","0.00","","","2006-12-08","","true","false","false","false"
"32019","2007-036B","BSAT-3A","JPN","1,436.13","0.05","35,803","35,771","0.00","0.00","0.00","","","2006-12-08","","true","false","false","false"
"32018","2007-036A","SPACEWAY 3","US","1,436.10","0.01","35,788","35,785","0.00","0.00","0.00","","","2006-12-08","","true","false","false","false"
"31862","2007-032A","DIRECTV 10","US","1,436.11","0.03","35,788","35,785","0.00","0.00","0.00","","","2007-07-07","","true","false","false","false"
"31800","2007-031A","CHINASAT 6B","PRC","1,436.11","0.01","35,804","35,770","0.00","0.00","0.00","","","2007-07-05","","true","false","false","false"
"31797","2007-030A","SAR LUPE 2","GER","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-07-02","","true","false","false","false"
"31792","2007-029A","COSMOS 2428","CIS","101.95","70.98","857","844","0.00","0.00","0.00","-0.02","","2007-06-29","","true","false","false","false"
"31789","2007-028A","GENESIS 2","US","95.22","64.51","545","514","0.00","0.00","0.00","0.01","","2007-06-28","","true","false","false","false"
"31701","2007-027A","USA 194","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-06-15","","true","false","false","false"
"31698","2007-026A","TERRA SAR X","GER","94.79","97.44","510","507","0.00","0.00","0.00","-0.00","","2007-06-15","","true","false","false","false"
"31601","2007-025A","OFEQ 7","ISRA","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2007-06-10","","true","false","false","false"
"31598","2007-023A","SKYMED 1","IT","97.16","97.88","623","622","0.00","0.00","0.00","0.00","","2007-05-31","","true","false","false","false"
"31577","2007-021A","EUTE 8A (SINOSAT 3)","EUTE","1,464.39","1.74","36,345","36,333","0.00","0.00","0.00","","","2007-05-31","","true","false","false","false"
"31576","2007-020F","GLOBALSTAR M071","GLOB","114.08","52.01","1,415","1,412","0.00","0.00","0.00","0.00","","2007-05-29","","true","false","false","false"
"31574","2007-020D","GLOBALSTAR M072","GLOB","114.08","52.01","1,415","1,412","0.00","0.00","0.00","0.03","","2007-05-29","","true","false","false","false"
"31573","2007-020C","GLOBALSTAR M069","GLOB","114.08","51.99","1,416","1,411","0.00","0.00","0.00","0.02","","2007-05-29","","true","false","false","false"
"31571","2007-020A","GLOBALSTAR M065","GLOB","114.08","51.99","1,416","1,411","0.00","0.00","0.00","0.03","","2007-05-29","","true","false","false","false"
"31490","2007-019A","YAOGAN 2","PRC","97.58","97.99","657","629","0.00","0.00","0.00","0.00","","2007-05-25","","true","false","false","false"
"31395","2007-018A","NIGCOMSAT 1","NIG","1,437.11","5.15","35,827","35,786","0.00","0.00","0.00","","","2007-05-13","","false","false","false","false"
"31307","2007-016B","GALAXY 17","US","1,436.10","0.02","35,803","35,770","0.00","0.00","0.00","","","2007-05-04","","true","false","false","false"
"31306","2007-016A","ASTRA 1L","SES","1,436.06","0.07","35,808","35,764","0.00","0.00","0.00","","","2007-05-04","","true","false","false","false"
"31304","2007-015A","AIM","US","95.62","97.90","552","545","0.00","0.00","0.00","0.02","","2007-04-25","","true","false","false","false"
"31140","2007-014A","NFIRE","US","93.39","48.22","451","430","0.00","0.00","0.00","0.01","","2007-04-24","","true","false","false","false"
"31136","2007-013B","AAM/PSLV","IND","94.24","2.51","488","475","0.00","0.00","0.00","0.01","","2007-04-23","","false","false","false","false"
"31135","2007-013A","AGILE","IT","94.55","2.47","508","486","0.00","0.00","0.00","0.01","","2007-04-23","","true","false","false","false"
"31133","2007-012R","AEROCUBE 2","US","98.77","97.91","757","642","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31132","2007-012Q","CP4","US","98.77","97.91","757","642","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31130","2007-012P","CAPE 1","US","98.96","97.97","779","639","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31129","2007-012N","CP3","US","98.94","97.96","777","639","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31128","2007-012M","LIBERTAD 1","COL","98.98","97.97","780","640","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31127","2007-012L","SAUDICOMSAT 4","SAUD","98.66","97.87","742","647","0.01","0.00","0.00","0.01","","2007-04-17","","true","false","false","false"
"31126","2007-012K","MAST","US","98.92","97.94","771","642","0.01","0.00","0.00","0.01","","2007-04-17","","false","false","false","false"
"31125","2007-012J","SAUDICOMSAT 3","SAUD","98.34","97.79","710","649","0.00","0.00","0.00","0.01","","2007-04-17","","true","false","false","false"
"31124","2007-012H","SAUDICOMSAT 5","SAUD","98.45","97.82","721","648","0.01","0.00","0.00","0.01","","2007-04-17","","true","false","false","false"
"31122","2007-012F","CSTB 1","US","98.69","97.91","752","640","0.01","0.00","0.00","0.02","","2007-04-17","","false","false","false","false"
"31121","2007-012E","SAUDICOMSAT 6","SAUD","98.77","97.90","754","646","0.01","0.00","0.00","0.01","","2007-04-17","","true","false","false","false"
"31119","2007-012C","SAUDICOMSAT 7","SAUD","98.56","97.84","732","648","0.01","0.00","0.00","0.01","","2007-04-17","","true","false","false","false"
"31118","2007-012B","SAUDISAT 3","SAUD","98.04","97.75","676","654","0.00","0.00","0.00","0.00","","2007-04-17","","true","false","false","false"
"31117","2007-012A","EGYPTSAT 1","EGYP","97.82","97.76","659","650","0.00","0.00","0.00","0.01","","2007-04-17","","false","false","false","false"
"31115","2007-011A","BEIDOU M1","PRC","811.96","53.51","22,462","22,443","0.00","0.00","0.00","","","2007-04-13","","true","false","false","false"
"31113","2007-010A","HAIYANG 1B","PRC","100.72","98.69","804","782","0.00","0.00","0.00","0.01","","2007-04-11","","false","false","false","false"
"31102","2007-009A","ANIK F3","CA","1,436.11","0.01","35,797","35,777","0.00","0.00","0.00","","","2007-03-31","","true","false","false","false"
"30798","2007-004E","THEMIS E","US","1,436.04","9.16","70,694","877","0.83","0.00","0.00","","","2007-02-17","","true","false","false","false"
"30797","2007-004D","THEMIS D","US","1,436.14","8.31","70,692","882","0.83","0.00","0.00","","","2007-02-17","","true","false","false","false"
"30794","2007-007B","SKYNET 5A","UK","1,436.07","0.07","35,802","35,770","0.00","0.00","0.00","","","2007-03-11","","true","false","false","false"
"30793","2007-007A","INSAT 4B","IND","1,436.10","0.10","35,814","35,759","0.00","0.00","0.00","","","2007-03-11","","true","false","false","false"
"30777","2007-006F","CFESAT","US","94.72","35.43","507","503","0.00","0.00","0.00","0.01","","2007-02-28","","true","false","false","false"
"30776","2007-006E","FALCONSAT 3","US","94.67","35.43","505","501","0.00","0.00","0.00","0.01","","2007-02-28","","true","false","false","false"
"30775","2007-006D","STPSAT 1","US","94.89","35.43","515","511","0.00","0.00","0.00","0.01","","2007-02-28","","false","false","false","false"
"30774","2007-006C","OE (NEXTSAT)","US","94.13","46.01","482","471","0.00","0.00","0.00","0.01","","2007-02-28","","false","false","false","false"
"30773","2007-006B","MIDSTAR 1","US","93.63","46.07","456","448","0.00","0.00","0.00","0.00","","2007-02-28","","false","false","false","false"
"30582","2007-004C","ARTEMIS P2 (THEMIS C)","US","","","","","","0.00","0.00","","SELENOCENTRIC ORBIT (MOON)","2007-02-17","","false","false","false","false"
"30581","2007-004B","ARTEMIS P1 (THEMIS B)","US","","","","","","0.00","0.00","","SELENOCENTRIC ORBIT (MOON)","2007-02-17","","false","false","false","false"
"30580","2007-004A","THEMIS A","US","1,436.18","13.43","70,784","792","0.83","0.00","0.00","","","2007-02-17","","true","false","false","false"
"30323","2007-003A","BEIDOU 1D","PRC","1,452.33","0.55","36,367","35,840","0.01","0.00","0.00","","","2007-02-02","","false","false","false","false"
"29712","2007-001D","PEHUENSAT 1","ARGN","95.99","97.60","573","560","0.00","0.00","0.00","0.04","","2007-01-10","","false","false","false","false"
"29710","2007-001B","CARTOSAT 2AT","IND","97.38","97.91","635","632","0.00","0.00","0.00","0.00","","2007-01-10","","true","false","false","false"
"29709","2007-001A","LAPAN-TUBSAT","INDO","97.19","97.62","634","614","0.00","0.00","0.00","0.00","","2007-01-10","","true","false","false","false"
"29678","2006-063A","COROT","FR","99.77","90.02","893","601","0.02","0.00","0.00","0.29","","2006-12-27","","false","false","false","false"
"29672","2006-062C","COSMOS 2424 (GLONASS)","CIS","675.73","65.82","19,167","19,093","0.00","0.00","0.00","","","2006-12-25","","true","false","false","false"
"29671","2006-062B","COSMOS 2426 (GLONASS)","CIS","675.73","65.83","19,168","19,092","0.00","0.00","0.00","","","2006-12-25","","true","false","false","false"
"29670","2006-062A","COSMOS 2425 (GLONASS)","CIS","675.72","65.82","19,190","19,070","0.00","0.00","0.00","","","2006-12-25","","true","false","false","false"
"29668","2006-061A","MERIDIAN 1","CIS","717.89","65.35","37,953","2,407","0.67","0.00","0.00","","","2006-12-24","","false","false","false","false"
"29658","2006-060A","SAR LUPE 1","GER","","","","","","0.00","0.00","","",","2006-12-19","","true","false","false","false"
"29656","2006-059A","ETS 8","JPN","1,436.09","3.97","35,810","35,763","0.00","0.00","0.00","","","2006-12-18","","true","false","false","false"
"29648","2006-056A","MEASAT 3","MALA","1,436.11","0.03","35,789","35,784","0.00","0.00","0.00","","","2006-12-11","","true","false","false","false"
"29644","2006-054B","AMC-18","SES","1,436.09","0.05","35,800","35,773","0.00","0.00","0.00","","","2006-11-30","","true","false","false","false"
"29643","2006-054A","WILDBLUE 1","US","1,436.09","0.02","35,794","35,779","0.00","0.00","0.00","","","2006-11-30","","true","false","false","false"
"29640","2006-053A","FENGYUN 2D","PRC","1,435.98","2.82","35,789","35,780","0.00","0.00","0.00","","","2006-11-30","","true","false","false","false"
"29601","2006-052A","NAVSTAR 59 (USA 192)","US","718.00","56.68","20,320","20,046","0.01","0.00","0.00","","","2006-11-17","","true","false","false","false"
"29526","2006-051A","ARABSAT 4B","AB","1,436.04","0.06","35,814","35,757","0.00","0.00","0.00","","","2006-10-31","","true","false","false","false"
"29522","2006-050A","DMSP 5D-3 F17 (USA 173)","US","","","","","","0.00","0.00","","",","2006-11-04","","true","false","false","false"
"29520","2006-049A","XM-4","US","1,436.08","0.01","35,787","35,785","0.00","0.00","0.00","","","2006-10-30","","true","false","false","false"
"29516","2006-048A","SINOSAT 2","PRC","1,550.63","4.48","38,182","37,817","0.00","0.00","0.00","","","2006-10-28","","false","false","false","false"
"29511","2006-047B","STEREO B","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2006-10-26","","false","false","false","false"
"29510","2006-047A","STEREO A","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2006-10-26","","false","false","false","false"
"29506","2006-046B","SJ-6D","PRC","96.48","97.80","592","588","0.00","0.00","0.00","0.00","","2006-10-23","","true","false","false","false"
"29505","2006-046A","SJ-6C","PRC","96.42","97.78","590","584","0.00","0.00","0.00","0.00","","2006-10-23","","true","false","false","false"
"29499","2006-044A","METOP-A","EUME","101.30","98.69","821","819","0.00","0.00","0.00","0.01","","2006-10-19","","true","false","false","false"
"29495","2006-043B","OPTUS D1","AUS","1,436.11","0.02","35,799","35,775","0.00","0.00","0.00","","","2006-10-13","","true","false","false","false"
"29494","2006-043A","DIRECTV 9S","US","1,436.11","0.01","35,800","35,773","0.00","0.00","0.00","","","2006-10-13","","true","false","false","false"
"29486","2006-042A","NAVSTAR 58 (USA 190)","US","718.00","55.94","20,406","19,959","0.01","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29479","2006-041A","HINODE (SOLAR B)","JPN","98.35","98.14","693","667","0.00","0.00","0.00","0.01","","2005-12-29","","true","false","false","false"
"29398","2006-038A","CHINASAT 22A","PRC","1,436.07","4.23","35,797","35,775","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29393","2006-037A","IGS 3A","JPN","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2005-12-29","","true","false","false","false"
"29349","2006-034A","KOREASAT 5","SKOR","1,436.13","0.03","35,798","35,777","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29273","2006-033B","SYRACUSE 3B","FR","1,436.09","0.02","35,809","35,764","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29272","2006-033A","JCSAT 10","JPN","1,436.10","0.04","35,795","35,778","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29270","2006-032A","EUTE HOT BIRD 13B (HB 8)","EUTE","1,436.07","0.07","35,811","35,761","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"29268","2006-031A","KOMPSAT 2","SKOR","98.51","98.17","700","675","0.00","0.00","0.00","0.01","","2006-07-28","","true","false","false","false"
"29260","2006-030A","COSMOS 2422","CIS","717.50","65.06","38,903","1,437","0.71","0.00","0.00","","","2006-07-21","","true","false","false","false"
"29252","2006-029A","GENESIS 1","US","95.18","64.51","562","493","0.01","0.00","0.00","0.01","","2006-07-12","","true","false","false","false"
"29249","2006-027A","USA 184","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2006-06-28","","true","false","false","false"
"29242","2006-024C","USA 189","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2006-06-21","","false","false","false","false"
"29241","2006-024B","USA 188","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2006-06-21","","false","false","false","false"
"29240","2006-024A","USA 187","US","","","","","","0.00","0.00","","NO ELEMENTS AVAILABLE","2006-06-21","","false","false","false","false"
"29236","2006-023A","GALAXY 16","US","1,436.11","0.04","35,799","35,775","0.00","0.00","0.00","","","2006-06-18","","true","false","false","false"
"29230","2006-022A","KAZSAT 1","KAZ","1,451.07","4.69","36,095","36,064","0.00","0.00","0.00","","","2006-06-17","","false","false","false","false"
"29228","2006-021A","RESURS DK-1","CIS","95.92","69.94","569","558","0.00","0.00","0.00","0.00","","2006-06-15","","true","false","false","false"
"29163","2006-020B","THAICOM 5","THAI","1,436.10","0.04","35,816","35,757","0.00","0.00","0.00","","","2006-05-27","","true","false","false","false"
"29162","2006-020A","EUTE 113 WEST A(SATMEX 6","EUTE","1,436.10","0.01","35,796","35,778","0.00","0.00","0.00","","","2006-05-27","","true","false","false","false"
"29155","2006-018A","GOES 13","US","1,436.22","0.29","35,794","35,784","0.00","0.00","0.00","","","2006-05-24","","true","false","false","false"
"29108","2006-016B","CALIPSO","FR","98.83","98.22","703","702","0.00","0.00","0.00","-0.00","","2006-04-28","","true","false","false","false"
"29107","2006-016A","CLOUDSAT","US","98.83","98.23","703","702","0.00","0.00","0.00","-0.00","","2006-04-28","","true","false","false","false"
"29092","2006-015A","YAOGAN 1","PRC","97.15","97.99","623","621","0.00","0.00","0.00","0.00","","2006-04-26","","false","false","false","false"
"29079","2006-014A","EROS B","ISRA","94.93","97.45","525","505","0.00","0.00","0.00","0.00","","2006-04-25","","true","false","false","false"
"29055","2006-012A","ASTRA 1KR","SES","1,436.07","0.06","35,808","35,765","0.00","0.00","0.00","","","2006-04-20","","true","false","false","false"
"29052","2006-011F","FORMOSAT 3F","ROC","100.82","72.03","826","769","0.00","0.00","0.00","0.02","","2006-04-15","","true","false","false","false"
"29051","2006-011E","FORMOSAT 3E","ROC","100.83","72.01","846","750","0.01","0.00","0.00","0.02","","2006-04-15","","true","false","false","false"
"29050","2006-011D","FORMOSAT 3D","ROC","98.80","72.02","739","664","0.01","0.00","0.00","0.02","","2006-04-15","","true","false","false","false"
"29049","2006-011C","FORMOSAT 3C","ROC","100.83","72.02","823","772","0.00","0.00","0.00","0.02","","2006-04-15","","false","false","false","false"
"29048","2006-011B","FORMOSAT 3B","ROC","100.83","71.97","829","767","0.00","0.00","0.00","0.02","","2006-04-15","","true","false","false","false"
"29047","2006-011A","FORMOSAT 3A","ROC","100.82","71.98","835","761","0.01","0.00","0.00","0.02","","2006-04-15","","true","false","false","false"
"29045","2006-010A","JCSAT 9","JPN","1,436.10","0.03","35,795","35,778","0.00","0.00","0.00","","","2006-04-12","","true","false","false","false"
"28982","2006-008C","ST5-C","US","124.71","105.56","3,502","279","0.19","0.00","0.00","0.01","","2006-03-22","","false","false","false","false"
"28981","2006-008B","ST5-B","US","122.61","105.52","3,324","270","0.19","0.00","0.00","0.01","","2006-03-22","","false","false","false","false"
"28980","2006-008A","ST5-A","US","130.30","105.50","3,969","303","0.22","0.00","0.00","0.01","","2006-03-22","","false","false","false","false"
"28946","2006-007B","EUTE 9A (HB 7A)","EUTE","1,436.09","0.03","35,811","35,762","0.00","0.00","0.00","","","2006-03-11","","true","false","false","false"
"28945","2006-007A","SPAINSAT","SPN","1,436.08","0.06","35,811","35,761","0.00","0.00","0.00","","","2006-03-11","","true","false","false","false"
"28939","2006-005A","ASTRO F (AKARI)","JPN","94.99","98.19","612","424","0.01","0.00","0.00","0.01","","2006-02-21","","false","false","false","false"
"28937","2006-004A","MTSAT 2","JPN","1,436.09","0.02","35,802","35,771","0.00","0.00","0.00","","","2006-02-18","","true","false","false","false"
"28935","2006-003A","ECHOSTAR 10","US","1,436.09","0.05","35,794","35,778","0.00","0.00","0.00","","","2006-02-15","","true","false","false","false"
"28931","2006-002A","ALOS","JPN","98.52","97.95","689","687","0.00","0.00","0.00","0.02","","2006-01-24","","false","false","false","false"
"28928","2006-001A","NEW HORIZONS","US","","","","","","0.00","0.00","","HELIOCENTRIC ORBIT (SUN)","2006-01-19","","false","false","false","false"
"28924","2005-052A","EUTE 172A (GE 23)","EUTE","1,436.08","0.07","35,810","35,762","0.00","0.00","0.00","","","2005-12-29","","true","false","false","false"
"28922","2005-051A","GIOVE-A","ESA","849.98","56.62","23,358","23,333","0.00","0.00","0.00","","","2005-12-28","","false","false","false","false"
"28917","2005-050C","COSMOS 2417 (GLONASS)","CIS","675.73","65.12","19,167","19,093","0.00","0.00","0.00","","","2005-12-25","","false","false","false","false"