-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstars_build1.js
2612 lines (2612 loc) · 399 KB
/
stars_build1.js
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
var star_init_list = [
{ starName:"Sol", id:101, mass:1.9891E+30, diameter:1392000, galX:0, galY:0, galZ:0, dist:0, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"Proxima Centauri", id:203, mass:2.446593E+29, diameter:1453, galX:2.972, galY:-2.994, galZ:-0.077, dist:4.22, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Alpha Centauri", id:201, mass:2.18801E+30, diameter:1707984, galX:3.205, galY:-3.014, galZ:0.035, dist:4.4, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"Beta Centauri", id:202, mass:1.690735E+30, diameter:8352, galX:3.205, galY:-3.014, galZ:0.035, dist:4.4, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"Barnard's Star", id:301, mass:3.142778E+29, diameter:1398, galX:4.935, galY:3, galZ:1.388, dist:5.94, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"CN Leonis", id:401, mass:1.849863E+29, diameter:180960, galX:-1.897, galY:-3.904, galZ:6.481, dist:7.8, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"Lalande 21185", id:501, mass:8.016073E+29, diameter:1999, galX:-3.358, galY:-0.32, galZ:7.594, dist:8.31, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BL Ceti", id:701, mass:2.38692E+29, diameter:208800, galX:-2.138, galY:0.219, galZ:-8.276, dist:8.55, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"UV Ceti", id:702, mass:1.9891E+29, diameter:194880, galX:-2.138, galY:0.219, galZ:-8.276, dist:8.55, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"Sirius", id:601, mass:4.674385E+30, diameter:2825760, galX:-5.895, galY:-6.152, galZ:-1.167, dist:8.6, starType:"A1(V)", temp:9500, color:0xbaccff},
{ starName:"Sirius", id:602, mass:1.949318E+30, diameter:30624, galX:-5.895, galY:-6.152, galZ:-1.167, dist:8.6, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"V1216 Sagittarii", id:130601, mass:1.9891E+29, diameter:278400, galX:9.285, galY:2.179, galZ:-1.711, dist:9.69, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Ross 248", id:163901, mass:1.39237E+29, diameter:236640, galX:-3.381, galY:9.286, galZ:-3.006, dist:10.33, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Epsilon Eridani", id:25101, mass:1.690735E+30, diameter:3480, galX:-6.923, galY:-1.845, galZ:-7.677, dist:10.5, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"Lac 9352", id:158101, mass:9.985282E+29, diameter:1932, galX:4.145, galY:0.706, galZ:-9.871, dist:10.73, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"FI Virginis", id:80101, mass:1.9891E+29, diameter:292320, galX:0.149, galY:-5.506, galZ:9.394, dist:10.89, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"EZ Aquarii", id:217101, mass:0, diameter:1350, galX:4.026, galY:4.619, galZ:-9.231, dist:11.08, starType:"", temp:5000, color:0xffc97f},
{ starName:"EZ Aquarii", id:217102, mass:0, diameter:0, galX:4.026, galY:4.619, galZ:-9.231, dist:11.08, starType:"", temp:5000, color:0xffc97f},
{ starName:"Procyon", id:181901, mass:3.540598E+30, diameter:5345, galX:-9.182, galY:-6.222, galZ:2.674, dist:11.41, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"Procyon", id:181902, mass:1.292915E+30, diameter:27005, galX:-9.182, galY:-6.222, galZ:2.674, dist:11.41, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"61 Cygni", id:213301, mass:1.19346E+30, diameter:3884, galX:1.438, galY:11.276, galZ:-1.188, dist:11.43, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:207601, mass:5.76839E+29, diameter:1963, galX:0.117, galY:10.619, galZ:4.764, dist:11.64, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"GX Andromedae", id:166701, mass:8.234874E+29, diameter:1392, galX:-5.057, galY:9.831, galZ:-3.642, dist:11.64, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"GQ Andromedae", id:166702, mass:1.59128E+29, diameter:264480, galX:-5.057, galY:9.831, galZ:-3.642, dist:11.64, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"SIPS 1259-", id:224601, mass:1.9891E+29, diameter:0, galX:6.352, galY:-9.074, galZ:4.068, dist:11.8, starType:"M8(V)", temp:2170, color:0xffc66d},
{ starName:"DX Cancri", id:58601, mass:8.115528E+28, diameter:153120, galX:-9.545, galY:-2.921, galZ:6.345, dist:11.83, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"Epsilon Indi", id:151801, mass:1.173569E+30, diameter:4956, galX:7.171, galY:-2.848, galZ:-8.965, dist:11.83, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Tau Ceti", id:13601, mass:1.611171E+30, diameter:2923, galX:-3.718, galY:0.678, galZ:-11.285, dist:11.9, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"A", id:25401, mass:0, diameter:0, galX:-2.485, galY:-6.765, galZ:-9.52, dist:11.94, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"YZ Ceti", id:10101, mass:1.690735E+29, diameter:0, galX:-2.117, galY:1.294, galZ:-11.946, dist:12.2, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Luyten's Star", id:51801, mass:3.18256E+29, diameter:528960, galX:-10.231, galY:-6.581, galZ:2.346, dist:12.39, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"SO25300.5+165258", id:223901, mass:1.39237E+29, diameter:208800, galX:-9.417, galY:3.277, galZ:-7.373, dist:12.4, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"Kapteyn's Star", id:35801, mass:5.589371E+29, diameter:963, galX:-3.474, galY:-9.775, galZ:-7.464, dist:12.78, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"AX Microscopii", id:146301, mass:1.074114E+30, diameter:2144, galX:9.071, galY:1.062, galZ:-9.065, dist:12.87, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:216801, mass:5.17166E+29, diameter:487200, galX:-3.391, galY:12.622, galZ:0.02, dist:13.07, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"DO Cephei", id:216802, mass:2.78474E+29, diameter:334080, galX:-3.391, galY:12.622, galZ:0.02, dist:13.07, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"DENIS 1048", id:224101, mass:2.247683E+29, diameter:0, galX:1.801, galY:-12.335, galZ:4.217, dist:13.16, starType:"M8(V)", temp:2170, color:0xffc66d},
{ starName:"V577 Monoceri", id:179501, mass:2.78474E+29, diameter:2255, galX:-11.406, galY:-7.072, galZ:-1.15, dist:13.47, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"V577 Monoceri", id:179502, mass:1.59128E+29, diameter:180960, galX:-11.406, galY:-7.072, galZ:-1.15, dist:13.47, starType:"M7(V)", temp:2340, color:0xffc175},
{ starName:"Wolf 1061", id:114001, mass:7.55858E+29, diameter:417600, galX:12.674, galY:1.079, galZ:5.631, dist:13.91, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:194201, mass:1.432152E+29, diameter:231072, galX:1.45, galY:-4.242, galZ:13.316, dist:14.05, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"FL Virginis", id:194202, mass:1.332697E+29, diameter:194880, galX:1.45, galY:-4.242, galZ:13.316, dist:14.05, starType:"M7(V)", temp:2340, color:0xffc175},
{ starName:"van Maanen's Star", id:6501, mass:0, diameter:13920, galX:-4.016, galY:6.459, galZ:-11.909, dist:14.13, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"-37°15492", id:1101, mass:7.75749E+29, diameter:668160, galX:3.102, galY:-0.82, galZ:-13.853, dist:14.22, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:15301, mass:1.770299E+29, diameter:0, galX:-8.477, galY:5.372, galZ:-10.564, dist:14.57, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 143-23", id:222401, mass:0, diameter:0, galX:4.375, galY:-13.98, galZ:-0.083, dist:14.65, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"LP 731-58", id:72501, mass:7.9564E+28, diameter:0, galX:-1.751, galY:-10.934, galZ:9.758, dist:14.76, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"AOe 17415-", id:122601, mass:4.17711E+29, diameter:626400, galX:-1.867, galY:12.387, galZ:7.824, dist:14.77, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -46°115", id:121101, mass:4.97275E+29, diameter:612480, galX:14.196, galY:-3.846, galZ:-1.64, dist:14.8, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CC 658", id:79501, mass:0, diameter:13920, galX:6.588, galY:-13.548, galZ:-0.376, dist:15.07, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"G 158-27", id:1501, mass:1.19346E+29, diameter:153120, galX:-0.467, galY:6.147, galZ:-14.036, dist:15.33, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Ross 780", id:156801, mass:4.57493E+29, diameter:542880, galX:4.535, galY:6.247, galZ:-13.255, dist:15.34, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"V1581 Cygni", id:210501, mass:0, diameter:0, galX:2.939, galY:14.933, galZ:2.28, dist:15.39, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"A", id:189701, mass:4.97275E+29, diameter:960, galX:-6.852, galY:1.396, galZ:14.122, dist:15.76, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Gr 1618", id:68201, mass:1.332697E+30, diameter:1608, galX:-9.335, galY:2.338, galZ:12.642, dist:15.89, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"AD Leonis", id:69601, mass:3.9782E+29, diameter:584640, galX:-7.453, galY:-5.51, galZ:13.04, dist:16, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -49°135", id:148501, mass:7.35967E+29, diameter:933, galX:10.802, galY:-2.029, galZ:-11.762, dist:16.1, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CD -44°119", id:121901, mass:6.76294E+29, diameter:375840, galX:15.903, galY:-3.713, galZ:-1.967, dist:16.45, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Keid", id:175601, mass:1.491825E+30, diameter:2728, galX:-12.409, galY:-4.408, galZ:-9.86, dist:16.45, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"EV Lacertae", id:155801, mass:3.18256E+29, diameter:528960, galX:-3.089, galY:15.746, galZ:-3.711, dist:16.47, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"70 Ophiuchi", id:206901, mass:1.631062E+30, diameter:2269, galX:14.084, galY:8.196, galZ:3.112, dist:16.59, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"70 Ophiuchi", id:206902, mass:1.19346E+30, diameter:1016160, galX:14.084, galY:8.196, galZ:3.112, dist:16.59, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Altair", id:136701, mass:3.9782E+30, diameter:4106, galX:11.036, galY:12.327, galZ:-2.728, dist:16.77, starType:"A7(V)", temp:8000, color:0xc7d4ff},
{ starName:"A", id:166401, mass:0, diameter:0, galX:0.188, galY:4.082, galZ:-16.502, dist:17, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:166402, mass:0, diameter:0, galX:0.188, galY:4.082, galZ:-16.502, dist:17, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:185101, mass:1.213351E+29, diameter:0, galX:-12.151, galY:-6.343, galZ:10.136, dist:17.05, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"G 99-49", id:221801, mass:0, diameter:0, galX:-15.676, galY:-7.165, galZ:-3.085, dist:17.51, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"AC +79°388", id:79901, mass:2.98365E+29, diameter:417600, galX:-8.265, galY:11.055, galZ:10.885, dist:17.58, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +15°262", id:95001, mass:0, diameter:1643, galX:5.478, galY:-0.731, galZ:16.827, dist:17.71, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"LHS 1723", id:224001, mass:3.122887E+29, diameter:0, galX:-14.561, galY:-6.728, galZ:-7.832, dist:17.85, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:175901, mass:0, diameter:0, galX:-15.173, galY:9.332, galZ:2.437, dist:17.98, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:175902, mass:0, diameter:0, galX:-15.173, galY:9.332, galZ:2.437, dist:17.98, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"Wolf 294", id:44601, mass:9.74659E+29, diameter:570720, galX:-17.34, galY:-0.89, galZ:4.7, dist:17.99, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD -3°1123", id:37601, mass:1.2551221E+30, diameter:1599, galX:-15.85, galY:-7.713, galZ:-5.812, dist:18.56, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"L 347-14", id:133601, mass:5.17166E+29, diameter:334080, galX:16.909, galY:-1.87, galZ:-7.415, dist:18.56, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"V1054 Ophiuchi", id:203901, mass:7.55858E+29, diameter:905, galX:17.107, galY:3.629, galZ:6.681, dist:18.72, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:203902, mass:7.55858E+29, diameter:891, galX:17.107, galY:3.629, galZ:6.681, dist:18.72, starType:"", temp:5000, color:0xffc97f},
{ starName:"Sigma Draconis", id:135801, mass:1.631062E+30, diameter:2784, galX:-3.451, galY:17.103, galZ:7.025, dist:18.81, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD -21°137", id:41801, mass:9.14986E+29, diameter:1183, galX:-12.223, galY:-13.182, galZ:-5.603, dist:18.83, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Ross 47", id:39101, mass:6.96185E+29, diameter:236640, galX:-18.107, galY:-4.407, galZ:-3.027, dist:18.88, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 205-128", id:123401, mass:2.78474E+29, diameter:0, galX:16.766, galY:-7.409, galZ:-4.801, dist:18.95, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:209201, mass:7.75749E+29, diameter:1462, galX:14.467, galY:12.497, galZ:-1.264, dist:19.16, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 674-15", id:56501, mass:2.18801E+29, diameter:0, galX:-9.286, galY:-16.613, galZ:2.442, dist:19.19, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:200001, mass:0, diameter:2506, galX:15.143, galY:-5.714, galZ:10.442, dist:19.26, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"YZ Canis Minoris", id:53401, mass:2.78474E+29, diameter:0, galX:-15.134, galY:-11.111, galZ:4.675, dist:19.35, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"CD -40°971", id:107001, mass:8.75204E+29, diameter:403680, galX:16.924, galY:-8.463, galZ:4.046, dist:19.35, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Eta Cassiopeiae", id:167801, mass:2.18801E+30, diameter:2199, galX:-10.545, galY:16.226, galZ:-1.62, dist:19.42, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"Eta Cassiopeiae", id:167802, mass:1.034332E+30, diameter:1406, galX:-10.545, galY:16.226, galZ:-1.62, dist:19.42, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"36 Ophiuchi", id:204801, mass:1.531607E+30, diameter:1698, galX:19.325, galY:-0.123, galZ:2.362, dist:19.47, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"BD +1°4774", id:164301, mass:4.77384E+29, diameter:0, galX:-0.901, galY:10.594, galZ:-16.311, dist:19.47, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:211201, mass:1.511716E+30, diameter:2589, galX:16.744, galY:1.704, galZ:-10.31, dist:19.74, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"B", id:211202, mass:6.96185E+29, diameter:389760, galX:16.744, galY:1.704, galZ:-10.31, dist:19.74, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"82 Eridani", id:24201, mass:1.770299E+30, diameter:1949, galX:-3.789, galY:-10.432, galZ:-16.361, dist:19.77, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"Delta Pavonis", id:138901, mass:1.949318E+30, diameter:2520, galX:14.521, galY:-8.277, galZ:-10.832, dist:19.92, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"BD -11°375", id:100801, mass:2.78474E+29, diameter:0, galX:13.585, galY:-4.997, galZ:13.731, dist:19.95, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"EG 372", id:124101, mass:0, diameter:13920, galX:-3.408, galY:16.886, galZ:10.218, dist:20.03, starType:"DX(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:186001, mass:1.153678E+30, diameter:1336, galX:-14.127, galY:3.764, galZ:13.747, dist:20.07, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CD -45°136", id:139701, mass:6.56403E+29, diameter:1183, galX:16.816, galY:-1.332, galZ:-11.18, dist:20.24, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"LP 914-54", id:103201, mass:0, diameter:0, galX:16.109, galY:-7.501, galZ:9.732, dist:20.26, starType:"M8(V)", temp:2170, color:0xffc66d},
{ starName:"EQ Pegasi", id:219101, mass:0, diameter:0, galX:-2.591, galY:15.599, galZ:-12.857, dist:20.38, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"EQ Pegasi", id:219102, mass:0, diameter:0, galX:-2.591, galY:15.599, galZ:-12.857, dist:20.38, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"HO Librae", id:105801, mass:6.16621E+29, diameter:528960, galX:15.524, galY:-1.122, galZ:13.268, dist:20.45, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:204701, mass:6.16621E+29, diameter:821, galX:5.372, galY:15.858, galZ:12.036, dist:20.62, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:204702, mass:4.97275E+29, diameter:835, galX:5.372, galY:15.858, galZ:12.036, dist:20.62, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"QY Aurigae", id:50401, mass:2.58583E+29, diameter:0, galX:-19.422, galY:0.245, galZ:7.265, dist:20.74, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"W 45", id:40501, mass:0, diameter:0, galX:-17.697, galY:-10.186, galZ:-5.195, dist:21.07, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"Wolf 629", id:116901, mass:2.38692E+29, diameter:417600, galX:19.356, galY:4.099, galZ:7.56, dist:21.18, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +56°296", id:159101, mass:0, diameter:1810, galX:-7.366, galY:19.931, galZ:-1.134, dist:21.28, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"GJ 1156", id:83501, mass:0, diameter:0, galX:0.678, galY:-6.458, galZ:20.318, dist:21.33, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Gl 625", id:113301, mass:0, diameter:0, galX:1.922, galY:15.674, galZ:14.546, dist:21.47, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"AC +23°468", id:74001, mass:0, diameter:0, galX:-7.255, galY:-5.555, galZ:19.581, dist:21.61, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Xi Boötis", id:199601, mass:1.730517E+30, diameter:2784, galX:9.814, galY:4.189, galZ:19.069, dist:21.85, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"Xi Boötis", id:199602, mass:1.511716E+30, diameter:1448, galX:9.814, galY:4.189, galZ:19.069, dist:21.85, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"AC +17°534", id:148101, mass:0, diameter:0, galX:6.819, galY:18.901, galZ:-8.929, dist:21.99, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Ross 619", id:56301, mass:0, diameter:0, galX:-16.943, galY:-11.453, galZ:8.21, dist:22.04, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:224201, mass:0, diameter:0, galX:-11.558, galY:-3.896, galZ:-18.754, dist:22.37, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:224202, mass:0, diameter:0, galX:-11.558, galY:-3.896, galZ:-18.754, dist:22.37, starType:"", temp:5000, color:0xffc97f},
{ starName:"C", id:224203, mass:0, diameter:0, galX:-11.558, galY:-3.896, galZ:-18.754, dist:22.37, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +15°473", id:157301, mass:0, diameter:1016, galX:0.647, galY:17.609, galZ:-13.909, dist:22.45, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Wolf 358", id:72601, mass:0, diameter:0, galX:-5.644, galY:-11.504, galZ:18.469, dist:22.48, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 97-12", id:54501, mass:0, diameter:0, galX:3.32, galY:-21.065, galZ:-7.295, dist:22.54, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:205101, mass:0, diameter:1643, galX:22.594, galY:-2.446, galZ:0.781, dist:22.74, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"B", id:205102, mass:0, diameter:0, galX:22.594, galY:-2.446, galZ:0.781, dist:22.74, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Steph 538", id:34301, mass:0, diameter:0, galX:-21.367, galY:-3.97, galZ:-7.439, dist:22.97, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +61°206", id:144001, mass:0, diameter:1072, galX:-3.506, galY:22.273, galZ:4.431, dist:22.98, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"LP 944-20", id:224801, mass:0, diameter:0, galX:-8.116, galY:-11.575, galZ:-18.773, dist:23.5, starType:"M9(V)", temp:2000, color:0x9bb3ff},
{ starName:"A", id:171601, mass:1.571389E+30, diameter:1303, galX:-15.406, galY:4.415, galZ:-17.204, dist:23.51, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"GJ 1286", id:162501, mass:0, diameter:0, galX:1.149, galY:12.361, galZ:-19.988, dist:23.53, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"BD +1°2447", id:71001, mass:0, diameter:0, galX:-6.672, galY:-14.57, galZ:17.309, dist:23.59, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"G 203-47", id:222001, mass:0, diameter:0, galX:6.922, galY:17.844, galZ:13.909, dist:23.66, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"G 258-33", id:222201, mass:0, diameter:0, galX:-2.214, galY:20.879, galZ:11.121, dist:23.76, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:207501, mass:0, diameter:0, galX:13.632, galY:18.958, galZ:5.456, dist:23.98, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:207502, mass:0, diameter:0, galX:13.632, galY:18.958, galZ:5.456, dist:23.98, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 788-34", id:222301, mass:0, diameter:0, galX:10.432, galY:9.834, galZ:-19.643, dist:24.32, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +4°123", id:6301, mass:0, diameter:1531, galX:-7.105, galY:11.052, galZ:-20.478, dist:24.33, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"107 Piscis", id:13001, mass:1.571389E+30, diameter:1670, galX:-14.089, galY:11.983, galZ:-15.855, dist:24.36, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"Beta Hydri", id:4001, mass:0, diameter:2310720, galX:10.554, galY:-15.213, galZ:-15.858, dist:24.38, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"GJ 2005", id:3901, mass:0, diameter:0, galX:1.988, galY:1.638, galZ:-24.424, dist:24.56, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"GJ 1224", id:222101, mass:0, diameter:0, galX:23.655, galY:6.542, galZ:1.325, dist:24.58, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Mu Cassiopeiae", id:168301, mass:1.491825E+30, diameter:1267, galX:-14.281, galY:19.802, galZ:-3.247, dist:24.63, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"Mu Cassiopeiae", id:168302, mass:3.9782E+29, diameter:0, galX:-14.281, galY:19.802, galZ:-3.247, dist:24.63, starType:"", temp:5000, color:0xffc97f},
{ starName:"L 1813-21", id:221701, mass:0, diameter:0, galX:-21.192, galY:10.31, galZ:7.287, dist:24.67, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +11°257", id:92801, mass:0, diameter:0, galX:7.525, galY:-3.586, galZ:23.443, dist:24.88, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:172701, mass:3.38147E+29, diameter:0, galX:-12.781, galY:-4.114, galZ:-20.972, dist:24.9, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:172702, mass:2.78474E+29, diameter:0, galX:-12.781, galY:-4.114, galZ:-20.972, dist:24.9, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"TW Piscis Austrini", id:157201, mass:0, diameter:1531, galX:9.848, galY:3.433, galZ:-22.619, dist:24.91, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"L 399-68", id:86401, mass:0, diameter:0, galX:12.221, galY:-20.027, galZ:8.605, dist:24.99, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Fomalhaut", id:157401, mass:4.57493E+30, diameter:2895, galX:9.506, galY:4.267, galZ:-22.8, dist:25.07, starType:"A3(V)", temp:9000, color:0xc0d1ff},
{ starName:"BD +2°3312", id:120901, mass:0, diameter:1392, galX:21.518, galY:10.052, galZ:8.365, dist:25.18, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"Vega", id:128901, mass:6.106537E+30, diameter:5262, galX:9.113, galY:22.125, galZ:8.215, dist:25.3, starType:"A0(V)", temp:9750, color:0xb8cbff},
{ starName:"GJ 1093", id:221901, mass:0, diameter:0, galX:-23.871, galY:-7.024, galZ:4.564, dist:25.3, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"BD -3°4233", id:125301, mass:0, diameter:668160, galX:22.756, galY:10.735, galZ:3.685, dist:25.43, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"L 362-81", id:165801, mass:0, diameter:14198, galX:7.092, galY:-3.564, galZ:-24.169, dist:25.44, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"BD -3°2870", id:68401, mass:0, diameter:0, galX:-8.052, galY:-17.123, galZ:17.061, dist:25.48, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"G 165-8", id:93101, mass:0, diameter:0, galX:2.71, galY:3.098, galZ:25.561, dist:25.89, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"AC +65°695", id:141101, mass:0, diameter:0, galX:-4.405, galY:24.672, galZ:6.762, dist:25.96, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:20301, mass:0, diameter:0, galX:-19.83, galY:10.244, galZ:-13.279, dist:25.97, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:214301, mass:0, diameter:403680, galX:13.97, galY:14.325, galZ:-16.55, dist:25.97, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:214302, mass:0, diameter:0, galX:13.97, galY:14.325, galZ:-16.55, dist:25.97, starType:"", temp:5000, color:0xffc97f},
{ starName:"W 290", id:40801, mass:0, diameter:0, galX:-23.87, galY:-9.523, galZ:-4.376, dist:26.07, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:180501, mass:3.18256E+29, diameter:0, galX:-6.927, galY:-24.039, galZ:-7.679, dist:26.17, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:180502, mass:2.98365E+29, diameter:0, galX:-6.927, galY:-24.039, galZ:-7.679, dist:26.17, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Pi(3) Orionis", id:33201, mass:0, diameter:2784, galX:-23.685, galY:-4.939, galZ:-10.003, dist:26.18, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"AC +48°159", id:113101, mass:0, diameter:0, galX:4.9, galY:18.279, galZ:18.163, dist:26.23, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"EG 453", id:157001, mass:0, diameter:0, galX:6.597, galY:13.372, galZ:-21.614, dist:26.26, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"Chi Draconis", id:207301, mass:0, diameter:1949, galX:-5.403, galY:22.535, galZ:12.392, dist:26.28, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"BD +18°342", id:122401, mass:0, diameter:0, galX:17.902, galY:16.364, galZ:10.701, dist:26.51, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"L 302-89", id:30701, mass:0, diameter:0, galX:-5.332, galY:-18.075, galZ:-18.659, dist:26.52, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"CPD -68°41", id:47601, mass:0, diameter:0, galX:8.314, galY:-14.612, galZ:-20.547, dist:26.55, starType:"la(V)", temp:5000, color:0xffc97f},
{ starName:"Wolf 461", id:89101, mass:0, diameter:0, galX:6.167, galY:-7.566, galZ:24.702, dist:26.56, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"CD -23°176", id:157701, mass:0, diameter:1183, galX:8.655, galY:7.396, galZ:-23.994, dist:26.56, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"P Eridani", id:169601, mass:1.233242E+30, diameter:1099680, galX:4.219, galY:-12.528, galZ:-23.047, dist:26.57, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"A", id:208701, mass:0, diameter:0, galX:11.389, galY:23.516, galZ:4.978, dist:26.6, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:208702, mass:0, diameter:0, galX:11.389, galY:23.516, galZ:4.978, dist:26.6, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"G 111-47", id:54601, mass:0, diameter:0, galX:-23.014, galY:0.387, galZ:13.366, dist:26.62, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Wolf 489", id:93901, mass:0, diameter:0, galX:10.037, galY:-5.865, galZ:24.027, dist:26.69, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"Wolf 437", id:87301, mass:0, diameter:0, galX:4.325, galY:-6.875, galZ:25.519, dist:26.78, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Beta Canum Venaticorum", id:85501, mass:2.148228E+30, diameter:1712, galX:-4.736, galY:4.797, galZ:26.454, dist:27.3, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Mu Herculis", id:206601, mass:0, diameter:2227, galX:15.064, galY:19.689, galZ:11.67, dist:27.4, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"CPD -51°44", id:79201, mass:0, diameter:0, galX:10.113, galY:-24.961, galZ:5.09, dist:27.41, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:193401, mass:0, diameter:0, galX:2.877, galY:-12.613, galZ:24.369, dist:27.59, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:193402, mass:0, diameter:0, galX:2.877, galY:-12.613, galZ:24.369, dist:27.59, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:202901, mass:0, diameter:556800, galX:26.147, galY:-7.78, galZ:4.379, dist:27.63, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:202902, mass:0, diameter:222720, galX:26.147, galY:-7.78, galZ:4.379, dist:27.63, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"A", id:15601, mass:0, diameter:0, galX:-9.765, galY:-0.837, galZ:-25.846, dist:27.64, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:177001, mass:6.96185E+29, diameter:947, galX:-17.644, galY:-15.486, galZ:-14.873, dist:27.79, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:177002, mass:3.9782E+29, diameter:542880, galX:-17.644, galY:-15.486, galZ:-14.873, dist:27.79, starType:"", temp:5000, color:0xffc97f},
{ starName:"L 968-22", id:68301, mass:0, diameter:0, galX:-9.224, galY:-18.508, galZ:18.591, dist:27.81, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"61 Virginis", id:91401, mass:1.909536E+30, diameter:1615, galX:13.52, galY:-14.585, galZ:19.441, dist:27.81, starType:"G6(V)", temp:5440, color:0xfff4eb},
{ starName:"BD +36°221", id:80501, mass:0, diameter:0, galX:-7.03, galY:0.383, galZ:26.996, dist:27.9, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Zeta Tucanae", id:3101, mass:1.949318E+30, diameter:1670, galX:10.273, galY:-12.895, galZ:-22.666, dist:28.03, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"L 49-19", id:157101, mass:0, diameter:459360, galX:14.425, galY:-15.69, galZ:-18.324, dist:28.11, starType:"", temp:5000, color:0xffc97f},
{ starName:"FK Aquarii", id:217201, mass:0, diameter:960480, galX:10.902, galY:9.481, galZ:-24.203, dist:28.19, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"FK Aquarii", id:217202, mass:0, diameter:494160, galX:10.902, galY:9.481, galZ:-24.203, dist:28.19, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:8201, mass:0, diameter:0, galX:-15.624, galY:23.093, galZ:4.47, dist:28.24, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Chi(1) Orionis", id:178501, mass:0, diameter:2227, galX:-27.906, galY:-4.325, galZ:-1.05, dist:28.26, starType:"", temp:5000, color:0xffc97f},
{ starName:"Chi(1) Orionis", id:178502, mass:0, diameter:0, galX:-27.906, galY:-4.325, galZ:-1.05, dist:28.26, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:180101, mass:1.19346E+30, diameter:1448, galX:-22.455, galY:-17.337, galZ:-0.738, dist:28.38, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"HU Delphini", id:140901, mass:0, diameter:0, galX:16.255, galY:21.99, galZ:-8.231, dist:28.56, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"WD 1126+18", id:77301, mass:0, diameter:0, galX:-6.025, galY:-8.214, galZ:26.734, dist:28.61, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"BD -5°5715", id:152501, mass:0, diameter:0, galX:10.654, galY:17.187, galZ:-20.25, dist:28.62, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:205001, mass:0, diameter:849, galX:27.394, galY:-8.021, galZ:-2.548, dist:28.66, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"B", id:205002, mass:0, diameter:0, galX:27.394, galY:-8.021, galZ:-2.548, dist:28.66, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:13401, mass:0, diameter:0, galX:-13.344, galY:8.784, galZ:-23.797, dist:28.66, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:182401, mass:1.889645E+29, diameter:0, galX:-21.367, galY:-17.901, galZ:6.652, dist:28.66, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD -5°1123", id:34201, mass:0, diameter:1712, galX:-23.654, galY:-10.463, galZ:-12.555, dist:28.75, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"CD -27°146", id:139901, mass:0, diameter:1308, galX:23.948, galY:6.916, galZ:-14.379, dist:28.78, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:208601, mass:0, diameter:0, galX:17.168, galY:23.057, galZ:3.058, dist:28.91, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:8501, mass:0, diameter:0, galX:-16.445, galY:23.848, galZ:-0.108, dist:28.97, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Ross 695", id:84201, mass:0, diameter:0, galX:8.729, galY:-18.758, galZ:20.307, dist:28.99, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"CD -32°561", id:59801, mass:0, diameter:0, galX:-8.279, galY:-27.636, galZ:3.305, dist:29.04, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:182101, mass:0, diameter:18374, galX:-17.321, galY:-23.364, galZ:1.403, dist:29.12, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"B", id:182102, mass:8.95094999999998E+28, diameter:0, galX:-17.321, galY:-23.364, galZ:1.403, dist:29.12, starType:"", temp:5000, color:0xffc97f},
{ starName:"Gamma Leporis", id:178401, mass:2.38692E+30, diameter:1837, galX:-18.616, galY:-19.316, galZ:-11.657, dist:29.25, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"L 678-39", id:65101, mass:0, diameter:0, galX:-7.667, galY:-25.788, galZ:11.549, dist:29.28, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 768-119", id:107601, mass:0, diameter:0, galX:25.615, galY:-4.376, galZ:13.71, dist:29.38, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:8901, mass:0, diameter:0, galX:-16.575, galY:24.291, galZ:-0.244, dist:29.41, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"CD -31°911", id:78101, mass:0, diameter:0, galX:6.773, galY:-24.984, galZ:14.105, dist:29.48, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Delta Eridani", id:26101, mass:0, diameter:3898, galX:-20.135, galY:-5.941, galZ:-20.728, dist:29.5, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"SZ Ursae Majoris", id:76401, mass:0, diameter:0, galX:-14.117, galY:13.312, galZ:22.428, dist:29.66, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Beta Comae Berenices", id:90301, mass:2.088555E+30, diameter:1684, galX:2.042, galY:1.692, galZ:29.743, dist:29.86, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"A", id:192101, mass:0, diameter:890880, galX:-7.88, galY:1.643, galZ:28.763, dist:29.87, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"CF Ursae Majoris", id:192102, mass:0, diameter:0, galX:-7.88, galY:1.643, galZ:28.763, dist:29.87, starType:"", temp:5000, color:0xffc97f},
{ starName:"Kappa Ceti", id:24001, mass:1.9891E+30, diameter:1392, galX:-22.029, galY:0.518, galZ:-20.17, dist:29.87, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"CD -45°537", id:65901, mass:0, diameter:0, galX:0.858, galY:-29.749, galZ:3.597, dist:29.98, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:16601, mass:0, diameter:0, galX:-6.013, galY:-7.7, galZ:-28.43, dist:30.06, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Gamma Pavonis", id:147401, mass:0, diameter:1406, galX:19.434, galY:-11.647, galZ:-19.751, dist:30.06, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"A", id:191701, mass:1.9891E+30, diameter:1350, galX:9.636, galY:-26.328, galZ:11.063, dist:30.14, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD +18°683", id:32501, mass:0, diameter:0, galX:-29.07, galY:-0.197, galZ:-8.791, dist:30.37, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +43°279", id:123501, mass:0, diameter:0, galX:9.412, galY:25.156, galZ:15.377, dist:30.95, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 390-5", id:65301, mass:0, diameter:0, galX:-0.631, galY:-30.586, galZ:4.746, dist:30.96, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 879-14", id:32301, mass:0, diameter:0, galX:-23.954, galY:-10.317, galZ:-16.815, dist:31.03, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:27401, mass:0, diameter:0, galX:-22.276, galY:-5.739, galZ:-20.918, dist:31.09, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:191401, mass:1.452043E+30, diameter:1072, galX:6.982, galY:-26.353, galZ:14.985, dist:31.11, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"61 Ursae Majoris", id:78601, mass:1.611171E+30, diameter:1253, galX:-8.589, galY:-0.572, galZ:29.904, dist:31.12, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"Wolf 636", id:118301, mass:0, diameter:0, galX:28.124, galY:7.986, galZ:10.839, dist:31.18, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"GJ 1207", id:117001, mass:0, diameter:0, galX:27.674, galY:7.621, galZ:12.331, dist:31.24, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:27501, mass:0, diameter:0, galX:-27.563, galY:3.339, galZ:-14.582, dist:31.36, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"LP 415-636", id:30601, mass:0, diameter:0, galX:-29.214, galY:1.796, galZ:-11.261, dist:31.36, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"CD -51°685", id:85901, mass:0, diameter:0, galX:16.071, galY:-26.468, galZ:5.775, dist:31.5, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:195802, mass:0, diameter:807360, galX:-3.906, galY:10.86, galZ:29.491, dist:31.67, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:18501, mass:0, diameter:0, galX:-23.412, galY:13.23, galZ:-17.07, dist:31.85, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +33°277", id:115701, mass:0, diameter:1072, galX:14.029, galY:20.231, galZ:20.239, dist:31.87, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"CPD -48°93", id:121601, mass:0, diameter:0, galX:30.239, galY:-8.92, galZ:-4.715, dist:31.88, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"12 Ophiuchi", id:114601, mass:0, diameter:1768, galX:27.202, galY:7.112, galZ:15.052, dist:31.89, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"CE Boötis", id:199801, mass:0, diameter:696000, galX:15.72, galY:5.196, galZ:27.398, dist:32.01, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CE Boötis", id:199802, mass:0, diameter:0, galX:15.72, galY:5.196, galZ:27.398, dist:32.01, starType:"", temp:5000, color:0xffc97f},
{ starName:"G 144-25", id:141901, mass:0, diameter:0, galX:15.413, galY:26.776, galZ:-8.702, dist:32.1, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +17°132", id:43001, mass:0, diameter:0, galX:-30.718, galY:-8.829, galZ:3.057, dist:32.11, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"W 246", id:5201, mass:0, diameter:0, galX:-0.742, galY:3.553, galZ:-32.156, dist:32.36, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"AU Microscopii", id:142801, mass:0, diameter:877, galX:25.052, galY:6.199, galZ:-19.632, dist:32.43, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:13801, mass:0, diameter:1267, galX:-20.651, galY:25.12, galZ:1.127, dist:32.54, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:205701, mass:0, diameter:807360, galX:26.805, galY:14.76, galZ:11.127, dist:32.56, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Ross 41", id:37101, mass:0, diameter:0, galX:-30.791, galY:-7.894, galZ:-7.717, dist:32.71, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:10001, mass:0, diameter:0, galX:-10.221, galY:10.217, galZ:-29.613, dist:32.95, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"BD+62°1325", id:223701, mass:0, diameter:0, galX:-6.351, galY:18.298, galZ:26.692, dist:32.98, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"A", id:209301, mass:0, diameter:17678, galX:27.881, galY:16.729, galZ:-5.676, dist:33.01, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"V547 Cassiopeiae", id:166901, mass:0, diameter:0, galX:-17.153, galY:28.096, galZ:2.699, dist:33.03, starType:"", temp:5000, color:0xffc97f},
{ starName:"V547 Cassiopeiae", id:166902, mass:0, diameter:0, galX:-17.153, galY:28.096, galZ:2.699, dist:33.03, starType:"", temp:5000, color:0xffc97f},
{ starName:"V547 Cassiopeiae", id:166903, mass:7.55858E+29, diameter:0, galX:-17.153, galY:28.096, galZ:2.699, dist:33.03, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"AC +2°2155", id:133201, mass:0, diameter:0, galX:25.926, galY:20.44, galZ:-2.203, dist:33.09, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Alpha Mensae", id:42501, mass:1.730517E+30, diameter:1253, galX:7.035, galY:-28.1, galZ:-16.012, dist:33.1, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD -1°2892", id:96401, mass:0, diameter:765600, galX:16.896, galY:-7.169, galZ:27.656, dist:33.19, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CD -26°888", id:80901, mass:1.113896E+30, diameter:1740, galX:8.885, galY:-25.757, galZ:19.022, dist:33.23, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"AC +66°395", id:87801, mass:0, diameter:0, galX:-11.312, galY:17.428, galZ:25.93, dist:33.23, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +52°857", id:32101, mass:0, diameter:932640, galX:-29.675, galY:14.754, galZ:2.547, dist:33.24, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"A", id:215901, mass:0, diameter:306240, galX:13.234, galY:17.214, galZ:-25.178, dist:33.25, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:215902, mass:0, diameter:236640, galX:13.234, galY:17.214, galZ:-25.178, dist:33.25, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"A", id:199701, mass:0, diameter:528960, galX:13.396, galY:8.46, galZ:29.338, dist:33.34, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:199702, mass:0, diameter:459360, galX:13.396, galY:8.46, galZ:29.338, dist:33.34, starType:"", temp:5000, color:0xffc97f},
{ starName:"AT Microscopii", id:212101, mass:0, diameter:570720, galX:26.069, galY:5.826, galZ:-19.96, dist:33.35, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:212102, mass:0, diameter:515040, galX:26.069, galY:5.826, galZ:-19.96, dist:33.35, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"AC +27°212", id:79101, mass:0, diameter:0, galX:-7.275, galY:-4.52, galZ:32.251, dist:33.37, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:21001, mass:0, diameter:0, galX:-25.506, galY:21.746, galZ:-2.73, dist:33.63, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"BD +0°4810", id:151901, mass:0, diameter:904800, galX:12.064, galY:22.482, galZ:-21.905, dist:33.63, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +25°317", id:117501, mass:0, diameter:0, galX:18.976, galY:20.063, galZ:19.247, dist:33.66, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Pollux", id:53601, mass:5.56948E+30, diameter:10022, galX:-30.055, galY:-6.724, galZ:13.719, dist:33.72, starType:"K0(III)", temp:5050, color:0xffe7c4},
{ starName:"W 250", id:62901, mass:0, diameter:0, galX:-23.782, galY:6.879, galZ:22.902, dist:33.73, starType:"DX(wd)", temp:5000, color:0xffc97f},
{ starName:"Riepe's Double", id:178301, mass:0, diameter:0, galX:-33.634, galY:-1.711, galZ:-1.857, dist:33.73, starType:"", temp:5000, color:0xffc97f},
{ starName:"Riepe's Double", id:178302, mass:0, diameter:0, galX:-33.634, galY:-1.711, galZ:-1.857, dist:33.73, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:195801, mass:0, diameter:877, galX:-3.911, galY:11.614, galZ:31.531, dist:33.83, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"EP Eridani", id:21601, mass:0, diameter:1141, galX:-18.257, galY:-3.195, galZ:-28.34, dist:33.86, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"Xi Ursae Majoris", id:190501, mass:0, diameter:1350240, galX:-11.264, galY:-3.171, galZ:31.899, dist:33.98, starType:"", temp:5000, color:0xffc97f},
{ starName:"Xi Ursae Majoris", id:190502, mass:0, diameter:0, galX:-11.264, galY:-3.171, galZ:31.899, dist:33.98, starType:"", temp:5000, color:0xffc97f},
{ starName:"Ross 594", id:31301, mass:0, diameter:0, galX:-32.175, galY:10.456, galZ:-3.476, dist:34.01, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 396-7", id:77801, mass:0, diameter:0, galX:9.784, galY:-30.721, galZ:11.316, dist:34.17, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +63°869", id:66601, mass:0, diameter:0, galX:-20.82, galY:12.409, galZ:24.109, dist:34.19, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"L 140-9", id:63801, mass:0, diameter:0, galX:5.581, galY:-33.486, galZ:-4.132, dist:34.2, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"Rob 270", id:30101, mass:0, diameter:0, galX:-30.061, galY:-2.405, galZ:-16.407, dist:34.33, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"LP 271-25", id:99701, mass:0, diameter:0, galX:7.335, galY:10.451, galZ:31.869, dist:34.33, starType:"M9(V)", temp:2000, color:0x9bb3ff},
{ starName:"A", id:176801, mass:0, diameter:0, galX:-3.778, galY:-26.497, galZ:-21.498, dist:34.33, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"B", id:176802, mass:0, diameter:0, galX:-3.778, galY:-26.497, galZ:-21.498, dist:34.33, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:187201, mass:3.9782E+29, diameter:584640, galX:-12.287, galY:-27.832, galZ:15.942, dist:34.35, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:187202, mass:3.9782E+29, diameter:584640, galX:-12.287, galY:-27.832, galZ:15.942, dist:34.35, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Iota Persei", id:22901, mass:2.565939E+30, diameter:1810, galX:-27.94, galY:19.563, galZ:-4.144, dist:34.36, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"BD -11°916", id:32201, mass:0, diameter:0, galX:-25.448, galY:-13.378, galZ:-19.433, dist:34.7, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:202801, mass:0, diameter:877, galX:-4.542, galY:26.445, galZ:22.126, dist:34.78, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CD -23°976", id:74801, mass:0, diameter:0, galX:2.692, galY:-28.838, galZ:19.398, dist:34.86, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +3°3465", id:122701, mass:0, diameter:1489, galX:29.473, galY:15.705, galZ:10.272, dist:34.94, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"V645 Herculis", id:205201, mass:0, diameter:636144, galX:19.711, galY:22.807, galZ:17.708, dist:34.96, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:210101, mass:0, diameter:389760, galX:15.708, galY:31.303, galZ:0.566, dist:35.03, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:210102, mass:0, diameter:292320, galX:15.708, galY:31.303, galZ:0.566, dist:35.03, starType:"", temp:5000, color:0xffc97f},
{ starName:"Wolf 635", id:118201, mass:0, diameter:1016160, galX:31.645, galY:8.957, galZ:12.208, dist:35.08, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:179001, mass:0, diameter:0, galX:-33.088, galY:-11.686, galZ:-2.182, dist:35.16, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:179002, mass:0, diameter:0, galX:-33.088, galY:-11.686, galZ:-2.182, dist:35.16, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +0°2989", id:88301, mass:0, diameter:974, galX:8.815, galY:-13.076, galZ:31.438, dist:35.17, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:219901, mass:0, diameter:1155360, galX:-16.812, galY:29.826, galZ:8.119, dist:35.19, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"B", id:219902, mass:0, diameter:515040, galX:-16.812, galY:29.826, galZ:8.119, dist:35.19, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Zeta Herculis", id:203801, mass:2.267574E+30, diameter:3062, galX:16.4, galY:21.479, galZ:22.572, dist:35.21, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Zeta Herculis", id:203802, mass:1.631062E+30, diameter:1199904, galX:16.4, galY:21.479, galZ:22.572, dist:35.21, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:204601, mass:0, diameter:0, galX:30.607, galY:11.833, galZ:12.821, dist:35.23, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:204602, mass:0, diameter:0, galX:30.607, galY:11.833, galZ:12.821, dist:35.23, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:8101, mass:0, diameter:0, galX:-19.793, galY:29.213, galZ:-0.907, dist:35.3, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Delta Trianguli", id:16901, mass:0, diameter:1364160, galX:-25.619, galY:19.309, galZ:-14.921, dist:35.38, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Beta Virginis", id:80401, mass:0, diameter:2032, galX:0.598, galY:-17.327, galZ:31.035, dist:35.55, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"BD +36°239", id:94101, mass:0, diameter:0, galX:2.126, galY:7.864, galZ:34.615, dist:35.56, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:16001, mass:1.571389E+30, diameter:1016, galX:0.762, galY:-16.046, galZ:-31.769, dist:35.6, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:180001, mass:0, diameter:0, galX:-29.576, galY:13.758, galZ:14.374, dist:35.65, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:180002, mass:0, diameter:0, galX:-29.576, galY:13.758, galZ:14.374, dist:35.65, starType:"", temp:5000, color:0xffc97f},
{ starName:"DN Draconis", id:116201, mass:0, diameter:17261, galX:0.822, galY:27.955, galZ:22.331, dist:35.79, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:23301, mass:0, diameter:0, galX:-0.714, galY:-21.568, galZ:-28.615, dist:35.84, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"W 381", id:2301, mass:0, diameter:0, galX:-15.744, galY:31.459, galZ:-7.45, dist:35.96, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Ross 1003", id:78901, mass:0, diameter:0, galX:-11.874, galY:4.261, galZ:33.693, dist:35.98, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"W 248", id:40101, mass:0, diameter:0, galX:-31.59, galY:-15.255, galZ:-8.259, dist:36.04, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:12201, mass:0, diameter:0, galX:-22.78, galY:27.848, galZ:-3.184, dist:36.12, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:14601, mass:0, diameter:849, galX:-9.439, galY:-2.453, galZ:-34.833, dist:36.17, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Denebola", id:80301, mass:4.57493E+30, diameter:1837, galX:-3.509, galY:-11.208, galZ:34.22, dist:36.18, starType:"A3(V)", temp:9000, color:0xc0d1ff},
{ starName:"BD +38°309", id:126001, mass:0, diameter:1002, galX:13.751, galY:30.104, galZ:14.664, dist:36.2, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"54 Piscis", id:4801, mass:1.571389E+30, diameter:1183, galX:-13.621, galY:23.569, galZ:-23.909, dist:36.23, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD +5°3993", id:131601, mass:0, diameter:890880, galX:28.039, galY:22.936, galZ:0.461, dist:36.23, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:15801, mass:0, diameter:0, galX:-21.844, galY:11.698, galZ:-26.448, dist:36.24, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"L 190-21", id:69201, mass:0, diameter:0, galX:7.131, galY:-35.51, galZ:1.171, dist:36.24, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"Gamma Serpentis", id:109001, mass:0, diameter:2227, galX:22.626, galY:11.955, galZ:25.706, dist:36.27, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"CD -38°478", id:59901, mass:1.292915E+30, diameter:1127520, galX:-7.258, galY:-35.527, galZ:2.212, dist:36.33, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"AC -12°230", id:100201, mass:0, diameter:0, galX:24.469, galY:-9.537, galZ:25.122, dist:36.34, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CPD -42°41", id:66301, mass:0, diameter:1002240, galX:0.926, galY:-35.91, galZ:5.682, dist:36.37, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"11 Leonis Minoris", id:187501, mass:0, diameter:1308, galX:-23.907, galY:-3.734, galZ:27.267, dist:36.46, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"11 Leonis Minoris", id:187502, mass:0, diameter:334080, galX:-23.907, galY:-3.734, galZ:27.267, dist:36.46, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:197901, mass:0, diameter:863, galX:-0.11, galY:14.801, galZ:33.484, dist:36.61, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:197902, mass:0, diameter:821, galX:-0.11, galY:14.801, galZ:33.484, dist:36.61, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:195601, mass:0, diameter:1141440, galX:7.096, galY:-3.123, galZ:35.791, dist:36.62, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"B", id:195602, mass:0, diameter:821280, galX:7.096, galY:-3.123, galZ:35.791, dist:36.62, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Theta Persei", id:171901, mass:2.108446E+30, diameter:1949, galX:-28.342, galY:22.472, galZ:-5.846, dist:36.64, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"Theta Persei", id:171902, mass:5.9673E+29, diameter:807360, galX:-28.342, galY:22.472, galZ:-5.846, dist:36.64, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Arcturus", id:98101, mass:6.76294E+30, diameter:36192, galX:12.985, galY:3.517, galZ:34.159, dist:36.71, starType:"K2(III)", temp:4750, color:0xffe0b3},
{ starName:"A", id:184901, mass:0, diameter:932640, galX:-23.923, galY:17.857, galZ:21.683, dist:36.9, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"B", id:184902, mass:0, diameter:918720, galX:-23.923, galY:17.857, galZ:21.683, dist:36.9, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"Eta Boötis", id:96001, mass:0, diameter:2979, galX:11.121, galY:1.103, galZ:35.264, dist:36.99, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Ross 85", id:65401, mass:0, diameter:0, galX:-20.018, galY:-17.552, galZ:25.746, dist:37.04, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:207201, mass:0, diameter:0, galX:13.792, galY:31.277, galZ:14.315, dist:37.06, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +11°878", id:38001, mass:0, diameter:0, galX:-35.363, galY:-9.042, galZ:-6.694, dist:37.11, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +21°276", id:106201, mass:0, diameter:0, galX:18.402, galY:11.074, galZ:30.316, dist:37.15, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CPD -73°22", id:163401, mass:0, diameter:988320, galX:17.151, galY:-19.882, galZ:-26.318, dist:37.18, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"DT Virginis", id:89301, mass:0, diameter:0, galX:6.827, galY:-7.067, galZ:35.963, dist:37.28, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Ross 271", id:153101, mass:0, diameter:0, galX:6.265, galY:31.571, galZ:-18.865, dist:37.31, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +21°652", id:31201, mass:0, diameter:988320, galX:-35.595, galY:2.597, galZ:-11.249, dist:37.42, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:197701, mass:0, diameter:988, galX:25.369, galY:-27.106, galZ:5.204, dist:37.49, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"B", id:197702, mass:0, diameter:0, galX:25.369, galY:-27.106, galZ:5.204, dist:37.49, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD+44°4548", id:1201, mass:0, diameter:0, galX:-15.268, galY:32.625, galZ:-10.424, dist:37.5, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CC Eridani", id:18601, mass:0, diameter:932640, galX:-4.407, galY:-15.884, galZ:-33.739, dist:37.55, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:17301, mass:0, diameter:0, galX:-27.647, galY:24.253, galZ:-7.723, dist:37.58, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:16101, mass:0, diameter:0, galX:-21.136, galY:8.014, galZ:-30.075, dist:37.62, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +19°288", id:103001, mass:0, diameter:1128, galX:17.058, galY:7.444, galZ:32.697, dist:37.62, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"A", id:181301, mass:0, diameter:0, galX:-33.317, galY:5.901, galZ:16.639, dist:37.71, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"L 1154-29", id:2501, mass:0, diameter:0, galX:-8.51, galY:23.598, galZ:-28.264, dist:37.79, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"V1285 Aquilae", id:131201, mass:0, diameter:0, galX:28.418, galY:24.885, galZ:1.608, dist:37.81, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 997-21", id:137301, mass:0, diameter:16704, galX:28.106, galY:23.484, galZ:-9.653, dist:37.88, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:14301, mass:0, diameter:0, galX:-13.657, galY:3.232, galZ:-35.241, dist:37.93, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Ross 845", id:97701, mass:0, diameter:0, galX:22.92, galY:-11.44, galZ:27.976, dist:37.93, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Zeta Doradus", id:35101, mass:2.38692E+30, diameter:1183, galX:-2.782, galY:-30.341, galZ:-22.707, dist:38, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"BD +22°230", id:74301, mass:0, diameter:835200, galX:-12.205, galY:-10.179, galZ:34.547, dist:38.03, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"EG 375", id:133701, mass:0, diameter:23942, galX:12.349, galY:35.21, galZ:7.699, dist:38.1, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"BD +45°224", id:104101, mass:0, diameter:0, galX:4.718, galY:19.509, galZ:32.456, dist:38.16, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:165901, mass:0, diameter:904800, galX:-15.661, galY:33.323, galZ:-10.65, dist:38.33, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"B", id:165902, mass:0, diameter:0, galX:-15.661, galY:33.323, galZ:-10.65, dist:38.33, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"Lambda Serpentis", id:108001, mass:2.38692E+30, diameter:1531, galX:26.741, galY:7.643, galZ:26.395, dist:38.34, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Iota Pegasi", id:152201, mass:0, diameter:1629, galX:4.326, galY:34.653, galZ:-15.844, dist:38.35, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"BD -5°4426", id:120401, mass:0, diameter:0, galX:34.66, galY:11.667, galZ:11.611, dist:38.37, starType:"G9(V)", temp:5200, color:0xffefdd},
{ starName:"A", id:173301, mass:0, diameter:0, galX:6.874, galY:-26.362, galZ:-27.087, dist:38.42, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"B", id:173302, mass:0, diameter:0, galX:6.874, galY:-26.362, galZ:-27.087, dist:38.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD -11°274", id:66201, mass:0, diameter:0, galX:-11.621, galY:-30.544, galZ:20.291, dist:38.47, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CPD -50°11", id:137901, mass:0, diameter:1085760, galX:31.993, galY:-6.117, galZ:-20.498, dist:38.49, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Delta Capricorni", id:149701, mass:0, diameter:2784000, galX:20.757, galY:16.589, galZ:-27.937, dist:38.56, starType:"A6(V)", temp:8250, color:0xc7d4ff},
{ starName:"Porrima", id:194401, mass:3.38147E+30, diameter:2784, galX:8.818, galY:-15.833, galZ:34.071, dist:38.59, starType:"F0(V)", temp:7350, color:0xe4e8ff},
{ starName:"Porrima", id:194402, mass:3.38147E+30, diameter:1587, galX:8.818, galY:-15.833, galZ:34.071, dist:38.59, starType:"F0(V)", temp:7350, color:0xe4e8ff},
{ starName:"CPD -58°54", id:98601, mass:0, diameter:1392, galX:27.046, galY:-27.507, galZ:1.318, dist:38.6, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"L 165-2", id:151401, mass:0, diameter:0, galX:23.648, galY:-11.221, galZ:-28.513, dist:38.71, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -36°406", id:55101, mass:0, diameter:0, galX:-11.211, galY:-37.131, galZ:-2.514, dist:38.87, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:189901, mass:0, diameter:974400, galX:-13.527, galY:-4.673, galZ:36.169, dist:38.9, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"A", id:196201, mass:3.9782E+29, diameter:598560, galX:15.468, galY:-12.398, galZ:33.496, dist:38.92, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:196202, mass:1.9891E+29, diameter:292320, galX:15.468, galY:-12.398, galZ:33.496, dist:38.92, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Gl 403", id:72801, mass:0, diameter:0, galX:-12.203, galY:-15.739, galZ:33.494, dist:38.97, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:197201, mass:0, diameter:0, galX:8.426, galY:3.192, galZ:38.06, dist:39.11, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:197202, mass:0, diameter:0, galX:8.427, galY:3.16, galZ:38.093, dist:39.14, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"W 74", id:73701, mass:0, diameter:11693, galX:-4.748, galY:-26.714, galZ:28.234, dist:39.16, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"BD -16°604", id:153401, mass:0, diameter:0, galX:17.102, galY:17.257, galZ:-30.847, dist:39.27, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"L 104-2", id:84401, mass:0, diameter:0, galX:19.792, galY:-33.933, galZ:-1.098, dist:39.3, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:177401, mass:0, diameter:0, galX:-25.209, galY:-21.952, galZ:-20.669, dist:39.3, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"B", id:177402, mass:0, diameter:0, galX:-25.209, galY:-21.952, galZ:-20.669, dist:39.3, starType:"", temp:5000, color:0xffc97f},
{ starName:"C", id:177403, mass:0, diameter:0, galX:-25.209, galY:-21.952, galZ:-20.669, dist:39.3, starType:"", temp:5000, color:0xffc97f},
{ starName:"VV Lyncis", id:181401, mass:0, diameter:668160, galX:-35.868, galY:-1.959, galZ:15.93, dist:39.3, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:193801, mass:0, diameter:0, galX:9.634, galY:-21.851, galZ:31.213, dist:39.3, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:22801, mass:0, diameter:0, galX:-25.774, galY:28.258, galZ:9.196, dist:39.34, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"Zeta(2) Reticuli", id:24101, mass:1.9891E+30, diameter:1058, galX:3.432, galY:-26.212, galZ:-29.213, dist:39.4, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"Zeta Trianguli Australis", id:113201, mass:0, diameter:1197, galX:29.183, galY:-24.577, galZ:-10.137, dist:39.48, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"CPD -53°99", id:142001, mass:0, diameter:932640, galX:30.195, galY:-6.587, galZ:-24.591, dist:39.5, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"Zeta(1) Reticuli", id:23901, mass:1.79019E+30, diameter:974, galX:3.422, galY:-26.258, galZ:-29.348, dist:39.53, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"A", id:25201, mass:0, diameter:0, galX:-8.173, galY:-22.107, galZ:-31.798, dist:39.58, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Wolf 918", id:145601, mass:0, diameter:0, galX:25.166, galY:19.317, galZ:-23.725, dist:39.62, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:192201, mass:3.58038E+29, diameter:515040, galX:3.562, galY:-23.666, galZ:31.65, dist:39.68, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -31°622", id:58801, mass:0, diameter:891, galX:-12.291, galY:-37.532, galZ:4.023, dist:39.7, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"GD 294", id:51101, mass:0, diameter:0, galX:-33.179, galY:13.142, galZ:17.564, dist:39.78, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"G 119-62", id:75301, mass:0, diameter:0, galX:-14.882, galY:-2.685, galZ:36.79, dist:39.78, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +53°934", id:38801, mass:0, diameter:1169280, galX:-36.314, galY:14.176, galZ:8.629, dist:39.93, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"A", id:12401, mass:0, diameter:0, galX:-14.944, galY:8.246, galZ:-36.256, dist:40.07, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Beta Trianguli Australis", id:201801, mass:0, diameter:2088, galX:31.679, galY:-24.129, galZ:-5.103, dist:40.15, starType:"F2(V)", temp:7050, color:0xedeeff},
{ starName:"BD +27°134", id:51001, mass:0, diameter:0, galX:-37.622, galY:-7.343, galZ:12.229, dist:40.24, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"W 169", id:30901, mass:0, diameter:0, galX:-36.502, galY:-1.937, galZ:-16.901, dist:40.27, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"CD -57°107", id:35301, mass:0, diameter:0, galX:-3.008, galY:-32.161, galZ:-24.046, dist:40.27, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"AC +41°726", id:120501, mass:0, diameter:0, galX:13.232, galY:30.71, galZ:22.456, dist:40.28, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"85 Pegasi", id:220201, mass:1.631062E+30, diameter:1266720, galX:-11.622, galY:31.3, galZ:-22.835, dist:40.45, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"85 Pegasi", id:220202, mass:1.59128E+30, diameter:932640, galX:-11.622, galY:31.3, galZ:-22.835, dist:40.45, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"BD +53°935", id:38901, mass:0, diameter:0, galX:-37.011, galY:14.445, galZ:8.814, dist:40.7, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD -9°3070", id:70501, mass:0, diameter:0, galX:-8.271, galY:-30.522, galZ:25.665, dist:40.73, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"AC +44°871", id:143101, mass:0, diameter:0, galX:3.97, galY:40.569, galZ:0.628, dist:40.77, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +10°175", id:56701, mass:1.19346E+30, diameter:0, galX:-31.15, galY:-20.629, galZ:16.307, dist:40.77, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:182701, mass:0, diameter:0, galX:-16.848, galY:-37.122, galZ:-0.311, dist:40.77, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:182702, mass:0, diameter:0, galX:-16.848, galY:-37.122, galZ:-0.311, dist:40.77, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -43°722", id:78701, mass:0, diameter:1030080, galX:13.457, galY:-36.572, galZ:12.148, dist:40.82, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"LP 292-67", id:3201, mass:0, diameter:0, galX:-15.319, galY:32.124, galZ:-19.992, dist:40.82, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"LP 35-347", id:57901, mass:0, diameter:0, galX:-28.213, galY:18.967, galZ:22.587, dist:40.82, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Rho(1) Cancri", id:184801, mass:1.690735E+30, diameter:1266720, galX:-30.629, galY:-9.503, galZ:25.327, dist:40.87, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"L 1363-3", id:149301, mass:0, diameter:23107, galX:9.994, galY:36.18, galZ:-16.439, dist:40.98, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"Gliese 26", id:4701, mass:0, diameter:0, galX:-17.234, galY:30.15, galZ:-21.85, dist:41.03, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD -12°244", id:57001, mass:1.690735E+30, diameter:988, galX:-23.456, galY:-32.196, galZ:9.86, dist:41.04, starType:"G7(V)", temp:5360, color:0xfff4eb},
{ starName:"A", id:24701, mass:0, diameter:1002240, galX:-22.278, galY:-11.569, galZ:-32.61, dist:41.15, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:208001, mass:0, diameter:890880, galX:36.19, galY:-11.295, galZ:-16.142, dist:41.21, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"B", id:208002, mass:0, diameter:890880, galX:36.19, galY:-11.295, galZ:-16.142, dist:41.21, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:12701, mass:0, diameter:1211, galX:-26.722, galY:28.417, galZ:-13.385, dist:41.24, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"Lambda Aurigae", id:36301, mass:0, diameter:1949, galX:-40.313, galY:8.55, galZ:1.522, dist:41.24, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"A", id:13501, mass:0, diameter:0, galX:11.13, galY:-24.03, galZ:-31.676, dist:41.29, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"L 886-6", id:45901, mass:0, diameter:0, galX:-31.993, galY:-26.098, galZ:-0.203, dist:41.29, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:212501, mass:0, diameter:417600, galX:28.456, galY:19.393, galZ:-22.863, dist:41.34, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:17101, mass:0, diameter:780, galX:-12.716, galY:-6.953, galZ:-38.73, dist:41.35, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD +6°2182", id:64501, mass:1.19346E+30, diameter:1071840, galX:-21.649, galY:-24.334, galZ:25.469, dist:41.35, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"GJ 2138", id:129001, mass:0, diameter:0, galX:38.982, galY:14.056, galZ:-2.861, dist:41.54, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:15001, mass:0, diameter:0, galX:-27.608, galY:30.963, galZ:-2.309, dist:41.55, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"i Boötis", id:200201, mass:0, diameter:1949, galX:4.02, galY:22.367, galZ:34.856, dist:41.61, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"i Boötis", id:200202, mass:0, diameter:1238880, galX:4.02, galY:22.367, galZ:34.856, dist:41.61, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"i Boötis", id:200203, mass:0, diameter:1238880, galX:4.02, galY:22.367, galZ:34.856, dist:41.61, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"A", id:193001, mass:0, diameter:0, galX:10.605, galY:-28.281, galZ:28.809, dist:41.74, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +67°101", id:121201, mass:0, diameter:1197120, galX:-4.565, galY:34.631, galZ:22.845, dist:41.74, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"LP 103-294", id:127501, mass:0, diameter:0, galX:-0.185, galY:37.175, galZ:19.019, dist:41.76, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"BD +8°4887", id:154601, mass:0, diameter:0, galX:7.461, galY:30.811, galZ:-27.21, dist:41.78, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CU Cancri", id:183901, mass:0, diameter:0, galX:-32.225, galY:-15.609, galZ:21.538, dist:41.79, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"36 Ursae Majoris", id:71201, mass:2.307356E+30, diameter:1114, galX:-23.117, galY:11.162, galZ:33.122, dist:41.91, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"A", id:203201, mass:0, diameter:1086, galX:39.696, galY:-12.68, galZ:5.065, dist:41.98, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"A", id:191001, mass:0, diameter:1364, galX:16.26, galY:-38.764, galZ:0.413, dist:42.04, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"B", id:191002, mass:0, diameter:891, galX:16.26, galY:-38.764, galZ:0.413, dist:42.04, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:219201, mass:0, diameter:0, galX:6.842, galY:13.794, galZ:-39.171, dist:42.09, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:219202, mass:0, diameter:0, galX:6.842, galY:13.794, galZ:-39.171, dist:42.09, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD -9°3413", id:81101, mass:0, diameter:1322400, galX:6.285, galY:-25.597, galZ:32.829, dist:42.1, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:189301, mass:0, diameter:640320, galX:-1.959, galY:-34.54, galZ:24.145, dist:42.19, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"B", id:189302, mass:0, diameter:0, galX:-1.959, galY:-34.54, galZ:24.145, dist:42.19, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"Capella", id:177501, mass:5.9673E+30, diameter:10774, galX:-40.175, galY:12.344, galZ:3.767, dist:42.2, starType:"G5(III)", temp:5520, color:0xffecd7},
{ starName:"Capella", id:177502, mass:5.56948E+30, diameter:7461, galX:-40.175, galY:12.344, galZ:3.767, dist:42.2, starType:"G0(III)", temp:5920, color:0xfff3e9},
{ starName:"CD -43°123", id:126101, mass:0, diameter:988320, galX:40.833, galY:-6.451, galZ:-8.752, dist:42.26, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"BD -3°1110", id:37301, mass:0, diameter:1071840, galX:-36.063, galY:-17.385, galZ:-13.783, dist:42.34, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD -21°508", id:129101, mass:0, diameter:1294560, galX:40.892, galY:9.576, galZ:-5.418, dist:42.35, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:19601, mass:0, diameter:0, galX:3.574, galY:-24.643, galZ:-34.267, dist:42.36, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"GJ 1077", id:36601, mass:0, diameter:0, galX:12.164, galY:-34.128, galZ:-22.154, dist:42.47, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:23001, mass:0, diameter:0, galX:-34.914, galY:22.955, galZ:-7.875, dist:42.52, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Wolf 1539", id:33501, mass:0, diameter:0, galX:-38.292, galY:-8.297, galZ:-16.522, dist:42.52, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Wolf 497", id:94801, mass:0, diameter:0, galX:11.799, galY:-0.147, galZ:40.852, dist:42.52, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"AC +76°530", id:107901, mass:0, diameter:0, galX:-12.191, galY:31.701, galZ:25.709, dist:42.6, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -55°151", id:43401, mass:0, diameter:0, galX:-4.297, galY:-38.939, galZ:-16.859, dist:42.65, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"CPD -53°67", id:30201, mass:0, diameter:1057920, galX:-4.636, galY:-30.14, galZ:-29.832, dist:42.66, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:172201, mass:0, diameter:0, galX:-0.03, galY:-23.812, galZ:-35.395, dist:42.66, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -28°302", id:47401, mass:0, diameter:0, galX:-1.839, galY:-0.089, galZ:-42.701, dist:42.74, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +2°4076", id:138101, mass:0, diameter:1099680, galX:29.377, galY:29.123, galZ:-10.852, dist:42.77, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"BD +57°273", id:161101, mass:0, diameter:0, galX:-15.964, galY:39.638, galZ:-2.182, dist:42.79, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +27°412", id:148701, mass:0, diameter:0, galX:7.514, galY:40.004, galZ:-13.478, dist:42.88, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:9501, mass:0, diameter:0, galX:-1.675, galY:-2.504, galZ:-42.815, dist:42.92, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"A", id:178601, mass:0, diameter:0, galX:-37.234, galY:17.216, galZ:12.611, dist:42.92, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"SZ Crateris", id:190601, mass:0, diameter:918720, galX:3.712, galY:-33.387, galZ:26.712, dist:42.92, starType:"", temp:5000, color:0xffc97f},
{ starName:"SZ Crateris", id:190602, mass:0, diameter:584640, galX:3.712, galY:-33.387, galZ:26.712, dist:42.92, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:195701, mass:5.9673E+29, diameter:793440, galX:0.708, galY:7.495, galZ:42.275, dist:42.94, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"B", id:195702, mass:3.9782E+29, diameter:459360, galX:0.708, galY:7.495, galZ:42.275, dist:42.94, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD -18°498", id:127901, mass:0, diameter:1155360, galX:41.345, galY:11.711, galZ:-3.008, dist:43.08, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"BD +46°188", id:94201, mass:0, diameter:0, galX:-2.282, galY:15.513, galZ:40.297, dist:43.24, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Ross 28", id:29701, mass:0, diameter:0, galX:-37.817, galY:21.112, galZ:0.775, dist:43.32, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"W 406", id:801, mass:0, diameter:0, galX:9.131, galY:-0.013, galZ:-42.396, dist:43.37, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:207801, mass:0, diameter:0, galX:41.587, galY:-0.729, galZ:-12.271, dist:43.37, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"B", id:207802, mass:0, diameter:194880, galX:41.587, galY:-0.729, galZ:-12.271, dist:43.37, starType:"", temp:5000, color:0xffc97f},
{ starName:"58 Eridani", id:33001, mass:0, diameter:642, galX:-30.205, galY:-19.939, galZ:-24.008, dist:43.43, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"CD -24°986", id:78501, mass:0, diameter:0, galX:7.791, galY:-34.027, galZ:25.905, dist:43.47, starType:"G6(V)", temp:5440, color:0xfff4eb},
{ starName:"LP 639-1", id:151301, mass:0, diameter:0, galX:17.97, galY:27.437, galZ:-28.554, dist:43.49, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"A", id:25301, mass:0, diameter:946560, galX:-6.301, galY:-26.061, galZ:-34.344, dist:43.57, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"AC +70°824", id:132001, mass:0, diameter:11136, galX:-7.929, galY:38.782, galZ:18.27, dist:43.6, starType:"DX(wd)", temp:5000, color:0xffc97f},
{ starName:"CD -55°907", id:154101, mass:0, diameter:0, galX:24.735, galY:-9.591, galZ:-34.631, dist:43.63, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:210901, mass:0, diameter:737760, galX:32.539, galY:-17.267, galZ:-23.538, dist:43.72, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:210902, mass:0, diameter:542880, galX:32.539, galY:-17.267, galZ:-23.538, dist:43.72, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +9°2636", id:85001, mass:0, diameter:0, galX:4.767, galY:-13.46, galZ:41.334, dist:43.73, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD +53°171", id:100901, mass:0, diameter:1113600, galX:-1.191, galY:23.182, galZ:37.119, dist:43.78, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"A", id:13101, mass:0, diameter:988320, galX:-27.55, galY:34.031, galZ:1.421, dist:43.81, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Upsilon Andromedae", id:12001, mass:2.38692E+30, diameter:1670, galX:-27.855, galY:30.356, galZ:-15.249, dist:43.93, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"Upsilon Andromedae", id:12002, mass:3.9782E+29, diameter:0, galX:-27.855, galY:30.356, galZ:-15.249, dist:43.93, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Ross 627", id:76701, mass:0, diameter:0, galX:-11.068, galY:-10.851, galZ:41.134, dist:43.96, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Theta Ursae Majoris", id:187301, mass:0, diameter:2450, galX:-29.473, galY:7.573, galZ:31.759, dist:43.99, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"Theta Ursae Majoris", id:187302, mass:2.38692E+29, diameter:403680, galX:-29.473, galY:7.573, galZ:31.759, dist:43.99, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +20°802", id:32401, mass:0, diameter:1002240, galX:-42.298, galY:1.071, galZ:-12.073, dist:44, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"A", id:210201, mass:0, diameter:751680, galX:16.718, galY:40.641, galZ:2.528, dist:44.02, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:210202, mass:0, diameter:612480, galX:16.718, galY:40.641, galZ:2.528, dist:44.02, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Ross 863", id:118801, mass:0, diameter:0, galX:27.649, galY:25.431, galZ:23.121, dist:44.11, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +36°197", id:64701, mass:0, diameter:0, galX:-29.424, galY:-4.172, galZ:32.643, dist:44.15, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -30°192", id:155201, mass:0, diameter:1057920, galX:19.18, galY:8.357, galZ:-38.897, dist:44.17, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Wolf 414", id:84601, mass:0, diameter:0, galX:4.593, galY:-14.07, galZ:41.66, dist:44.21, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:216001, mass:0, diameter:1419840, galX:25.511, galY:-8.873, galZ:-35.22, dist:44.39, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"B", id:216002, mass:0, diameter:779520, galX:25.511, galY:-8.873, galZ:-35.22, dist:44.39, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:201401, mass:0, diameter:0, galX:9.293, galY:25.49, galZ:35.273, dist:44.5, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:197501, mass:0, diameter:1044000, galX:8.469, galY:5.849, galZ:43.326, dist:44.53, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"B", id:197502, mass:0, diameter:1086, galX:8.469, galY:5.849, galZ:43.326, dist:44.53, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"Wolf 1373", id:144601, mass:0, diameter:0, galX:15.57, galY:40.061, galZ:-11.634, dist:44.53, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CPD -60°67", id:119001, mass:0, diameter:1127520, galX:38.321, galY:-20.961, galZ:-9.194, dist:44.64, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"L 1113-55", id:71701, mass:0, diameter:0, galX:-13.558, galY:-24.642, galZ:34.713, dist:44.68, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD+28°4704", id:1401, mass:0, diameter:1002, galX:-14.092, galY:34.88, galZ:-24.125, dist:44.69, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"Beta Aquilae", id:210601, mass:0, diameter:2923, galX:30.117, galY:31.801, galZ:-8.958, dist:44.71, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"Beta Aquilae", id:210602, mass:0, diameter:626400, galX:30.117, galY:31.801, galZ:-8.958, dist:44.71, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"10 Tauri", id:25501, mass:3.18256E+30, diameter:1531, galX:-33.591, galY:-3.226, galZ:-29.395, dist:44.75, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"L 824-28", id:69301, mass:0, diameter:0, galX:-10.319, galY:-34.039, galZ:27.25, dist:44.81, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CPD -57°76", id:111501, mass:0, diameter:1099680, galX:38.157, galY:-23.28, galZ:-3.399, dist:44.83, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"ZZ Piscis", id:161501, mass:0, diameter:13085, galX:0.868, galY:27.63, galZ:-35.33, dist:44.86, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Iota Piscis", id:163801, mass:0, diameter:1503, galX:-1.716, galY:27.015, galZ:-35.922, dist:44.98, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"Gamma Cephei", id:163701, mass:0, diameter:4761, galX:-21.136, galY:37.837, galZ:12.061, dist:44.99, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"Gamma Cephei", id:163702, mass:7.9564E+29, diameter:696000, galX:-21.136, galY:37.837, galZ:12.061, dist:44.99, starType:"", temp:5000, color:0xffc97f},
{ starName:"Wolf 906", id:145001, mass:0, diameter:0, galX:27.444, galY:26.597, galZ:-23.881, dist:45.07, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +56°145", id:71101, mass:8.75204E+29, diameter:0, galX:-25.273, galY:12.169, galZ:35.488, dist:45.24, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"CD -48°128", id:131501, mass:0, diameter:0, galX:41.361, galY:-7.847, galZ:-16.605, dist:45.26, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CPD -78°14", id:162101, mass:0, diameter:0, galX:21.656, galY:-27.111, galZ:-29.069, dist:45.27, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"BD +67°552", id:59001, mass:0, diameter:0, galX:-31.326, galY:19.58, galZ:26.261, dist:45.33, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD -7°4156", id:109701, mass:0, diameter:0, galX:38.461, galY:1.895, galZ:24.053, dist:45.4, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD+31°1168", id:222501, mass:0, diameter:0, galX:-45.305, galY:-0.047, galZ:3.833, dist:45.47, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD -17°676", id:162201, mass:0, diameter:946560, galX:7.352, galY:14.968, galZ:-42.321, dist:45.49, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +62°780", id:39201, mass:0, diameter:0, galX:-38.058, galY:21.117, galZ:13.419, dist:45.55, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"Tau(1) Eridani", id:20601, mass:0, diameter:1183, galX:-20.632, galY:-6.982, galZ:-40.043, dist:45.58, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"BD -7°5871", id:156301, mass:0, diameter:835200, galX:11.592, galY:23.331, galZ:-37.495, dist:45.66, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD +50°203", id:95601, mass:0, diameter:0, galX:-3.121, galY:19.466, galZ:41.217, dist:45.69, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"18 Scorpii", id:111701, mass:0, diameter:1433760, galX:39.816, galY:3.992, galZ:22.181, dist:45.75, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"47 Ursae Majoris", id:73901, mass:2.287465E+30, diameter:1155, galX:-20.091, galY:1.436, galZ:41.251, dist:45.91, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"A", id:7101, mass:0, diameter:1099680, galX:0.385, galY:-1.891, galZ:-45.89, dist:45.93, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"McC 499", id:52801, mass:0, diameter:0, galX:-38.717, galY:12.02, galZ:21.597, dist:45.94, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:167901, mass:0, diameter:0, galX:-19.536, galY:30.447, galZ:-28.318, dist:45.94, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:167902, mass:0, diameter:0, galX:-19.536, galY:30.447, galZ:-28.318, dist:45.94, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:183701, mass:0, diameter:0, galX:-13.61, galY:-43.87, galZ:0.682, dist:45.94, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"B", id:183702, mass:0, diameter:0, galX:-13.61, galY:-43.87, galZ:0.682, dist:45.94, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:217001, mass:0, diameter:0, galX:20.725, galY:8.866, galZ:-40.024, dist:45.94, starType:"", temp:5000, color:0xffc97f},
{ starName:"26 Draconis", id:206001, mass:0, diameter:1475520, galX:-0.644, galY:38.706, galZ:24.752, dist:45.95, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"26 Draconis", id:206002, mass:0, diameter:1183, galX:-0.644, galY:38.706, galZ:24.752, dist:45.95, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"26 Draconis", id:206003, mass:0, diameter:0, galX:-0.644, galY:38.706, galZ:24.752, dist:45.95, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"AC +61°268", id:122201, mass:0, diameter:0, galX:-0.488, galY:38.752, galZ:24.721, dist:45.97, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Ross 42", id:37701, mass:0, diameter:0, galX:-43.395, galY:-11.451, galZ:-10.084, dist:46, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:189201, mass:0, diameter:890880, galX:-21.617, galY:-0.665, galZ:40.616, dist:46.02, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"B", id:189202, mass:0, diameter:487200, galX:-21.617, galY:-0.665, galZ:40.616, dist:46.02, starType:"", temp:5000, color:0xffc97f},
{ starName:"Alpha Fornacis", id:173201, mass:2.98365E+30, diameter:1726, galX:-18.338, galY:-15.78, galZ:-39.163, dist:46.03, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"Alpha Fornacis", id:173202, mass:1.39237E+30, diameter:1197120, galX:-18.338, galY:-15.78, galZ:-39.163, dist:46.03, starType:"G7(V)", temp:5360, color:0xfff4eb},
{ starName:"BD -3°4380", id:130201, mass:0, diameter:0, galX:39.595, galY:23.539, galZ:-0.597, dist:46.07, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:173501, mass:0, diameter:0, galX:-35.941, galY:29.022, galZ:0.397, dist:46.2, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"B", id:173502, mass:0, diameter:0, galX:-35.941, galY:29.022, galZ:0.397, dist:46.2, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD -21°378", id:95301, mass:0, diameter:1030, galX:28.165, galY:-22.707, galZ:28.849, dist:46.27, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"A", id:182001, mass:1.273024E+30, diameter:1085760, galX:-34.337, galY:-29.96, galZ:8.168, dist:46.3, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"AC +63°140", id:52701, mass:0, diameter:0, galX:-36.359, galY:18.053, galZ:22.318, dist:46.33, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CD -24°156", id:137001, mass:0, diameter:1448, galX:39.976, galY:14.161, galZ:-18.737, dist:46.37, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"GT Pegasi", id:156601, mass:0, diameter:0, galX:-4.259, galY:41.971, galZ:-19.316, dist:46.4, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:201201, mass:0, diameter:487200, galX:26.101, galY:13.746, galZ:35.898, dist:46.46, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"B", id:201202, mass:0, diameter:208800, galX:26.101, galY:13.746, galZ:35.898, dist:46.46, starType:"M6(V)", temp:2510, color:0xffbb7b},
{ starName:"A", id:170901, mass:0, diameter:0, galX:-11.288, galY:-10.499, galZ:-43.862, dist:46.49, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Pi(1) Ursae Majoris", id:59201, mass:1.9891E+30, diameter:877, galX:-32.736, galY:18.413, galZ:27.49, dist:46.55, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"BD +16°265", id:99901, mass:0, diameter:0, galX:20.127, galY:3.982, galZ:41.789, dist:46.55, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:7601, mass:0, diameter:0, galX:-13.027, galY:16.934, galZ:-41.405, dist:46.59, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"CPD -62°58", id:128101, mass:0, diameter:0, galX:38.967, galY:-18.966, galZ:-17.09, dist:46.59, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"BD +16°240", id:86501, mass:0, diameter:1169, galX:3.995, galY:-8.979, galZ:45.584, dist:46.63, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"Alpha Ophiuchi", id:121701, mass:4.77384E+30, diameter:2784, galX:34.966, galY:25.517, galZ:17.527, dist:46.7, starType:"A5(III)", temp:8500, color:0xcbdaff},
{ starName:"A", id:28001, mass:0, diameter:0, galX:-34.274, galY:-9.108, galZ:-30.436, dist:46.73, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +17°917", id:36801, mass:0, diameter:1085760, galX:-45.673, galY:-6.012, galZ:-8.015, dist:46.76, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"CD -44°143", id:145801, mass:0, diameter:0, galX:33.703, galY:-0.413, galZ:-32.402, dist:46.76, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Eta Cephei", id:143301, mass:0, diameter:3591, galX:-6.45, galY:45.355, galZ:9.456, dist:46.78, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"CPD -56°73", id:111201, mass:0, diameter:1113600, galX:39.979, galY:-24.212, galZ:-2.712, dist:46.82, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"A", id:202501, mass:0, diameter:1155360, galX:14.667, galY:27.761, galZ:34.788, dist:46.86, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"72 Herculis", id:120601, mass:0, diameter:1378080, galX:22.325, galY:33.002, galZ:24.817, dist:46.94, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"BD +30°251", id:99001, mass:0, diameter:0, galX:11.694, galY:11.587, galZ:44.004, dist:46.98, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"B", id:168002, mass:0, diameter:0, galX:-2.074, galY:3.144, galZ:-46.98, dist:47.13, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:169201, mass:0, diameter:0, galX:-17.187, galY:14.706, galZ:-41.35, dist:47.13, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:169202, mass:0, diameter:0, galX:-17.187, galY:14.706, galZ:-41.35, dist:47.13, starType:"", temp:5000, color:0xffc97f},
{ starName:"Ross 136", id:127401, mass:0, diameter:0, galX:38.009, galY:26.904, galZ:7.695, dist:47.2, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +4°4157", id:135701, mass:0, diameter:904800, galX:34.522, galY:31.528, galZ:-6.533, dist:47.21, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +15°310", id:118501, mass:0, diameter:0, galX:33.423, galY:24.005, galZ:23.265, dist:47.27, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD +24°435", id:146101, mass:0, diameter:0, galX:12.467, galY:43.602, galZ:-13.327, dist:47.27, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BPM 46239", id:3301, mass:0, diameter:0, galX:5.786, galY:0.71, galZ:-46.908, dist:47.27, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:18901, mass:0, diameter:0, galX:-34.167, galY:16.834, galZ:-27.999, dist:47.27, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"L 681-8", id:71901, mass:0, diameter:0, galX:-3.393, galY:-39.439, galZ:25.832, dist:47.27, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"LP 801-9", id:102101, mass:0, diameter:0, galX:34.824, galY:-13.371, galZ:29.038, dist:47.27, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:203601, mass:0, diameter:0, galX:2.159, galY:35.66, galZ:30.952, dist:47.27, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD -8°2582", id:61801, mass:0, diameter:0, galX:-22.968, galY:-35.785, galZ:20.866, dist:47.37, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD -3°3508", id:94301, mass:0, diameter:876960, galX:21.872, galY:-14.452, galZ:39.507, dist:47.41, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"Nu(2) Lupi", id:105901, mass:0, diameter:933, galX:39.853, galY:-25.065, galZ:6.146, dist:47.48, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"A", id:185001, mass:0, diameter:0, galX:-23.235, galY:-37.792, galZ:16.907, dist:47.48, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:185002, mass:0, diameter:0, galX:-23.235, galY:-37.792, galZ:16.907, dist:47.48, starType:"", temp:5000, color:0xffc97f},
{ starName:"Theta Boötis", id:198601, mass:0, diameter:1545, galX:-1.313, galY:23.993, galZ:40.997, dist:47.52, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"A", id:26701, mass:0, diameter:0, galX:-42.791, galY:11.171, galZ:-17.417, dist:47.53, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:214401, mass:0, diameter:0, galX:21.895, galY:32.568, galZ:-26.843, dist:47.55, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:214402, mass:0, diameter:0, galX:21.895, galY:32.568, galZ:-26.843, dist:47.55, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:211101, mass:0, diameter:0, galX:40.602, galY:8.587, galZ:-23.342, dist:47.62, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -25°391", id:45701, mass:0, diameter:1197120, galX:-26.476, galY:-39.037, galZ:-6.881, dist:47.67, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:189501, mass:0, diameter:0, galX:-13.51, galY:-16.855, galZ:42.503, dist:47.68, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"Iota Ursae Majoris", id:185201, mass:0, diameter:1476, galX:-35.418, galY:5.148, galZ:31.584, dist:47.74, starType:"A7(V)", temp:8000, color:0xc7d4ff},
{ starName:"Iota Ursae Majoris", id:185202, mass:0, diameter:640320, galX:-35.418, galY:5.148, galZ:31.584, dist:47.74, starType:"", temp:5000, color:0xffc97f},
{ starName:"Iota Ursae Majoris", id:185203, mass:0, diameter:598560, galX:-35.418, galY:5.148, galZ:31.584, dist:47.74, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -24°161", id:141801, mass:0, diameter:780, galX:36.366, galY:15.812, galZ:-26.625, dist:47.77, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"A", id:179301, mass:0, diameter:1141440, galX:-46.347, galY:-11.356, galZ:3.077, dist:47.82, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"B", id:179302, mass:0, diameter:320160, galX:-46.347, galY:-11.356, galZ:3.077, dist:47.82, starType:"", temp:5000, color:0xffc97f},
{ starName:"111 Tauri", id:36901, mass:0, diameter:1044, galX:-46.739, galY:-6.195, galZ:-8.043, dist:47.83, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"CD -42°109", id:109101, mass:0, diameter:1071840, galX:43.488, galY:-18.621, galZ:7.115, dist:47.84, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Psi Capricorni", id:143001, mass:0, diameter:965, galX:36.139, galY:13.949, galZ:-28.079, dist:47.85, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"Psi Serpentis", id:201601, mass:0, diameter:1461600, galX:35.37, galY:6.247, galZ:31.621, dist:47.85, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"Psi Serpentis", id:201602, mass:0, diameter:668160, galX:35.37, galY:6.247, galZ:31.621, dist:47.85, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:190101, mass:0, diameter:1044000, galX:-23.6, galY:26.395, galZ:32.21, dist:47.87, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"B", id:190102, mass:0, diameter:612480, galX:-23.6, galY:26.395, galZ:32.21, dist:47.87, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:197401, mass:0, diameter:0, galX:20.376, galY:-9.538, galZ:42.371, dist:47.97, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"B", id:197402, mass:0, diameter:0, galX:20.376, galY:-9.538, galZ:42.371, dist:47.97, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -51°129", id:148601, mass:0, diameter:1127520, galX:31.929, galY:-6.225, galZ:-35.383, dist:48.07, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"Alpha Corvi", id:81801, mass:2.98365E+30, diameter:1197, galX:13.591, galY:-35.225, galZ:29.914, dist:48.17, starType:"F0(V)", temp:7350, color:0xe4e8ff},
{ starName:"AC -11°243", id:144301, mass:0, diameter:0, galX:31.362, galY:25.704, galZ:-25.991, dist:48.17, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"A", id:22501, mass:0, diameter:960480, galX:-33.56, galY:1.767, galZ:-34.53, dist:48.18, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:181001, mass:0, diameter:1141440, galX:-10.801, galY:-45.41, galZ:-11.935, dist:48.18, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"B", id:181002, mass:0, diameter:1016160, galX:-10.801, galY:-45.41, galZ:-11.935, dist:48.18, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"Wolf 1346", id:141401, mass:0, diameter:20880, galX:18.083, galY:44, galZ:-7.804, dist:48.21, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"ER 8", id:90701, mass:0, diameter:0, galX:27.812, galY:-37.217, galZ:13.015, dist:48.25, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"GJ 1284", id:161701, mass:0, diameter:0, galX:9.944, galY:12.807, galZ:-45.463, dist:48.27, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +52°911", id:34401, mass:0, diameter:0, galX:-43.701, galY:19.609, galZ:6.343, dist:48.32, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +6°4741", id:145201, mass:0, diameter:1085760, galX:23.733, galY:36.498, galZ:-21.159, dist:48.41, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"BD +2°1729", id:53101, mass:0, diameter:0, galX:-37.898, galY:-28.46, galZ:10.231, dist:48.49, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:9301, mass:0, diameter:0, galX:-27.829, galY:39.75, galZ:1.195, dist:48.54, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"EG 374", id:128001, mass:0, diameter:0, galX:4.842, galY:43.79, galZ:20.371, dist:48.54, starType:"DX(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:212201, mass:0, diameter:793440, galX:35.54, galY:20.139, galZ:-26.208, dist:48.54, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"B", id:212202, mass:0, diameter:348000, galX:35.54, galY:20.139, galZ:-26.208, dist:48.54, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:219001, mass:0, diameter:0, galX:-13.304, galY:43.976, galZ:-15.656, dist:48.54, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -23°864", id:65601, mass:0, diameter:1169, galX:-10.883, galY:-43.32, galZ:18.993, dist:48.54, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"20 Leonis Minoris", id:67201, mass:2.267574E+30, diameter:1100, galX:-27.869, galY:-7.727, galZ:39.027, dist:48.58, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"BD +48°182", id:67501, mass:0, diameter:0, galX:-29.486, galY:5.811, galZ:38.161, dist:48.58, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:11401, mass:0, diameter:0, galX:-21.742, galY:20.447, galZ:-38.46, dist:48.68, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:169801, mass:0, diameter:0, galX:-30.869, galY:37.586, galZ:1.975, dist:48.68, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -48°176", id:6201, mass:0, diameter:0, galX:9.055, galY:-13.082, galZ:-46.068, dist:48.74, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"GJ 2128", id:120001, mass:0, diameter:0, galX:38.671, galY:21.968, galZ:19.941, dist:48.74, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"AB Doradus", id:224401, mass:0, diameter:0, galX:2.982, galY:-40.734, galZ:-26.65, dist:48.77, starType:"K1(III)", temp:4900, color:0xffe2ba},
{ starName:"Alpha Cephei", id:146801, mass:0, diameter:1643, galX:-9.399, galY:47.24, galZ:7.822, dist:48.8, starType:"A7(V)", temp:8000, color:0xc7d4ff},
{ starName:"A", id:184401, mass:0, diameter:918720, galX:-33.676, galY:-25.877, galZ:24.086, dist:48.83, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:184402, mass:0, diameter:403680, galX:-33.676, galY:-25.877, galZ:24.086, dist:48.83, starType:"", temp:5000, color:0xffc97f},
{ starName:"C", id:184403, mass:0, diameter:598560, galX:-34.07, galY:-25.698, galZ:23.72, dist:48.83, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:208101, mass:0, diameter:1475520, galX:21.187, galY:42.645, galZ:10.94, dist:48.86, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"B", id:208102, mass:0, diameter:1127520, galX:21.187, galY:42.645, galZ:10.94, dist:48.86, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"BD +40°45", id:2801, mass:0, diameter:0, galX:-20.37, galY:40.758, galZ:-17.722, dist:48.89, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CD -36°245", id:49301, mass:0, diameter:0, galX:-20.97, galY:-38.036, galZ:-22.444, dist:48.89, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:21401, mass:0, diameter:0, galX:-39.367, galY:22.694, galZ:-18.07, dist:48.9, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"G 180-63", id:114501, mass:0, diameter:0, galX:13.497, galY:33.534, galZ:33.156, dist:49.05, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Eta Leporis", id:40901, mass:0, diameter:1090, galX:-35.954, galY:-29.824, galZ:-15.023, dist:49.07, starType:"F1(III)", temp:7200, color:0xe1e3ff},
{ starName:"Nu Phoenicis", id:10501, mass:2.18801E+30, diameter:1141, galX:4.548, galY:-14.349, galZ:-46.735, dist:49.1, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"BD +52°165", id:86801, mass:0, diameter:1183200, galX:-11.558, galY:16.648, galZ:44.741, dist:49.12, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"CD -68°233", id:158601, mass:0, diameter:0, galX:24.217, galY:-22.045, galZ:-36.645, dist:49.15, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"V371 Orionis", id:37801, mass:0, diameter:0, galX:-43.782, galY:-17.708, galZ:-13.791, dist:49.2, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"19 Draconis", id:117401, mass:0, diameter:974, galX:-3.845, galY:39.391, galZ:29.241, dist:49.21, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"V1396 Cygni", id:212701, mass:0, diameter:765600, galX:6.129, galY:48.747, galZ:-3.523, dist:49.26, starType:"", temp:5000, color:0xffc97f},
{ starName:"V1396 Cygni", id:212702, mass:0, diameter:501120, galX:6.129, galY:48.747, galZ:-3.523, dist:49.26, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:24401, mass:0, diameter:1071840, galX:-33.591, galY:-5.074, galZ:-35.746, dist:49.31, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"L 355-62", id:151001, mass:0, diameter:0, galX:30.683, galY:-3.128, galZ:-38.492, dist:49.33, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CPD -49°99", id:49701, mass:0, diameter:0, galX:-8.727, galY:-44.758, galZ:-18.837, dist:49.34, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"31 Aquilae", id:134601, mass:0, diameter:1253, galX:33.199, galY:36.536, galZ:-2.001, dist:49.41, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"WD 1247+55", id:88001, mass:0, diameter:0, galX:-12.734, galY:19.362, galZ:43.647, dist:49.42, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:178901, mass:0, diameter:1016160, galX:-24.68, galY:-38.049, galZ:-19.634, dist:49.42, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"B", id:178902, mass:0, diameter:946560, galX:-24.68, galY:-38.049, galZ:-19.634, dist:49.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"C", id:178903, mass:0, diameter:1057920, galX:-24.68, galY:-38.049, galZ:-19.634, dist:49.42, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"D", id:178904, mass:0, diameter:0, galX:-24.68, galY:-38.049, galZ:-19.634, dist:49.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:214901, mass:0, diameter:0, galX:31.492, galY:1.115, galZ:-38.062, dist:49.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:214902, mass:0, diameter:0, galX:31.492, galY:1.115, galZ:-38.062, dist:49.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:168001, mass:0, diameter:960480, galX:-3.41, galY:4.285, galZ:-49.257, dist:49.56, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:182201, mass:0, diameter:988, galX:-17.621, galY:-46.187, galZ:-3.766, dist:49.58, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"A", id:201701, mass:0, diameter:1503360, galX:45.001, galY:-17.465, galZ:11.916, dist:49.72, starType:"G6(V)", temp:5440, color:0xfff4eb},
{ starName:"B", id:201702, mass:0, diameter:27562, galX:45.001, galY:-17.465, galZ:11.916, dist:49.72, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:166601, mass:0, diameter:0, galX:-13.65, galY:34.255, galZ:-33.472, dist:49.8, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Mu Arae", id:123101, mass:0, diameter:1211, galX:46.439, galY:-15.233, galZ:-9.696, dist:49.83, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"AC +68°291", id:45601, mass:0, diameter:0, galX:-37.593, galY:24.177, galZ:22.04, dist:49.84, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:193201, mass:0, diameter:835200, galX:-16.351, galY:16.701, galZ:44.152, dist:49.96, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"AC +30°272", id:78301, mass:0, diameter:0, galX:-12.882, galY:-4.718, galZ:48.037, dist:49.96, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"51 Pegasi", id:157501, mass:2.18801E+30, diameter:1072, galX:-0.604, galY:41.138, galZ:-28.585, dist:50.1, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"L 565-18", id:139401, mass:0, diameter:0, galX:42.397, galY:9.539, galZ:-24.977, dist:50.13, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"Delta Aquilae", id:134701, mass:0, diameter:1684, galX:38.144, galY:32.017, galZ:-5.794, dist:50.14, starType:"F0(V)", temp:7350, color:0xe4e8ff},
{ starName:"Wolf 433", id:86201, mass:0, diameter:0, galX:5.572, galY:-12.546, galZ:48.236, dist:50.15, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +83°431", id:103101, mass:0, diameter:0, galX:-19.862, galY:36.647, galZ:27.896, dist:50.16, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"A", id:25001, mass:0, diameter:0, galX:-43.863, galY:20.778, galZ:-12.741, dist:50.18, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:213701, mass:0, diameter:0, galX:11.027, galY:47.59, galZ:-11.457, dist:50.18, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -28°166", id:140801, mass:0, diameter:0, galX:40.353, galY:13.013, galZ:-26.92, dist:50.23, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -30°191", id:154401, mass:0, diameter:1057920, galX:24.155, galY:8.674, galZ:-43.346, dist:50.38, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +15°106", id:41601, mass:0, diameter:1197120, galX:-48.792, galY:-12.503, galZ:-1.703, dist:50.4, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"Phi(2) Ceti", id:6701, mass:0, diameter:947, galX:-8.721, galY:12.963, galZ:-47.94, dist:50.42, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"Sigma Boötis", id:101001, mass:0, diameter:1002, galX:14.079, galY:14.11, galZ:46.338, dist:50.44, starType:"F2(V)", temp:7050, color:0xedeeff},
{ starName:"A", id:207401, mass:0, diameter:807360, galX:12.535, galY:45.26, galZ:18.507, dist:50.48, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:18301, mass:0, diameter:0, galX:-22.987, galY:-3.142, galZ:-44.848, dist:50.49, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:168501, mass:0, diameter:0, galX:-18.293, galY:19.971, galZ:-42.615, dist:50.49, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:168502, mass:0, diameter:0, galX:-18.292, galY:19.957, galZ:-42.622, dist:50.49, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +32°341", id:134501, mass:0, diameter:738, galX:20.07, galY:45.834, galZ:7.104, dist:50.54, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:167301, mass:0, diameter:1224960, galX:-0.015, galY:4.353, galZ:-50.473, dist:50.66, starType:"G7(V)", temp:5360, color:0xfff4eb},
{ starName:"B", id:167302, mass:0, diameter:1211040, galX:-0.015, galY:4.353, galZ:-50.473, dist:50.66, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"BD -4°1244", id:39901, mass:0, diameter:0, galX:-42.638, galY:-24.112, galZ:-13.308, dist:50.76, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"BD +22°390", id:138301, mass:0, diameter:1197120, galX:23.573, galY:44.849, galZ:-4.027, dist:50.83, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"AC +16°247", id:130801, mass:0, diameter:0, galX:33.702, galY:37.59, galZ:6.143, dist:50.86, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Tau Boötis", id:197101, mass:2.58583E+30, diameter:1392, galX:14.637, galY:-0.117, galZ:48.722, dist:50.87, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"Tau Boötis", id:197102, mass:3.9782E+29, diameter:807360, galX:14.637, galY:-0.117, galZ:48.722, dist:50.87, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -33°924", id:94401, mass:0, diameter:0, galX:31.979, galY:-31.683, galZ:23.759, dist:50.9, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"Ross 640", id:113801, mass:0, diameter:19488, galX:18.97, galY:31.668, galZ:35.133, dist:50.96, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"Rob 299", id:150401, mass:0, diameter:0, galX:18.656, galY:36.933, galZ:-29.738, dist:50.96, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:179701, mass:0, diameter:0, galX:-44.698, galY:-24.466, galZ:-0.377, dist:50.96, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:191901, mass:0, diameter:0, galX:0.305, galY:-26.189, galZ:43.714, dist:50.96, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -47°139", id:150001, mass:0, diameter:1447680, galX:32.568, galY:-4.602, galZ:-38.968, dist:51, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"Wolf 457", id:88901, mass:0, diameter:13363, galX:12.757, galY:-16.105, galZ:46.724, dist:51.04, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"99 Herculis", id:207101, mass:0, diameter:1475520, galX:25.708, galY:39.786, galZ:19.058, dist:51.06, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"99 Herculis", id:207102, mass:0, diameter:1030080, galX:25.708, galY:39.786, galZ:19.058, dist:51.06, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"AC +3°2781", id:158401, mass:0, diameter:0, galX:5.215, galY:31.847, galZ:-39.592, dist:51.08, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD -20°583", id:139301, mass:0, diameter:974400, galX:41.935, galY:18.36, galZ:-22.714, dist:51.11, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"BD -2°3000", id:66501, mass:0, diameter:0, galX:-19.504, galY:-35.028, galZ:31.693, dist:51.11, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CI 20 582", id:71501, mass:8.75204E+29, diameter:0, galX:-27.186, galY:4.732, galZ:43.014, dist:51.11, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:10801, mass:0, diameter:0, galX:-23.755, galY:26.215, galZ:-36.905, dist:51.12, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"CD -26°165", id:158901, mass:0, diameter:0, galX:15.807, galY:11.476, galZ:-47.302, dist:51.18, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:166801, mass:0, diameter:0, galX:-25.8, galY:42.347, galZ:12.735, dist:51.2, starType:"", temp:5000, color:0xffc97f},
{ starName:"CPD -51°57", id:89401, mass:0, diameter:1002240, galX:29.234, galY:-40.936, galZ:9.747, dist:51.24, starType:"K9(V)", temp:3700, color:0xffcc9f},
{ starName:"A", id:190301, mass:0, diameter:890880, galX:2.569, galY:-39.557, galZ:32.529, dist:51.28, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:212601, mass:0, diameter:570720, galX:31.047, galY:32.071, galZ:-25.394, dist:51.36, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:209101, mass:0, diameter:835200, galX:46.921, galY:-4.967, galZ:-20.424, dist:51.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:209102, mass:0, diameter:807360, galX:46.921, galY:-4.967, galZ:-20.424, dist:51.42, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:175401, mass:0, diameter:960480, galX:-40.02, galY:-7.584, galZ:-31.422, dist:51.44, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"B", id:175402, mass:0, diameter:515040, galX:-40.02, galY:-7.584, galZ:-31.422, dist:51.44, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Wolf 1084", id:142701, mass:0, diameter:0, galX:-2.179, galY:50.99, galZ:7.098, dist:51.53, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Castor", id:181701, mass:3.9782E+30, diameter:1865, galX:-46.977, galY:-6.435, galZ:20.212, dist:51.55, starType:"A1(V)", temp:9500, color:0xbaccff},
{ starName:"Castor", id:181702, mass:3.9782E+30, diameter:1865, galX:-46.977, galY:-6.435, galZ:20.212, dist:51.55, starType:"A2(V)", temp:9250, color:0xbcccff},
{ starName:"Castor", id:181703, mass:3.38147E+30, diameter:1322, galX:-46.977, galY:-6.435, galZ:20.212, dist:51.55, starType:"A5(V)", temp:8500, color:0xcad8ff},
{ starName:"Castor", id:181704, mass:3.38147E+30, diameter:1322, galX:-46.977, galY:-6.435, galZ:20.212, dist:51.55, starType:"A5(V)", temp:8500, color:0xcad8ff},
{ starName:"AC +55°501", id:139001, mass:0, diameter:0, galX:1.048, galY:50.458, galZ:10.634, dist:51.58, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Chi Herculis", id:108701, mass:0, diameter:2227, galX:12.766, galY:30.67, galZ:39.628, dist:51.71, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"A", id:220301, mass:0, diameter:0, galX:21.674, galY:-26.067, galZ:-39.094, dist:51.75, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:220302, mass:0, diameter:0, galX:21.674, galY:-26.067, galZ:-39.094, dist:51.75, starType:"", temp:5000, color:0xffc97f},
{ starName:"104 Tauri", id:177301, mass:0, diameter:1433760, galX:-50.43, galY:-3.699, galZ:-11.054, dist:51.76, starType:"G4(V)", temp:5600, color:0xfff1e5},
{ starName:"104 Tauri", id:177302, mass:0, diameter:0, galX:-50.43, galY:-3.699, galZ:-11.054, dist:51.76, starType:"G4(V)", temp:5600, color:0xfff1e5},
{ starName:"A", id:29001, mass:0, diameter:0, galX:-43.368, galY:-4.073, galZ:-27.984, dist:51.77, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"GD 1212", id:163301, mass:0, diameter:0, galX:3.833, galY:23.577, galZ:-45.929, dist:51.77, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:192001, mass:0, diameter:0, galX:-2.385, galY:-19.218, galZ:48.011, dist:51.77, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"A", id:193601, mass:0, diameter:863040, galX:7.233, galY:-22.946, galZ:45.841, dist:51.77, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:193602, mass:0, diameter:0, galX:7.233, galY:-22.946, galZ:45.841, dist:51.77, starType:"", temp:5000, color:0xffc97f},
{ starName:"San 224", id:195301, mass:0, diameter:0, galX:2.07, galY:3.412, galZ:51.617, dist:51.77, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"VW Comae Berenices", id:196401, mass:0, diameter:0, galX:12.849, galY:-2.51, galZ:50.09, dist:51.77, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:196402, mass:0, diameter:0, galX:12.849, galY:-2.51, galZ:50.09, dist:51.77, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:211001, mass:0, diameter:1030, galX:19.607, galY:47.978, galZ:-0.871, dist:51.84, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"CD -45°562", id:67001, mass:0, diameter:0, galX:4.002, galY:-51.28, galZ:6.677, dist:51.87, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +41°269", id:112601, mass:0, diameter:0, galX:15.704, galY:33.257, galZ:36.606, dist:51.89, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:20801, mass:0, diameter:960480, galX:-37.105, galY:11.43, galZ:-34.462, dist:51.91, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"L 1534-1", id:43901, mass:0, diameter:17818, galX:-50.193, galY:1.505, galZ:13.863, dist:52.1, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:28201, mass:0, diameter:1085760, galX:-34.344, galY:35.845, galZ:15.897, dist:52.13, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"BD +42°229", id:83801, mass:0, diameter:918720, galX:-11.108, galY:8.741, galZ:50.196, dist:52.15, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"CP-68°3597", id:1301, mass:0, diameter:974400, galX:21.244, galY:-25.379, galZ:-40.361, dist:52.2, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:167601, mass:0, diameter:960480, galX:6.712, galY:-9.325, galZ:-50.98, dist:52.26, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"B", id:167602, mass:0, diameter:0, galX:6.712, galY:-9.325, galZ:-50.98, dist:52.26, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:195901, mass:0, diameter:0, galX:18.338, galY:-13.784, galZ:46.959, dist:52.26, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:24901, mass:0, diameter:0, galX:-44.401, galY:10.784, galZ:-25.391, dist:52.27, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"CD -29°801", id:67301, mass:0, diameter:0, galX:-4.519, galY:-48.874, galZ:18.139, dist:52.33, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +25°287", id:104901, mass:0, diameter:0, galX:21.405, galY:15.882, galZ:45.165, dist:52.44, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:216201, mass:0, diameter:737760, galX:-0.536, galY:49.006, galZ:-18.679, dist:52.45, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:216202, mass:0, diameter:696000, galX:-0.536, galY:49.006, galZ:-18.679, dist:52.45, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +35°243", id:91901, mass:0, diameter:0, galX:1.537, galY:8.721, galZ:51.748, dist:52.5, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:207901, mass:0, diameter:960480, galX:38.051, galY:36.034, galZ:3.428, dist:52.52, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:207902, mass:0, diameter:0, galX:38.051, galY:36.034, galZ:3.428, dist:52.52, starType:"", temp:5000, color:0xffc97f},
{ starName:"W 285", id:4601, mass:0, diameter:0, galX:-0.735, galY:6.654, galZ:-52.183, dist:52.61, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:24501, mass:0, diameter:0, galX:-37.742, galY:-1.905, galZ:-36.609, dist:52.61, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"AY Indi", id:149801, mass:0, diameter:0, galX:30.966, galY:-26.473, galZ:-33.279, dist:52.61, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:216701, mass:0, diameter:1308480, galX:8.931, galY:40.669, galZ:-32.153, dist:52.61, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"B", id:216702, mass:0, diameter:946560, galX:8.931, galY:40.669, galZ:-32.153, dist:52.61, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:205401, mass:0, diameter:696000, galX:48.932, galY:-17.324, galZ:-8.599, dist:52.62, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:175501, mass:0, diameter:0, galX:-46.641, galY:24.502, galZ:-0.437, dist:52.69, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:175502, mass:0, diameter:0, galX:-46.641, galY:24.502, galZ:-0.437, dist:52.69, starType:"", temp:5000, color:0xffc97f},
{ starName:"CPD -68°16", id:85301, mass:0, diameter:1113600, galX:27.471, galY:-44.822, galZ:-4.312, dist:52.75, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD +8°4638", id:146201, mass:0, diameter:1169, galX:22.908, galY:41.138, galZ:-23.769, dist:52.75, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"A", id:198701, mass:0, diameter:0, galX:30.087, galY:-6.752, galZ:42.841, dist:52.78, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +23°235", id:77701, mass:0, diameter:0, galX:-11.824, galY:-11.377, galZ:50.194, dist:52.81, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:183001, mass:0, diameter:919, galX:2.676, galY:-50.851, galZ:-13.988, dist:52.81, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"I Carinae", id:70601, mass:0, diameter:1267, galX:20.311, galY:-47.09, galZ:-12.922, dist:52.89, starType:"F2(V)", temp:7050, color:0xedeeff},
{ starName:"AC +9°2-34", id:47201, mass:0, diameter:0, galX:-11.635, galY:30.673, galZ:-41.488, dist:52.89, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:26601, mass:0, diameter:1169280, galX:-16.218, galY:-28.22, galZ:-41.729, dist:52.92, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD -13°506", id:129501, mass:0, diameter:0, galX:49.323, galY:18.803, galZ:-3.711, dist:52.92, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:215401, mass:0, diameter:668160, galX:32.743, galY:-8.855, galZ:-40.612, dist:52.92, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:215402, mass:0, diameter:5290, galX:32.743, galY:-8.855, galZ:-40.612, dist:52.92, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"AC -7°388-", id:147701, mass:0, diameter:0, galX:27.973, galY:31.576, galZ:-32.026, dist:52.97, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:180601, mass:2.088555E+30, diameter:1475520, galX:-14.838, galY:-48.863, galZ:-14.179, dist:53, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"Xi Pegasi", id:217601, mass:0, diameter:1448, galX:5.508, galY:39.889, galZ:-34.457, dist:53, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"Xi Pegasi", id:217602, mass:0, diameter:709920, galX:5.508, galY:39.889, galZ:-34.457, dist:53, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CD -27°922", id:92201, mass:0, diameter:0, galX:29.825, galY:-32.113, galZ:29.86, dist:53.03, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"EG 199", id:125001, mass:0, diameter:20462, galX:-19.576, galY:42.136, galZ:25.556, dist:53.03, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"W 350", id:70001, mass:0, diameter:0, galX:-30.304, galY:20.465, galZ:38.523, dist:53.12, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"L 465-43", id:72001, mass:0, diameter:0, galX:4.736, galY:-49.585, galZ:18.707, dist:53.21, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:189001, mass:0, diameter:0, galX:4.986, galY:-49.705, galZ:18.607, dist:53.31, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"B", id:189002, mass:0, diameter:0, galX:4.986, galY:-49.705, galZ:18.607, dist:53.31, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:24801, mass:0, diameter:1044000, galX:4.98, galY:-36.471, galZ:-38.698, dist:53.41, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:197001, mass:0, diameter:0, galX:34.23, galY:-31.526, galZ:26.215, dist:53.41, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD -20°618", id:147101, mass:0, diameter:1002240, galX:33.877, galY:21.471, galZ:-35.29, dist:53.43, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD+48°1318", id:40301, mass:0, diameter:0, galX:-50.182, galY:14.886, galZ:10.844, dist:53.46, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"A", id:14201, mass:0, diameter:0, galX:-35.651, galY:37.495, galZ:-13.495, dist:53.47, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"AC +1°1951", id:34101, mass:0, diameter:0, galX:-46.637, galY:-14.83, galZ:-21.547, dist:53.47, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:166301, mass:0, diameter:0, galX:-26.452, galY:43.457, galZ:16.444, dist:53.47, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:190001, mass:0, diameter:0, galX:-22.833, galY:5.056, galZ:48.08, dist:53.47, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:190002, mass:0, diameter:0, galX:-22.833, galY:5.056, galZ:48.08, dist:53.47, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD +12°194", id:61001, mass:0, diameter:0, galX:-35.495, galY:-26.869, galZ:29.624, dist:53.48, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"Alpha Circini", id:199001, mass:0, diameter:2867520, galX:38.081, galY:-37.455, galZ:-2.985, dist:53.5, starType:"F0(V)", temp:7350, color:0xe4e8ff},
{ starName:"Alpha Circini", id:199002, mass:0, diameter:1057920, galX:38.081, galY:-37.455, galZ:-2.985, dist:53.5, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +60°100", id:44101, mass:0, diameter:891, galX:-44.653, galY:20.146, galZ:21.49, dist:53.5, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"AC +16°734", id:151701, mass:0, diameter:0, galX:11.751, galY:44.694, galZ:-26.989, dist:53.52, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BY Draconis", id:128601, mass:0, diameter:1086, galX:7.984, galY:48.494, galZ:21.285, dist:53.56, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"CD -50°809", id:95501, mass:0, diameter:1085760, galX:36.111, galY:-37.938, galZ:11.338, dist:53.59, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"10 Ursae Majoris", id:185301, mass:0, diameter:1057, galX:-39.951, galY:-0.068, galZ:35.708, dist:53.59, starType:"F3(V)", temp:6900, color:0xe7e8ff},
{ starName:"10 Ursae Majoris", id:185302, mass:0, diameter:1266720, galX:-39.951, galY:-0.068, galZ:35.708, dist:53.59, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:205601, mass:0, diameter:1169, galX:47.313, galY:19.902, galZ:15.613, dist:53.65, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"B", id:205602, mass:0, diameter:0, galX:47.313, galY:19.902, galZ:15.613, dist:53.65, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"BD +66°582", id:60301, mass:0, diameter:0, galX:-36.684, galY:22.143, galZ:32.523, dist:53.8, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"Psi(5) Aurigae", id:43701, mass:2.287465E+30, diameter:1433760, galX:-50.766, galY:6.538, galZ:16.743, dist:53.86, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Ross 249", id:164201, mass:0, diameter:0, galX:-20.423, galY:48.48, galZ:-11.548, dist:53.86, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD -7°3856", id:100101, mass:0, diameter:960480, galX:34.693, galY:-11.248, galZ:39.666, dist:53.88, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"BPM 37093", id:86101, mass:0, diameter:4037, galX:27.145, galY:-44.716, galZ:13.398, dist:54, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"LP 684-17", id:110201, mass:0, diameter:0, galX:45.219, galY:3.864, galZ:29.268, dist:54, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"BD +10°271", id:101301, mass:0, diameter:0, galX:27.615, galY:1.516, galZ:46.443, dist:54.05, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"BD +11°262", id:96701, mass:0, diameter:793, galX:21.993, galY:-2.648, galZ:49.405, dist:54.14, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"A", id:171201, mass:0, diameter:932640, galX:-33.245, galY:9.763, galZ:-41.632, dist:54.16, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"B", id:171202, mass:0, diameter:0, galX:-33.245, galY:9.763, galZ:-41.632, dist:54.16, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"BD -10°577", id:150101, mass:0, diameter:0, galX:26.42, galY:28.174, galZ:-38.244, dist:54.36, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"A", id:173901, mass:0, diameter:0, galX:-46.104, galY:14.631, galZ:-24.811, dist:54.36, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"B", id:173902, mass:0, diameter:0, galX:-46.104, galY:14.631, galZ:-24.811, dist:54.36, starType:"", temp:5000, color:0xffc97f},
{ starName:"C", id:173903, mass:0, diameter:0, galX:-46.115, galY:14.607, galZ:-24.805, dist:54.36, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:194001, mass:0, diameter:0, galX:11.455, galY:-26.995, galZ:45.773, dist:54.36, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"B", id:194002, mass:0, diameter:0, galX:11.455, galY:-26.995, galZ:45.773, dist:54.36, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"A", id:199901, mass:0, diameter:0, galX:25.411, galY:10.161, galZ:46.974, dist:54.36, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"L 623-94", id:200801, mass:0, diameter:0, galX:46.246, galY:-16.694, galZ:23.192, dist:54.36, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"9 Puppis", id:182501, mass:0, diameter:1405920, galX:-33.806, galY:-41.92, galZ:7.521, dist:54.38, starType:"F9(V)", temp:6000, color:0xfff9fc},
{ starName:"9 Puppis", id:182502, mass:0, diameter:1266720, galX:-33.806, galY:-41.92, galZ:7.521, dist:54.38, starType:"G4(V)", temp:5600, color:0xfff1e5},
{ starName:"CD -23°357", id:42401, mass:0, diameter:0, galX:-33.812, galY:-39.442, galZ:-16.303, dist:54.45, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"Beta Cassiopeiae", id:1801, mass:0, diameter:2784, galX:-25.457, galY:48.054, galZ:-2.904, dist:54.46, starType:"F2(III)", temp:7050, color:0xf1f1ff},
{ starName:"BD +58°192", id:135501, mass:0, diameter:0, galX:-0.372, galY:51.853, galZ:16.798, dist:54.51, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"A", id:186801, mass:0, diameter:626400, galX:-23.35, galY:-40.906, galZ:27.487, dist:54.54, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"39 Tauri", id:28901, mass:0, diameter:1308480, galX:-50.241, galY:7.185, galZ:-20.002, dist:54.55, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"A", id:197601, mass:0, diameter:0, galX:35.745, galY:-30.019, galZ:28.616, dist:54.75, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:197602, mass:0, diameter:0, galX:35.745, galY:-30.019, galZ:28.616, dist:54.75, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:198501, mass:0, diameter:904800, galX:18.115, galY:9.867, galZ:50.751, dist:54.78, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD +76°785", id:140001, mass:0, diameter:946560, galX:-17.39, galY:47.593, galZ:20.835, dist:54.79, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +29°166", id:55201, mass:0, diameter:1197120, galX:-47.418, galY:-10.55, galZ:25.347, dist:54.8, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"A", id:11101, mass:0, diameter:1294560, galX:-30.456, galY:43.573, galZ:13.487, dist:54.85, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"L 147-101", id:89201, mass:0, diameter:0, galX:30.997, galY:-45.248, galZ:-0.228, dist:54.85, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"CD -24°126", id:112801, mass:0, diameter:0, galX:51.972, galY:-5.634, galZ:16.606, dist:54.85, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD +47°141", id:50801, mass:0, diameter:863, galX:-49.52, galY:8.179, galZ:22.451, dist:54.99, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"BD +58°260", id:161901, mass:0, diameter:0, galX:-21.644, galY:50.514, galZ:-1.872, dist:54.99, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"CD -42°469", id:47801, mass:0, diameter:0, galX:1.826, galY:-13.731, galZ:-53.237, dist:55.01, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:177701, mass:0, diameter:1044000, galX:-46.483, galY:-21.652, galZ:-19.918, dist:55.01, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"B", id:177702, mass:0, diameter:515040, galX:-46.483, galY:-21.652, galZ:-19.918, dist:55.01, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:15901, mass:0, diameter:0, galX:-39.067, galY:33.77, galZ:-19.221, dist:55.1, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"BD +0°3593", id:116701, mass:0, diameter:1211040, galX:47.219, galY:15.997, galZ:23.793, dist:55.24, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"A", id:157801, mass:0, diameter:1155360, galX:9.502, galY:31.023, galZ:-44.704, dist:55.24, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:157802, mass:0, diameter:0, galX:9.502, galY:31.023, galZ:-44.704, dist:55.24, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:19401, mass:0, diameter:0, galX:-36.004, galY:10.082, galZ:-40.724, dist:55.28, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:25601, mass:0, diameter:0, galX:-48.674, galY:13.44, galZ:-22.502, dist:55.28, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"L 710-30", id:139201, mass:0, diameter:0, galX:45.829, galY:19.233, galZ:-24.185, dist:55.28, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:212801, mass:0, diameter:0, galX:11.922, galY:53.339, galZ:-8.263, dist:55.28, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -23°119", id:102801, mass:0, diameter:1057920, galX:43.346, galY:-19.293, galZ:28.452, dist:55.32, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"CPD -43°11", id:49801, mass:0, diameter:1030080, galX:-15.472, galY:-51.067, galZ:-14.854, dist:55.39, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +80°238", id:53801, mass:0, diameter:1197120, galX:-33.353, galY:34.841, galZ:27.629, dist:55.59, starType:"G8(V)", temp:5280, color:0xfff1df},
{ starName:"AC +47°256", id:51601, mass:0, diameter:0, galX:-50.157, galY:7.121, galZ:23.04, dist:55.66, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +17°372", id:130401, mass:0, diameter:946560, galX:36.472, galY:41.33, galZ:7.706, dist:55.66, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:182301, mass:0, diameter:0, galX:-44.731, galY:-29.179, galZ:15.658, dist:55.66, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"BD -17°308", id:68501, mass:7.16076E+29, diameter:904800, galX:-9.801, galY:-46.563, galZ:28.889, dist:55.67, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"A", id:174101, mass:0, diameter:0, galX:-13.464, galY:-28.284, galZ:-46.095, dist:55.73, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:174102, mass:0, diameter:0, galX:-13.464, galY:-28.284, galZ:-46.095, dist:55.73, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD -4°2490", id:60601, mass:0, diameter:1224960, galX:-30.416, galY:-40.311, galZ:23.607, dist:55.75, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"A", id:168201, mass:0, diameter:0, galX:-24.494, galY:32.856, galZ:-37.799, dist:55.75, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"B", id:168202, mass:0, diameter:0, galX:-24.494, galY:32.856, galZ:-37.799, dist:55.75, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Tau(1) Hydrae", id:186901, mass:0, diameter:1128, galX:-26.222, galY:-37.986, galZ:31.292, dist:55.77, starType:"F6(V)", temp:6450, color:0xf6f3ff},
{ starName:"BD +45°268", id:126701, mass:0, diameter:0, galX:14.552, galY:48.58, galZ:23.226, dist:55.78, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:183301, mass:0, diameter:0, galX:-46.387, galY:-18.536, galZ:24.918, dist:55.83, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Tau Ophiuchi", id:206801, mass:0, diameter:1461600, galX:52, galY:19.663, galZ:6.292, dist:55.95, starType:"", temp:5000, color:0xffc97f},
{ starName:"Tau Ophiuchi", id:206802, mass:0, diameter:1350240, galX:52, galY:19.663, galZ:6.292, dist:55.95, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -37°130", id:132401, mass:0, diameter:877, galX:52.889, galY:1.284, galZ:-18.342, dist:56, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD +25°256", id:87601, mass:0, diameter:793, galX:1.333, galY:-2.124, galZ:55.954, dist:56.01, starType:"G7(V)", temp:5360, color:0xfff4eb},
{ starName:"BD +81°465", id:97401, mass:0, diameter:0, galX:-21.977, galY:39.541, galZ:33.102, dist:56.06, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:174901, mass:0, diameter:0, galX:-48.714, galY:6.748, galZ:-27.102, dist:56.15, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"Iota Horologii", id:20201, mass:0, diameter:1155, galX:-2.177, galY:-28.736, galZ:-48.295, dist:56.24, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"W 431", id:65501, mass:0, diameter:0, galX:-28.378, galY:-31.713, galZ:36.759, dist:56.24, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"WD 1424+24", id:99301, mass:0, diameter:0, galX:18.183, galY:10.276, galZ:52.222, dist:56.24, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:192601, mass:0, diameter:0, galX:9.169, galY:-36.288, galZ:41.976, dist:56.24, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"BD -10°569", id:148401, mass:0, diameter:0, galX:30.236, galY:30.992, galZ:-35.913, dist:56.26, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"BD +18°494", id:152901, mass:0, diameter:0, galX:9.005, galY:48.231, galZ:-27.523, dist:56.26, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"BD -6°6318", id:165201, mass:0, diameter:0, galX:-0.06, galY:23.772, galZ:-50.99, dist:56.26, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"BD +39°154", id:5001, mass:0, diameter:1099680, galX:-27.074, galY:44.495, galZ:-21.453, dist:56.33, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"A", id:7801, mass:0, diameter:0, galX:-3.635, galY:1.119, galZ:-56.202, dist:56.33, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"L 24-52", id:145301, mass:0, diameter:0, galX:31.324, galY:-36.285, galZ:-29.575, dist:56.33, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"37 Geminorum", id:44801, mass:2.18801E+30, diameter:1433760, galX:-53.993, galY:-10.281, galZ:12.354, dist:56.34, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"CPD -65°08", id:55601, mass:0, diameter:0, galX:8.446, galY:-52.967, galZ:-17.265, dist:56.35, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"A", id:200601, mass:0, diameter:1141440, galX:39.683, galY:0.112, galZ:40.126, dist:56.43, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:200602, mass:0, diameter:0, galX:39.683, galY:0.112, galZ:40.126, dist:56.43, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +10°366", id:130301, mass:0, diameter:1085760, galX:41.443, galY:37.989, galZ:4.953, dist:56.44, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"BD +30°249", id:97901, mass:0, diameter:0, galX:12.486, galY:13.23, galZ:53.441, dist:56.45, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"A", id:23701, mass:0, diameter:807360, galX:-48.288, galY:25.019, galZ:-15.24, dist:56.48, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"BD +49°128", id:34001, mass:0, diameter:0, galX:-52.222, galY:21.068, galZ:4.921, dist:56.53, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:13301, mass:0, diameter:0, galX:6.467, galY:-24.68, galZ:-50.522, dist:56.6, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"BD +45°437", id:165501, mass:0, diameter:0, galX:-22.348, galY:49.903, galZ:-14.656, dist:56.61, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:174301, mass:0, diameter:0, galX:-24.589, galY:-21.25, galZ:-46.381, dist:56.63, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"CD -36°122", id:125501, mass:0, diameter:877, galX:55.997, galY:-3.509, galZ:-7.793, dist:56.65, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"10 Canum Venaticorum", id:86901, mass:0, diameter:724, galX:-6.988, galY:9.365, galZ:55.441, dist:56.66, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"Ross 1007", id:91701, mass:0, diameter:0, galX:2.004, galY:8.531, galZ:56.019, dist:56.7, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"A", id:178001, mass:0, diameter:0, galX:-55.111, galY:-9.473, galZ:-9.493, dist:56.72, starType:"M2(V)", temp:3190, color:0xffbe7f},
{ starName:"Xi Ophiuchi", id:205301, mass:0, diameter:837, galX:55.979, galY:4.048, galZ:8.322, dist:56.74, starType:"F2(V)", temp:7050, color:0xedeeff},
{ starName:"Xi Ophiuchi", id:205302, mass:0, diameter:974400, galX:55.979, galY:4.048, galZ:8.322, dist:56.74, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"Rho Coronae Borealis", id:109901, mass:0, diameter:1002, galX:22.492, galY:30.203, galZ:42.579, dist:56.84, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"EG 494", id:118901, mass:0, diameter:21019, galX:47.659, galY:20.539, galZ:23.385, dist:56.92, starType:"DZ(wd)", temp:5000, color:0xffc97f},
{ starName:"39 Serpentis", id:108601, mass:0, diameter:724, galX:36.841, galY:16.572, galZ:40.148, dist:56.95, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"A", id:182801, mass:0, diameter:0, galX:-41.772, galY:-35.54, galZ:15.358, dist:56.96, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"B", id:182802, mass:0, diameter:0, galX:-41.772, galY:-35.54, galZ:15.358, dist:56.96, starType:"", temp:5000, color:0xffc97f},
{ starName:"EG 498", id:138601, mass:0, diameter:0, galX:45.315, galY:27.731, galZ:-20.69, dist:57.02, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"Chi Eridani", id:169901, mass:0, diameter:2366, galX:3.728, galY:-24.978, galZ:-51.132, dist:57.03, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"Chi Eridani", id:169902, mass:0, diameter:0, galX:3.728, galY:-24.978, galZ:-51.132, dist:57.03, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:188701, mass:0, diameter:946560, galX:-31.386, galY:16.28, galZ:44.752, dist:57.04, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"A", id:204101, mass:0, diameter:1267, galX:12.901, galY:42.95, galZ:35.329, dist:57.09, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:204102, mass:0, diameter:0, galX:12.901, galY:42.95, galZ:35.329, dist:57.09, starType:"", temp:5000, color:0xffc97f},
{ starName:"CD -44°103", id:107501, mass:0, diameter:1030, galX:50.359, galY:-25.461, galZ:8.915, dist:57.13, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"BD +24°135", id:43301, mass:0, diameter:1044, galX:-55.433, galY:-10.473, galZ:9.113, dist:57.15, starType:"K6(V)", temp:4150, color:0xffd49a},
{ starName:"A", id:186301, mass:0, diameter:1085760, galX:-39.126, galY:-13.152, galZ:39.545, dist:57.17, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"B", id:186302, mass:0, diameter:1085760, galX:-39.126, galY:-13.152, galZ:39.545, dist:57.17, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"BD -1°4323", id:155001, mass:0, diameter:863040, galX:13.854, galY:36.142, galZ:-42.082, dist:57.18, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"Xi Geminorum", id:43501, mass:0, diameter:2784, galX:-53.149, galY:-20.514, galZ:5.072, dist:57.2, starType:"F5(III)", temp:6600, color:0xf1efff},
{ starName:"CD -48°198", id:39801, mass:0, diameter:0, galX:-13.455, galY:-47.733, galZ:-28.54, dist:57.22, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"58 Ophiuchi", id:123201, mass:0, diameter:974, galX:56.573, galY:7.404, galZ:4.303, dist:57.22, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"A", id:214601, mass:0, diameter:0, galX:16.072, galY:48.549, galZ:-25.657, dist:57.22, starType:"", temp:5000, color:0xffc97f},
{ starName:"B", id:214602, mass:0, diameter:0, galX:16.065, galY:48.559, galZ:-25.643, dist:57.22, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +8°2434", id:73501, mass:0, diameter:0, galX:-13.438, galY:-28.414, galZ:47.834, dist:57.24, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"CD -47°110", id:116001, mass:0, diameter:0, galX:53.711, galY:-19.78, galZ:-1.476, dist:57.26, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"CD -27°797", id:76101, mass:0, diameter:0, galX:7.269, galY:-47.991, galZ:30.373, dist:57.26, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"BD +66°128", id:140501, mass:0, diameter:877, galX:-10.107, galY:53.865, galZ:16.714, dist:57.3, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD -13°333", id:76001, mass:0, diameter:0, galX:0.848, galY:-41.585, galZ:39.482, dist:57.35, starType:"K7(V)", temp:4000, color:0xffc690},
{ starName:"BD +17°278", id:102001, mass:0, diameter:0, galX:26.749, galY:8.306, galZ:50.05, dist:57.35, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +1°2920", id:99101, mass:1.869754E+30, diameter:1294560, galX:31.831, galY:-6.878, galZ:47.274, dist:57.4, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"CPD -80°7", id:2601, mass:0, diameter:0, galX:25.671, galY:-36.443, galZ:-36.249, dist:57.46, starType:"G6(V)", temp:5440, color:0xfff4eb},
{ starName:"A", id:28501, mass:0, diameter:0, galX:-48.659, galY:-1.788, galZ:-30.628, dist:57.52, starType:"DC(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:28301, mass:0, diameter:0, galX:-16.081, galY:-33.755, galZ:-43.725, dist:57.53, starType:"K4(V)", temp:4450, color:0xffd7ae},
{ starName:"A", id:213201, mass:0, diameter:1141440, galX:36.689, galY:28.599, galZ:-33.871, dist:57.55, starType:"K1(V)", temp:4900, color:0xffe0bc},
{ starName:"B", id:213202, mass:0, diameter:0, galX:36.689, galY:28.599, galZ:-33.871, dist:57.55, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"15 Sagittae", id:138401, mass:0, diameter:821, galX:31.112, galY:47.848, galZ:-7.956, dist:57.63, starType:"G1(V)", temp:5840, color:0xfff7f8},
{ starName:"83 Leonis", id:191101, mass:0, diameter:2658720, galX:-4.899, galY:-29.554, galZ:49.242, dist:57.64, starType:"K0(V)", temp:5050, color:0xffebd1},
{ starName:"Delta Leonis", id:75801, mass:0, diameter:2227, galX:-15.605, galY:-15.875, galZ:53.24, dist:57.71, starType:"A4(V)", temp:8750, color:0xcad5ff},
{ starName:"CPD -67°37", id:138201, mass:0, diameter:766, galX:41.895, galY:-24.838, galZ:-31.075, dist:57.78, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"BD +7°3180", id:113501, mass:0, diameter:1016160, galX:44.003, galY:18.196, galZ:32.769, dist:57.8, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"L 654-28", id:48001, mass:0, diameter:0, galX:-12.348, galY:0.218, galZ:-56.478, dist:57.81, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CD -23°100", id:78001, mass:0, diameter:0, galX:8.954, galY:-45.155, galZ:35.083, dist:57.88, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"A", id:187401, mass:0, diameter:1211040, galX:-36.899, galY:-14.709, galZ:42.088, dist:57.88, starType:"G9(V)", temp:5200, color:0xffefdd},
{ starName:"Iota Pavonis", id:125801, mass:0, diameter:919, galX:48.342, galY:-25.223, galZ:-19.487, dist:57.91, starType:"G3(V)", temp:5680, color:0xfff3e9},
{ starName:"A", id:26401, mass:0, diameter:0, galX:-50.411, galY:8.522, galZ:-27.246, dist:57.93, starType:"DQ(wd)", temp:5000, color:0xffc97f},
{ starName:"CD -29°933", id:80001, mass:0, diameter:682, galX:14.83, galY:-47.42, galZ:29.864, dist:57.97, starType:"G5(V)", temp:5520, color:0xfff4e8},
{ starName:"BD +43°195", id:65701, mass:0, diameter:1030080, galX:-37.531, galY:1.118, galZ:44.209, dist:58.01, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"A", id:198301, mass:0, diameter:1433760, galX:40.738, galY:-25.529, galZ:32.468, dist:58.01, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"B", id:198302, mass:0, diameter:487200, galX:40.738, galY:-25.529, galZ:32.468, dist:58.01, starType:"", temp:5000, color:0xffc97f},
{ starName:"BD +79°212", id:43201, mass:0, diameter:1503360, galX:-36.558, galY:36.934, galZ:26.236, dist:58.22, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"Aa", id:176201, mass:0, diameter:0, galX:-56.344, galY:7.016, galZ:-12.869, dist:58.22, starType:"", temp:5000, color:0xffc97f},
{ starName:"Ab", id:176202, mass:0, diameter:0, galX:-56.344, galY:7.016, galZ:-12.869, dist:58.22, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:10901, mass:0, diameter:0, galX:-31.399, galY:45.759, galZ:17.652, dist:58.24, starType:"K8(V)", temp:3850, color:0xffd1ae},
{ starName:"AC +67°233", id:49901, mass:0, diameter:0, galX:-44.464, galY:27.244, galZ:25.921, dist:58.24, starType:"M0(V)", temp:3530, color:0xffc891},
{ starName:"San 241", id:90801, mass:0, diameter:0, galX:8.11, galY:-3.005, galZ:57.596, dist:58.24, starType:"", temp:5000, color:0xffc97f},
{ starName:"A", id:220001, mass:0, diameter:0, galX:3.526, galY:19.002, galZ:-54.939, dist:58.24, starType:"M4(V)", temp:2850, color:0xffbb7b},
{ starName:"Gamma Coronae Australis", id:208401, mass:0, diameter:1531200, galX:55.072, galY:0.592, galZ:-19.283, dist:58.36, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"Gamma Coronae Australis", id:208402, mass:0, diameter:1517280, galX:55.072, galY:0.592, galZ:-19.283, dist:58.36, starType:"F8(V)", temp:6150, color:0xfff9f9},
{ starName:"BD -21°435", id:113001, mass:0, diameter:0, galX:55.042, galY:-3.155, galZ:19.384, dist:58.44, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"Tau(6) Eridani", id:27001, mass:0, diameter:1239, galX:-30.387, galY:-22.55, galZ:-44.566, dist:58.46, starType:"F3(V)", temp:6900, color:0xe7e8ff},
{ starName:"AC +10°95-", id:85701, mass:0, diameter:0, galX:6.651, galY:-16.672, galZ:55.637, dist:58.46, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"CD -32°233", id:37001, mass:0, diameter:0, galX:-28.771, galY:-41.363, galZ:-29.706, dist:58.49, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"BD +24°278", id:102601, mass:0, diameter:1308480, galX:22.764, galY:14.548, galZ:51.927, dist:58.53, starType:"G2(V)", temp:5760, color:0xfff5ec},
{ starName:"CPD -46°99", id:140401, mass:0, diameter:988320, galX:47.958, galY:-4.434, galZ:-33.245, dist:58.53, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"BD +5°2463", id:75701, mass:0, diameter:1016160, galX:-8.695, galY:-30.08, galZ:49.459, dist:58.54, starType:"K5(V)", temp:4300, color:0xffdba7},
{ starName:"59 Virginis", id:91201, mass:2.18801E+30, diameter:1392000, galX:15.602, galY:-11.186, galZ:55.316, dist:58.55, starType:"G0(V)", temp:5920, color:0xfff8f8},
{ starName:"CPD -46°29", id:46601, mass:0, diameter:0, galX:13.555, galY:-11.607, galZ:-55.793, dist:58.58, starType:"M1(V)", temp:3360, color:0xffcc8e},
{ starName:"CD -28°183", id:33901, mass:0, diameter:0, galX:-31.521, galY:-35.509, galZ:-34.33, dist:58.59, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"Iota Centauri", id:91801, mass:0, diameter:1392, galX:33.776, galY:-39.92, galZ:26.495, dist:58.62, starType:"A2(V)", temp:9250, color:0xbcccff},
{ starName:"EG 277", id:136101, mass:0, diameter:20741, galX:26.957, galY:51.992, galZ:3.277, dist:58.66, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"A", id:219601, mass:0, diameter:0, galX:-15.533, galY:49.366, galZ:-27.615, dist:58.66, starType:"M5(V)", temp:2680, color:0xffcd75},
{ starName:"CD -35°194", id:33401, mass:0, diameter:0, galX:-24.793, galY:-38.512, galZ:-36.667, dist:58.67, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"CD -27°108", id:3801, mass:0, diameter:1141440, galX:4.523, galY:3.302, galZ:-58.472, dist:58.74, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"AC +64°143", id:83901, mass:0, diameter:0, galX:-21.575, galY:27.882, galZ:47.016, dist:58.77, starType:"M3(V)", temp:3020, color:0xffce81},
{ starName:"Wolf 485A", id:92901, mass:0, diameter:0, galX:26.798, galY:-22.102, galZ:47.41, dist:58.77, starType:"DA(wd)", temp:5000, color:0xffc97f},
{ starName:"BD -11°503", id:135301, mass:0, diameter:0, galX:50.147, galY:26.922, galZ:-14.619, dist:58.77, starType:"K2(V)", temp:4750, color:0xffe3c4},
{ starName:"A", id:195501, mass:0, diameter:1072, galX:34.705, galY:-47.299, galZ:3.633, dist:58.78, starType:"F7(V)", temp:6300, color:0xf6f3ff},
{ starName:"B", id:195502, mass:0, diameter:890880, galX:34.705, galY:-47.299, galZ:3.633, dist:58.78, starType:"K-(V)", temp:5000, color:0xffead5},
{ starName:"A", id:182601, mass:0, diameter:668, galX:-20.685, galY:-54.948, galZ:-2.963, dist:58.79, starType:"F5(V)", temp:6600, color:0xfbf8ff},
{ starName:"B", id:182602, mass:0, diameter:1016160, galX:-20.685, galY:-54.948, galZ:-2.963, dist:58.79, starType:"K3(V)", temp:4600, color:0xffdabf},
{ starName:"Delta Geminorum", id:181101, mass:0, diameter:2227, galX:-54.111, galY:-15.893, galZ:16.687, dist:58.82, starType:"F1(V)", temp:7200, color:0xe9eaff},