summaryrefslogtreecommitdiffstats
path: root/data/sol.csv
blob: 5c4350edbcc065c3926853d37c6d513d5e7736af (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
Sol,Missing,0.0,0.0,332950.0,109.0,0.0,0.0,0
Mercury,Sol,0.387098,0.205630,0.055,0.3829,174.796,29.124,0
Venus,Sol,0.723332,0.006772,0.815,0.9499,50.115,54.884,0
Earth,Sol,1.0,0.0167086,1.0,1.0,358.617,114.20783,0
Mars,Sol,1.523680,0.0934,0.107,0.533,19.412,286.5,0
Jupiter,Sol,5.2038,0.0483,317.8,10.973,20.020,273.867,0
Saturn,Sol,9.5826,0.0565,95.159,9.1402,317.020,339.392,0
Uranus,Sol,19.19126,0.04717,14.536,4.0,142.2386,96.998857,0
Neptune,Sol,30.07,0.008678,17.147,3.883,256.228,273.187,0
Pluto,Sol,39.482,0.2488,0.00218,0.1868,14.53,113.834,0
Luna,Earth,0.00257,0.0549,0.0123,0.2727,128.0,128.0,0
Hydra,Pluto,0.000432493,0.006,8.02782e-09,0.00290378,330.6,143.4,0
Charon,Pluto,0.000131018,0,0.00026562,0.0951185,192.4,0,0
Neso,Neptune,0.334536,0.447,0,0,123.2,338.3,0
Sao,Neptune,0.14961,0.299,0,0,179.6,90.9,0
Hippocamp,Neptune,0.000703887,0.001,0,0,286.5,346.4,0
Proteus,Neptune,0.000786107,0,6.48101e-06,0.0326479,276.8,0,0
Galatea,Neptune,0.000414444,0,4.76401e-07,0.0123999,86.7,0,0
Despina,Neptune,0.000350941,0,2.9284e-07,0.0116151,125.1,0,0
Ferdinand,Uranus,0.138023,0.397,0,0,256.7,79.1,0
Trinculo,Uranus,0.0568524,0.219,0,0,88.5,130.1,0
Caliban,Uranus,0.0483296,0.204,0,0,224.9,8.3,0
Cupid,Uranus,0.000497333,0.005,0,0,160.6,13.5,0
Mab,Uranus,0.000653084,0.003,0,0,348,237.9,0
Perdita,Uranus,0.000510702,0.002,0,0,32.2,310.4,0
Belinda,Uranus,0.000503349,0,0,0,121.3,0,0
Rosalind,Uranus,0.000467253,0,0,0,79.4,0,0
Juliet,Uranus,0.000430487,0.001,0,0,124.8,291.5,0
Cressida,Uranus,0.000413107,0,0,0,332.8,0,0
Bianca,Uranus,0.000395728,0.001,0,0,236.2,97,0
Cordelia,Uranus,0.000332892,0,0,0,95,0,0
Puck,Uranus,0.000574874,0,0,0,174.5,0,0
Miranda,Uranus,0.000868328,0.001,1.07874e-05,0.0370115,72.4,155.6,0
Ophelia,Uranus,0.000359631,0.011,0,0,280.5,344.3,0
Titania,Uranus,0.00291649,0.001,0.000569223,0.123827,53.2,202,0
Ariel,Uranus,0.00127609,0.001,0.000209476,0.0908649,119.8,83.3,0
S2019_s01,Saturn,0.0751749,0.463,0,0,36.6,86.6,0
Portia,Uranus,0.000441851,0,0,0,343.7,0,0
S2007_s02,Saturn,0.111753,0.179,0,0,84.1,57.7,0
S2006_s03,Saturn,0.149922,0.379,0,0,167.1,188.7,0
S2004_s39,Saturn,0.155089,0.102,0,0,98,199.8,0
S2004_s38,Saturn,0.148839,0.541,0,0,101.4,346.6,0
S2004_s36,Saturn,0.15668,0.617,0,0,138.8,204.4,0
S2004_s33,Saturn,0.157629,0.514,0,0,128.3,309.7,0
S2004_s29,Saturn,0.114106,0.488,0,0,183.8,318.9,0
S2004_s28,Saturn,0.146011,0.161,0,0,95.9,186.6,0
S2004_s26,Saturn,0.174515,0.147,0,0,153.2,151.7,0
S2004_s24,Saturn,0.156058,0.072,0,0,289.6,181,0
S2004_s22,Saturn,0.137689,0.216,0,0,102.8,118.9,0
S2007_s03,Saturn,0.126593,0.185,0,0,292.7,111.9,0
S2004_s21,Saturn,0.154621,0.409,0,0,187.5,182,0
S2004_s27,Saturn,0.132689,0.157,0,0,268.1,142.7,0
S2004_s20,Saturn,0.128738,0.182,0,0,122.5,290.1,0
S2004_s17,Saturn,0.130002,0.18,0,0,228.5,180.8,0
S2004_s13,Saturn,0.123037,0.259,0,0,41.1,346.2,0
S2004_s07,Saturn,0.140376,0.529,0,0,79.8,84,0
Tarqeq,Saturn,0.120069,0.168,0,0,161,34.8,0
Greip,Saturn,0.123377,0.315,0,0,314.5,152.2,0
Jarnsaxa,Saturn,0.129373,0.218,0,0,198.7,237.4,0
Surtur,Saturn,0.153351,0.446,0,0,136.2,303.7,0
Skoll,Saturn,0.118097,0.464,0,0,45,193.1,0
Psamathe,Neptune,0.312181,0.451,0,0,70.2,261.3,0
Kari,Saturn,0.147683,0.476,0,0,286,163.9,0
Margaret,Uranus,0.0940521,0.678,0,0,119.9,90.4,0
Hyrrokkin,Saturn,0.123264,0.336,0,0,291.8,273.1,0
S2004_s37,Saturn,0.106586,0.446,0,0,185.9,77.2,0
Eirene,Jupiter,0.154119,0.258,0,0,329.7,94.8,0
S2006_s01,Saturn,0.125537,0.141,0,0,96.6,155,0
S2017_j3,Jupiter,0.139982,0.231,0,0,193.3,92.9,0
Nereid,Neptune,0.036792,0.749,0,0.0266834,318,290.3,0
Chaldene,Jupiter,0.153281,0.265,0,0,266.2,335,0
S2011_j2,Jupiter,0.153139,0.355,0,0,284,218.7,0
S2010_j1,Jupiter,0.155014,0.252,0,0,161.1,344.2,0
Stephano,Uranus,0.0535034,0.218,0,0,190.2,352.6,0
Eukelade,Jupiter,0.154196,0.277,0,0,203.6,283.7,0
Aoede,Jupiter,0.158947,0.436,0,0,198.8,72.9,0
Hegemone,Jupiter,0.156076,0.358,0,0,233.7,282.2,0
S2003_j23,Jupiter,0.159289,0.313,0,0,168.5,163.2,0
Enceladus,Saturn,0.00159361,0.005,1.80886e-05,0.0395699,57,119.5,0
S2004_s35,Saturn,0.146827,0.237,0,0,320.2,154.2,0
Kale,Jupiter,0.154097,0.262,0,0,212.7,283.6,0
Pallene,Saturn,0.00141914,0.004,0,0,2,194.9,0
Sponde,Jupiter,0.157377,0.322,0,0,173.8,184.9,0
Calypso,Saturn,0.00197195,0.001,0,0,-0,221.6,0
Euporie,Jupiter,0.128784,0.148,0,0,72.2,329.8,0
Phobos,Mars,6.28351e-05,0.015,1.77791e-09,0.00173913,189.6,216.3,0
Carme,Jupiter,0.154711,0.256,0,0,234,155,0
Euanthe,Jupiter,0.13922,0.239,0,0,336.5,169.8,0
Francisco,Uranus,0.0286301,0.139,0,0,129.5,297.3,0
S2016_j2,Jupiter,0.124963,0.217,0,0,57.6,344.2,0
Laomedeia,Neptune,0.157809,0.418,0,0,248.3,146,0
S2017_j6,Jupiter,0.155385,0.336,0,0,150.2,100,0
Thelxinoe,Jupiter,0.140216,0.228,0,0,267.9,333.4,0
Aitne,Jupiter,0.154176,0.277,0,0,106,81.3,0
Hermippe,Jupiter,0.141102,0.219,0,0,134.7,356.6,0
Pasithee,Jupiter,0.152721,0.27,0,0,216,295.2,0
Larissa,Neptune,0.000491317,0.001,6.39315e-07,0.0150683,165.5,247.3,0
Sycorax,Uranus,0.0814183,0.521,0,0,146.2,211.4,0
Deimos,Mars,0.000157088,0,2.41336e-10,0.00097316,205,0,0
Fornjot,Saturn,0.168091,0.208,0,0,214.5,324.8,0
Naiad,Neptune,0.000322197,0,2.13992e-08,0.00455188,89.7,0,0
Janus,Saturn,0.00101271,0.007,3.17651e-07,0.0140009,111.7,11.1,0
S2003_j18,Jupiter,0.13594,0.09,0,0,66.1,304.4,0
Magaclite,Jupiter,0.158054,0.421,0,0,138.1,85.1,0
Triton,Neptune,0.00237169,0,0.00358366,0.212306,63,0,0
Himalia,Jupiter,0.0764757,0.16,3.80192e-07,0.0133417,66.5,328.4,0
Halimede,Neptune,0.105307,0.566,0,0,173.9,113.5,0
Orthosie,Jupiter,0.139715,0.299,0,0,200.7,140.1,0
Leda,Jupiter,0.0745091,0.162,0,0,233.4,270.9,0
Adrastea,Jupiter,0.000862312,0,3.51217e-10,0.00128708,214.5,0,0
Helike,Jupiter,0.139813,0.153,0,0,44.2,118.1,0
Loge,Saturn,0.15414,0.186,0,0,337.2,32.8,0
Skathi,Saturn,0.104514,0.272,0,0,114.7,203.5,0
Bebhionn,Saturn,0.114413,0.468,0,0,168,358.1,0
Bergelmir,Saturn,0.129253,0.142,0,0,306.5,133.4,0
Io,Jupiter,0.00281956,0.004,0.0149516,0.285903,330.9,49.1,0
Amalthea,Jupiter,0.00121258,0.003,4.12831e-07,0.0131063,310.6,180.1,0
Nix,Pluto,0.000325539,0,7.52608e-09,0.0028253,84.8,0,0
Callisto,Jupiter,0.0125851,0.007,0.0180106,0.378324,87.4,43.8,0
Helene,Saturn,0.0025241,0.007,1.20417e-09,0.0028253,-64.5,194.3,0
Prometheus,Saturn,0.000931831,0.002,2.68681e-08,0.00676503,135.4,341.9,0
Desdemona,Uranus,0.000419124,0,0,0,160.4,0,0
Thyone,Jupiter,0.140229,0.233,0,0,244.4,343.5,0
S2016_j1,Jupiter,0.139057,0.232,0,0,192.4,197.8,0
Iapetus,Saturn,0.0238085,0.028,0.000302335,0.115257,74.8,254.5,0
Europa,Jupiter,0.00448603,0.009,0.00803462,0.244985,345.4,45,0
S2003_j4,Jupiter,0.153254,0.328,0,0,242.8,194.4,0
Fenrir,Saturn,0.150096,0.135,0,0,131.7,121,0
Eurydome,Jupiter,0.15307,0.294,0,0,286.3,340.2,0
Metis,Jupiter,0.000855627,0,6.27173e-09,0.00337467,166,0,0
Isonoe,Jupiter,0.153621,0.249,0,0,124.9,213.5,0
Sinope,Jupiter,0.158317,0.264,0,0,167.5,96.6,0
Ganymede,Jupiter,0.00715518,0.001,0.0248055,0.412996,324.8,198.3,0
Lysithea,Jupiter,0.078215,0.117,0,0,331.5,47.4,0
Mimas,Saturn,0.00124333,0.02,6.28049e-06,0.0311097,275.3,160.4,0
Praxidike,Jupiter,0.139945,0.246,0,0,112.2,357.2,0
S2004_s31,Saturn,0.116974,0.202,0,0,255.4,262.7,0
S2017_j9,Jupiter,0.145515,0.2,0,0,261.5,130.7,0
Aegaeon,Saturn,0.00111967,0,0,0,4.4,0,0
Kallichore,Jupiter,0.153891,0.252,0,0,54.2,310.1,0
Siarnaq,Saturn,0.121539,0.28,0,0,201.3,65.9,0
Setebos,Uranus,0.116606,0.588,0,0,281.3,214.4,0
Autonoe,Jupiter,0.159043,0.33,0,0,145.7,228.3,0
Ananke,Jupiter,0.140607,0.237,0,0,259.4,56.2,0
Taygete,Jupiter,0.154467,0.253,0,0,95.7,341,0
Callirrhoe,Jupiter,0.159063,0.297,0,0,107.1,180.5,0
Kore,Jupiter,0.161802,0.328,0,0,31.8,229.3,0
Themisto,Jupiter,0.0494559,0.34,0,0,284.7,236.2,0
Pasiphae,Jupiter,0.156875,0.412,0,0,277.8,264.8,0
Albiorix,Saturn,0.10958,0.48,0,0,32.8,55.9,0
Erinome,Jupiter,0.153965,0.276,0,0,265.5,98.2,0
Kalyke,Jupiter,0.155768,0.26,0,0,256,130.3,0
Mneme,Jupiter,0.13918,0.247,0,0,253.7,18.5,0
S2017_j1,Jupiter,0.158724,0.328,0,0,286.5,252.2,0
S2017_j8,Jupiter,0.152739,0.255,0,0,350.4,146.9,0
S2003_j9,Jupiter,0.155078,0.263,0,0,354.6,199.6,0
Titan,Saturn,0.0081679,0.029,0.0225234,0.404137,11.7,78.3,0
Eupheme,Jupiter,0.13883,0.241,0,0,359.1,316.6,0
Thalassa,Neptune,0.000334898,0,5.91801e-08,0.00627845,165.7,0,0
Philophrosyne,Jupiter,0.151102,0.229,0,0,69.5,271.6,0
Farbauti,Saturn,0.136299,0.241,0,0,282.8,343,0
Methone,Saturn,0.00130149,0.002,0,0,0,315.5,0
S2003_j19,Jupiter,0.154791,0.265,0,0,218.4,123.4,0
S2017_j2,Jupiter,0.153433,0.272,0,0,293.3,137.5,0
Bestla,Saturn,0.134661,0.52,0,0,238.5,81.1,0
Pandia,Jupiter,0.0767457,0.179,0,0,153.9,194.3,0
S2004_s34,Saturn,0.161433,0.282,0,0,34.7,346.5,0
S2004_s25,Saturn,0.140049,0.519,0,0,208,268.2,0
S2010_j2,Jupiter,0.138993,0.248,0,0,306.3,15.1,0
S2017_j5,Jupiter,0.155124,0.257,0,0,66.9,211.7,0
S2017_j7,Jupiter,0.140141,0.233,0,0,359.1,119.4,0
Carpo,Jupiter,0.113921,0.416,0,0,339.8,86.6,0
Ersa,Jupiter,0.076211,0.116,0,0,263.4,304.7,0
Mundilfari,Saturn,0.124688,0.21,0,0,92.8,309.7,0
Elara,Jupiter,0.0782919,0.211,0,0,330.7,140.1,0
S2011_j1,Jupiter,0.154578,0.271,0,0,248.4,251.8,0
Arche,Jupiter,0.154399,0.261,0,0,39.8,213.5,0
S2003_j10,Jupiter,0.157598,0.264,0,0,286.9,227.5,0
S2003_j2,Jupiter,0.140361,0.225,0,0,35.2,200.4,0
S2004_s32,Saturn,0.141392,0.254,0,0,169.4,32.7,0
S2003_j12,Jupiter,0.14013,0.235,0,0,201.3,277.9,0
S2003_j16,Jupiter,0.139592,0.243,0,0,307.4,24.6,0
Polydeuces,Saturn,0.0025241,0.019,0,0,359,94.1,0
Herse,Jupiter,0.154752,0.262,0,0,141.2,101.2,0
Cyllene,Jupiter,0.158122,0.419,0,0,121.3,47.8,0
S2003_j24,Jupiter,0.152993,0.259,0,0,131.8,24.2,0
Tethys,Saturn,0.00197195,0.001,0.000103392,0.0833621,0,335.3,0
Harpalyke,Jupiter,0.139655,0.232,0,0,219.3,71.3,0
Narvi,Saturn,0.12934,0.43,0,0,114.2,170,0
Dione,Saturn,0.00252477,0.002,0.000183426,0.088118,212,116,0
Rhea,Saturn,0.00352411,0.001,0.000386193,0.11984,31.5,44.3,0
Umbriel,Uranus,0.0017781,0.004,0.00021349,0.0917752,258.3,157.5,0
Thebe,Jupiter,0.00148331,0.018,7.56371e-08,0.00773819,182.1,26.6,0
Pandora,Saturn,0.000947206,0.004,2.32305e-08,0.00637263,123.9,217.9,0
S2004_s23,Saturn,0.143431,0.437,0,0,65.1,22.8,0
Aegir,Saturn,0.138712,0.252,0,0,26,242.7,0
Hyperion,Saturn,0.00990322,0.105,9.29446e-07,0.0211898,122.9,214,0
Prospero,Uranus,0.108738,0.439,0,0,125.3,251.9,0
S2004_s30,Saturn,0.138444,0.087,0,0,336.5,269.3,0
Phoebe,Saturn,0.0864277,0.164,1.3918e-06,0.0167164,308,240.3,0
Telesto,Saturn,0.00197195,0.001,0,0,360,66.2,0
S2004_s12,Saturn,0.13293,0.327,0,0,1.6,87.1,0
Epimetheus,Saturn,0.00101205,0.02,8.81555e-08,0.00913514,197.2,96.3,0
Oberon,Uranus,0.00389979,0.001,0.000515035,0.11951,139.7,182.4,0
Atlas,Saturn,0.000920468,0.001,9.28217e-10,0.00237011,289.1,82.3,0
Pan,Saturn,0.000893061,0,7.02434e-10,0.00219746,146.6,0,0
Daphnis,Saturn,0.000912446,0,0,0,153.6,0,0
Anthe,Saturn,0.00132422,0.002,0,0,351.4,293.4,0
Dia,Jupiter,0.081955,0.232,0,0,309.6,176.8,0
Ymir,Saturn,0.154601,0.334,0,0,228.7,21.4,0
Kerberos,Pluto,0.000386369,0,2.75956e-09,0.000941767,303.5,0,0
Kiviuq,Saturn,0.0758233,0.212,0,0,171,90.6,0
Ijiraq,Saturn,0.0762578,0.272,0,0,17.3,92.9,0
Paaliaq,Saturn,0.101378,0.341,0,0,321.3,238.7,0
Tarvos,Saturn,0.121947,0.538,0,0,265.8,274.1,0
Iocaste,Jupiter,0.140822,0.227,0,0,215.5,244.7,0
Suttungr,Saturn,0.130136,0.114,0,0,321.1,34.3,0
Erriapus,Saturn,0.117662,0.472,0,0,294.8,282.5,0
Thrymr,Saturn,0.136486,0.466,0,0,30.1,125.4,0
Styx,Pluto,0.000283426,0,0,0.000816198,180.9,0,0
Hati,Saturn,0.132809,0.371,0,0,163.6,21.3,0
Ceres,Sol,2.766,0.0785,0,939.4,291.38,73.64,1
Pallas,Sol,2.771,0.2300,0,513,272.48,310.70,2
Juno,Sol,2.669,0.2569,0,246.596,261.30,247.94,3
Vesta,Sol,2.361,0.0882,0,525.4,7.03,151.09,4
Astraea,Sol,2.575,0.1901,0,106.699,160.98,358.74,5
Hebe,Sol,2.426,0.2031,0,185.18,347.50,239.51,6
Iris,Sol,2.387,0.2295,0,199.83,47.64,145.34,7
Flora,Sol,2.202,0.1561,0,147.491,136.26,285.55,8
Metis,Sol,2.385,0.1236,0,190,184.56,6.16,9
Hygiea,Sol,3.142,0.1116,0,407.12,328.90,312.49,10
Parthenope,Sol,2.453,0.0995,0,142.887,175.42,195.60,11
Victoria,Sol,2.334,0.2207,0,115.087,49.75,69.67,12
Egeria,Sol,2.577,0.0854,0,202.636,66.24,80.15,13
Irene,Sol,2.586,0.1659,0,152,42.04,97.71,14
Eunomia,Sol,2.644,0.1866,0,231.689,152.50,98.63,15
Psyche,Sol,2.924,0.1339,0,226,125.13,229.22,16
Thetis,Sol,2.471,0.1329,0,84.899,197.57,135.81,17
Melpomene,Sol,2.296,0.2179,0,139.594,190.37,228.12,18
Fortuna,Sol,2.443,0.1570,0,200,95.09,182.47,19
Massalia,Sol,2.409,0.1431,0,135.680,20.51,257.56,20
Lutetia,Sol,2.435,0.1635,0,95.76,243.38,250.16,21
Kalliope,Sol,2.91,0.0984,0,167.536,33.48,357.60,22
Thalia,Sol,2.63,0.2327,0,107.53,207.14,60.99,23
Themis,Sol,3.142,0.1224,0,198,171.96,107.60,24
Phocaea,Sol,2.399,0.2550,0,61.054,78.04,90.25,25
Proserpina,Sol,2.655,0.0894,0,94.80,333.30,193.66,26
Euterpe,Sol,2.348,0.1721,0,96,249.69,356.26,27
Bellona,Sol,2.775,0.1515,0,120.90,126.85,343.83,28
Amphitrite,Sol,2.554,0.0734,0,189.559,165.88,63.09,29
Urania,Sol,2.366,0.1277,0,92.787,300.48,87.00,30
Euphrosyne,Sol,3.164,0.2179,0,267.080,262.86,61.56,31
Pomona,Sol,2.587,0.0817,0,80.76,269.62,338.68,32
Polyhymnia,Sol,2.875,0.3317,0,52.929,184.13,338.49,33
Circe,Sol,2.687,0.1066,0,132.992,351.03,330.22,34
Leukothea,Sol,2.993,0.2248,0,103.055,45.45,213.46,35
Atalante,Sol,2.747,0.3056,0,132.842,156.20,47.78,36
Fides,Sol,2.641,0.1759,0,108.35,211.33,62.62,37
Leda,Sol,2.742,0.1531,0,92.255,222.44,169.20,38
Laetitia,Sol,2.77,0.1117,0,179.484,155.00,209.54,39
Harmonia,Sol,2.267,0.0465,0,111.251,37.30,268.65,40
Daphne,Sol,2.761,0.2746,0,205.495,349.11,45.92,41
Isis,Sol,2.442,0.2227,0,110.997,101.85,237.18,42
Ariadne,Sol,2.203,0.1688,0,71.340,79.28,16.31,43
Nysa,Sol,2.423,0.1489,0,70.64,342.99,344.19,44
Eugenia,Sol,2.721,0.0836,0,202.327,258.63,87.66,45
Hestia,Sol,2.525,0.1728,0,131.471,315.63,177.35,46
Aglaja,Sol,2.882,0.1301,0,168.174,253.30,315.06,47
Doris,Sol,3.115,0.0706,0,216.473,250.21,251.98,48
Pales,Sol,3.098,0.2215,0,166.252,60.40,113.11,49
Virginia,Sol,2.65,0.2852,0,84.074,27.20,199.90,50
Nemausa,Sol,2.366,0.0676,0,138.159,7.67,1.91,51
Europa,Sol,3.095,0.1108,0,303.918,58.66,343.14,52
Kalypso,Sol,2.619,0.2025,0,97.262,295.87,314.09,53
Alexandra,Sol,2.712,0.1970,0,160.120,238.89,345.18,54
Pandora,Sol,2.759,0.1438,0,84.794,215.91,5.42,55
Melete,Sol,2.596,0.2380,0,121.333,122.30,104.93,56
Mnemosyne,Sol,3.157,0.1099,0,112.59,319.48,210.36,57
Concordia,Sol,2.702,0.0436,0,106.517,157.83,33.45,58
Elpis,Sol,2.713,0.1173,0,165.119,20.11,210.67,59
Echo,Sol,2.392,0.1850,0,43.218,114.90,271.10,60
Danae,Sol,2.984,0.1648,0,85.937,103.20,12.66,61
Erato,Sol,3.13,0.1679,0,106.921,56.90,277.36,62
Ausonia,Sol,2.396,0.1274,0,116.044,45.15,296.22,63
Angelina,Sol,2.681,0.1256,0,58.292,260.96,180.67,64
Cybele,Sol,3.433,0.1141,0,237.26,55.63,103.43,65
Maja,Sol,2.645,0.1733,0,71.82,248.43,43.75,66
Asia,Sol,2.422,0.1848,0,56.309,180.09,107.02,67
Leto,Sol,2.783,0.1850,0,122.509,113.81,304.61,68
Hesperia,Sol,2.975,0.1702,0,138.13,133.30,288.91,69
Panopaea,Sol,2.615,0.1806,0,127.911,303.07,255.66,70
Niobe,Sol,2.757,0.1749,0,83.42,119.07,267.19,71
Feronia,Sol,2.266,0.1205,0,74.966,295.40,103.13,72
Klytia,Sol,2.664,0.0418,0,44.590,20.26,55.41,73
Galatea,Sol,2.782,0.2361,0,118.71,127.08,174.66,74
Eurydike,Sol,2.675,0.3036,0,62.377,187.07,339.44,75
Freia,Sol,3.414,0.1663,0,145.423,80.60,252.14,76
Frigga,Sol,2.668,0.1330,0,61.390,149.59,61.67,77
Diana,Sol,2.622,0.2058,0,120.60,190.69,152.85,78
Eurynome,Sol,2.445,0.1903,0,63.479,126.14,201.54,79
Sappho,Sol,2.296,0.2002,0,68.563,20.84,139.49,80
Terpsichore,Sol,2.852,0.2114,0,117.727,191.82,51.53,81
Alkmene,Sol,2.764,0.2205,0,57.621,30.43,111.05,82
Beatrix,Sol,2.434,0.0812,0,110.503,128.78,169.32,83
Klio,Sol,2.362,0.2364,0,79.16,18.91,15.04,84
Io,Sol,2.652,0.1942,0,154.79,89.11,122.82,85
Semele,Sol,3.106,0.2158,0,109.929,171.86,308.87,86
Sylvia,Sol,3.48,0.0940,0,253.051,244.12,263.93,87
Thisbe,Sol,2.769,0.1618,0,232,262.59,36.53,88
Julia,Sol,2.55,0.1847,0,145.483,19.81,45.04,89
Antiope,Sol,3.147,0.1668,0,115.974,321.32,245.17,90
Aegina,Sol,2.59,0.1069,0,103.402,43.15,74.39,91
Undina,Sol,3.191,0.1060,0,126.42,353.89,238.23,92
Minerva,Sol,2.755,0.1389,0,154.155,332.17,275.17,93
Aurora,Sol,3.158,0.0947,0,204.89,124.73,60.22,94
Arethusa,Sol,3.063,0.1532,0,147.969,258.17,153.66,95
Aegle,Sol,3.049,0.1414,0,177.774,289.86,208.23,96
Klotho,Sol,2.668,0.2577,0,100.717,177.22,268.57,97
Ianthe,Sol,2.688,0.1875,0,132.788,349.69,158.49,98
Dike,Sol,2.665,0.1961,0,67.354,110.80,195.74,99
Hekate,Sol,3.087,0.1691,0,85.734,68.70,183.81,100
Helena,Sol,2.584,0.1412,0,65.84,350.74,348.31,101
Miriam,Sol,2.663,0.2511,0,82.595,117.99,147.16,102
Hera,Sol,2.703,0.0792,0,83.908,216.40,189.04,103
Klymene,Sol,3.147,0.1613,0,136.553,95.05,31.70,104
Artemis,Sol,2.374,0.1776,0,94.864,75.70,57.27,105
Dione,Sol,3.18,0.1593,0,207.869,37.30,331.31,106
Camilla,Sol,3.488,0.0650,0,210.370,118.56,305.68,107
Hecuba,Sol,3.248,0.0574,0,75.498,139.01,210.23,108
Felicitas,Sol,2.695,0.2995,0,82.588,114.65,57.59,109
Lydia,Sol,2.732,0.0802,0,86.09,66.29,282.00,110
Ate,Sol,2.593,0.1025,0,126.344,300.55,168.17,111
Iphigenia,Sol,2.433,0.1284,0,69.818,328.54,17.33,112
Amalthea,Sol,2.376,0.0862,0,50.137,45.18,78.63,113
Kassandra,Sol,2.676,0.1380,0,94.178,286.43,352.75,114
Thyra,Sol,2.38,0.1932,0,79.83,285.60,96.87,115
Sirona,Sol,2.766,0.1415,0,71.70,76.63,94.27,116
Lomia,Sol,2.991,0.0241,0,208.974,339.88,50.93,117
Peitho,Sol,2.436,0.1646,0,40.211,209.55,33.18,118
Althaea,Sol,2.581,0.0813,0,57.30,228.52,171.45,119
Lachesis,Sol,3.117,0.0515,0,155.132,52.70,234.25,120
Hermione,Sol,3.454,0.1263,0,209.00,13.21,296.80,121
Gerda,Sol,3.223,0.0307,0,70.676,144.69,321.05,122
Brunhild,Sol,2.694,0.1209,0,45.209,182.99,125.45,123
Alkeste,Sol,2.632,0.0766,0,88.648,84.63,62.61,124
Liberatrix,Sol,2.744,0.0783,0,48.418,20.67,110.34,125
Velleda,Sol,2.439,0.1055,0,44.82,100.19,327.99,126
Johanna,Sol,2.754,0.0666,0,122,140.36,93.12,127
Nemesis,Sol,2.749,0.1281,0,162.515,288.58,303.46,128
Antigone,Sol,2.867,0.2130,0,113,143.16,110.83,129
Elektra,Sol,3.127,0.2093,0,180.652,124.07,237.62,130
Vala,Sol,2.433,0.0675,0,31.337,88.46,161.23,131
Aethra,Sol,2.61,0.3889,0,42.87,146.28,255.34,132
Cyrene,Sol,3.064,0.1348,0,72.175,323.13,290.25,133
Sophrosyne,Sol,2.563,0.1146,0,108,349.52,85.34,134
Hertha,Sol,2.429,0.2069,0,79.24,238.35,340.31,135
Austria,Sol,2.287,0.0847,0,36.893,142.31,132.55,136
Meliboea,Sol,3.126,0.2117,0,128.678,217.38,107.53,137
Tolosa,Sol,2.449,0.1623,0,52.905,142.97,260.57,138
Juewa,Sol,2.783,0.1739,0,151.116,124.98,165.82,139
Siwa,Sol,2.734,0.2141,0,109.79,276.34,196.95,140
Lumen,Sol,2.665,0.2136,0,117.916,25.99,57.64,141
Polana,Sol,2.419,0.1346,0,54.812,305.32,291.72,142
Adria,Sol,2.762,0.0736,0,95.377,296.18,252.15,143
Vibilia,Sol,2.654,0.2354,0,142.38,235.13,294.65,144
Adeona,Sol,2.671,0.1464,0,127.783,323.38,45.25,145
Lucina,Sol,2.719,0.0665,0,160.310,279.42,145.54,146
Protogeneia,Sol,3.135,0.0231,0,132.93,86.65,101.77,147
Gallia,Sol,2.77,0.1879,0,97.75,217.82,252.66,148
Nuwa,Sol,2.985,0.1236,0,119.128,158.16,153.75,150
Abundantia,Sol,2.591,0.0353,0,39.037,251.83,133.36,151
Atala,Sol,3.14,0.0815,0,58.964,47.70,59.00,152
Hilda,Sol,3.977,0.1400,0,170.63,299.21,39.33,153
Bertha,Sol,3.198,0.0765,0,192.611,108.35,161.39,154
Scylla,Sol,2.762,0.2727,0,39.605,303.47,46.59,155
Xanthippe,Sol,2.728,0.2264,0,143.346,340.51,338.28,156
Koronis,Sol,2.869,0.0526,0,39.025,56.81,146.61,158
Aemilia,Sol,3.108,0.1045,0,125.236,214.84,333.15,159
Una,Sol,2.726,0.0673,0,81.24,223.32,51.75,160
Athor,Sol,2.38,0.1371,0,40.992,166.14,294.79,161
Laurentia,Sol,3.016,0.1819,0,97.021,316.79,115.78,162
Erigone,Sol,2.366,0.1922,0,81.579,100.94,298.65,163
Eva,Sol,2.631,0.3473,0,100.254,321.19,284.04,164
Loreley,Sol,3.123,0.0845,0,180.083,124.97,345.04,165
Rhodope,Sol,2.687,0.2115,0,52.393,323.61,263.98,166
Urda,Sol,2.852,0.0378,0,39.935,90.86,128.67,167
Sibylla,Sol,3.376,0.0745,0,145.366,127.68,175.74,168
Zelia,Sol,2.358,0.1309,0,37.517,74.23,334.68,169
Maria,Sol,2.554,0.0629,0,33.136,212.51,157.94,170
Ophelia,Sol,3.132,0.1321,0,130.808,8.24,55.72,171
Baucis,Sol,2.38,0.1149,0,62.43,351.96,359.66,172
Ino,Sol,2.741,0.2096,0,125.821,251.09,228.84,173
Phaedra,Sol,2.861,0.1410,0,64.849,17.29,289.71,174
Andromache,Sol,3.185,0.2330,0,94.532,23.32,319.79,175
Iduna,Sol,3.182,0.1714,0,106.976,151.93,188.60,176
Irma,Sol,2.772,0.2340,0,69.049,108.42,39.44,177
Belisana,Sol,2.461,0.0424,0,35.81,271.53,211.55,178
Klytaemnestra,Sol,2.973,0.1101,0,69.946,103.14,104.03,179
Eucharis,Sol,3.127,0.2073,0,115.383,29.01,318.88,181
Elsa,Sol,2.415,0.1869,0,39.520,184.66,310.76,182
Istria,Sol,2.794,0.3483,0,32.927,357.52,263.95,183
Dejopeja,Sol,3.187,0.0654,0,62.483,104.59,210.73,184
Eunike,Sol,2.738,0.1274,0,160.464,43.00,223.58,185
Celuta,Sol,2.362,0.1499,0,49.99,98.60,315.42,186
Lamberta,Sol,2.729,0.2408,0,147.294,295.27,196.75,187
Menippe,Sol,2.761,0.1796,0,35.752,56.52,69.91,188
Phthia,Sol,2.451,0.0358,0,38.490,130.03,168.86,189
Ismene,Sol,3.991,0.1676,0,159,23.14,271.06,190
Kolga,Sol,2.895,0.0878,0,94.536,7.35,226.07,191
Nausikaa,Sol,2.402,0.2458,0,98.776,262.76,30.69,192
Ambrosia,Sol,2.6,0.2975,0,26.302,80.29,82.52,193
Prokne,Sol,2.616,0.2377,0,161.667,148.50,163.11,194
Eurykleia,Sol,2.876,0.0430,0,93.109,158.78,117.88,195
Philomela,Sol,3.115,0.0154,0,144.626,268.38,202.45,196
Arete,Sol,2.738,0.1636,0,31.729,95.92,245.88,197
Ampella,Sol,2.458,0.2277,0,54.323,281.65,89.22,198
Byblis,Sol,3.167,0.1819,0,76.129,76.50,180.06,199
Dynamene,Sol,2.738,0.1325,0,128.301,83.90,86.87,200
Penelope,Sol,2.68,0.1792,0,85.877,169.01,180.91,201
Chryseis,Sol,3.071,0.1041,0,86.15,19.02,359.94,202
Pompeja,Sol,2.738,0.0592,0,124.592,120.01,59.95,203
Kallisto,Sol,2.671,0.1737,0,48.566,322.11,55.42,204
Martha,Sol,2.776,0.0368,0,76.983,265.85,175.81,205
Hersilia,Sol,2.741,0.0392,0,113,60.34,302.77,206
Hedda,Sol,2.284,0.0297,0,57.880,246.44,192.62,207
Lacrimosa,Sol,2.895,0.0105,0,40.056,237.11,121.40,208
Dido,Sol,3.148,0.0556,0,179.008,303.32,249.74,209
Isabella,Sol,2.72,0.1242,0,86.65,232.83,14.65,210
Isolda,Sol,3.051,0.1571,0,141.125,272.16,173.00,211
Medea,Sol,3.116,0.1026,0,136.12,22.19,105.10,212
Lilaea,Sol,2.754,0.1444,0,82.096,270.92,162.39,213
Oenone,Sol,2.767,0.0339,0,35.210,157.84,317.42,215
Kleopatra,Sol,2.793,0.2514,0,122,282.10,179.89,216
Eudora,Sol,2.867,0.3107,0,65.392,35.37,155.21,217
Bianca,Sol,2.668,0.1169,0,60.62,263.29,62.52,218
Thusnelda,Sol,2.354,0.2233,0,37.674,64.00,142.63,219
Stephania,Sol,2.348,0.2577,0,31.738,317.05,78.70,220
Eos,Sol,3.01,0.1023,0,95.469,85.16,192.33,221
Lucia,Sol,3.141,0.1309,0,55.350,342.35,181.67,222
Rosa,Sol,3.09,0.1197,0,79.806,307.84,65.37,223
Oceana,Sol,2.645,0.0451,0,58.236,100.66,283.21,224
Henrietta,Sol,3.392,0.2631,0,95.934,115.28,103.81,225
Weringia,Sol,2.711,0.2042,0,31.494,96.38,153.90,226
Philosophia,Sol,3.165,0.1912,0,123.891,60.91,267.67,227
Adelinda,Sol,3.424,0.1377,0,105.912,31.37,309.30,229
Athamantis,Sol,2.382,0.0621,0,111.332,291.76,139.69,230
Vindobona,Sol,2.925,0.1523,0,73.545,46.33,269.25,231
Russia,Sol,2.553,0.1745,0,54.730,337.37,51.89,232
Asterope,Sol,2.66,0.0996,0,99.672,231.65,126.36,233
Barbara,Sol,2.386,0.2451,0,45.476,192.04,192.29,234
Carolina,Sol,2.882,0.0614,0,57.517,222.40,208.00,235
Honoria,Sol,2.799,0.1912,0,77.708,356.32,174.32,236
Coelestina,Sol,2.762,0.0710,0,41.08,321.10,200.56,237
Hypatia,Sol,2.905,0.0904,0,155.659,207.96,210.57,238
Adrastea,Sol,2.965,0.2360,0,37.609,259.76,209.90,239
Vanadis,Sol,2.664,0.2083,0,87.928,152.73,300.93,240
Germania,Sol,3.047,0.1038,0,168.90,288.28,80.58,241
Kriemhild,Sol,2.862,0.1219,0,40.802,38.73,279.12,242
Ida,Sol,2.862,0.0438,0,32,83.13,113.94,243
Vera,Sol,3.098,0.1972,0,75.949,119.88,331.68,245
Asporina,Sol,2.695,0.1090,0,50.891,258.71,96.19,246
Eukrate,Sol,2.741,0.2457,0,130.935,149.73,55.33,247
Lameia,Sol,2.471,0.0661,0,50.120,50.89,11.68,248
Ilse,Sol,2.377,0.2172,0,34.83,42.08,42.07,249
Bettina,Sol,3.145,0.1358,0,120.995,51.14,75.87,250
Sophia,Sol,3.099,0.0937,0,27.495,298.52,288.52,251
Clementina,Sol,3.162,0.0664,0,65.344,117.95,159.63,252
Mathilde,Sol,2.648,0.2635,0,52.8,267.13,157.82,253
Oppavia,Sol,2.747,0.0790,0,56.939,335.38,155.02,255
Walpurga,Sol,2.999,0.0653,0,66.634,10.53,47.51,256
Silesia,Sol,3.118,0.1119,0,72.66,24.03,31.65,257
Tyche,Sol,2.614,0.2049,0,64.78,263.12,155.67,258
Aletheia,Sol,3.131,0.1299,0,174.318,138.85,166.89,259
Huberta,Sol,3.447,0.1082,0,101.539,59.66,179.92,260
Prymno,Sol,2.331,0.0896,0,50.011,228.42,66.78,261
Libussa,Sol,2.8,0.1368,0,62.969,317.24,339.95,264
Aline,Sol,2.806,0.1541,0,109.494,111.21,151.78,266
Tirza,Sol,2.775,0.0992,0,55.998,33.53,197.11,267
Adorea,Sol,3.094,0.1368,0,144.585,305.94,68.44,268
Justitia,Sol,2.616,0.2129,0,50.728,325.22,119.73,269
Anahita,Sol,2.198,0.1503,0,51.400,104.05,80.52,270
Penthesilea,Sol,3.003,0.1044,0,65.901,263.36,57.55,271
Antonia,Sol,2.778,0.0287,0,26.870,8.89,68.88,272
Atropos,Sol,2.395,0.1599,0,29.768,299.54,121.18,273
Philagoria,Sol,3.043,0.1188,0,27.307,55.99,119.97,274
Sapientia,Sol,2.771,0.1635,0,103,9.00,39.46,275
Adelheid,Sol,3.12,0.0657,0,114.723,203.31,265.10,276
Elvira,Sol,2.885,0.0927,0,30.422,309.73,136.64,277
Paulina,Sol,2.759,0.1317,0,32.773,114.68,140.52,278
Thule,Sol,4.265,0.0437,0,126.59,300.08,26.66,279
Philia,Sol,2.942,0.1103,0,45.69,84.07,89.27,280
Clorinde,Sol,2.339,0.0812,0,39.03,107.38,296.87,282
Emma,Sol,3.05,0.1444,0,132.385,135.64,55.49,283
Amalia,Sol,2.359,0.2217,0,52.95,184.31,58.01,284
Regina,Sol,3.088,0.2045,0,47.156,141.11,14.42,285
Iclea,Sol,3.192,0.0243,0,94.30,38.39,209.61,286
Nephthys,Sol,2.353,0.0227,0,59.615,313.18,119.75,287
Glauke,Sol,2.759,0.2058,0,28.981,246.35,84.55,288
Nenetta,Sol,2.877,0.2016,0,37.586,146.83,190.55,289
Ludovica,Sol,2.53,0.0330,0,30.864,157.65,286.11,292
Brasilia,Sol,2.862,0.1051,0,57.486,155.20,87.08,293
Felicia,Sol,3.157,0.2332,0,51.865,205.50,186.19,294
Theresia,Sol,2.797,0.1675,0,28.340,328.05,148.21,295
Caecilia,Sol,3.166,0.1397,0,39.48,107.54,353.51,297
Geraldina,Sol,3.205,0.0579,0,67.373,297.91,324.10,300
Bavaria,Sol,2.725,0.0666,0,53.042,195.76,124.01,301
Clarissa,Sol,2.406,0.1100,0,38.53,21.64,55.03,302
Josephina,Sol,3.122,0.0565,0,124.923,351.31,67.04,303
Olga,Sol,2.404,0.2216,0,65.990,232.67,172.46,304
Gordonia,Sol,3.091,0.1961,0,47.739,46.55,260.70,305
Unitas,Sol,2.358,0.1507,0,47.200,273.31,168.05,306
Nike,Sol,2.905,0.1438,0,61.313,208.97,324.19,307
Polyxo,Sol,2.749,0.0395,0,128.578,146.00,112.42,308
Fraternitas,Sol,2.665,0.1137,0,41.075,282.63,311.08,309
Margarita,Sol,2.76,0.1164,0,33.708,206.93,325.09,310
Claudia,Sol,2.896,0.0053,0,26.300,268.20,82.92,311
Pierretta,Sol,2.781,0.1605,0,46.191,107.52,262.32,312
Chaldaea,Sol,2.375,0.1821,0,71.183,80.99,315.89,313
Rosalia,Sol,3.159,0.1714,0,60.689,106.66,191.64,314
Goberta,Sol,3.185,0.1282,0,56.067,300.24,316.99,316
Magdalena,Sol,3.193,0.0847,0,85,144.91,295.61,318
Leona,Sol,3.408,0.2160,0,49.943,273.14,227.79,319
Florentina,Sol,2.884,0.0472,0,27.974,165.22,35.33,321
Phaeo,Sol,2.782,0.2448,0,69.855,48.21,114.69,322
Brucia,Sol,2.382,0.2994,0,27.714,175.03,291.54,323
Bamberga,Sol,2.681,0.3414,0,220.691,314.55,44.21,324
Heidelberga,Sol,3.215,0.1512,0,75.72,347.27,70.60,325
Tamara,Sol,2.318,0.1899,0,93.00,225.02,238.52,326
Columbia,Sol,2.776,0.0610,0,30.291,277.72,307.88,327
Gudrun,Sol,3.107,0.1069,0,145.680,321.43,107.18,328
Svea,Sol,2.477,0.0243,0,81.057,68.05,56.13,329
Etheridgea,Sol,3.026,0.0961,0,74.92,102.41,333.78,331
Siri,Sol,2.773,0.0883,0,40.37,251.35,297.91,332
Badenia,Sol,3.133,0.1599,0,72.199,126.57,22.96,333
Chicago,Sol,3.889,0.0242,0,198.770,4.30,151.16,334
Roberta,Sol,2.475,0.1727,0,97.109,141.82,139.83,335
Lacadiera,Sol,2.252,0.0956,0,63.356,187.74,31.01,336
Devosa,Sol,2.383,0.1362,0,64.549,344.57,99.43,337
Budrosa,Sol,2.913,0.0188,0,50.506,340.93,108.53,338
Dorothea,Sol,3.01,0.0986,0,44.329,288.34,164.68,339
Eduarda,Sol,2.747,0.1167,0,28.025,95.11,43.13,340
Endymion,Sol,2.568,0.1299,0,64.266,94.30,225.00,342
Desiderata,Sol,2.597,0.3140,0,124.181,52.01,237.60,344
Tercidina,Sol,2.325,0.0618,0,90.243,123.68,231.15,345
Hermentaria,Sol,2.795,0.1027,0,86.447,250.51,291.91,346
Pariana,Sol,2.612,0.1657,0,48.615,115.25,86.26,347
May,Sol,2.97,0.0711,0,82.82,46.87,13.59,348
Dembowska,Sol,2.926,0.0905,0,139.77,342.96,344.48,349
Ornamenta,Sol,3.108,0.1599,0,128.729,177.15,337.79,350
Yrsa,Sol,2.765,0.1558,0,39.720,347.99,31.81,351
Gisela,Sol,2.195,0.1498,0,26.744,320.98,144.40,352
Eleonora,Sol,2.803,0.1121,0,148.970,183.83,6.39,354
Liguria,Sol,2.756,0.2409,0,145.503,98.73,79.38,356
Ninina,Sol,3.152,0.0772,0,124.107,135.43,255.54,357
Apollonia,Sol,2.875,0.1531,0,90.116,224.10,252.78,358
Georgia,Sol,2.728,0.1570,0,43.89,42.15,337.85,359
Carlova,Sol,3.003,0.1734,0,129.125,6.91,289.86,360
Bononia,Sol,3.965,0.2108,0,154.334,219.72,68.34,361
Havnia,Sol,2.579,0.0443,0,98,156.67,31.45,362
Padua,Sol,2.746,0.0719,0,97,265.82,296.32,363
Isara,Sol,2.221,0.1487,0,25.901,78.37,313.13,364
Corduba,Sol,2.804,0.1571,0,86.773,294.95,215.71,365
Vincentina,Sol,3.144,0.0566,0,86.368,275.69,333.58,366
Haidea,Sol,3.073,0.2013,0,69.277,275.36,95.42,368
Aeria,Sol,2.649,0.0970,0,73.767,210.10,269.79,369
Modestia,Sol,2.324,0.0909,0,38.093,46.04,68.22,370
Bohemia,Sol,2.727,0.0635,0,52.976,222.47,342.16,371
Palma,Sol,3.163,0.2546,0,173.642,268.38,115.23,372
Melusina,Sol,3.122,0.1380,0,98.695,123.96,348.91,373
Burgundia,Sol,2.779,0.0790,0,44.67,359.99,25.77,374
Ursula,Sol,3.125,0.1036,0,216,115.26,341.44,375
Geometria,Sol,2.288,0.1727,0,35.465,112.53,316.76,376
Campania,Sol,2.69,0.0754,0,90.346,0.02,196.08,377
Holmia,Sol,2.776,0.1308,0,27.831,278.77,157.26,378
Huenna,Sol,3.143,0.1799,0,84.787,119.24,180.72,379
Fiducia,Sol,2.679,0.1128,0,67.508,200.90,240.01,380
Myrrha,Sol,3.223,0.0899,0,127.639,330.07,144.02,381
Dodona,Sol,3.121,0.1709,0,65.209,3.36,270.39,382
Janina,Sol,3.14,0.1681,0,43.482,68.38,324.56,383
Burdigala,Sol,2.655,0.1464,0,34.435,270.29,34.64,384
Ilmatar,Sol,2.848,0.1256,0,85.837,214.95,189.06,385
Siegena,Sol,2.899,0.1690,0,165.01,105.03,220.78,386
Aquitania,Sol,2.74,0.2349,0,100.51,318.15,157.45,387
Charybdis,Sol,3.007,0.0663,0,125.754,31.93,330.44,388
Industria,Sol,2.608,0.0665,0,74.378,96.86,265.07,389
Alma,Sol,2.653,0.1311,0,25.688,231.91,191.56,390
Wilhelmina,Sol,2.884,0.1391,0,60.750,5.30,173.45,392
Lampetia,Sol,2.781,0.3302,0,116.191,238.62,90.82,393
Arduina,Sol,2.762,0.2275,0,29.970,299.82,271.31,394
Delia,Sol,2.785,0.0846,0,44.189,277.52,11.13,395
Aeolia,Sol,2.74,0.1601,0,39.242,156.63,21.42,396
Vienna,Sol,2.634,0.2482,0,49.032,303.26,140.07,397
Admete,Sol,2.738,0.2237,0,49.771,27.22,160.54,398
Persephone,Sol,3.05,0.0763,0,39.566,266.12,192.98,399
Ducrosa,Sol,3.128,0.1158,0,36.001,291.95,237.30,400
Ottilia,Sol,3.346,0.0317,0,87.803,128.63,300.89,401
Chloe,Sol,2.559,0.1123,0,55.421,25.20,17.34,402
Cyane,Sol,2.81,0.0981,0,53.574,49.80,254.52,403
Arsinoe,Sol,2.593,0.2003,0,94.970,153.02,120.66,404
Thia,Sol,2.584,0.2434,0,108.894,241.86,308.72,405
Erna,Sol,2.918,0.1783,0,46.266,125.08,37.65,406
Arachne,Sol,2.624,0.0705,0,95.07,258.24,82.42,407
Fama,Sol,3.166,0.1455,0,35.620,138.88,108.57,408
Aspasia,Sol,2.575,0.0719,0,171.012,17.36,353.57,409
Chloris,Sol,2.724,0.2414,0,118.929,204.53,172.82,410
Xanthe,Sol,2.935,0.1151,0,76.53,202.67,181.32,411
Elisabetha,Sol,2.762,0.0419,0,96.056,70.22,91.86,412
Edburga,Sol,2.585,0.3416,0,34.242,197.54,252.88,413
Liriope,Sol,3.507,0.0732,0,88.760,121.14,318.42,414
Palatia,Sol,2.793,0.3000,0,83.560,54.92,299.09,415
Vaticana,Sol,2.792,0.2176,0,85.47,330.38,198.29,416
Suevia,Sol,2.8,0.1356,0,54.874,325.70,348.57,417
Alemannia,Sol,2.594,0.1195,0,40.330,345.64,125.92,418
Aurelia,Sol,2.598,0.2514,0,148.701,48.45,44.65,419
Bertholda,Sol,3.414,0.0290,0,138.699,173.60,234.85,420
Diotima,Sol,3.069,0.0351,0,175.859,244.94,199.40,423
Gratia,Sol,2.774,0.1089,0,102.565,54.71,333.83,424
Cornelia,Sol,2.886,0.0589,0,67.925,107.01,121.97,425
Hippo,Sol,2.888,0.1058,0,137.562,289.83,221.81,426
Galene,Sol,2.971,0.1198,0,32.193,116.14,11.19,427
Lotis,Sol,2.607,0.1236,0,69.62,196.03,169.17,429
Hybris,Sol,2.85,0.2505,0,31.702,323.44,179.25,430
Nephele,Sol,3.14,0.1706,0,101.900,223.72,217.20,431
Pythia,Sol,2.369,0.1462,0,46.90,185.14,173.87,432
Ella,Sol,2.449,0.1551,0,34.792,60.11,333.25,435
Patricia,Sol,3.201,0.0694,0,58.609,166.35,41.05,436
Zeuxo,Sol,2.554,0.0682,0,58.871,207.46,210.38,438
Ohio,Sol,3.133,0.0663,0,70.421,27.94,244.49,439
Bathilde,Sol,2.807,0.0812,0,65.131,46.08,202.95,441
Eichsfeldia,Sol,2.345,0.0703,0,62.171,15.28,84.56,442
Photographica,Sol,2.215,0.0405,0,25.504,87.55,348.68,443
Gyptis,Sol,2.77,0.1743,0,159.331,80.00,154.56,444
Edna,Sol,3.198,0.1975,0,87.812,174.48,81.66,445
Aeternitas,Sol,2.788,0.1256,0,53.562,147.56,279.06,446
Valentine,Sol,2.984,0.0452,0,85.224,241.78,321.41,447
Natalie,Sol,3.135,0.1883,0,50.534,24.11,293.55,448
Hamburga,Sol,2.552,0.1728,0,85.59,254.28,48.54,449
Brigitta,Sol,3.019,0.0976,0,37.038,138.67,359.11,450
Patientia,Sol,3.067,0.0717,0,253.900,288.40,335.86,451
Mathesis,Sol,2.626,0.1114,0,81.743,200.67,177.46,454
Bruchsalia,Sol,2.655,0.2951,0,88.792,315.18,273.52,455
Abnoba,Sol,2.789,0.1789,0,37.713,64.47,7.17,456
Hercynia,Sol,2.994,0.2424,0,36.698,122.52,277.15,458
Signe,Sol,2.619,0.2112,0,25.784,194.64,19.49,459
Saskia,Sol,3.116,0.1449,0,43.603,318.62,308.56,461
Eriphyla,Sol,2.876,0.0887,0,34.274,346.93,250.07,462
Megaira,Sol,2.801,0.2050,0,77.056,19.80,257.86,464
Alekto,Sol,3.093,0.2054,0,73.34,10.09,284.11,465
Tisiphone,Sol,3.365,0.0936,0,95.495,155.70,253.47,466
Laura,Sol,2.945,0.1064,0,39.471,32.62,94.02,467
Lina,Sol,3.133,0.1963,0,60.238,24.93,332.24,468
Argentina,Sol,3.193,0.1583,0,133.718,138.29,211.60,469
Kilia,Sol,2.406,0.0947,0,27.750,127.04,47.81,470
Papagena,Sol,2.89,0.2287,0,148.128,86.07,315.63,471
Roma,Sol,2.544,0.0950,0,50.278,138.93,296.51,472
Prudentia,Sol,2.453,0.2109,0,40.972,9.64,156.13,474
Hedwig,Sol,2.65,0.0730,0,138.493,13.08,1.40,476
Tergeste,Sol,3.021,0.0806,0,80.738,250.00,242.21,478
Caprera,Sol,2.721,0.2189,0,60.088,281.24,269.49,479
Hansa,Sol,2.643,0.0462,0,56.22,185.05,213.25,480
Emita,Sol,2.739,0.1579,0,101.829,216.07,349.42,481
Petrina,Sol,3,0.0968,0,45.751,305.57,87.73,482
Seppina,Sol,3.426,0.0511,0,66.858,158.08,162.99,483
Pittsburghia,Sol,2.667,0.0579,0,30.060,79.04,189.55,484
Genua,Sol,2.748,0.1918,0,63.88,190.98,272.21,485
Venetia,Sol,2.67,0.0861,0,59.046,54.33,281.16,487
Kreusa,Sol,3.182,0.1570,0,168.117,184.03,74.26,488
Comacina,Sol,3.151,0.0479,0,139.39,277.69,9.22,489
Veritas,Sol,3.172,0.0897,0,118.803,21.14,193.25,490
Carina,Sol,3.195,0.0864,0,91.176,283.29,231.63,491
Gismonda,Sol,3.112,0.1791,0,53.418,266.15,296.82,492
Griseldis,Sol,3.115,0.1766,0,41.550,191.78,46.81,493
Virtus,Sol,2.984,0.0647,0,100.786,167.95,215.66,494
Eulalia,Sol,2.488,0.1289,0,37.287,146.99,207.86,495
Iva,Sol,2.849,0.3013,0,40.932,291.81,3.54,497
Tokio,Sol,2.651,0.2232,0,81.83,274.30,241.90,498
Venusia,Sol,4.011,0.2169,0,77.328,35.20,174.82,499
Selinur,Sol,2.614,0.1440,0,40.828,149.39,74.94,500
Urhixidur,Sol,3.164,0.1416,0,74.457,190.02,356.28,501
Evelyn,Sol,2.722,0.1758,0,81.68,177.44,41.66,503
Cora,Sol,2.723,0.2153,0,30.438,181.40,248.36,504
Cava,Sol,2.688,0.2430,0,115,308.02,336.88,505
Marion,Sol,3.039,0.1470,0,105.94,190.61,145.68,506
Laodica,Sol,3.153,0.1013,0,45.170,181.45,100.43,507
Princetonia,Sol,3.16,0.0077,0,117.241,3.93,206.85,508
Iolanda,Sol,3.061,0.0964,0,51.892,258.03,157.46,509
Mabella,Sol,2.611,0.1909,0,60.450,17.16,91.19,510
Davida,Sol,3.162,0.1884,0,270.327,149.38,337.16,511
Centesima,Sol,3.013,0.0847,0,48.805,164.15,225.78,513
Armida,Sol,3.046,0.0374,0,120.093,59.57,110.78,514
Athalia,Sol,3.122,0.1762,0,41.190,104.65,300.27,515
Amherstia,Sol,2.681,0.2734,0,65.144,114.93,258.14,516
Edith,Sol,3.155,0.1794,0,111.890,32.08,143.55,517
Sylvania,Sol,2.792,0.1831,0,40.078,166.25,302.76,519
Franziska,Sol,3.003,0.1105,0,25.261,234.99,21.11,520
Brixia,Sol,2.743,0.2783,0,107.227,23.05,316.03,521
Helga,Sol,3.628,0.0867,0,101.22,123.54,248.73,522
Ada,Sol,2.967,0.1790,0,31.89,56.77,189.93,523
Fidelio,Sol,2.637,0.1280,0,65.527,297.23,79.23,524
Jena,Sol,3.125,0.1320,0,44.840,171.91,357.69,526
Euryanthe,Sol,2.725,0.1509,0,52.627,322.64,204.14,527
Rezia,Sol,3.397,0.0219,0,91.966,79.40,350.85,528
Preziosa,Sol,3.021,0.0947,0,32.01,316.82,331.99,529
Turandot,Sol,3.187,0.2182,0,84.85,79.39,199.46,530
Herculina,Sol,2.771,0.1788,0,167.791,197.17,76.63,532
Sara,Sol,2.981,0.0445,0,30.819,316.81,32.39,533
Nassovia,Sol,2.883,0.0592,0,32.333,146.47,338.36,534
Montague,Sol,2.569,0.0253,0,79.299,279.77,68.53,535
Merapi,Sol,3.496,0.0874,0,147.066,243.65,295.73,536
Pauly,Sol,3.073,0.2291,0,40.732,302.02,187.59,537
Friederike,Sol,3.156,0.1708,0,70.640,266.65,227.56,538
Pamina,Sol,2.737,0.2140,0,68.356,291.67,97.42,539
Deborah,Sol,2.814,0.0497,0,60.147,3.33,359.43,541
Susanna,Sol,2.905,0.1422,0,42.117,234.56,216.84,542
Charlotte,Sol,3.064,0.1531,0,45.613,300.84,108.44,543
Jetta,Sol,2.591,0.1532,0,27.169,118.19,343.07,544
Messalina,Sol,3.201,0.1700,0,112.631,288.83,331.18,545
Herodias,Sol,2.597,0.1153,0,65.945,258.84,110.07,546
Praxedis,Sol,2.775,0.2353,0,52.462,141.85,196.52,547
Senta,Sol,2.588,0.2229,0,37.434,131.13,45.12,550
Ortrud,Sol,2.967,0.1185,0,81.113,329.65,70.47,551
Sigelinde,Sol,3.147,0.0900,0,88.697,149.61,346.41,552
Peraga,Sol,2.375,0.1519,0,95.87,33.90,127.69,554
Norma,Sol,3.181,0.1546,0,31.040,255.88,0.56,555
Phyllis,Sol,2.464,0.1043,0,36.279,90.15,177.85,556
Carmen,Sol,2.912,0.0395,0,54.811,254.21,311.77,558
Nanon,Sol,2.711,0.0651,0,79.82,10.36,128.97,559
Delila,Sol,2.755,0.1578,0,35.334,258.36,4.74,560
Ingwelde,Sol,3.169,0.1221,0,31.562,312.48,318.31,561
Salome,Sol,3.018,0.1022,0,32.651,329.92,263.61,562
Suleika,Sol,2.711,0.2364,0,53.29,185.78,336.80,563
Dudu,Sol,2.747,0.2769,0,52.010,179.99,214.92,564
Marbachia,Sol,2.442,0.1311,0,27.332,268.36,292.37,565
Stereoskopia,Sol,3.379,0.1202,0,167.381,133.61,299.75,566
Eleutheria,Sol,3.133,0.0896,0,93.41,56.10,133.67,567
Cheruskia,Sol,2.88,0.1686,0,71.224,207.59,173.93,568
Misa,Sol,2.658,0.1806,0,72.95,227.34,142.51,569
Kythera,Sol,3.42,0.1188,0,87.486,70.70,161.68,570
Rebekka,Sol,2.401,0.1564,0,28.903,82.85,192.11,572
Recha,Sol,3.014,0.1101,0,47.582,71.67,29.70,573
Emanuela,Sol,2.99,0.1919,0,74.378,208.94,27.23,576
Rhea,Sol,3.11,0.1548,0,38.234,105.47,329.85,577
Happelia,Sol,2.752,0.1921,0,69.29,272.38,261.46,578
Sidonia,Sol,3.014,0.0773,0,85.57,177.99,228.85,579
Selene,Sol,3.228,0.0872,0,48.204,20.59,338.65,580
Tauntonia,Sol,3.213,0.0343,0,61.481,10.44,25.26,581
Olympia,Sol,2.61,0.2219,0,44.347,195.17,310.24,582
Klotilde,Sol,3.171,0.1600,0,78.236,77.96,252.03,583
Semiramis,Sol,2.374,0.2340,0,54.01,345.27,85.29,584
Bilkis,Sol,2.432,0.1281,0,49.761,219.65,329.83,585
Thekla,Sol,3.04,0.0642,0,95.203,327.48,253.25,586
Achilles,Sol,5.209,0.1480,0,130.099,321.40,133.50,588
Croatia,Sol,3.136,0.0400,0,93.617,81.81,228.11,589
Tomyris,Sol,2.997,0.0804,0,30.577,187.28,338.67,590
Irmgard,Sol,2.684,0.2068,0,51.86,131.79,217.90,591
Bathseba,Sol,3.023,0.1338,0,43.787,106.90,257.50,592
Titania,Sol,2.698,0.2170,0,70.145,91.27,30.91,593
Polyxena,Sol,3.206,0.0638,0,90.647,337.44,280.00,595
Scheila,Sol,2.929,0.1626,0,159.726,335.51,175.50,596
Bandusia,Sol,2.671,0.1444,0,36.06,69.43,307.06,597
Octavia,Sol,2.76,0.2509,0,78.237,233.21,292.12,598
Luisa,Sol,2.772,0.2926,0,70.249,298.82,294.38,599
Musa,Sol,2.66,0.0554,0,25.115,243.62,113.04,600
Nerthus,Sol,3.133,0.1043,0,75.535,259.90,160.47,601
Marianna,Sol,3.082,0.2511,0,110.444,239.80,45.82,602
Tekmessa,Sol,3.154,0.1929,0,64.536,344.47,28.55,604
Juvisia,Sol,3.002,0.1365,0,69.86,111.95,15.22,605
Brangane,Sol,2.586,0.2210,0,35.758,248.17,58.39,606
Jenny,Sol,2.857,0.0748,0,67.520,123.52,292.18,607
Fulvia,Sol,3.086,0.0393,0,54.17,182.78,108.86,609
Valeria,Sol,2.979,0.1231,0,57.468,95.56,256.60,611
Veronika,Sol,3.154,0.2592,0,38.767,254.26,122.51,612
Ginevra,Sol,2.919,0.0561,0,81.344,6.37,65.68,613
Pia,Sol,2.693,0.1082,0,29.191,352.02,209.82,614
Roswitha,Sol,2.631,0.1107,0,48.626,119.72,247.01,615
Patroclus,Sol,5.211,0.1397,0,140.362,286.55,308.08,617
Elfriede,Sol,3.191,0.0695,0,131.292,126.38,229.72,618
Triberga,Sol,2.521,0.0757,0,29.051,321.97,178.02,619
Werdandi,Sol,3.125,0.1363,0,29.726,291.28,36.47,621
Chimaera,Sol,2.461,0.1111,0,44.09,336.34,124.64,623
Hektor,Sol,5.267,0.0226,0,225,254.22,181.56,624
Xenia,Sol,2.644,0.2282,0,28.287,72.37,200.44,625
Notburga,Sol,2.574,0.2418,0,73.236,34.86,43.42,626
Charis,Sol,2.9,0.0586,0,38.018,277.05,177.80,627
Christine,Sol,2.581,0.0437,0,48.239,82.62,205.12,628
Bernardina,Sol,3.13,0.1598,0,35.087,283.85,38.22,629
Philippina,Sol,2.791,0.0839,0,50.491,278.45,279.45,631
Zelima,Sol,3.019,0.0841,0,33.387,228.53,190.40,633
Ute,Sol,3.05,0.1813,0,74.017,106.72,220.79,634
Vundtia,Sol,3.143,0.0782,0,94.415,70.20,228.19,635
Erika,Sol,2.913,0.1694,0,73.147,218.15,298.70,636
Moira,Sol,2.734,0.1610,0,59.594,130.20,128.77,638
Latona,Sol,3.015,0.1076,0,78.509,269.88,70.86,639
Brambilla,Sol,3.159,0.0792,0,62.667,188.80,29.36,640
Clara,Sol,3.184,0.1277,0,33.36,290.47,120.87,642
Scheherezade,Sol,3.359,0.0567,0,64.997,123.71,229.51,643
Agrippina,Sol,3.215,0.1393,0,28.916,300.32,88.44,645
Pippa,Sol,3.194,0.2022,0,68.27,308.48,180.75,648
Antikleia,Sol,3.021,0.1014,0,31.895,268.81,354.09,651
Berenike,Sol,3.017,0.0426,0,49.793,167.34,60.68,653
Zelinda,Sol,2.298,0.2308,0,160.736,257.52,214.48,654
Briseis,Sol,2.989,0.0836,0,29.057,26.64,281.40,655
Beagle,Sol,3.148,0.1331,0,62.604,88.38,330.49,656
Gunlod,Sol,2.611,0.1134,0,39.401,314.71,244.75,657
Nestor,Sol,5.166,0.1172,0,112.320,64.97,343.85,659
Crescentia,Sol,2.534,0.1074,0,42.302,314.44,105.93,660
Cloelia,Sol,3.013,0.0378,0,40.081,262.16,183.97,661
Gerlinde,Sol,3.074,0.1452,0,107.795,141.28,312.33,663
Judith,Sol,3.194,0.2309,0,85.214,12.83,102.53,664
Sabine,Sol,3.141,0.1725,0,51.09,144.41,318.22,665
Desdemona,Sol,2.594,0.2366,0,32.741,15.09,173.88,666
Denise,Sol,3.183,0.1898,0,88.630,193.29,305.51,667
Kypria,Sol,3.012,0.0759,0,29.227,293.23,116.30,669
Ottegebe,Sol,2.803,0.1924,0,35.886,34.37,194.76,670
Carnegia,Sol,3.093,0.0659,0,60.604,213.01,89.99,671
Astarte,Sol,2.555,0.1342,0,35.584,321.20,309.15,672
Edda,Sol,2.817,0.0087,0,37.622,249.28,243.51,673
Rachele,Sol,2.921,0.1950,0,96.171,182.65,41.65,674
Ludmilla,Sol,2.768,0.2043,0,76,166.44,152.63,675
Melitta,Sol,3.064,0.1220,0,78.369,216.74,184.90,676
Aaltje,Sol,2.955,0.0497,0,32.403,18.53,275.33,677
Fredegundis,Sol,2.572,0.2200,0,39.585,190.40,121.20,678
Pax,Sol,2.588,0.3095,0,63.909,146.83,267.01,679
Genoveva,Sol,3.144,0.2949,0,83.92,16.74,245.95,680
Lanzia,Sol,3.114,0.0582,0,83.04,280.24,281.01,683
Gersuind,Sol,2.589,0.2685,0,55.258,348.96,89.15,686
Melanie,Sol,2.698,0.1389,0,41.614,153.98,139.11,688
Wratislavia,Sol,3.149,0.1769,0,134.65,46.91,114.34,690
Lehigh,Sol,3.01,0.1237,0,79.451,206.86,304.25,691
Hippodamia,Sol,3.384,0.1686,0,42.771,104.26,53.78,692
Zerbinetta,Sol,2.943,0.0307,0,82.114,175.58,284.50,693
Ekard,Sol,2.67,0.3230,0,121.891,291.91,111.88,694
Bella,Sol,2.539,0.1604,0,40.620,310.46,80.00,695
Leonora,Sol,3.174,0.2498,0,81.580,297.57,103.51,696
Galilea,Sol,2.882,0.1541,0,80.14,106.00,333.08,697
Ernestina,Sol,2.868,0.1110,0,27.037,31.94,98.44,698
Oriola,Sol,3.012,0.0372,0,42.943,190.87,325.74,701
Alauda,Sol,3.195,0.0165,0,190.980,224.15,353.26,702
Interamnia,Sol,3.056,0.1555,0,306.313,285.27,94.80,704
Erminia,Sol,2.924,0.0508,0,132.261,22.16,102.40,705
Hirundo,Sol,2.728,0.1950,0,30.819,255.61,31.17,706
Fringilla,Sol,2.915,0.1132,0,95.173,250.52,19.49,709
Gertrud,Sol,3.132,0.1322,0,29.208,298.81,99.64,710
Boliviana,Sol,2.576,0.1852,0,124.125,336.28,181.39,712
Luscinia,Sol,3.399,0.1554,0,97.968,87.16,138.39,713
Ulula,Sol,2.536,0.0555,0,41.343,256.68,232.19,714
Transvaalia,Sol,2.767,0.0836,0,25.458,258.86,301.28,715
Wisibada,Sol,3.137,0.2640,0,27.656,257.17,24.46,717
Erida,Sol,3.056,0.1983,0,70.911,13.74,174.57,718
Bohlinia,Sol,2.888,0.0185,0,33.73,39.79,110.93,720
Tabora,Sol,3.553,0.1175,0,86.309,153.63,352.58,721
Joella,Sol,2.565,0.2856,0,44.02,323.00,113.23,726
Nipponia,Sol,2.567,0.1042,0,32.17,330.83,274.21,727
Watsonia,Sol,2.76,0.0969,0,50.025,293.98,87.51,729
Sorga,Sol,2.986,0.1417,0,34.597,315.50,288.76,731
Tjilaki,Sol,2.456,0.0449,0,29.791,154.00,64.26,732
Mocia,Sol,3.4,0.0583,0,98.493,13.75,189.29,733
Benda,Sol,3.146,0.1004,0,67.318,158.06,65.94,734
Marghanna,Sol,2.731,0.3209,0,67.976,117.76,309.87,735
Arequipa,Sol,2.591,0.2448,0,47.804,137.95,134.21,737
Alagasta,Sol,3.044,0.0537,0,62.79,154.84,45.83,738
Mandeville,Sol,2.738,0.1435,0,104.517,352.48,44.99,739
Cantabia,Sol,3.055,0.1085,0,90.90,142.67,48.76,740
Botolphia,Sol,2.718,0.0698,0,29.64,89.29,61.53,741
Edisona,Sol,3.012,0.1154,0,47.087,82.99,283.61,742
Eugenisis,Sol,2.792,0.0600,0,51.072,211.48,186.25,743
Aguntina,Sol,3.17,0.1166,0,58.636,76.18,28.64,744
Marlu,Sol,3.112,0.2365,0,74.274,167.97,306.97,746
Winchester,Sol,3.001,0.3394,0,171.71,76.28,277.45,747
Simeisa,Sol,3.951,0.1889,0,103.714,39.53,177.68,748
Faina,Sol,2.551,0.1511,0,113.699,78.31,302.51,751
Sulamitis,Sol,2.462,0.0747,0,60.171,147.73,23.17,752
Malabar,Sol,2.987,0.0505,0,94.522,347.70,303.15,754
Quintilla,Sol,3.179,0.1368,0,41.210,38.29,44.08,755
Lilliana,Sol,3.197,0.1479,0,64.837,267.17,4.32,756
Portlandia,Sol,2.374,0.1082,0,32.894,313.10,43.81,757
Mancunia,Sol,3.189,0.1502,0,88.985,247.92,314.29,758
Vinifera,Sol,2.619,0.2053,0,52.926,218.86,1.06,759
Massinga,Sol,3.147,0.2336,0,71.29,282.92,200.43,760
Pulcova,Sol,3.154,0.1067,0,147.343,341.41,188.78,762
Gedania,Sol,3.192,0.0926,0,58.28,344.25,158.51,764
Moguntia,Sol,3.018,0.0969,0,41.044,171.21,70.77,766
Bondia,Sol,3.12,0.1828,0,43.039,244.19,269.23,767
Struveana,Sol,3.138,0.2134,0,32.597,133.90,16.64,768
Tatjana,Sol,3.167,0.1871,0,96.720,81.01,253.32,769
Libera,Sol,2.652,0.2470,0,29.322,3.29,228.58,771
Tanete,Sol,2.998,0.0944,0,126.473,183.23,145.94,772
Irmintraud,Sol,2.859,0.0786,0,91.672,267.04,332.89,773
Armor,Sol,3.05,0.1667,0,50.214,250.82,28.64,774
Lumiere,Sol,3.018,0.0670,0,31.958,250.08,169.12,775
Berbericia,Sol,2.929,0.1658,0,151.711,269.02,306.76,776
Gutemberga,Sol,3.221,0.1146,0,71.749,180.97,264.54,777
Theobalda,Sol,3.179,0.2559,0,55.317,10.91,135.04,778
Nina,Sol,2.664,0.2273,0,80.572,77.61,49.00,779
Armenia,Sol,3.118,0.0980,0,126.263,347.06,212.51,780
Kartvelia,Sol,3.222,0.1191,0,72.927,44.21,155.62,781
Nora,Sol,2.342,0.2296,0,38.719,301.71,154.81,783
Pickeringia,Sol,3.098,0.2416,0,75.596,205.89,238.05,784
Zwetana,Sol,2.569,0.2098,0,49.460,27.06,131.43,785
Bredichina,Sol,3.175,0.1594,0,108.309,11.93,133.70,786
Moskva,Sol,2.539,0.1298,0,27.927,146.29,125.78,787
Hohensteina,Sol,3.121,0.1356,0,111.295,170.01,47.83,788
Pretoria,Sol,3.413,0.1541,0,170.37,40.28,38.61,790
Ani,Sol,3.124,0.1928,0,116.865,139.98,201.70,791
Metcalfia,Sol,2.622,0.1315,0,61.804,59.52,227.36,792
Arizona,Sol,2.795,0.1241,0,26.636,71.01,308.20,793
Irenaea,Sol,3.129,0.2961,0,35.703,138.00,131.35,794
Fini,Sol,2.75,0.1020,0,85.263,336.49,190.02,795
Sarita,Sol,2.635,0.3201,0,43.580,42.21,329.48,796
Ruth,Sol,3.014,0.0352,0,43.19,341.10,44.40,798
Gudula,Sol,2.541,0.0229,0,47.185,260.37,236.46,799
Helwerthia,Sol,2.606,0.0767,0,32.404,156.26,335.45,801
Picka,Sol,3.196,0.0639,0,46.50,83.74,57.13,803
Hispania,Sol,2.837,0.1411,0,137.952,329.76,344.74,804
Hormuthia,Sol,3.193,0.1866,0,73.095,118.62,131.81,805
Gyldenia,Sol,3.205,0.0805,0,83.103,227.22,121.45,806
Merxia,Sol,2.745,0.1292,0,30.923,84.07,274.63,808
Tauris,Sol,3.159,0.3056,0,102.229,352.84,296.27,814
Juliana,Sol,3.002,0.1082,0,50.745,123.12,20.84,816
Kapteynia,Sol,3.17,0.0908,0,64.255,29.14,291.52,818
Adriana,Sol,3.129,0.0505,0,58.65,278.79,194.71,820
Fanny,Sol,2.773,0.2116,0,28.856,278.51,32.86,821
Anastasia,Sol,2.792,0.1373,0,32.457,148.18,141.44,824
Lindemannia,Sol,3.193,0.0277,0,47.891,236.28,295.83,828
Academia,Sol,2.581,0.0986,0,42.685,107.93,42.30,829
Petropolitana,Sol,3.211,0.0656,0,41.328,40.17,91.00,830
Burnhamia,Sol,3.183,0.2009,0,61.278,311.58,91.48,834
Olivia,Sol,3.221,0.0880,0,30.418,103.89,67.36,835
Seraphina,Sol,2.9,0.1311,0,58.095,134.77,117.37,838
Zenobia,Sol,3.132,0.1026,0,27.306,69.65,9.55,840
Kerstin,Sol,3.238,0.1165,0,43.576,91.70,352.81,842
Leontina,Sol,3.204,0.0695,0,42.154,194.88,353.61,844
Naema,Sol,2.94,0.0700,0,52.677,24.50,293.22,845
Lipperta,Sol,3.131,0.1754,0,52.41,23.19,130.04,846
Inna,Sol,3.112,0.1627,0,33.027,164.07,125.66,848
Ara,Sol,3.146,0.2012,0,80.756,69.50,63.04,849
Altona,Sol,3.004,0.1270,0,80.90,72.19,135.16,850
Wladilena,Sol,2.362,0.2744,0,26.541,330.34,282.39,852
Nansenia,Sol,2.312,0.1050,0,27.593,357.52,59.82,853
Backlunda,Sol,2.435,0.1193,0,45.449,293.63,72.76,856
Bouzareah,Sol,3.226,0.1099,0,65.417,57.92,21.86,859
Ursina,Sol,2.795,0.1072,0,34.561,308.87,21.94,860
Aida,Sol,3.139,0.1005,0,66.85,120.63,192.31,861
Franzia,Sol,2.802,0.0827,0,27.033,180.14,120.69,862
Benkoela,Sol,3.2,0.0283,0,38.724,34.92,97.80,863
Fatme,Sol,3.126,0.0525,0,78.061,140.83,263.95,866
Lova,Sol,2.704,0.1464,0,50.692,357.36,286.68,868
Holda,Sol,2.732,0.0785,0,34.431,83.90,18.48,872
Mechthild,Sol,2.627,0.1490,0,34.471,187.38,109.83,873
Rotraut,Sol,3.154,0.0796,0,58.287,277.89,9.04,874
Walkure,Sol,2.487,0.1592,0,38.41,13.63,275.66,877
Herba,Sol,2.999,0.3235,0,32.329,1.23,100.79,880
Swetlana,Sol,3.122,0.2675,0,42.440,258.89,126.46,882
Priamus,Sol,5.191,0.1247,0,101.093,14.54,335.88,884
Ulrike,Sol,3.095,0.1839,0,30.537,66.85,203.89,885
Washingtonia,Sol,3.169,0.2710,0,86.793,206.47,302.23,886
Parysatis,Sol,2.709,0.1947,0,44.749,147.01,298.02,888
Waltraut,Sol,3.021,0.0599,0,28.376,192.44,87.75,890
Gunhild,Sol,2.859,0.0265,0,55.747,353.18,293.82,891
Seeligeria,Sol,3.228,0.1046,0,74.481,64.81,286.12,892
Leopoldina,Sol,3.051,0.1464,0,85.992,42.74,222.49,893
Erda,Sol,3.119,0.1104,0,28.309,257.22,116.61,894
Helio,Sol,3.203,0.1442,0,109.568,225.88,177.56,895
Jokaste,Sol,2.905,0.2017,0,31.018,268.01,127.52,899
Nealley,Sol,3.237,0.0459,0,58.065,209.01,233.98,903
Rockefellia,Sol,2.995,0.0852,0,49.146,290.41,253.40,904
Repsolda,Sol,2.893,0.0860,0,65.752,42.13,293.51,906
Rhoda,Sol,2.799,0.1633,0,82.660,309.71,88.52,907
Buda,Sol,2.472,0.1479,0,30.749,149.68,23.36,908
Ulla,Sol,3.542,0.0912,0,116.44,269.23,232.51,909
Anneliese,Sol,2.925,0.1555,0,48.590,99.45,208.14,910
Agamemnon,Sol,5.28,0.0672,0,131.038,349.86,81.04,911
Maritima,Sol,3.129,0.1788,0,82.675,275.42,91.15,912
Palisana,Sol,2.458,0.2144,0,76.190,222.88,49.05,914
America,Sol,2.365,0.2366,0,33.23,68.03,41.57,916
Lyka,Sol,2.381,0.2011,0,34.878,342.91,359.88,917
Ilsebill,Sol,2.773,0.0838,0,33.500,142.72,156.24,919
Rogeria,Sol,2.622,0.1046,0,26.656,300.25,270.17,920
Jovita,Sol,3.17,0.1855,0,55.312,76.24,70.60,921
Herluga,Sol,2.616,0.1944,0,34.553,48.09,201.36,923
Toni,Sol,2.94,0.1533,0,85.49,113.07,220.17,924
Alphonsina,Sol,2.7,0.0808,0,57.505,335.04,201.77,925
Imhilde,Sol,2.981,0.1824,0,48.48,212.40,173.63,926
Ratisbona,Sol,3.221,0.0911,0,75.892,189.07,172.32,927
Hildrun,Sol,3.134,0.1478,0,62.817,115.93,21.83,928
Westphalia,Sol,2.432,0.1429,0,34.922,188.22,330.14,930
Whittemora,Sol,3.17,0.2331,0,45.298,85.34,315.44,931
Hooveria,Sol,2.42,0.0910,0,58.978,128.58,49.97,932
Thuringia,Sol,2.749,0.2159,0,53.714,43.50,64.28,934
Kunigunde,Sol,3.132,0.1757,0,43.227,115.41,253.59,936
Chlosinde,Sol,3.151,0.1958,0,33.466,12.08,225.34,938
Kordula,Sol,3.368,0.1700,0,79.852,136.80,283.76,940
Romilda,Sol,3.162,0.1659,0,36.772,3.02,319.50,942
Begonia,Sol,3.117,0.2135,0,70.572,58.12,4.01,943
Hidalgo,Sol,5.731,0.6609,0,38.,84.94,56.54,944
Barcelona,Sol,2.639,0.1610,0,25.618,215.92,162.15,945
Poesia,Sol,3.116,0.1433,0,36.210,137.88,37.67,946
Monterosa,Sol,2.754,0.2472,0,26.060,131.44,339.25,947
Hel,Sol,3.01,0.1938,0,63.494,110.97,250.19,949
Caia,Sol,2.992,0.2440,0,88.692,142.18,356.59,952
Li,Sol,3.132,0.1745,0,58.771,30.93,150.97,954
Camelia,Sol,2.919,0.0813,0,91.548,316.28,226.01,957
Asplinda,Sol,3.988,0.1838,0,45.112,227.62,92.67,958
Arne,Sol,3.176,0.2219,0,45.176,191.37,333.54,959
Gunnie,Sol,2.692,0.0913,0,36.571,315.38,285.61,961
Angelica,Sol,3.165,0.2784,0,60.857,268.10,46.98,965
Muschi,Sol,2.719,0.1305,0,25.509,295.82,178.01,966
Alsatia,Sol,2.64,0.1629,0,60.867,93.80,6.48,971
Cohnia,Sol,3.056,0.2359,0,77.827,303.57,93.50,972
Aralia,Sol,3.21,0.1124,0,51.609,166.74,87.53,973
Lioba,Sol,2.533,0.1097,0,25.001,34.74,301.98,974
Benjamina,Sol,3.203,0.1057,0,83.195,145.67,321.01,976
Philippa,Sol,3.116,0.0256,0,65.471,103.91,71.56,977
Aidamina,Sol,3.203,0.2314,0,92.105,69.52,132.57,978
Ilsewa,Sol,3.157,0.1384,0,35.741,228.65,115.59,979
Anacostia,Sol,2.74,0.2026,0,74.679,32.74,69.61,980
Martina,Sol,3.095,0.2021,0,32.545,58.16,297.82,981
Franklina,Sol,3.067,0.2340,0,33.227,145.52,350.89,982
Gunila,Sol,3.161,0.0914,0,73.87,314.51,348.49,983
Gretia,Sol,2.804,0.1956,0,32.449,41.72,55.03,984
Amelia,Sol,3.133,0.2035,0,48.677,317.64,265.44,986
Wallia,Sol,3.137,0.2370,0,52.651,316.58,16.25,987
McDonalda,Sol,3.14,0.1597,0,38.556,345.47,254.76,991
Swasey,Sol,3.033,0.0865,0,27.585,144.62,347.84,992
Hilaritas,Sol,3.088,0.1396,0,29.128,97.44,146.65,996
Bodea,Sol,3.116,0.2140,0,31.761,268.43,72.09,998
Piazzia,Sol,3.168,0.2583,0,47.78,162.91,280.59,1000
Gaussia,Sol,3.209,0.1221,0,72.711,31.51,145.70,1001
Lilofee,Sol,3.139,0.1599,0,33.678,135.17,316.88,1003
Belopolskya,Sol,3.399,0.0889,0,71.60,245.58,214.83,1004
Arago,Sol,3.167,0.1190,0,61.132,126.31,60.65,1005
Lagrangea,Sol,3.141,0.3582,0,35.310,206.24,86.21,1006
"La Paz",Sol,3.092,0.0732,0,41.061,0.31,15.37,1008
Marlene,Sol,2.93,0.1046,0,46.876,220.23,279.68,1010
Tombecka,Sol,2.683,0.2092,0,34.613,94.24,99.63,1013
Christa,Sol,3.207,0.0884,0,82.350,112.38,286.67,1015
Jacqueline,Sol,2.605,0.0778,0,40.152,73.52,68.10,1017
Flammario,Sol,2.739,0.2849,0,100.765,316.02,286.60,1021
Olympiada,Sol,2.806,0.1737,0,34.297,304.17,124.74,1022
Thomana,Sol,3.169,0.0963,0,58.27,25.15,195.52,1023
Hale,Sol,2.869,0.2215,0,43.274,97.55,308.00,1024
Aesculapia,Sol,3.152,0.1288,0,31.225,78.74,131.91,1027
Lydina,Sol,3.405,0.1053,0,88.526,206.98,24.11,1028
Vitja,Sol,3.121,0.1227,0,59.717,290.37,5.44,1030
Arctica,Sol,3.047,0.0589,0,75.400,213.22,310.03,1031
Pafuri,Sol,3.13,0.1417,0,65.658,206.90,189.02,1032
Amata,Sol,3.154,0.1897,0,56.063,198.39,324.89,1035
Ganymed,Sol,2.666,0.5331,0,37.675,140.65,132.43,1036
Tuckia,Sol,3.982,0.2218,0,58.3,179.19,305.04,1038
Sonneberga,Sol,2.68,0.0610,0,33.853,281.71,326.52,1039
Asta,Sol,3.073,0.1449,0,60.571,136.23,344.14,1041
Amazone,Sol,3.236,0.0878,0,63.920,129.71,298.53,1042
Beate,Sol,3.094,0.0384,0,31.986,181.83,157.77,1043
Edwin,Sol,2.985,0.0606,0,29.084,320.65,48.71,1046
Feodosia,Sol,2.732,0.1800,0,62.218,24.95,183.61,1048
Gotho,Sol,3.092,0.1372,0,56.296,225.03,41.03,1049
Merope,Sol,3.213,0.1005,0,60.439,264.46,153.36,1051
Forsytia,Sol,2.923,0.1342,0,47.780,118.86,295.72,1054
Wanda,Sol,2.894,0.2472,0,44.657,183.73,114.76,1057
Mussorgskia,Sol,2.642,0.1877,0,25.227,178.36,87.93,1059
Ljuba,Sol,3.006,0.0705,0,58.031,124.42,100.58,1062
Planckia,Sol,3.129,0.1096,0,35.657,2.03,31.30,1069
Tunica,Sol,3.234,0.0800,0,39.131,169.95,190.77,1070
Brita,Sol,2.801,0.1105,0,60.862,34.41,29.17,1071
Malva,Sol,3.17,0.2392,0,53.675,275.91,25.60,1072
Gellivara,Sol,3.186,0.1876,0,25.992,164.68,289.69,1073
Beljawskya,Sol,3.15,0.1801,0,49.189,153.60,22.54,1074
Helina,Sol,3.014,0.1097,0,26.198,97.86,250.67,1075
Reseda,Sol,3.096,0.1483,0,37.810,94.76,9.26,1081
Pirola,Sol,3.121,0.1801,0,42.607,57.51,186.41,1082
Tamariwa,Sol,2.687,0.1326,0,26.476,120.83,109.34,1084
Amaryllis,Sol,3.185,0.0418,0,69.281,315.60,129.52,1085
Nata,Sol,3.161,0.0537,0,66.27,158.08,157.52,1086
Arabis,Sol,3.018,0.0901,0,37.498,314.60,25.46,1087
Spiraea,Sol,3.416,0.0701,0,35.178,359.35,12.48,1091
Lilium,Sol,2.899,0.0848,0,40.276,161.50,314.99,1092
Freda,Sol,3.13,0.2710,0,116.73,100.80,251.20,1093
Tulipa,Sol,3.024,0.0207,0,27.875,121.62,342.61,1095
Reunerta,Sol,2.6,0.1941,0,42.333,81.47,247.65,1096
Hakone,Sol,2.688,0.1161,0,26.684,11.05,81.18,1098
Clematis,Sol,3.23,0.0788,0,33.765,64.61,105.71,1101
Pepita,Sol,3.07,0.1108,0,36.632,200.02,117.54,1102
Fragaria,Sol,3.012,0.1065,0,38.206,16.13,223.64,1105
Lictoria,Sol,3.184,0.1231,0,79.079,195.82,350.97,1107
Demeter,Sol,2.428,0.2569,0,25.285,144.52,78.07,1108
Tata,Sol,3.224,0.0983,0,61.817,334.23,0.16,1109
Polonia,Sol,3.017,0.1081,0,39.661,230.01,87.07,1112
Katja,Sol,3.122,0.1367,0,44.792,269.41,118.78,1113
Lorraine,Sol,3.095,0.0716,0,75.631,64.22,207.58,1114
Sabauda,Sol,3.099,0.1737,0,75.907,348.06,56.68,1115
Catriona,Sol,2.929,0.2245,0,38.741,303.08,83.10,1116
Hanskya,Sol,3.214,0.0436,0,70.954,218.47,337.04,1118
Euboea,Sol,2.612,0.1551,0,29.443,204.44,229.93,1119
China,Sol,3.126,0.2176,0,26.084,140.49,10.39,1125
Mimi,Sol,2.594,0.2651,0,46.006,138.79,282.70,1127
Astrid,Sol,2.788,0.0445,0,41.851,226.99,234.40,1128
Neujmina,Sol,3.022,0.0838,0,34.576,145.18,139.66,1129
Hollandia,Sol,2.687,0.2755,0,27.235,18.26,270.69,1132
Colchis,Sol,2.666,0.1144,0,50.592,90.65,3.33,1135
Mercedes,Sol,2.567,0.2537,0,25.296,194.73,148.73,1136
Crimea,Sol,2.772,0.1103,0,29.179,45.99,310.07,1140
Odysseus,Sol,5.241,0.0917,0,114.624,298.57,237.02,1143
Oda,Sol,3.764,0.0834,0,56.337,350.99,217.29,1144
Biarmia,Sol,3.043,0.2555,0,32.925,121.59,63.64,1146
Rarahu,Sol,3.019,0.1085,0,27.512,218.13,175.77,1148
Volga,Sol,2.898,0.0963,0,52.377,218.19,116.41,1149
Astronomia,Sol,3.393,0.0709,0,55.715,273.55,205.02,1154
Arabia,Sol,3.181,0.1442,0,29.113,114.80,312.38,1157
Granada,Sol,2.379,0.0589,0,28.641,105.66,312.44,1159
Larissa,Sol,3.925,0.1056,0,40.379,160.28,206.78,1162
Saga,Sol,3.219,0.0425,0,32.429,147.38,200.73,1163
Imprinetta,Sol,3.127,0.2114,0,53.187,147.54,96.68,1165
Sakuntala,Sol,2.536,0.2087,0,26.011,208.11,189.85,1166
Dubiago,Sol,3.416,0.0684,0,63.12,202.76,72.72,1167
Rusthawelia,Sol,3.175,0.1945,0,82.229,57.65,292.30,1171
Aneas,Sol,5.225,0.1061,0,118.020,354.37,50.81,1172
Anchises,Sol,5.283,0.1393,0,99.549,297.39,41.07,1173
Gonnessia,Sol,3.35,0.0337,0,91.98,229.98,253.35,1177
Rita,Sol,3.987,0.1555,0,97,74.62,205.85,1180
Turnera,Sol,3.023,0.1011,0,34.290,191.01,296.26,1186
Afra,Sol,2.639,0.2233,0,32.348,189.94,74.90,1187
Terentia,Sol,2.931,0.1119,0,59.246,57.91,95.41,1189
Alfaterna,Sol,2.896,0.0463,0,47.397,135.54,56.42,1191
Aletta,Sol,2.916,0.0905,0,41.358,134.42,244.22,1194
Sheba,Sol,2.652,0.1801,0,25.274,248.42,262.69,1196
Rhodesia,Sol,2.882,0.2340,0,47.741,244.72,277.07,1197
Geldonia,Sol,3.017,0.0319,0,30.395,265.04,291.40,1199
Imperatrix,Sol,3.066,0.1060,0,42.006,47.99,52.45,1200
Strenua,Sol,2.699,0.0388,0,35.825,131.94,166.11,1201
Marina,Sol,3.999,0.1676,0,54.93,183.12,307.54,1202
Nanna,Sol,2.885,0.2500,0,35.18,137.91,177.23,1203
Troilus,Sol,5.253,0.0925,0,100.477,304.66,295.44,1208
Pumma,Sol,3.171,0.1276,0,26.889,222.40,176.84,1209
Morosovia,Sol,3.009,0.0623,0,33.663,107.34,166.53,1210
Bressole,Sol,2.928,0.1599,0,45.809,63.44,211.21,1211
Francette,Sol,3.948,0.1898,0,76.387,123.87,348.16,1212
Algeria,Sol,3.138,0.1284,0,29.175,125.59,110.42,1213
Richilde,Sol,2.712,0.1171,0,36.668,200.24,32.73,1214
Tina,Sol,2.793,0.2504,0,25.781,51.01,59.86,1222
Geranium,Sol,3.217,0.1924,0,46.269,296.31,303.21,1227
Tilia,Sol,3.225,0.1664,0,27.795,196.03,166.68,1229
Cortusa,Sol,3.187,0.1372,0,36.367,92.41,340.96,1232
Kobresia,Sol,2.555,0.0566,0,33.323,144.39,333.84,1233
Genevieve,Sol,2.613,0.0765,0,39.81,181.34,307.14,1237
Centenaria,Sol,2.866,0.1760,0,63.035,326.52,24.04,1240
Dysona,Sol,3.19,0.1006,0,79.190,206.66,320.59,1241
Zambesia,Sol,2.737,0.1902,0,47.594,126.64,54.07,1242
Pamela,Sol,3.095,0.0463,0,69.883,99.33,52.17,1243
Deira,Sol,2.343,0.0982,0,31.799,55.47,260.87,1244
Calvinia,Sol,2.895,0.0832,0,29.751,338.95,207.07,1245
Memoria,Sol,3.131,0.1763,0,38.906,55.58,138.88,1247
Jugurtha,Sol,2.723,0.0161,0,28.468,256.62,341.78,1248
Erfordia,Sol,3.134,0.0305,0,51.540,106.73,240.38,1254
Schilowa,Sol,3.143,0.1743,0,33.669,300.03,133.32,1255
Normannia,Sol,3.896,0.0795,0,68.245,209.95,101.60,1256
Sicilia,Sol,3.184,0.0444,0,45.669,222.57,77.41,1258
Ogyalla,Sol,3.102,0.1268,0,36.111,22.35,150.31,1259
Legia,Sol,3.139,0.1784,0,32.576,341.84,104.17,1261
Sniadeckia,Sol,3.003,0.0044,0,71.011,274.57,161.91,1262
Varsavia,Sol,2.665,0.1884,0,49.29,216.61,287.14,1263
Letaba,Sol,2.866,0.1562,0,66.040,77.16,31.75,1264
Tone,Sol,3.356,0.0509,0,75.470,357.35,299.80,1266
Libya,Sol,3.98,0.1028,0,96.710,357.44,118.59,1268
Rollandia,Sol,3.9,0.0984,0,104.893,120.91,19.46,1269
Isergina,Sol,3.141,0.1208,0,47.524,81.50,271.99,1271
Cimbria,Sol,2.681,0.1673,0,27.622,142.12,197.92,1275
Ucclia,Sol,3.177,0.0909,0,36.499,299.34,337.97,1276
Dolores,Sol,2.7,0.2372,0,32.587,310.35,47.31,1277
Baillauda,Sol,3.428,0.0473,0,50.83,317.70,92.79,1280
Jeanne,Sol,2.557,0.2078,0,25.716,258.29,72.75,1281
Utopia,Sol,3.124,0.1219,0,57.702,311.75,77.79,1282
Komsomolia,Sol,3.18,0.2219,0,29.569,263.20,234.76,1283
Latvia,Sol,2.645,0.1719,0,41.128,130.17,115.38,1284
Julietta,Sol,2.994,0.0499,0,42.430,346.34,68.67,1285
Santa,Sol,2.886,0.0657,0,31.378,4.90,52.94,1288
Phryne,Sol,3.012,0.0958,0,27.418,330.96,118.73,1291
Antwerpia,Sol,2.687,0.2318,0,37.199,14.50,312.95,1294
Deflotte,Sol,3.39,0.1240,0,47.407,25.31,274.88,1295
Andree,Sol,2.417,0.1438,0,26.298,133.89,236.63,1296
Nocturna,Sol,3.129,0.1450,0,37.802,76.26,58.77,1298
Marcelle,Sol,2.782,0.0066,0,28.194,49.38,350.18,1300
Werra,Sol,3.111,0.1752,0,35.041,179.54,354.17,1302
Luthera,Sol,3.228,0.1035,0,81.685,109.50,100.77,1303
Arosa,Sol,3.197,0.1206,0,43.613,123.10,148.09,1304
Scythia,Sol,3.144,0.0964,0,66.780,62.81,141.56,1306
Halleria,Sol,2.908,0.0107,0,46.951,131.36,163.82,1308
Hyperborea,Sol,3.206,0.1492,0,57.570,207.61,244.50,1309
Vassar,Sol,3.097,0.2108,0,36.28,34.02,261.61,1312
Bronislawa,Sol,3.209,0.0746,0,64.863,225.06,21.45,1315
Disa,Sol,2.988,0.2054,0,25.651,346.50,316.29,1319
Impala,Sol,2.991,0.2290,0,37.331,335.29,206.06,1320
Majuba,Sol,2.938,0.1702,0,37.137,85.85,345.05,1321
Tugela,Sol,3.237,0.1478,0,78.295,144.63,137.76,1323
Losaka,Sol,2.667,0.2253,0,26.336,343.52,278.29,1326
Devota,Sol,3.501,0.1352,0,53.697,255.12,174.01,1328
Spiridonia,Sol,3.172,0.0746,0,68.417,23.95,3.79,1330
Solvejg,Sol,3.097,0.1905,0,36.824,75.57,184.53,1331
Marconia,Sol,3.06,0.1332,0,46.796,259.90,348.96,1332
Lundmarka,Sol,2.915,0.0932,0,27.621,243.48,129.30,1334
Gerarda,Sol,2.911,0.0996,0,40.875,214.83,202.26,1337
Yvette,Sol,3.183,0.1272,0,29.451,40.67,224.65,1340
Potomac,Sol,3.982,0.1812,0,72.976,155.73,332.83,1345
Patria,Sol,2.573,0.0669,0,32.40,295.79,201.18,1347
Uzbekistania,Sol,3.197,0.0684,0,60.010,49.81,64.18,1351
Maartje,Sol,3.009,0.0962,0,39.013,77.75,96.96,1353
Botha,Sol,3.127,0.2158,0,41.732,181.25,250.21,1354
Nyanza,Sol,3.081,0.0513,0,60.895,239.56,301.99,1356
Khama,Sol,3.186,0.1550,0,38.321,19.42,282.89,1357
Prieska,Sol,3.119,0.0694,0,46.096,159.33,342.60,1359
Tarka,Sol,2.633,0.2147,0,33.316,113.97,287.91,1360
Leuschneria,Sol,3.082,0.1309,0,29.637,345.37,172.94,1361
Griqua,Sol,3.213,0.3728,0,26.936,256.17,261.72,1362
Piccolo,Sol,2.876,0.1393,0,27.55,208.47,282.89,1366
Ostanina,Sol,3.118,0.2110,0,42.401,288.77,128.09,1369
Resi,Sol,3.206,0.1208,0,27.155,49.28,103.13,1371
Haremari,Sol,2.765,0.1489,0,26.491,227.07,88.09,1372
Kniertje,Sol,2.68,0.1806,0,26.517,288.78,275.70,1384
Abastumani,Sol,3.437,0.0362,0,95.849,209.04,332.66,1390
Pierre,Sol,2.607,0.2034,0,26.44,259.22,44.08,1392
Idelsonia,Sol,2.717,0.2951,0,26.531,8.51,192.29,1403
Ajax,Sol,5.287,0.1142,0,83.990,359.08,61.41,1404
Trusanda,Sol,3.106,0.0954,0,35.423,229.05,187.34,1408
Isko,Sol,2.675,0.0572,0,35.54,251.42,207.42,1409
Brauna,Sol,3.002,0.0580,0,28.272,229.30,94.31,1411
Renauxa,Sol,3.018,0.1080,0,27.552,135.21,65.94,1416
Esperanto,Sol,3.089,0.0841,0,43.31,260.19,162.39,1421
Sundmania,Sol,3.19,0.0566,0,64.691,110.95,303.49,1424
Ruvuma,Sol,2.751,0.2109,0,35.406,151.73,241.63,1427
Mombasa,Sol,2.809,0.1416,0,52.464,280.63,252.48,1428
Margot,Sol,3.021,0.0677,0,27.178,27.52,147.69,1434
Salonta,Sol,3.148,0.0619,0,53.769,249.37,31.12,1436
Diomedes,Sol,5.212,0.0450,0,117.786,352.97,128.68,1437
Wendeline,Sol,3.159,0.2382,0,37.511,321.32,129.28,1438
Vogtia,Sol,3.995,0.1163,0,50.561,113.07,101.38,1439
Pannonia,Sol,3.154,0.1377,0,26.363,226.05,310.50,1444
Saldanha,Sol,3.205,0.2211,0,37.815,227.14,65.33,1456
Magnya,Sol,3.149,0.2291,0,29.188,44.18,328.54,1459
Jean-Jacques,Sol,3.126,0.0490,0,35.145,110.00,334.26,1461
Zamenhof,Sol,3.149,0.1082,0,27.366,290.17,186.90,1462
Nordenmarkia,Sol,3.152,0.1941,0,36.547,90.60,79.94,1463
Mashona,Sol,3.387,0.1279,0,89.160,147.75,350.39,1467
Linzia,Sol,3.125,0.0626,0,74.780,339.19,206.22,1469
Carla,Sol,3.158,0.0705,0,36.97,317.67,341.55,1470
Tornio,Sol,2.716,0.1192,0,28.719,180.25,93.87,1471
Bonsdorffia,Sol,3.207,0.2659,0,25.851,342.75,105.12,1477
Tubingia,Sol,3.019,0.0420,0,33.770,222.31,314.60,1481
Postrema,Sol,2.737,0.2059,0,40.871,181.99,126.97,1484
Boda,Sol,3.133,0.1237,0,25.671,216.97,107.21,1487
Attila,Sol,3.189,0.1511,0,26.789,194.83,26.40,1489
Sigrid,Sol,2.43,0.2019,0,28.905,14.56,1.63,1493
Lahti,Sol,3.104,0.2355,0,31.605,96.12,96.73,1498
Arenda,Sol,2.731,0.0887,0,35.518,108.11,273.80,1502
Oulu,Sol,3.96,0.1427,0,79.872,174.36,237.85,1512
Henry,Sol,2.621,0.1860,0,26.442,228.65,94.18,1516
Beograd,Sol,2.716,0.0445,0,39.524,153.61,229.57,1517
Kajaani,Sol,3.125,0.2407,0,31.166,19.82,338.94,1519
Imatra,Sol,3.111,0.0949,0,53.435,104.80,119.03,1520
Joensuu,Sol,3.11,0.1214,0,45.056,17.77,1.31,1524
Oterma,Sol,3.986,0.2014,0,56.319,248.97,294.69,1529
Borrelly,Sol,3.143,0.1912,0,26.791,191.26,250.35,1539
Kevola,Sol,2.849,0.0854,0,43.875,6.61,112.35,1540
Schalen,Sol,3.091,0.1174,0,42.374,251.36,163.83,1542
Izsak,Sol,3.173,0.1269,0,26.438,356.59,280.77,1546
Palomaa,Sol,2.786,0.0813,0,30.761,217.73,87.98,1548
Wingolfia,Sol,3.435,0.1085,0,28.65,350.31,267.12,1556
Jarnefelt,Sol,3.221,0.0280,0,54.977,7.61,301.06,1558
Fricke,Sol,3.196,0.1265,0,25.352,346.65,41.75,1561
Srbija,Sol,3.17,0.1981,0,41.681,58.37,232.68,1564
Alikoski,Sol,3.211,0.0823,0,69.242,49.44,110.41,1567
Evita,Sol,3.149,0.1329,0,36.346,19.37,248.35,1569
Posnania,Sol,3.109,0.2042,0,31.500,66.07,354.17,1572
Meyer,Sol,3.542,0.0342,0,57.785,15.91,260.16,1574
Fabiola,Sol,3.144,0.1675,0,27.357,49.68,246.78,1576
Kirkwood,Sol,3.928,0.2408,0,47.077,38.26,1.72,1578
Herrick,Sol,3.435,0.1260,0,46.925,131.91,279.48,1579
Abanderada,Sol,3.159,0.1229,0,29.508,321.88,89.72,1581
Martir,Sol,3.158,0.1262,0,37.252,310.90,128.13,1582
Antilochus,Sol,5.14,0.0536,0,108.842,16.09,186.83,1583
Union,Sol,2.927,0.3092,0,55.271,259.51,264.32,1585
Tanga,Sol,2.644,0.1116,0,26.572,82.96,189.72,1595
Itzigsohn,Sol,2.89,0.1304,0,45.534,264.72,160.11,1596
Giomus,Sol,3.133,0.1429,0,41.295,296.18,355.53,1599
Neva,Sol,2.756,0.0956,0,39.564,305.98,256.30,1603
Tombaugh,Sol,3.021,0.1030,0,32.33,299.45,38.20,1604
Milankovitch,Sol,3.02,0.0739,0,29.598,252.90,275.55,1605
Brenda,Sol,2.583,0.2491,0,29.64,328.57,229.25,1609
Goldschmidt,Sol,3.001,0.0693,0,48.007,210.26,346.66,1614
Bardwell,Sol,3.119,0.1829,0,29.139,94.83,254.07,1615
Vivian,Sol,3.141,0.1541,0,27.851,350.46,320.78,1623
Rabe,Sol,3.199,0.0917,0,26.270,197.54,26.28,1624
"The NORC",Sol,3.195,0.2308,0,53.317,64.01,286.65,1625
Strobel,Sol,3.011,0.0664,0,59.345,186.88,288.43,1628
Siebohme,Sol,2.654,0.1372,0,29.351,73.89,126.61,1632
Chimay,Sol,3.206,0.1239,0,37.428,150.39,68.37,1633
Swings,Sol,3.073,0.0459,0,52.994,54.55,238.16,1637
Bower,Sol,2.573,0.1479,0,35.676,328.86,106.52,1639
Tana,Sol,3.021,0.0984,0,25.66,160.36,0.50,1641
Waterfield,Sol,3.062,0.1100,0,28.146,150.03,106.45,1645
Menelaus,Sol,5.211,0.0215,0,42.716,222.33,294.01,1647
Heckmann,Sol,2.435,0.1632,0,30.202,172.68,56.81,1650
Bojeva,Sol,3.017,0.0866,0,25.115,100.57,332.97,1654
"Comas Sola",Sol,2.785,0.2315,0,35.943,303.72,323.45,1655
Punkaharju,Sol,2.783,0.2601,0,28.010,222.92,36.43,1659
Dagmar,Sol,3.139,0.1093,0,42.377,49.73,178.41,1669
Gezelle,Sol,3.172,0.2777,0,26.205,103.21,254.99,1672
Groeneveld,Sol,3.191,0.1265,0,32.386,322.26,4.29,1674
Hveen,Sol,3.156,0.1100,0,42.665,143.17,120.94,1678
Nevanlinna,Sol,3.116,0.1532,0,52.686,163.56,89.80,1679
Iguassu,Sol,3.098,0.1260,0,30.210,42.04,154.94,1684
"De Sitter",Sol,3.165,0.1596,0,29.661,178.36,294.62,1686
Glarona,Sol,3.165,0.1686,0,37.850,342.53,316.89,1687
Mayrhofer,Sol,3.042,0.0977,0,33.810,323.63,154.94,1690
Oort,Sol,3.162,0.1762,0,33.644,160.80,232.47,1691
Subbotina,Sol,2.787,0.1373,0,36.075,141.81,111.76,1692
Hertzsprung,Sol,2.797,0.2733,0,37.772,141.66,234.81,1693
Christophe,Sol,3.162,0.1075,0,26.234,220.47,132.60,1698
Kalahari,Sol,2.856,0.1434,0,34.645,35.43,241.31,1702
Polit,Sol,2.91,0.3079,0,28.706,171.11,248.74,1708
Angola,Sol,3.164,0.1543,0,66.892,110.76,17.87,1712
Peter,Sol,2.738,0.0902,0,26.656,132.60,317.14,1716
Wells,Sol,3.148,0.0494,0,43.576,23.81,137.90,1721
Klemola,Sol,3.014,0.0405,0,33.449,151.91,2.15,1723
Vladimir,Sol,2.711,0.0580,0,38.476,114.14,297.37,1724
Hoffmeister,Sol,2.789,0.0439,0,25.250,20.43,69.55,1726
Smuts,Sol,3.168,0.1285,0,54.784,321.59,203.14,1731
Zhongolovich,Sol,2.778,0.2293,0,26.425,64.32,186.28,1734
ITA,Sol,3.137,0.1304,0,61.865,123.04,275.10,1735
Brouwer,Sol,3.954,0.2089,0,62.524,132.65,47.73,1746
Mauderli,Sol,3.948,0.2165,0,44.908,66.07,198.53,1748
Telamon,Sol,5.144,0.1091,0,64.898,307.78,113.36,1749
Cunningham,Sol,3.942,0.1695,0,79.52,282.60,110.09,1754
Sandra,Sol,3.148,0.1278,0,34.765,289.54,332.16,1760
Cogshall,Sol,3.092,0.1199,0,26.970,14.15,80.23,1764
Wrubel,Sol,3.175,0.1779,0,38.299,232.84,265.55,1765
Makover,Sol,3.128,0.1696,0,46.886,344.52,316.43,1771
Kuiper,Sol,3.102,0.0171,0,39.952,319.55,312.19,1776
Kippes,Sol,3.017,0.0569,0,28.164,90.30,338.80,1780
Raahe,Sol,3.021,0.1115,0,25.532,353.32,347.07,1786
Patsayev,Sol,2.748,0.1419,0,29.394,34.71,74.93,1791
Finsen,Sol,3.134,0.1532,0,38.050,140.30,342.10,1794
Riga,Sol,3.354,0.0556,0,68.167,37.69,26.43,1796
Dirikis,Sol,3.15,0.1092,0,28.098,156.65,88.44,1805
Bruwer,Sol,3.138,0.1100,0,28.072,51.01,136.44,1811
Beethoven,Sol,3.153,0.1920,0,30.598,22.82,358.40,1815
Laputa,Sol,3.134,0.2289,0,54.165,75.52,166.00,1819
Kashirina,Sol,3.063,0.1073,0,27.016,70.14,222.96,1828
Mrkos,Sol,3.216,0.0989,0,29.351,0.97,80.70,1832
Ursa,Sol,3.215,0.0142,0,40.054,207.51,47.72,1838
Masaryk,Sol,3.415,0.1103,0,40.240,198.37,124.21,1841
Jarmila,Sol,2.654,0.1702,0,28.965,25.85,32.50,1843
Susilva,Sol,3.016,0.0510,0,26.800,13.20,72.28,1844
Kovalevskaya,Sol,3.212,0.0979,0,44.634,312.61,245.20,1859
Deiphobus,Sol,5.133,0.0461,0,118.220,5.24,359.95,1867
Thersites,Sol,5.311,0.1103,0,68.163,29.25,170.96,1868
Glaukos,Sol,5.243,0.0338,0,47.649,330.00,130.92,1870
Astyanax,Sol,5.232,0.0350,0,27.828,298.84,165.57,1871
Helenos,Sol,5.322,0.0495,0,34.046,340.78,115.13,1872
Agenor,Sol,5.228,0.0916,0,50.799,75.12,358.08,1873
Marsden,Sol,3.945,0.2055,0,35.642,86.87,305.93,1877
Pakhmutova,Sol,3.087,0.1154,0,35.243,324.35,83.95,1889
Konoshenkova,Sol,3.209,0.1385,0,25.68,189.75,15.80,1890
Moravia,Sol,3.245,0.0733,0,28.096,81.32,148.97,1901
Shaposhnikov,Sol,3.976,0.2220,0,83.430,26.76,266.97,1902
Adzhimushkaj,Sol,3,0.0480,0,27.642,292.74,356.64,1903
Mikhailov,Sol,3.046,0.0527,0,37.201,329.86,326.99,1910
Schubart,Sol,3.973,0.1720,0,67.476,336.46,181.47,1911
Lucifer,Sol,2.898,0.1417,0,34.437,293.67,341.88,1930
Lugano,Sol,2.674,0.1383,0,33.905,291.61,255.22,1936
Loretta,Sol,3.125,0.1246,0,30.365,310.48,189.49,1939
Whipple,Sol,3.06,0.0607,0,37.481,307.67,184.85,1940
Iso-Heikkila,Sol,3.156,0.0414,0,31.611,119.22,145.10,1947
Hesburgh,Sol,3.109,0.1439,0,37.501,103.28,339.53,1952
Chandra,Sol,3.106,0.1651,0,34.278,162.14,318.83,1958
Guisan,Sol,2.525,0.1229,0,27.004,107.27,263.66,1960
Dufour,Sol,3.193,0.1249,0,50.31,103.97,56.49,1961
Bezovec,Sol,2.422,0.2104,0,35.536,204.40,355.46,1963
Colocolo,Sol,3.185,0.0774,0,26.269,125.95,164.51,1973
Fedynskij,Sol,3.011,0.0874,0,36.413,141.59,127.02,1984
Hopmann,Sol,3.118,0.1563,0,35.51,261.12,233.55,1985
Shane,Sol,2.679,0.2070,0,25.15,297.97,89.90,1994
Hirayama,Sol,3.113,0.1178,0,38.277,327.40,356.17,1999
McCuskey,Sol,2.386,0.1145,0,25.733,115.23,185.76,2007
Konstitutsiya,Sol,3.217,0.0965,0,52.023,309.09,201.76,2008
Voloshina,Sol,3.117,0.1406,0,26.558,188.40,6.01,2009
Nortia,Sol,3.169,0.1148,0,42.769,51.63,310.17,2025
Ethel,Sol,3.071,0.1263,0,36.007,202.14,296.69,2032
Chalonge,Sol,3.111,0.1903,0,33.901,294.73,90.86,2040
Ortutay,Sol,3.105,0.1126,0,48.460,211.06,60.16,2043
Tamriko,Sol,3.012,0.0827,0,26.799,284.24,203.34,2052
Chiron,Sol,13.71,0.3766,0,166,184.80,339.62,2060
Aksnes,Sol,3.97,0.1828,0,46.003,31.35,297.02,2067
Dangreen,Sol,2.772,0.0978,0,34.322,66.93,321.42,2068
Hubble,Sol,3.154,0.1894,0,38.471,3.97,69.70,2069
Galle,Sol,3.138,0.2523,0,26.330,121.67,29.31,2097
Toronto,Sol,3.186,0.1217,0,35.874,278.05,290.43,2104
"Otto Schmidt",Sol,2.436,0.0044,0,28.999,85.49,75.58,2108
Tyumenia,Sol,3.058,0.1279,0,51.485,97.99,74.64,2120
Tanya,Sol,3.212,0.0319,0,37.736,254.68,187.96,2127
Zhukov,Sol,2.781,0.0797,0,30.787,321.31,337.26,2132
Priscilla,Sol,3.193,0.0474,0,34.957,259.39,140.89,2137
Kemerovo,Sol,2.988,0.0585,0,34.539,281.98,117.96,2140
Blaauw,Sol,3.212,0.1014,0,40.549,228.41,278.06,2145
Stentor,Sol,5.19,0.1022,0,50.755,354.18,274.25,2146
Epeios,Sol,5.217,0.0584,0,37.980,358.91,232.24,2148
Hannibal,Sol,3.125,0.2207,0,44.559,280.66,141.88,2152
Young,Sol,3.125,0.1768,0,27.115,226.34,23.93,2165
Maresjev,Sol,3.14,0.1152,0,28.324,200.78,166.79,2173
Fujian,Sol,3.178,0.0938,0,35.690,52.70,121.70,2184
Pyatigoriya,Sol,3.138,0.0797,0,29.217,225.98,147.16,2192
Jackson,Sol,3.103,0.0751,0,58.265,152.88,224.08,2193
Ellicott,Sol,3.436,0.0568,0,57.384,302.99,305.07,2196
Lyyli,Sol,2.59,0.4048,0,25.16,7.66,284.15,2204
Antenor,Sol,5.165,0.0129,0,97.658,188.88,307.61,2207
Pushkin,Sol,3.494,0.0308,0,40.850,192.53,3.34,2208
Carol,Sol,3.154,0.2687,0,25.860,328.42,137.58,2214
Eltigen,Sol,3.157,0.1699,0,28.800,23.51,173.50,2217
Wotho,Sol,3.045,0.1568,0,28.158,357.24,324.31,2218
Mannucci,Sol,3.152,0.1140,0,38.814,41.47,293.82,2219
Lermontov,Sol,3.122,0.1620,0,29.644,344.59,340.43,2222
Sarpedon,Sol,5.253,0.0190,0,77.480,20.89,52.82,2223
Soyuz-Apollo,Sol,3.141,0.1818,0,26.080,266.33,285.11,2228
Vittore,Sol,3.207,0.2156,0,41.688,15.56,274.28,2235
Paracelsus,Sol,3.195,0.1061,0,33.978,187.12,2.98,2239
Alcathous,Sol,5.178,0.0664,0,113.682,69.94,293.05,2241
Hekatostos,Sol,2.637,0.1336,0,29.28,283.73,316.50,2245
Bowell,Sol,3.95,0.0922,0,48.424,84.58,21.95,2246
Kanda,Sol,3.099,0.1149,0,26.361,99.20,146.22,2248
Yamamoto,Sol,3.19,0.0804,0,33.606,320.91,112.95,2249
Tikhov,Sol,2.712,0.1492,0,29.488,339.52,182.97,2251
Viipuri,Sol,2.693,0.0808,0,26.255,126.28,173.76,2258
Neoptolemus,Sol,5.198,0.0451,0,76.435,358.59,321.35,2260
Shaanxi,Sol,3.019,0.1085,0,26.702,120.89,316.24,2263
Sabrina,Sol,3.127,0.1788,0,34.192,5.19,79.10,2264
Tchaikovsky,Sol,3.397,0.1817,0,46.94,190.30,205.34,2266
Efremiana,Sol,3.129,0.0828,0,29.604,211.04,34.47,2269
Yazhi,Sol,3.156,0.1402,0,25.790,69.57,189.26,2270
Kiso,Sol,2.762,0.0609,0,31.229,19.44,179.04,2271
Kevo,Sol,3.041,0.0650,0,41.429,162.04,295.75,2291
Daghestan,Sol,3.167,0.1258,0,26.579,6.23,93.33,2297
Garuda,Sol,3.045,0.0545,0,40.139,32.21,341.34,2307
Olshaniya,Sol,3.143,0.1617,0,26.395,108.88,330.55,2310
"El Leoncito",Sol,3.645,0.0437,0,53.14,338.79,185.47,2311
Duboshin,Sol,3.966,0.1584,0,50.122,65.04,342.22,2312
Czechoslovakia,Sol,3.011,0.1079,0,25.258,123.32,14.10,2315
Blarney,Sol,3.166,0.1333,0,35.739,181.87,261.03,2320
Janice,Sol,3.082,0.1805,0,28.463,141.22,305.04,2324
Tololo,Sol,2.859,0.1592,0,42.550,179.83,259.44,2326
Ontake,Sol,3.182,0.0348,0,33.061,215.17,130.96,2330
Kalm,Sol,3.072,0.0608,0,31.734,324.80,244.33,2332
Fucik,Sol,3.023,0.0740,0,25.155,265.60,134.70,2345
Vinata,Sol,3.087,0.2140,0,25.398,229.80,108.16,2347
Kurchatov,Sol,3.109,0.1100,0,30.069,206.87,119.01,2352
Hirons,Sol,3.236,0.0394,0,43.072,320.83,355.68,2356
Phereclos,Sol,5.221,0.0474,0,94.625,34.13,76.06,2357
Cebriones,Sol,5.224,0.0392,0,95.976,35.84,54.49,2363
Vladvysotskij,Sol,3.084,0.2147,0,26.090,249.05,16.59,2374
Radek,Sol,3.18,0.2094,0,32.744,25.68,101.71,2375
Martynov,Sol,3.201,0.1186,0,41.583,241.86,300.96,2376
Pannekoek,Sol,2.89,0.1394,0,40.373,305.63,266.66,2378
Heiskanen,Sol,3.164,0.2764,0,33.157,56.09,176.51,2379
Suzuki,Sol,3.227,0.1926,0,48.406,217.64,114.17,2393
Astapovich,Sol,2.637,0.2416,0,31.285,97.68,103.22,2408
Vibeke,Sol,3.195,0.1299,0,31.782,235.53,46.67,2414
Nininger,Sol,3.237,0.0432,0,39.505,131.90,283.15,2421
Simonov,Sol,2.914,0.1138,0,25.654,65.01,5.42,2426
Tomeileen,Sol,3.005,0.0571,0,31.878,42.97,68.28,2443
Lederle,Sol,2.727,0.1320,0,29.925,230.27,141.86,2444
Sholokhov,Sol,2.792,0.1167,0,38.519,328.89,72.38,2448
Palamedes,Sol,5.13,0.0753,0,65.916,344.76,95.34,2456
Clavel,Sol,3.18,0.1683,0,25.943,252.26,231.96,2461
Guinevere,Sol,3.966,0.2770,0,35.688,204.70,183.10,2483
Kutuzov,Sol,3.19,0.1412,0,27.792,314.89,269.12,2492
Inge,Sol,3.16,0.0625,0,46.628,2.22,95.56,2494
Novorossijsk,Sol,3.106,0.0928,0,29.946,127.96,315.08,2520
Budovicium,Sol,3.117,0.1573,0,32.677,158.20,19.86,2524
O'Steen,Sol,3.151,0.1775,0,29.877,99.59,286.68,2525
Houzeau,Sol,3.15,0.1670,0,31.052,84.09,201.52,2534
Madeline,Sol,2.626,0.1631,0,26.004,198.07,314.30,2569
Yesenin,Sol,3.091,0.1272,0,27.887,275.99,6.17,2576
Harimaya-Bashi,Sol,3.2,0.0640,0,28.87,124.21,233.82,2582
Acamas,Sol,5.058,0.0860,0,25.874,2.50,280.24,2594
Kathryn,Sol,2.894,0.1641,0,25.144,273.28,1.12,2612
Plzen,Sol,3.045,0.0420,0,28.007,244.31,195.62,2613
Jiangxi,Sol,3.154,0.2377,0,49.084,78.73,350.11,2617
Goto,Sol,3.084,0.1757,0,44.723,345.52,271.76,2621
Hermod,Sol,3.072,0.1268,0,25.165,223.99,23.93,2630
Guizhou,Sol,3.039,0.1104,0,32.364,345.10,311.98,2632
"James Bradley",Sol,3.458,0.0489,0,33.726,107.75,332.63,2634
Millis,Sol,3.137,0.1004,0,27.878,228.30,333.57,2659
Gramme,Sol,3.177,0.2258,0,30.364,122.57,208.05,2666
Pandarus,Sol,5.194,0.0700,0,74.267,66.30,41.89,2674
Magion,Sol,2.45,0.1149,0,25.418,34.92,283.77,2696
Albina,Sol,3.558,0.0794,0,51.54,250.47,130.90,2697
Ueferji,Sol,3.195,0.1173,0,25.838,324.76,344.43,2707
Handley,Sol,3.118,0.1555,0,25.309,298.39,265.90,2718
"David Bender",Sol,3.034,0.1523,0,36.974,43.22,28.44,2725
Cucula,Sol,3.188,0.1891,0,44.841,316.09,133.36,2731
Hasek,Sol,3.16,0.0159,0,25.409,77.22,141.17,2734
"Cesky Krumlov",Sol,3.096,0.1287,0,29.804,113.77,300.91,2747
Idomeneus,Sol,5.193,0.0648,0,53.676,235.12,8.18,2759
Kacha,Sol,3.991,0.1193,0,57.90,307.00,150.48,2760
Tenojoki,Sol,3.192,0.1383,0,35.697,319.47,107.02,2774
Valdaj,Sol,3.169,0.0293,0,27.103,122.99,190.74,2793
Teucer,Sol,5.109,0.0883,0,89.430,294.59,48.11,2797
Zappala,Sol,3.136,0.1539,0,32.040,25.28,247.37,2813
Pien,Sol,2.726,0.1889,0,28.256,263.63,264.93,2816
Ahti,Sol,3.222,0.0491,0,39.975,278.79,146.89,2826
Bobhope,Sol,3.091,0.1873,0,41.361,202.51,339.63,2829
Ylppo,Sol,3.221,0.0727,0,27.994,225.45,71.92,2846
ASP,Sol,3.207,0.1905,0,25.793,351.32,51.07,2848
McGetchin,Sol,3.355,0.1382,0,35.066,166.48,251.30,2891
Filipenko,Sol,3.172,0.2030,0,69.492,13.87,94.23,2892
Peiroos,Sol,5.143,0.0774,0,86.884,351.25,172.85,2893
Memnon,Sol,5.244,0.0488,0,56.706,237.79,274.98,2895
Caltech,Sol,3.167,0.1039,0,58.678,62.92,296.94,2906
Shimoyama,Sol,2.978,0.1550,0,29.663,306.35,153.60,2908
Automedon,Sol,5.112,0.0278,0,88.574,341.30,197.09,2920
Kempchinsky,Sol,3.633,0.1052,0,29.283,358.23,195.23,2932
Perepadin,Sol,3.129,0.1179,0,46.653,242.49,121.85,2951
Scholl,Sol,3.956,0.2722,0,32.783,281.46,284.75,2959
Vladisvyat,Sol,3.196,0.1356,0,32.879,258.96,359.57,2967
Lautaro,Sol,3.34,0.1457,0,46.184,74.70,188.05,2976
Poltava,Sol,2.848,0.0578,0,30.690,146.95,86.74,2983
Hainan,Sol,3.415,0.1309,0,37.189,152.54,341.65,3024
Higson,Sol,3.201,0.0857,0,45.830,272.02,113.15,3025
Zhangguoxi,Sol,3.019,0.0311,0,25.58,296.28,4.57,3028
Krat,Sol,3.208,0.1007,0,43.101,256.58,320.01,3036
Alku,Sol,2.674,0.1859,0,29.876,328.93,330.95,3037
Alois,Sol,3.132,0.1075,0,27.493,45.49,330.52,3045
Strugatskia,Sol,3.094,0.2098,0,26.921,70.14,186.95,3054
Makhaon,Sol,5.218,0.0587,0,111.655,285.72,203.91,3063
Horrocks,Sol,3.147,0.1046,0,28.284,284.76,140.47,3078
Oujianquan,Sol,2.929,0.1862,0,35.887,172.42,184.11,3089
Herodotus,Sol,3.537,0.1145,0,30.346,58.61,9.24,3092
Omarkhayyam,Sol,3.494,0.0797,0,30.178,75.55,116.73,3095
Morabito,Sol,3.142,0.2395,0,26.209,180.20,290.30,3106
Claytonsmith,Sol,3.035,0.0568,0,36.569,69.53,259.17,3118
Landgraf,Sol,3.144,0.1283,0,35.886,220.18,266.10,3132
Kostinsky,Sol,3.984,0.2194,0,50.389,246.41,163.05,3134
Shantou,Sol,3.195,0.0217,0,36.648,120.66,117.06,3139
Buchar,Sol,3.42,0.0689,0,36.05,226.88,155.30,3141
Tosa,Sol,3.202,0.1170,0,33.479,200.28,271.91,3150
Jones,Sol,2.625,0.0896,0,30.952,17.51,289.99,3152
Ellington,Sol,2.855,0.1970,0,30.794,132.59,119.06,3156
Novikov,Sol,3.148,0.1478,0,29.876,233.17,322.37,3157
Nostalgia,Sol,3.154,0.1562,0,28.690,141.79,315.37,3162
Wangshouguan,Sol,3.181,0.1460,0,38.766,127.59,25.39,3171
Paolicchi,Sol,2.875,0.0324,0,41.327,135.53,24.01,3176
Graff,Sol,3.928,0.1138,0,35.910,137.95,268.18,3202
Liller,Sol,3.094,0.0657,0,34.919,52.58,129.73,3222
Victorplatt,Sol,3.012,0.0668,0,27.751,168.93,337.46,3237
Laocoon,Sol,5.225,0.1284,0,51.695,319.32,16.01,3240
Farinella,Sol,3.205,0.1518,0,36.553,218.00,317.16,3248
Bus,Sol,3.97,0.1553,0,31.104,25.00,302.78,3254
Brownlee,Sol,3.165,0.1224,0,25.579,61.05,314.61,3259
Drukar,Sol,3.407,0.0237,0,27.397,240.60,226.04,3273
Behounek,Sol,3.226,0.0132,0,31.455,164.00,98.93,3278
Paris,Sol,5.223,0.1284,0,118.790,0.93,150.42,3317
TARDIS,Sol,3.184,0.0181,0,28.238,324.16,85.26,3325
Gantrisch,Sol,3.156,0.2011,0,34.877,217.03,306.37,3330
Schaber,Sol,3.135,0.2210,0,26.538,221.67,66.48,3333
Treshnikov,Sol,3.18,0.1329,0,33.541,251.56,147.73,3339
Gerla,Sol,3.187,0.0467,0,34.628,128.91,21.67,3346
Duncombe,Sol,3.385,0.0903,0,33.331,305.53,351.00,3368
Sinon,Sol,5.298,0.0839,0,37.862,313.35,103.63,3391
Muazzez,Sol,3.392,0.1792,0,32.519,50.60,315.53,3396
Danby,Sol,3.966,0.2484,0,36.582,286.35,136.29,3415
Guth,Sol,3.21,0.0649,0,34.589,330.73,226.21,3419
Nakano,Sol,3.093,0.0484,0,44.339,297.99,45.25,3431
Inarradas,Sol,3.046,0.2031,0,25.252,317.99,349.81,3438
Yashin,Sol,3.146,0.1412,0,25.708,256.78,297.84,3442
Mentor,Sol,5.158,0.0726,0,126.288,356.15,130.27,3451
Amelin,Sol,3.19,0.0511,0,29.257,143.39,158.78,3471
Fichte,Sol,3.173,0.1265,0,29.558,163.90,230.63,3475
Dongguan,Sol,3.159,0.1949,0,31.53,224.32,25.37,3476
Colchagua,Sol,3.221,0.1195,0,26.312,66.32,108.02,3495
Protesilaos,Sol,5.282,0.1168,0,70.225,269.16,115.88,3540
Eurybates,Sol,5.202,0.0903,0,63.885,354.54,27.20,3548
Link,Sol,2.925,0.1586,0,26.515,345.25,29.84,3550
Devine,Sol,3.959,0.1296,0,32.74,260.85,176.77,3561
Talthybius,Sol,5.202,0.0383,0,73.730,168.37,203.19,3564
Ojima,Sol,3.204,0.1236,0,28.129,37.70,346.42,3565
Milanstefanik,Sol,3.936,0.1122,0,34.898,317.93,21.46,3571
Putilin,Sol,3.94,0.1959,0,49.135,161.05,179.37,3577
Carestia,Sol,3.216,0.2044,0,42.882,134.09,48.14,3578
Aisha,Sol,3.086,0.1021,0,27.696,111.36,108.92,3584
Meriones,Sol,5.178,0.0745,0,87.380,358.24,66.14,3596
Tumilty,Sol,2.981,0.1308,0,47.829,117.94,311.25,3614
Safronov,Sol,3.162,0.1327,0,25.209,102.06,111.74,3615
Sigyn,Sol,3.093,0.0782,0,38.505,335.04,159.32,3631
"Williams Bay",Sol,2.994,0.1272,0,29.710,145.62,293.51,3641
Frieden,Sol,2.791,0.0793,0,31.899,180.69,15.58,3642
Dermott,Sol,2.801,0.1033,0,26.754,13.31,218.41,3647
Kunming,Sol,3.117,0.2423,0,26.645,333.92,285.26,3650
Eupraksia,Sol,4.02,0.2020,0,36.657,139.86,39.58,3655
Lazarev,Sol,3.223,0.0811,0,25.830,314.65,215.53,3660
Dzus,Sol,2.727,0.1999,0,30.932,74.86,113.44,3687
Barringer,Sol,3.147,0.2020,0,27.494,29.15,184.02,3693
Sharon,Sol,3.93,0.2057,0,46.032,271.68,80.25,3694
Socus,Sol,5.212,0.1594,0,75.661,292.60,57.70,3708
Polypoites,Sol,5.23,0.0626,0,65.297,317.56,247.45,3709
Maxhell,Sol,3.319,0.1508,0,27.691,236.93,162.41,3727
Hurban,Sol,2.726,0.1621,0,26.996,251.33,42.72,3730
Hancock,Sol,3.234,0.1141,0,53.112,160.39,255.05,3731
Belinskij,Sol,3.185,0.1239,0,26.73,285.88,105.48,3747
Kathleen,Sol,3.159,0.1069,0,53.699,43.57,55.22,3754
Piironen,Sol,2.718,0.1180,0,32.15,178.04,165.75,3759
Romanskaya,Sol,3.125,0.2814,0,32.882,164.51,83.70,3761
Monroe,Sol,3.095,0.2148,0,26.601,168.61,224.07,3768
Chopin,Sol,3.132,0.1638,0,29.346,241.08,192.87,3784
Leonteus,Sol,5.221,0.0901,0,112.046,311.49,262.24,3793
Sthenelos,Sol,5.205,0.1472,0,34.531,29.46,36.14,3794
Thrasymedes,Sol,5.325,0.0241,0,34.285,342.38,205.85,3801
Tuchkova,Sol,3.048,0.0503,0,38.019,82.47,275.09,3803
Karma,Sol,2.577,0.1310,0,30.344,163.47,68.61,3811
Lidaksum,Sol,3.175,0.1185,0,33.611,355.13,35.75,3812
OISCA,Sol,3.984,0.1443,0,30.769,215.72,23.61,3843
Neyachenko,Sol,3.429,0.1563,0,25.817,200.35,260.36,3845
Yoritomo,Sol,3.224,0.0653,0,28.402,296.75,354.85,3902
Chao,Sol,2.933,0.0701,0,46.247,228.40,208.65,3906
Radzievskij,Sol,3.962,0.2205,0,29.870,227.19,283.00,3923
Tret'yakov,Sol,3.158,0.1950,0,51.289,323.18,206.59,3925
Huruhata,Sol,3.108,0.1022,0,30.644,113.17,251.37,3939
Shekhtelia,Sol,3.256,0.0470,0,29.305,236.15,13.59,3967
Voronikhin,Sol,2.851,0.1849,0,31.996,343.47,82.91,3971
Lise,Sol,2.757,0.0708,0,29.049,74.37,102.10,3976
Klepesta,Sol,2.886,0.0024,0,29.223,238.85,223.86,3978
Heimdal,Sol,3.945,0.2420,0,35.675,111.94,197.89,3990
Schumann,Sol,3.429,0.0943,0,36.115,230.92,117.33,4003
Euryalos,Sol,5.182,0.0570,0,45.515,331.74,77.04,4007
Heizman,Sol,3.419,0.0325,0,36.83,249.89,106.37,4014
Thestor,Sol,5.281,0.0577,0,68.733,326.36,198.34,4035
Miyamotoyohko,Sol,3.017,0.0553,0,26.244,84.24,159.94,4041
Lowengrub,Sol,3.231,0.1004,0,31.322,196.50,245.19,4045
Demophon,Sol,5.249,0.1205,0,45.683,311.39,59.91,4057
Deipylos,Sol,5.242,0.1559,0,84.043,281.80,307.52,4060
Euforbo,Sol,5.187,0.1194,0,95.619,341.58,318.50,4063
Menestheus,Sol,5.143,0.0743,0,67.625,261.48,316.38,4068
Rostovdon,Sol,3.204,0.1578,0,25.982,355.16,126.36,4071
Podalirius,Sol,5.268,0.1222,0,85.495,9.04,356.70,4086
Hrabal,Sol,3.119,0.0388,0,45.507,125.14,177.76,4112
Stasik,Sol,3.167,0.1048,0,29.130,129.67,100.26,4131
Kalchas,Sol,5.17,0.0447,0,46.462,39.65,165.64,4138
Branham,Sol,3.004,0.1208,0,33.748,267.75,220.06,4140
Vladvasil'ev,Sol,3.156,0.0332,0,32.494,46.03,228.55,4144
Celsius,Sol,3.398,0.1625,0,37.303,30.79,32.14,4169
Tamashima,Sol,3.107,0.0679,0,29.910,151.40,275.43,4186
Shuya,Sol,3.895,0.0273,0,36.714,3.57,222.89,4196
Orosz,Sol,3.161,0.2272,0,32.985,247.55,13.64,4201
Kiselev,Sol,3.205,0.0718,0,30.413,44.85,218.47,4208
Briggs,Sol,3.157,0.0818,0,31.303,116.11,13.42,4209
Susa,Sol,2.918,0.1867,0,34.730,145.60,181.85,4224
Damiaan,Sol,2.865,0.2560,0,33.065,238.61,133.00,4226
"van den Bergh",Sol,3.945,0.1338,0,28.461,242.76,19.90,4230
Lidov,Sol,3.439,0.0391,0,32.880,297.31,145.50,4236
Garibaldi,Sol,3.989,0.1603,0,38.606,119.76,94.72,4317
Bata,Sol,3.22,0.1034,0,25.790,124.79,96.44,4318
Poulydamas,Sol,5.237,0.0980,0,82.032,257.80,159.67,4348
Tiburcio,Sol,2.618,0.2425,0,28.091,242.35,281.32,4349
Ortizmoreno,Sol,3.245,0.0587,0,30.74,276.47,34.64,4436
Sykes,Sol,3.163,0.2537,0,26.693,322.24,291.95,4438
Carolyn,Sol,3.989,0.2815,0,28.645,249.22,117.26,4446
Sobinov,Sol,3.138,0.0963,0,30.02,170.33,309.69,4449
Bihoro,Sol,2.92,0.1843,0,38.742,290.40,30.91,4460
Dracius,Sol,5.199,0.0619,0,76.595,289.97,7.86,4489
Eurypylos,Sol,5.218,0.0539,0,45.524,357.86,179.62,4501
Phoinix,Sol,5.135,0.0973,0,63.836,19.55,84.80,4543
Massachusetts,Sol,2.613,0.0682,0,33.036,0.53,37.27,4547
Fanynka,Sol,3.187,0.1184,0,26.315,198.28,4.46,4554
Pizarro,Sol,3.11,0.1055,0,29.012,276.44,119.79,4609
Zadunaisky,Sol,3.211,0.0706,0,32.685,345.79,270.95,4617
Falta,Sol,3.212,0.0620,0,28.824,171.59,12.29,4663
Takuboku,Sol,3.188,0.0480,0,28.115,286.65,177.02,4672
Khryses,Sol,5.196,0.1219,0,37.766,273.98,66.23,4707
Polydoros,Sol,5.247,0.0607,0,54.964,239.49,103.04,4708
Ennomos,Sol,5.266,0.0228,0,91.433,328.95,76.74,4709
Iwaizumi,Sol,3.146,0.1374,0,28.778,295.79,350.42,4712
Medesicaste,Sol,5.111,0.0502,0,62.097,301.64,344.18,4715
Agelaos,Sol,5.204,0.1120,0,50.378,258.27,315.17,4722
Froeschle,Sol,3.159,0.0725,0,29.981,300.88,143.71,4732
Panthoos,Sol,5.27,0.0098,0,53.025,327.32,175.13,4754
Hartley,Sol,3.171,0.2384,0,34.349,308.08,26.54,4768
Frankdrake,Sol,3.162,0.0693,0,27.570,270.20,184.81,4772
Iphidamas,Sol,5.159,0.0454,0,49.528,211.85,163.84,4791
Lykaon,Sol,5.253,0.0924,0,50.870,289.15,283.61,4792
Asteropaios,Sol,5.201,0.0916,0,57.647,261.76,90.02,4805
Dares,Sol,5.131,0.0433,0,42.770,240.72,168.21,4827
Misenus,Sol,5.164,0.0411,0,45.954,153.26,129.59,4828
Sergestus,Sol,5.178,0.0495,0,32.220,321.40,118.99,4829
Palinurus,Sol,5.263,0.1414,0,52.058,299.36,209.67,4832
Meges,Sol,5.231,0.0930,0,80.165,8.95,281.26,4833
Thoas,Sol,5.207,0.1378,0,72.331,325.57,352.58,4834
Asaeus,Sol,5.197,0.2520,0,30.175,292.94,355.22,4835
Medon,Sol,5.214,0.1086,0,63.277,302.21,33.91,4836
Bickerton,Sol,3.197,0.1379,0,28.328,179.12,45.47,4837
Megantic,Sol,3.091,0.1176,0,26.690,68.78,222.89,4843
Gubbio,Sol,2.632,0.1454,0,25.733,226.89,15.73,4860
Polites,Sol,5.17,0.0193,0,57.251,35.26,280.60,4867
Tomoegozen,Sol,3.106,0.1705,0,28.787,197.03,98.47,4896
Thessandrus,Sol,5.203,0.0438,0,51.263,320.45,270.91,4902
Rephiltim,Sol,3.123,0.0517,0,35.676,8.18,358.40,4930
Texstapa,Sol,3.113,0.0159,0,25.603,61.12,291.35,4932
Askalaphus,Sol,5.321,0.0490,0,48.209,132.05,206.38,4946
Niinoama,Sol,3.149,0.0104,0,35.842,54.89,317.53,4959
Glia,Sol,3.151,0.0380,0,30.022,135.20,229.31,4967
Showa,Sol,3.43,0.0766,0,27.958,59.45,130.34,4973
Eurymedon,Sol,5.264,0.0865,0,36.960,29.24,335.12,5012
Roccapalumba,Sol,3.15,0.0850,0,32.547,194.25,68.26,5022
Agapenor,Sol,5.164,0.0529,0,27.850,358.85,87.31,5023
Bechmann,Sol,3.226,0.0550,0,26.630,359.45,120.66,5024
Mecisteus,Sol,5.193,0.0763,0,39.843,337.31,74.16,5025
Androgeos,Sol,5.302,0.0668,0,59.786,332.49,345.17,5027
Halaesus,Sol,5.26,0.1315,0,50.770,346.54,11.90,5028
Theotes,Sol,5.195,0.0352,0,41.899,291.80,103.89,5041
Arai,Sol,3.108,0.0647,0,28.47,125.23,188.82,5070
Imbrius,Sol,5.199,0.1099,0,49.251,311.39,16.79,5119
Bitias,Sol,5.267,0.1122,0,47.987,311.89,24.11,5120
Cynus,Sol,5.228,0.1031,0,35.387,288.74,32.22,5123
Achaemenides,Sol,5.245,0.0260,0,51.922,297.99,350.49,5126
Ilioneus,Sol,5.198,0.0121,0,60.711,270.11,105.70,5130
Achates,Sol,5.186,0.2732,0,80.958,331.74,331.79,5144
Pholus,Sol,20.33,0.5705,0,190,119.58,354.71,5145
Gierasch,Sol,2.657,0.1739,0,27.494,21.97,39.77,5153
Yabuki,Sol,3.189,0.0877,0,31.503,255.00,300.63,5192
Oloosson,Sol,5.203,0.0513,0,48.197,5.79,104.51,5209
Nastes,Sol,5.149,0.0449,0,29.035,93.69,47.10,5233
Amphilochos,Sol,5.18,0.0289,0,36.689,72.69,128.38,5244
Ulysses,Sol,5.226,0.1228,0,76.147,336.35,344.09,5254
Rhoeo,Sol,5.166,0.0781,0,53.275,273.94,230.09,5258
Epeigeus,Sol,5.21,0.0722,0,44.741,142.19,201.31,5259
Brucegoldberg,Sol,3.081,0.1699,0,33.25,208.81,93.41,5262
Arrius,Sol,3.201,0.0144,0,25.615,136.25,320.76,5263
Telephus,Sol,5.209,0.1120,0,68.472,284.00,359.15,5264
Pyrrhus,Sol,5.196,0.1505,0,48.356,335.79,356.78,5283
Orsilocus,Sol,5.226,0.0845,0,50.159,319.45,343.25,5284
Krethon,Sol,5.186,0.0509,0,49.606,30.39,257.04,5285
Filatov,Sol,3.158,0.0234,0,45.693,287.68,252.76,5316
Missing,Sol,3.112,0.1461,0,25.260,193.06,64.05,5336
Aoki,Sol,3.2,0.0971,0,30.782,128.05,3.12,5337
Rozhdestvenskij,Sol,3.238,0.0141,0,28.062,349.64,21.46,5360
Vitagliano,Sol,3.966,0.0816,0,34.807,129.90,338.45,5368
Hokutosei,Sol,3.169,0.1011,0,38.657,230.73,249.98,5374
Kameoka,Sol,3.155,0.1267,0,26.301,276.49,3.36,5435
Eumelos,Sol,5.203,0.0781,0,37.696,291.16,220.73,5436
Lorre,Sol,2.748,0.2758,0,28.072,113.69,238.65,5438
Mulius,Sol,5.112,0.0749,0,35.096,354.67,95.66,5476
Rumyantsev,Sol,3.413,0.0481,0,25.518,340.34,278.18,5495
Cloanthus,Sol,5.247,0.1182,0,39.773,355.34,121.59,5511
Durisen,Sol,2.94,0.2196,0,36.475,120.03,308.07,5567
Jimmiller,Sol,3.165,0.0510,0,25.856,223.01,111.21,5594
Rausudake,Sol,3.982,0.0526,0,45.677,235.71,9.10,5603
Gyas,Sol,5.168,0.1196,0,28.168,329.82,331.13,5637
Deikoon,Sol,5.238,0.1068,0,41.455,14.31,92.87,5638
Axius,Sol,5.144,0.1669,0,59.295,296.14,269.02,5648
Traversa,Sol,3.142,0.1584,0,26.88,313.77,228.87,5651
Amphimachus,Sol,5.212,0.0772,0,53.921,18.15,108.82,5652
Hildebrand,Sol,3.964,0.2355,0,34.37,245.15,1.82,5661
Rosstaylor,Sol,3.177,0.1107,0,29.619,78.81,197.61,5670
Eneev,Sol,3.943,0.1647,0,38.81,242.69,296.01,5711
Somerville,Sol,3.14,0.2164,0,28.306,57.03,103.15,5771
Peterson,Sol,3.493,0.0326,0,27.077,142.03,110.98,5833
Bhanji,Sol,3.178,0.0081,0,28.39,200.97,109.93,5849
Mickiewicz,Sol,3.046,0.1569,0,26.414,351.97,39.88,5889
Rhigmus,Sol,5.146,0.0986,0,31.248,34.50,141.99,5907
Kathywhaler,Sol,3.539,0.0899,0,38.097,305.42,247.35,5914
Shouichi,Sol,3,0.1132,0,29.417,231.59,148.76,5922
Pindarus,Sol,3.97,0.1193,0,30.402,117.43,104.68,5928
Eetion,Sol,5.226,0.0921,0,40.408,279.70,158.64,6002
Robbia,Sol,3.324,0.1005,0,29.368,124.98,192.74,6057
Aulis,Sol,5.3,0.0583,0,59.568,348.72,74.59,6090
Missing,Sol,3.427,0.1952,0,28.761,119.31,149.61,6103
Johnfletcher,Sol,3.213,0.0632,0,30.720,212.78,86.03,6137
Kondojiro,Sol,4.769,0.3597,0,32.492,243.25,96.35,6144
Missing,Sol,3.253,0.1234,0,27.451,142.61,132.10,6222
Chikushi,Sol,3.934,0.0722,0,37.4,335.32,207.15,6237
Univermoscow,Sol,3.199,0.0796,0,28.38,155.40,232.73,6355
Dubinin,Sol,3.205,0.1062,0,31.902,275.65,39.90,6359
Walker,Sol,3.181,0.1612,0,42.129,136.91,187.53,6372
Takashimizuno,Sol,3.215,0.1333,0,25.221,123.09,246.84,6392
Refugium,Sol,3.142,0.1607,0,29.642,67.11,75.10,6475
Leitus,Sol,5.158,0.0522,0,50.951,359.92,147.91,6545
Gvishiani,Sol,3.398,0.1921,0,25.393,189.28,240.47,6574
Kolya,Sol,3.169,0.1858,0,29.519,116.99,112.27,6619
Missing,Sol,3.186,0.0960,0,27.930,79.11,119.56,6785
Masuisakura,Sol,3.086,0.2129,0,26.82,309.57,348.42,6794
Fukui,Sol,3.391,0.0997,0,29.616,231.44,289.62,6924
Komatsusakyo,Sol,3.214,0.1234,0,26.889,58.08,228.01,6983
Lewiscarroll,Sol,3.973,0.1869,0,48.053,192.98,247.94,6984
Laomedon,Sol,5.176,0.1022,0,37.549,28.04,58.65,6997
Tithonus,Sol,5.178,0.0714,0,27.828,341.71,259.42,6998
Hiera,Sol,5.13,0.1040,0,59.150,342.61,123.35,7119
Longtom,Sol,3.178,0.1683,0,29.896,117.74,290.46,7131
Euneus,Sol,5.154,0.0648,0,39.770,345.26,306.93,7152
Semois,Sol,3.994,0.1757,0,25.526,112.21,290.16,7174
Hypsenor,Sol,5.127,0.0376,0,47.731,14.28,128.11,7352
Xanthomalitia,Sol,3.926,0.0352,0,32.471,226.45,190.64,7394
Prylis,Sol,5.2,0.0646,0,42.893,17.76,207.16,7543
Missing,Sol,3.21,0.1458,0,37.034,44.41,260.75,7588
Cindygraber,Sol,3.152,0.0737,0,38.463,25.72,271.37,7605
Cteatus,Sol,5.216,0.0541,0,71.839,289.20,227.43,7641
Dolon,Sol,5.267,0.0600,0,42.516,262.32,218.66,7815
Kaseda,Sol,3.147,0.1515,0,28.51,279.18,37.20,7895
Nesvorny,Sol,3.049,0.0877,0,25.143,144.77,164.64,7999
Anius,Sol,5.203,0.0931,0,37.873,23.89,33.58,8060
Peterthomas,Sol,3.946,0.2078,0,25.629,60.21,287.62,8086
Tyndareus,Sol,5.196,0.0485,0,27.088,49.66,57.77,8125
Agrius,Sol,5.157,0.0429,0,27.174,136.21,265.91,8241
Eurysaces,Sol,5.309,0.0464,0,26.210,93.67,116.06,8317
Missing,Sol,3.989,0.1981,0,27.689,253.69,257.79,8376
Asbolus,Sol,18.04,0.6211,0,66,91.41,290.64,8405
AMOS,Sol,3.886,0.0283,0,49.91,239.77,85.11,8721
Sawaishujiro,Sol,3.93,0.0511,0,30.135,28.68,327.15,8915
Tianjindaxue,Sol,3.408,0.1191,0,37.122,68.28,169.57,8917
Mnesthus,Sol,5.217,0.0655,0,49.151,306.76,159.45,9023
Othryoneus,Sol,5.312,0.0159,0,32.186,212.50,13.28,9030
Rhesus,Sol,5.161,0.1309,0,42.306,316.30,173.75,9142
Erichthonios,Sol,5.261,0.0545,0,27.532,352.02,311.61,9430
Pytho,Sol,5.116,0.0866,0,38.358,14.81,185.63,9431
Hohmann,Sol,3.958,0.2339,0,27.664,352.90,288.11,9661
Lycomedes,Sol,5.082,0.0380,0,31.736,341.24,59.26,9694
Nauplius,Sol,5.228,0.1283,0,33.423,311.20,274.42,9712
Deipyrus,Sol,5.242,0.0559,0,32.771,12.75,152.58,9790
Thronium,Sol,5.19,0.0486,0,68.033,25.99,115.41,9799
Eurymachos,Sol,5.197,0.0047,0,28.076,268.94,102.14,9818
Murillo,Sol,3.949,0.1269,0,25.941,224.63,4.29,9829
Hecamede,Sol,5.161,0.0262,0,49.518,124.74,6.77,9857
Malytheatre,Sol,3.144,0.1148,0,25.855,344.30,244.46,10007
Chariklo,Sol,15.82,0.1677,0,302,103.26,242.87,10199
Amphiaraos,Sol,5.278,0.0072,0,26.826,314.55,325.68,10247
Mameta,Sol,3.995,0.2557,0,25.184,52.42,258.23,10608
Phemios,Sol,5.196,0.0311,0,30.963,316.41,231.89,10664
Missing,Sol,3.935,0.0685,0,33.20,269.47,173.28,10889
Missing,Sol,5.181,0.0204,0,37.047,118.25,18.42,11089
Laertes,Sol,5.14,0.0315,0,41.093,355.29,327.70,11252
Missing,Sol,5.194,0.0909,0,25.570,308.13,217.41,11275
Leucus,Sol,5.298,0.0654,0,34.155,11.98,160.41,11351
Iphinous,Sol,5.214,0.0677,0,68.977,71.20,119.53,11395
Missing,Sol,5.215,0.0650,0,37.109,32.49,177.77,11396
Missing,Sol,5.261,0.0630,0,45.431,21.78,151.29,11397
Alcinoos,Sol,5.33,0.0144,0,32.354,343.95,57.52,11428
Demodokus,Sol,5.236,0.0313,0,37.630,286.09,91.39,11429
Missing,Sol,5.149,0.0485,0,32.139,298.06,6.46,11487
Thersilochos,Sol,5.175,0.1438,0,49.960,299.88,128.50,11509
Solikamsk,Sol,3.949,0.2400,0,29.686,211.73,49.29,11542
Boucolion,Sol,5.274,0.1534,0,51.136,334.63,182.24,11552
Asios,Sol,5.279,0.0651,0,41.561,35.42,127.67,11554
Missing,Sol,5.134,0.1281,0,31.327,324.79,89.12,11663
Missing,Sol,5.233,0.0434,0,26.794,321.60,159.56,11869
Echemmon,Sol,5.181,0.0927,0,31.190,289.22,111.56,11887
Angel,Sol,3.201,0.1578,0,27.233,327.02,220.74,11911
Aretaon,Sol,5.227,0.0693,0,39.151,311.12,87.19,12052
Missing,Sol,5.215,0.2094,0,53.202,335.00,304.47,12126
Imranakperov,Sol,3.2,0.1074,0,25.452,66.66,82.30,12235
Actor,Sol,5.174,0.1250,0,30.252,2.51,177.86,12238
Koon,Sol,5.107,0.0685,0,37.861,337.73,93.41,12242
Yoshitoki,Sol,3.171,0.0334,0,27.53,269.68,73.73,12365
Prothoon,Sol,5.238,0.0725,0,63.835,354.49,65.76,12444
Missing,Sol,3.203,0.0363,0,30.143,149.11,275.20,12559
Buckjean,Sol,2.984,0.0692,0,25.76,97.93,17.88,12583
Ascanios,Sol,5.155,0.1487,0,25.102,330.87,342.16,12649
Peiraios,Sol,5.175,0.0580,0,26.458,353.34,325.51,12658
Alkimos,Sol,5.239,0.0367,0,47.819,314.92,161.91,12714
Missing,Sol,5.241,0.0939,0,32.174,328.07,273.81,12921
Periboea,Sol,5.244,0.0404,0,54.077,330.41,128.73,12929
Missing,Sol,3.975,0.1595,0,27.435,127.53,211.56,13035
Missing,Sol,5.148,0.1240,0,36.148,16.90,97.51,13060
Podarkes,Sol,5.175,0.0119,0,28.958,60.10,285.17,13062
Missing,Sol,5.214,0.1138,0,30.901,24.65,66.65,13182
Missing,Sol,5.221,0.0905,0,41.483,89.21,315.53,13183
Augeias,Sol,5.177,0.0494,0,33.962,95.68,99.12,13184
Echion,Sol,5.261,0.0746,0,27.554,271.65,166.30,13229
Dannymeyer,Sol,3.161,0.0119,0,31.63,171.55,329.17,13244
Missing,Sol,5.179,0.0275,0,28.324,220.22,118.03,13362
Missing,Sol,5.223,0.1053,0,33.302,308.67,355.80,13366
Missing,Sol,5.24,0.0484,0,25.420,8.82,304.43,13372
Missing,Sol,5.233,0.0459,0,36.053,82.55,167.82,13385
Antiphos,Sol,5.191,0.0080,0,25.326,8.94,86.33,13463
Missing,Sol,5.265,0.0705,0,29.285,23.12,164.18,13694
Missing,Sol,3.365,0.1122,0,37.543,59.16,127.55,13832
Neely,Sol,3.113,0.1987,0,26.385,115.45,186.55,13860
Missing,Sol,5.14,0.0853,0,28.530,357.89,25.33,14235
Missing,Sol,5.214,0.0921,0,57.54,333.50,127.77,14268
Missing,Sol,5.211,0.0321,0,43.169,43.79,6.93,14690
Missing,Sol,5.239,0.0417,0,25.942,354.45,286.29,14707
Masanoriabe,Sol,3.198,0.0223,0,25.708,349.27,340.24,14962
Missing,Sol,5.177,0.2036,0,33.292,345.93,165.09,15033
Missing,Sol,3.217,0.2020,0,35.539,172.53,99.82,15161
Paquet,Sol,3.985,0.2163,0,25.417,231.14,64.33,15278
Missing,Sol,5.132,0.0256,0,35.516,263.59,315.55,15398
Dexius,Sol,5.211,0.0452,0,87.646,332.15,179.07,15436
Eioneus,Sol,5.294,0.0233,0,62.519,350.05,283.98,15440
Missing,Sol,5.122,0.0149,0,53.100,147.04,180.08,15502
Missing,Sol,5.244,0.0695,0,27.941,231.95,170.86,15521
Missing,Sol,5.212,0.1545,0,36.433,60.52,168.83,15527
Missing,Sol,5.182,0.0850,0,39.767,319.77,302.17,15535
Missing,Sol,5.208,0.1442,0,28.974,321.95,258.90,15536
Missing,Sol,5.269,0.0456,0,42.208,293.73,333.41,15539
Missing,Sol,3.151,0.1961,0,29.594,300.07,217.63,15562
Missing,Sol,3.993,0.1852,0,32.265,174.05,224.61,15638
Periphas,Sol,5.198,0.1055,0,36.200,18.44,24.01,15663
Missing,Sol,39.74,0.1886,0,328,72.45,318.44,15789
Missing,Sol,5.176,0.0474,0,43.530,191.36,227.65,15977
Charops,Sol,5.139,0.1260,0,63.191,358.88,353.76,16070
Missing,Sol,5.187,0.0830,0,36.774,30.69,278.12,16099
Missing,Sol,3.102,0.0195,0,25.982,199.72,176.49,16133
Missing,Sol,3.192,0.1016,0,27.713,318.52,83.06,16461
Daitor,Sol,5.059,0.0421,0,43.861,24.40,159.87,16560
Missing,Sol,5.198,0.2003,0,35.390,298.75,239.31,16667
Missing,Sol,3.156,0.0983,0,31.056,245.13,90.00,16785
Missing,Sol,5.223,0.1135,0,38.583,283.76,202.72,16956
Missing,Sol,3.967,0.1126,0,25.310,102.19,40.81,16970
Iphthime,Sol,5.18,0.0708,0,57.341,16.59,137.04,16974
Missing,Sol,2.77,0.1708,0,27.04,244.59,82.67,17109
Missing,Sol,5.137,0.0835,0,40.946,331.14,356.99,17171
Missing,Sol,5.221,0.0582,0,34.482,304.14,214.76,17172
Missing,Sol,3.124,0.2243,0,25.232,260.39,229.37,17252
Missing,Sol,3.173,0.1033,0,29.731,289.79,18.01,17297
Caniff,Sol,4.002,0.1363,0,25.368,144.06,118.95,17305
Aisakos,Sol,5.166,0.0737,0,35.761,199.73,84.91,17314
Pheidippos,Sol,5.16,0.0979,0,28.749,352.06,46.79,17351
Missing,Sol,5.271,0.0781,0,44.904,273.31,117.32,17365
Missing,Sol,5.165,0.0838,0,27.569,292.94,236.35,17417
Missing,Sol,5.223,0.0642,0,33.138,284.56,330.12,17419
Charleroi,Sol,3.934,0.1145,0,30.297,16.75,327.30,17428
Hippasos,Sol,5.176,0.0723,0,53.975,2.46,216.36,17492
Missing,Sol,5.202,0.0587,0,42.736,315.94,153.09,18046
Missing,Sol,5.243,0.0188,0,36.222,40.99,129.92,18054
Zarex,Sol,5.124,0.0578,0,36.431,21.79,154.08,18060
Missing,Sol,5.147,0.0500,0,30.334,326.48,34.20,18062
Missing,Sol,5.157,0.0580,0,31.122,24.82,65.10,18063
Missing,Sol,5.103,0.0161,0,33.664,198.08,203.84,18137
Drymas,Sol,5.178,0.0686,0,28.885,32.88,208.44,18278
Missing,Sol,3.102,0.0851,0,27.533,282.43,16.36,18331
Demoleon,Sol,5.288,0.0933,0,33.474,322.90,90.17,18493
Missing,Sol,5.216,0.1003,0,32.111,304.65,122.25,19018
Missing,Sol,5.209,0.1138,0,42.613,321.83,224.71,19020
Missing,Sol,5.146,0.0740,0,31.668,309.35,36.21,19725
Missing,Sol,3.071,0.0631,0,47.698,20.21,114.07,19737
Missing,Sol,5.194,0.0505,0,37.972,339.31,103.64,19844
Varuna,Sol,42.76,0.0578,0,900,118.82,264.39,20000
Missing,Sol,5.19,0.0108,0,27.467,219.39,154.28,20144
Missing,Sol,5.208,0.1307,0,45.804,326.30,4.87,20424
Missing,Sol,5.199,0.1470,0,27.176,341.92,6.22,20428
Missing,Sol,5.23,0.1294,0,26.367,20.05,271.97,20716
Missing,Sol,5.284,0.1467,0,34.120,304.14,351.93,20720
Missing,Sol,5.218,0.0652,0,50.961,7.30,92.92,20729
Missing,Sol,5.207,0.1371,0,27.043,279.12,183.51,20739
Fountainhills,Sol,4.287,0.4688,0,37.31,124.02,236.35,20898
Missing,Sol,5.094,0.1154,0,26.203,330.01,10.80,20995
Pandion,Sol,5.217,0.1026,0,28.550,27.32,183.89,21284
Missing,Sol,5.194,0.0738,0,29.196,291.80,48.08,21370
Missing,Sol,5.206,0.1356,0,35.178,6.45,258.28,21595
Missing,Sol,5.205,0.1175,0,28.312,334.09,210.99,21599
Missing,Sol,5.234,0.0357,0,54.909,325.40,209.45,21601
Orus,Sol,5.124,0.0377,0,50.810,323.10,180.38,21900
Missing,Sol,5.153,0.1065,0,39.487,298.70,202.37,22014
Missing,Sol,5.179,0.0370,0,27.680,346.60,322.99,22052
Missing,Sol,5.199,0.0528,0,34.000,259.11,230.44,22054
Missing,Sol,5.259,0.0257,0,31.816,107.26,215.10,22055
Missing,Sol,5.192,0.1092,0,25.376,241.04,320.81,22059
Missing,Sol,5.167,0.0444,0,48.190,257.46,225.64,22149
Missing,Sol,5.177,0.0712,0,39.753,242.67,145.45,22180
Missing,Sol,5.198,0.1724,0,33.744,333.86,320.41,23075
Missing,Sol,3.141,0.1143,0,29.213,328.20,11.64,23099
Missing,Sol,5.256,0.1327,0,32.954,25.98,63.08,23119
Missing,Sol,5.339,0.0592,0,25.883,325.67,124.80,23123
Pheidas,Sol,5.266,0.0504,0,66.230,272.14,253.68,23135
Missing,Sol,4.002,0.1244,0,28.210,31.24,102.08,23186
Missing,Sol,5.109,0.0562,0,29.690,307.01,132.79,23285
Missing,Sol,5.177,0.0485,0,26.310,263.87,270.57,23463
Missing,Sol,5.206,0.0854,0,27.621,178.44,302.52,23480
Missing,Sol,5.228,0.1624,0,27.292,333.67,235.38,23624
Missing,Sol,5.217,0.0373,0,32.389,311.08,225.13,23694
Missing,Sol,5.231,0.0999,0,46.001,302.12,234.54,23958
Missing,Sol,5.255,0.1619,0,31.358,301.80,28.76,23968
Missing,Sol,5.266,0.0670,0,32.404,312.77,12.26,23970
Missing,Sol,5.192,0.0459,0,35.342,328.60,164.39,24244
Missing,Sol,5.122,0.0440,0,28.389,268.35,216.78,24275
Missing,Sol,5.249,0.1062,0,25.545,53.68,291.05,24312
Missing,Sol,5.264,0.0865,0,34.591,6.51,356.94,24313
Dorippe,Sol,5.261,0.0830,0,31.607,13.81,35.81,24380
Missing,Sol,5.259,0.0561,0,25.380,274.20,342.71,24390
Missing,Sol,5.278,0.0286,0,29.392,304.69,326.79,24403
Missing,Sol,3.159,0.1898,0,25.004,123.36,301.03,24440
Missing,Sol,5.227,0.0814,0,31.392,270.08,68.61,24446
Missing,Sol,5.155,0.0536,0,25.907,272.23,198.34,24448
Missing,Sol,5.284,0.1303,0,40.666,285.43,323.63,24451
Missing,Sol,5.16,0.0549,0,27.932,330.55,356.65,24453
Missing,Sol,5.072,0.0326,0,28.224,302.29,258.28,24454
Missing,Sol,5.224,0.0925,0,25.686,24.25,3.17,24458
Missing,Sol,5.262,0.1192,0,28.326,316.00,6.99,24459
Missing,Sol,5.238,0.0853,0,33.067,331.66,67.35,24470
Missing,Sol,5.318,0.0455,0,29.125,257.38,139.20,24471
Missing,Sol,5.192,0.0445,0,28.723,287.72,136.39,24472
Missing,Sol,5.145,0.0426,0,26.422,64.06,191.56,24485
Missing,Sol,5.18,0.0763,0,33.157,71.04,140.81,24486
Missing,Sol,5.24,0.0496,0,31.888,76.70,349.07,24505
Missing,Sol,5.323,0.0304,0,39.052,298.80,124.97,24506
Missing,Sol,5.22,0.0876,0,26.279,273.89,137.14,24519
Missing,Sol,5.141,0.1193,0,25.883,9.59,249.90,24530
Missing,Sol,5.211,0.0833,0,29.913,85.97,306.18,24534
Missing,Sol,5.173,0.0829,0,31.158,10.07,15.13,24537
Kapaneus,Sol,5.184,0.0100,0,25.738,256.84,340.60,24587
Missing,Sol,5.243,0.0724,0,28.649,284.77,164.21,25347
Missing,Sol,5.149,0.0235,0,29.842,37.96,30.46,25883
Missing,Sol,5.217,0.0749,0,33.195,168.00,167.98,25895
Missing,Sol,3.097,0.2137,0,27.139,288.88,56.11,29564
Missing,Sol,5.141,0.0347,0,32.512,323.15,190.71,29603
Missing,Sol,3.12,0.1548,0,40.347,121.67,26.24,29943
Missing,Sol,5.162,0.0090,0,33.952,231.01,102.69,29976
Missing,Sol,5.223,0.0894,0,33.098,343.48,156.37,29977
Missing,Sol,5.26,0.0419,0,36.422,82.86,282.98,30102
Missing,Sol,5.224,0.0627,0,29.232,56.98,287.87,30504
Missing,Sol,5.208,0.0811,0,25.838,257.00,195.50,30505
Missing,Sol,5.126,0.0819,0,34.356,291.78,11.33,30506
Phegeus,Sol,5.252,0.0404,0,27.002,354.73,283.49,30704
Idaios,Sol,5.194,0.0606,0,44.546,260.00,342.12,30705
Echepolos,Sol,5.203,0.0127,0,25.351,220.59,19.16,30708
Helicaon,Sol,5.2,0.0650,0,32.544,244.52,270.26,30942
Missing,Sol,5.225,0.0774,0,47.396,348.55,191.80,31342
Agathon,Sol,5.345,0.0386,0,40.645,279.48,325.97,31344
Missing,Sol,5.248,0.0096,0,29.730,28.48,286.88,31819
Elatus,Sol,11.76,0.3850,0,57.000,209.83,281.65,31824
Missing,Sol,5.131,0.0527,0,26.904,349.18,350.94,31835
Missing,Sol,3.186,0.0961,0,26.399,238.11,74.11,32253
Missing,Sol,5.216,0.1099,0,27.968,191.37,274.32,32339
Missing,Sol,5.239,0.0093,0,30.763,345.47,170.39,32397
Missing,Sol,5.216,0.1264,0,30.829,356.13,344.10,32435
Missing,Sol,5.197,0.1241,0,28.865,338.26,30.37,32437
Missing,Sol,5.16,0.0284,0,29.252,349.88,352.59,32440
Missing,Sol,5.217,0.0999,0,26.879,307.96,65.20,32451
Missing,Sol,5.243,0.0160,0,30.260,153.48,263.91,32464
Missing,Sol,5.209,0.0963,0,38.365,333.85,286.62,32475
Missing,Sol,5.244,0.0930,0,29.583,301.66,207.34,32480
Missing,Sol,5.141,0.0278,0,27.868,12.79,220.12,32482
Missing,Sol,5.278,0.0795,0,48.017,313.96,274.24,32496
Missing,Sol,5.17,0.1624,0,38.923,314.51,245.48,32499
Missing,Sol,5.218,0.0697,0,35.619,51.35,180.49,32501
Thereus,Sol,10.6,0.2002,0,86.500,237.49,87.25,32532
Missing,Sol,5.158,0.0336,0,36.180,281.56,226.21,32615
Apisaon,Sol,5.279,0.0783,0,28.249,83.42,159.84,32811
Missing,Sol,5.1,0.0746,0,28.921,324.25,318.34,34521
Missing,Sol,5.213,0.0988,0,33.306,324.27,266.67,34642
Thoon,Sol,5.157,0.0388,0,61.684,338.40,197.59,34746
Missing,Sol,5.142,0.0397,0,29.077,341.48,90.14,34785
Missing,Sol,5.157,0.0761,0,25.296,55.26,358.70,35276
Missing,Sol,5.09,0.0439,0,34.836,0.34,359.16,35673
Missing,Sol,5.182,0.0923,0,39.393,73.73,10.30,36267
Missing,Sol,5.314,0.1010,0,30.752,317.99,7.20,36279
Missing,Sol,5.16,0.0225,0,32.117,327.66,346.58,36624
Missing,Sol,5.25,0.0767,0,26.879,264.59,255.45,37297
Missing,Sol,5.162,0.1029,0,25.017,313.90,128.46,37299
Missing,Sol,5.181,0.0527,0,27.099,254.43,167.52,37301
Amphios,Sol,5.21,0.0072,0,33.076,323.63,292.83,37519
Bias,Sol,5.198,0.0777,0,61.603,328.03,192.86,38050
Missing,Sol,5.229,0.0127,0,29.497,185.22,303.76,38610
Missing,Sol,5.248,0.0717,0,35.944,359.58,206.57,39264
Missing,Sol,5.166,0.0577,0,33.218,150.70,262.54,39369
Missing,Sol,5.266,0.0895,0,26.068,345.97,220.28,39474
Missing,Sol,5.162,0.0580,0,34.950,294.34,285.54,41340
Missing,Sol,5.12,0.0615,0,31.006,328.10,343.04,41379
Missing,Sol,5.207,0.0324,0,38.322,131.65,257.18,42187
Typhon,Sol,37.62,0.5339,0,192.000,24.55,158.77,42355
Missing,Sol,5.22,0.0430,0,32.160,262.51,341.34,42367
Missing,Sol,5.127,0.0289,0,27.397,87.08,134.01,42554
Missing,Sol,3.379,0.0816,0,27.208,324.01,152.53,43390
Missing,Sol,3.343,0.2010,0,27.818,9.25,88.73,44566
Missing,Sol,5.276,0.0857,0,26.634,314.81,154.86,47957
Missing,Sol,5.263,0.0297,0,26.772,342.29,105.91,47963
Missing,Sol,5.149,0.0300,0,36.052,278.67,287.11,48438
Missing,Sol,5.19,0.0911,0,28.043,227.08,303.92,48764
Missing,Sol,5.191,0.0547,0,27.121,280.86,21.96,51350
Missing,Sol,5.149,0.1078,0,28.731,323.00,58.80,51354
Missing,Sol,5.275,0.0987,0,27.850,200.14,6.05,51364
Missing,Sol,5.217,0.0573,0,40.606,354.59,257.58,51365
Missing,Sol,5.166,0.0868,0,26.350,319.75,298.74,51910
Missing,Sol,5.109,0.1104,0,27.223,324.56,277.76,51958
Missing,Sol,5.189,0.0579,0,27.479,25.89,302.65,51962
Ophelestes,Sol,5.292,0.0255,0,25.070,328.45,200.88,52767
Okyrhoe,Sol,8.375,0.3034,0,36.000,209.17,337.51,52872
Missing,Sol,5.149,0.0947,0,25.302,0.33,129.88,53418
Missing,Sol,5.058,0.0119,0,28.399,350.21,299.98,53436
Bienor,Sol,16.49,0.2001,0,187.500,327.94,152.70,54598
Missing,Sol,5.289,0.0792,0,37.743,357.09,178.65,54656
Missing,Sol,5.106,0.0476,0,28.643,1.67,178.32,55060
Missing,Sol,5.255,0.0465,0,31.406,344.23,167.82,55419
Missing,Sol,5.135,0.0456,0,26.631,41.21,54.02,55563
Missing,Sol,5.127,0.0349,0,27.608,39.70,321.47,55568
Amycus,Sol,25.12,0.3919,0,100.900,54.21,239.63,55576
Missing,Sol,5.203,0.0361,0,25.865,140.33,258.48,56968
Missing,Sol,5.229,0.0247,0,28.255,207.71,316.89,57714
Missing,Sol,5.176,0.0423,0,25.338,196.87,340.18,58008
Palmys,Sol,5.258,0.0998,0,27.753,14.81,134.57,58931
Missing,Sol,5.279,0.0725,0,34.916,90.56,71.24,60383
Echeclus,Sol,10.73,0.4574,0,59.000,69.05,163.21,60558
Missing,Sol,5.23,0.0778,0,26.466,77.31,351.93,62426
Missing,Sol,5.216,0.1259,0,29.767,156.92,259.37,63273
Missing,Sol,5.208,0.0263,0,28.373,44.09,88.34,68444
Missing,Sol,5.286,0.0144,0,27.855,33.09,121.44,68519
Missing,Sol,5.264,0.0945,0,33.098,320.01,256.57,76857
Missing,Sol,5.167,0.0305,0,42.849,300.51,298.10,76867
Missing,Sol,5.198,0.1478,0,28.432,347.69,346.18,80119
Missing,Sol,5.237,0.0785,0,29.391,97.29,72.50,90337
Missing,Sol,23.17,0.2226,0,230.500,7.48,156.01,95626
Missing,Sol,5.322,0.0858,0,26.242,340.62,217.84,99334
Missing,Sol,5.252,0.0573,0,30.603,318.56,187.43,117447
Missing,Sol,20.8,0.4715,0,82.000,58.43,116.74,120061
Missing,Sol,65.87,0.6819,0,170.000,9.04,27.63,127546
Missing,Sol,5.284,0.0692,0,26.632,23.95,156.65,128299
Missing,Sol,5.232,0.0878,0,28.299,52.18,55.51,134720
Missing,Sol,5.282,0.0959,0,25.881,29.65,35.69,134749
Missing,Sol,5.268,0.0488,0,26.039,320.39,60.27,134957
Missing,Sol,20.06,0.2564,0,118.000,43.51,70.00,136204
Missing,Sol,28.87,0.6748,0,37.700,26.95,90.69,148975
Missing,Sol,5.254,0.0880,0,27.048,8.99,14.71,159342
Missing,Sol,22.16,0.4608,0,78.440,40.16,70.82,248835
Missing,Sol,12.54,0.3152,0,38.900,102.71,99.31,250112
Missing,Sol,14.69,0.3087,0,58.000,50.25,141.72,281371
Missing,Sol,15.81,0.3789,0,39.100,109.19,134.23,309139
Missing,Sol,29.83,0.5641,0,110.060,26.28,108.39,310071
Missing,Sol,13.2,0.3063,0,44.200,90.32,136.41,328884
Missing,Sol,12.74,0.4461,0,33.000,66.18,240.43,332685
Missing,Sol,279.6,0.9663,0,44.200,0.86,132.79,336756
Missing,Sol,11.58,0.4418,0,67.100,99.59,330.35,342842
Missing,Sol,35.2,0.6783,0,28.500,22.53,246.12,413666
Missing,Sol,385.1,0.9841,0,46.400,0.46,178.90,"2010 BK118"
Missing,Sol,21.62,0.5603,0,26.900,46.86,238.70,"2010 ES65"
Missing,Sol,24.5,0.7621,0,28.000,35.14,314.29,"2010 FH92"
Missing,Sol,18.57,0.3246,0,69.900,79.80,210.41,"2010 TH"
Missing,Sol,53.44,0.6496,0,112.700,14.68,292.88,"2010 WG9"
Missing,Sol,21.28,0.4734,0,63.700,62.50,7.59,"2011 MM4"
Schwassmann-Wachmann,Sol,6,0.0436,0,60.4,197.11,50.64,29P
Swift-Tuttle,Sol,26.09,0.9632,0,26,7.63,152.98,109P
CINEOS,Sol,16.14,0.2700,0,66.170,16.20,343.65,167P
Hale-Bopp,Sol,182.1,0.9950,0,60,1.68,130.66,"1995 O1"
Spacewatch,Sol,38.41,0.8729,0,55.100,0.10,180.60,"2011 KP36"