-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsystems.csv
We can't make this file beautiful and searchable because it's too large.
5432 lines (5432 loc) · 733 KB
/
systems.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
id,distanceToJita,region,constellation,name,security,neighbors,planets
30000001,14,Derelik,San Matar,Tanoo,0.86,30000003:30000005:30000007,40000002:40000005:40000007:40000008:40000011:40000017
30000002,14,Derelik,San Matar,Lashesih,0.75,30000005:30002973,40000020:40000022:40000024:40000028:40000031:40000033:40000037
30000003,15,Derelik,San Matar,Akpivem,0.85,30000001:30000007:30000052:30000084,40000041:40000043:40000046:40000055:40000074:40000100:40000123
30000004,12,Derelik,San Matar,Jark,0.82,30000005:30002509,40000130:40000132:40000134:40000137:40000139:40000164:40000185
30000005,13,Derelik,San Matar,Sasta,0.81,30000001:30000002:30000004:30000032,40000191:40000193:40000194:40000196:40000200:40000215:40000236:40000256:40000282
30000006,17,Derelik,San Matar,Zaid,0.86,30000008:30000023,40000292:40000293:40000294:40000297:40000298:40000300:40000304:40000323:40000326
30000007,15,Derelik,San Matar,Yuzier,0.91,30000001:30000003:30000008,40000333:40000335:40000337:40000339:40000341:40000348:40000352:40000355
30000008,16,Derelik,San Matar,Nirbhi,0.88,30000006:30000007:30000057:30000076,40000382:40000384:40000386:40000389:40000391:40000398:40000417:40000441:40000462:40000468
30000009,23,Derelik,Anares,Sooma,0.58,30000010,40000472:40000473:40000474:40000476:40000478:40000481:40000484:40000505:40000516:40000527
30000010,22,Derelik,Anares,Chidah,0.54,30000009:30000011:30000013,40000533:40000534:40000535:40000537:40000540:40000553:40000555:40000570:40000597:40000599
30000011,23,Derelik,Anares,Shenela,0.46,30000010:30000038,40000605:40000607:40000608:40000611:40000632:40000635
30000012,20,Derelik,Anares,Asabona,0.32,30000013:30000073,40000663:40000665:40000667:40000670:40000672:40000679:40000686:40000689:40000715:40000741:40000767
30000013,21,Derelik,Anares,Onsooh,0.44,30000010:30000012:30000014:30000015:30000016,40000770:40000772:40000774:40000776:40000779:40000781:40000783:40000799:40000824:40000854
30000014,22,Derelik,Anares,Shamahi,0.36,30000013:30000090:30000098,40000861:40000862:40000864:40000866:40000868:40000869:40000888:40000908:40000916:40000940
30000015,22,Derelik,Anares,Sendaya,0.29,30000013:30000018:30000046:30001047,40000942:40000943:40000945:40000947:40000949:40000953:40000966:40000989:40000993
30000016,22,Derelik,Anares,Nazhgete,0.39,30000013,40001000:40001002:40001004:40001006:40001009:40001012:40001013:40001036:40001060:40001076
30000017,24,Derelik,Mamouna,Futzchag,0.17,30000018:30000020:30000021:30000022,40001096:40001097:40001099:40001101:40001103:40001124:40001126:40001128:40001154:40001176:40001181
30000018,23,Derelik,Mamouna,Kazna,0.23,30000015:30000017:30000021,40001183:40001184:40001186:40001200:40001203:40001224:40001246
30000019,26,Derelik,Mamouna,Podion,0.11,30000022,40001266:40001267:40001269:40001270:40001272:40001281:40001292:40001316:40001340
30000020,25,Derelik,Mamouna,Lilmad,0.16,30000017,40001345:40001347:40001349:40001351:40001367:40001382:40001385:40001411
30000021,24,Derelik,Mamouna,Kuharah,0.19,30000017:30000018,40001415:40001417:40001419:40001424:40001444:40001463:40001492:40001495
30000022,25,Derelik,Mamouna,Jayneleb,0.11,30000017:30000019,40001499:40001501:40001503:40001519:40001526:40001550:40001572:40001575:40001578
30000023,18,Derelik,Kalangin,Fovihi,0.87,30000006:30000024:30000030,40001582:40001584:40001586:40001589:40001593:40001614:40001639
30000024,19,Derelik,Kalangin,Kiereend,0.84,30000023:30000025:30000027:30000028,40001645:40001647:40001648:40001650:40001652:40001655:40001660:40001690
30000025,19,Derelik,Kalangin,Rashy,0.80,30000024:30000026:30000027:30000028,40001713:40001715:40001717:40001732:40001754:40001779
30000026,18,Derelik,Kalangin,Ordize,0.70,30000025:30000028:30000029:30000030,40001785:40001786:40001789:40001809:40001815:40001825:40001829
30000027,20,Derelik,Kalangin,Psasa,0.75,30000024:30000025:30000028,40001834:40001850:40001867
30000028,19,Derelik,Kalangin,Eshtah,0.77,30000024:30000025:30000026:30000027:30000064,40001892:40001894:40001896:40001899:40001903:40001907:40001910:40001927:40001957:40001981
30000029,18,Derelik,Kalangin,Lachailes,0.57,30000026:30000030,40001985:40001986:40001988:40001991:40001994:40002012
30000030,17,Derelik,Kalangin,Kasrasi,0.57,30000023:30000026:30000029:30000112,40002038:40002040:40002041:40002043:40002045:40002047:40002053:40002056:40002068:40002076
30000031,14,Derelik,Hevaka,Mohas,0.68,30000033:30000035,40002088:40002089:40002091:40002093:40002096:40002098:40002101:40002104:40002123
30000032,14,Derelik,Hevaka,Hasiari,0.80,30000005:30000033:30000034,40002133:40002134:40002136:40002138:40002139:40002141:40002144:40002151:40002156
30000033,15,Derelik,Hevaka,Radima,0.75,30000031:30000032,40002158:40002159:40002162:40002164:40002165:40002167:40002171:40002173:40002176:40002183:40002202:40002236
30000034,15,Derelik,Hevaka,Alkez,0.78,30000032,40002243:40002245:40002246:40002248:40002252:40002257:40002261:40002282
30000035,13,Derelik,Hevaka,Nimambal,0.59,30000031:30000036:30000114,40002288:40002289:40002290:40002291:40002292:40002295:40002299:40002323:40002328:40002336
30000036,12,Derelik,Hevaka,Yishinoon,0.42,30000035:30000037,40002341:40002343:40002345:40002348:40002364:40002382:40002412
30000037,11,Derelik,Hevaka,Uplingur,0.42,30000036:30002508,40002418:40002420:40002426:40002444
30000038,24,Derelik,Sazdih,Dooz,0.42,30000011:30000039:30000040:30000043,40002478:40002479:40002480:40002482:40002486:40002511
30000039,25,Derelik,Sazdih,Bayuka,0.40,30000038:30000040:30000041,40002515:40002516:40002518:40002520:40002522:40002552:40002574:40002593:40002597:40002601
30000040,25,Derelik,Sazdih,Uzistoon,0.39,30000038:30000039:30000043,40002612:40002613:40002614:40002615:40002617:40002619:40002635:40002659
30000041,26,Derelik,Sazdih,Bairshir,0.36,30000039:30000042,40002666:40002667:40002669:40002674:40002687:40002714
30000042,27,Derelik,Sazdih,Moh,0.47,30000041,40002725:40002727:40002728:40002730:40002734:40002746:40002752
30000043,25,Derelik,Sazdih,Sari,0.38,30000038:30000040:30000100,40002759:40002760:40002761:40002763:40002767:40002784:40002814:40002818:40002822
30000044,22,Derelik,Ananah,Faspera,0.13,30000045:30000046,40002838:40002839:40002840:40002841:40002845:40002847:40002851:40002853
30000045,21,Derelik,Ananah,Jaymass,0.22,30000044:30000046:30000048:30000049,40002858:40002860:40002862:40002864:40002868:40002888:40002917
30000046,21,Derelik,Ananah,Mifrata,0.30,30000015:30000044:30000045:30000047:30000048,40002920:40002921:40002922:40002925:40002942:40002968:40002974
30000047,22,Derelik,Ananah,Majamar,0.37,30000046:30000050,40002980:40002982:40002984:40002987:40002990:40002993:40003012:40003033:40003049:40003055
30000048,20,Derelik,Ananah,Ihal,0.49,30000045:30000046:30000106,40003060:40003062:40003064:40003069:40003073:40003086:40003108:40003128:40003147:40003152
30000049,22,Derelik,Ananah,Camal,0.21,30000045,40003158:40003159:40003161:40003163:40003166:40003168:40003172:40003179:40003182
30000050,23,Derelik,Ananah,Fera,0.48,30000047,40003187:40003188:40003190:40003193
30000051,17,Derelik,Mossas,Juddi,0.65,30000052:30000053:30000056:30000109,40003197:40003200:40003201:40003203:40003205:40003206:40003209:40003228:40003239:40003261:40003267
30000052,16,Derelik,Mossas,Maspah,0.80,30000003:30000051:30000053:30000054:30000055,40003271:40003272:40003274:40003276:40003284:40003303:40003330
30000053,17,Derelik,Mossas,Ibaria,0.73,30000051:30000052,40003336:40003339:40003341:40003344
30000054,17,Derelik,Mossas,Shala,0.72,30000052:30000055,40003348:40003349:40003353:40003367:40003372:40003379:40003382:40003386
30000055,17,Derelik,Mossas,Zemalu,0.73,30000052:30000054,40003392:40003393:40003395:40003397:40003400:40003402:40003406:40003409:40003415
30000056,18,Derelik,Mossas,Khankenirdia,0.61,30000051,40003420:40003423:40003425:40003428:40003431:40003451:40003455:40003457:40003466:40003469
30000057,17,Derelik,Mekashtad,Nikh,0.77,30000008:30000058:30000061:30000068,40003474:40003476:40003478:40003480:40003485:40003504:40003530:40003537
30000058,18,Derelik,Mekashtad,Amphar,0.70,30000057:30000059:30000068:30000105,40003543:40003544:40003546:40003548:40003553:40003556:40003563:40003568:40003594
30000059,19,Derelik,Mekashtad,Salashayama,0.67,30000058:30000060,40003621:40003622:40003624:40003626:40003628:40003632:40003637:40003650
30000060,18,Derelik,Mekashtad,Janus,0.55,30000059:30000062:30000063:30000065,40003660:40003662:40003664:40003667:40003670:40003671:40003675:40003683:40003687:40003703
30000061,18,Derelik,Mekashtad,Agha,0.72,30000057,40003708:40003709:40003710:40003712:40003715:40003717:40003720:40003731:40003755:40003781
30000062,18,Derelik,Mekashtad,Iosantin,0.45,30000060:30000065:30000067,40003808:40003810:40003812:40003813:40003815:40003818:40003821:40003839
30000063,19,Derelik,Mekashtad,Orva,0.51,30000060:30000064:30000069,40003867:40003869:40003871:40003873:40003876:40003895:40003909:40003932:40003942:40003946
30000064,20,Derelik,Mekashtad,Zet,0.57,30000028:30000063:30000066:30000069,40003951:40003953:40003955:40003974:40003995:40003999:40004003:40004030
30000065,17,Derelik,Mekashtad,Akhrad,0.36,30000060:30000062:30000067:30000118,40004036:40004037:40004039:40004041:40004043:40004045:40004048:40004067:40004093:40004101:40004114:40004119
30000066,21,Derelik,Mekashtad,Pirohdim,0.63,30000064:30000069,40004123:40004133:40004145:40004164:40004189:40004210:40004214:40004218
30000067,18,Derelik,Mekashtad,Sharir,0.40,30000062:30000065,40004221:40004222:40004223:40004225:40004227:40004231:40004234:40004249:40004260:40004282
30000068,18,Derelik,Mekashtad,Usroh,0.60,30000057:30000058,40004286:40004288:40004289:40004291:40004293:40004295:40004297:40004298:40004317:40004321
30000069,20,Derelik,Mekashtad,Thiarer,0.54,30000063:30000064:30000066,40004326:40004327:40004329:40004333:40004336:40004337:40004339:40004355:40004364
30000070,19,Derelik,Bedaleya,Gomati,0.39,30000073:30000074:30000075:30000085,40004376:40004379:40004380:40004382:40004384:40004387:40004389:40004415:40004419:40004448
30000071,21,Derelik,Bedaleya,Jangar,0.53,30000074,40004451:40004453:40004455:40004457:40004460:40004463:40004466:40004470
30000072,20,Derelik,Bedaleya,Nakah,0.36,30000074:30000075:30002982,40004481:40004483:40004488:40004489:40004493:40004494
30000073,19,Derelik,Bedaleya,Irshah,0.43,30000012:30000070:30000085,40004498:40004500:40004502:40004504:40004506:40004508:40004513:40004530:40004557:40004565
30000074,20,Derelik,Bedaleya,Hasateem,0.43,30000070:30000071:30000072:30000075,40004569:40004570:40004572:40004574:40004576:40004593:40004626
30000075,20,Derelik,Bedaleya,Assah,0.30,30000070:30000072:30000074:30003703,40004638:40004640:40004642:40004645:40004647:40004673:40004698:40004721:40004750
30000076,17,Derelik,Orshed,Tidacha,0.82,30000008:30000077:30000079,40004755:40004756:40004758:40004760:40004782:40004799:40004802:40004819:40004844
30000077,18,Derelik,Orshed,Odlib,0.82,30000076:30000078:30000080,40004873:40004874:40004875:40004877:40004879:40004880:40004882:40004885:40004888:40004891:40004898:40004904:40004937
30000078,19,Derelik,Orshed,Jofan,0.78,30000077:30000080,40004942:40004944:40004946:40004947:40004950:40004954:40004956:40004974:40004988:40004995
30000079,18,Derelik,Orshed,Milu,0.77,30000076,40004998:40005000:40005002:40005004:40005007:40005011:40005014:40005016:40005038:40005063:40005068
30000080,19,Derelik,Orshed,Yadi,0.75,30000077:30000078:30000081,40005095:40005097:40005100:40005103:40005104:40005122:40005144:40005164
30000081,20,Derelik,Orshed,Buftiar,0.71,30000080,40005193:40005194:40005196:40005199:40005217:40005237:40005261
30000082,17,Derelik,Oraron,Jarizza,0.77,30000083:30000084:30000085,40005304:40005305:40005307:40005309:40005310:40005312:40005315:40005323:40005343:40005367:40005393:40005397
30000083,18,Derelik,Oraron,Ejahi,0.73,30000082:30000087,40005399:40005400:40005401:40005403:40005406:40005410
30000084,16,Derelik,Oraron,Asghatil,0.79,30000003:30000082:30000086,40005414:40005415:40005417:40005419:40005422:40005425:40005428:40005432:40005436
30000085,18,Derelik,Oraron,Bar,0.67,30000070:30000073:30000082:30000086:30000107,40005450:40005452:40005454:40005456:40005459:40005476:40005498:40005528:40005531:40005535
30000086,17,Derelik,Oraron,Sucha,0.66,30000084:30000085,40005540:40005542:40005545:40005547:40005549:40005551:40005573:40005594:40005624:40005647
30000087,19,Derelik,Oraron,Gelhan,0.70,30000083:30000088,40005652:40005654:40005656:40005658:40005661:40005679:40005682:40005702:40005726:40005735:40005739
30000088,20,Derelik,Oraron,Akeva,0.66,30000087,40005758:40005760:40005767:40005785
30000089,24,Derelik,Aguh,Sosa,0.30,30000090:30000091:30000092,40005804:40005805:40005806:40005807:40005808:40005825:40005845:40005868:40005887:40005891
30000090,23,Derelik,Aguh,Ilahed,0.32,30000014:30000089:30000093,40005903:40005904:40005905:40005907:40005930:40005945:40005967:40005970
30000091,25,Derelik,Aguh,Eshwil,0.22,30000089,40005975:40005976:40005978:40005995:40006014
30000092,25,Derelik,Aguh,Aranir,0.24,30000089:30000094,40006019:40006020:40006022:40006024:40006026:40006033:40006037:40006055:40006092
30000093,24,Derelik,Aguh,Ishkad,0.37,30000090,40006097:40006099:40006102:40006103:40006104:40006108:40006111:40006113:40006122
30000094,26,Derelik,Aguh,Hahyil,0.21,30000092,40006127:40006129:40006131:40006134:40006140:40006158:40006187:40006214:40006219
30000095,23,Derelik,Mal,Asilem,0.28,30000097:30000102,40006222:40006224:40006226:40006227:40006229:40006235:40006258:40006280:40006288
30000096,24,Derelik,Mal,Mahnagh,0.21,30000097,40006293:40006295:40006296:40006298:40006299:40006300:40006304:40006308:40006311:40006334:40006339:40006349
30000097,23,Derelik,Mal,Shach,0.33,30000095:30000096:30000098:30000100,40006355:40006357:40006359:40006362:40006365:40006369:40006372:40006386:40006391
30000098,22,Derelik,Mal,Kehrara,0.36,30000014:30000097:30000099:30000102,40006396:40006397:40006399:40006400:40006403:40006408:40006437
30000099,21,Derelik,Mal,Arena,0.44,30000098:30000101:30000102:30000103,40006456:40006458:40006459:40006461:40006483:40006501:40006531:40006536
30000100,24,Derelik,Mal,Timeor,0.31,30000043:30000097,40006542:40006544:40006546:40006547:40006551:40006553:40006556:40006558:40006576:40006600:40006623:40006630
30000101,20,Derelik,Mal,Uhtafal,0.50,30000099:30000103:30000105,40006635:40006637:40006640:40006661:40006693
30000102,22,Derelik,Mal,Dysa,0.24,30000095:30000098:30000099:30000104,40006698:40006700:40006702:40006704:40006707:40006733:40006739:40006746
30000103,21,Derelik,Mal,Serad,0.53,30000099:30000101,40006752:40006754:40006770:40006793:40006819:40006852
30000104,23,Derelik,Mal,Mahti,0.23,30000102,40006857:40006858:40006859:40006860:40006862:40006864:40006867:40006885:40006898:40006920:40006929:40006957:40006960
30000105,19,Derelik,Mal,Abha,0.43,30000058:30000101,40006966:40006968:40006969:40006971:40006972:40006974:40006977:40006997:40007004
30000106,19,Derelik,Subi,Shedoo,0.51,30000048:30000107:30000109,40007009:40007010:40007012:40007013:40007016:40007019:40007023:40007026:40007046:40007072:40007084:40007087:40007089
30000107,19,Derelik,Subi,Gamis,0.47,30000085:30000106:30000108:30000110:30000111,40007094:40007095:40007096:40007097:40007100:40007101:40007103:40007107:40007110:40007113:40007117:40007122:40007124
30000108,20,Derelik,Subi,Nieril,0.35,30000107:30000111,40007131:40007132:40007135:40007136:40007138:40007144:40007168:40007180
30000109,18,Derelik,Subi,Berta,0.49,30000051:30000106:30000110:30000111,40007186:40007187:40007188:40007190:40007193:40007217
30000110,19,Derelik,Subi,Bekirdod,0.41,30000107:30000109,40007250:40007252:40007254:40007256:40007259:40007260:40007262:40007267:40007288
30000111,19,Derelik,Subi,Hothomouh,0.42,30000107:30000108:30000109,40007320:40007322:40007324:40007327:40007330:40007333:40007354:40007361:40007377:40007380
30000112,16,Derelik,Joas,Arnola,0.46,30000030:30000113:30000118,40007387:40007388:40007390:40007392:40007393:40007396:40007400
30000113,15,Derelik,Joas,Astabih,0.41,30000112:30000114:30000115:30000116:30000117,40007406:40007408:40007410:40007412:40007415:40007421:40007450:40007455
30000114,14,Derelik,Joas,Ubtes,0.34,30000035:30000113:30000115:30000116:30000117,40007460:40007462:40007463:40007465:40007468:40007470:40007472:40007474:40007478:40007502
30000115,15,Derelik,Joas,Bimener,0.27,30000113:30000114:30000116:30000117,40007506:40007521:40007524:40007542:40007565:40007570
30000116,15,Derelik,Joas,Kenobanala,0.29,30000113:30000114:30000115:30002395,40007575:40007576:40007578:40007581:40007583:40007585:40007588:40007591:40007593
30000117,15,Derelik,Joas,Khabi,0.25,30000113:30000114:30000115:30000118:30000943,40007596:40007598:40007599:40007600:40007601:40007603:40007605:40007608:40007612:40007636:40007658:40007687:40007706:40007709
30000118,16,Derelik,Joas,Uanzin,0.43,30000065:30000112:30000117,40007717:40007718:40007720:40007723:40007730:40007753:40007758:40007762
30000119,2,The Forge,Ruomo,Itamo,0.67,30000120:30000121:30000123:30000124:30000125:30000140,40007767:40007769:40007771:40007773:40007775:40007777:40007786:40007795
30000120,3,The Forge,Ruomo,Mitsolen,0.63,30000119:30000122,40007813:40007815:40007817:40007820:40007837:40007858:40007864:40007870
30000121,3,The Forge,Ruomo,Jatate,0.64,30000119,40007873:40007875:40007878:40007895
30000122,4,The Forge,Ruomo,Mahtista,0.66,30000120,40007917:40007918:40007921:40007922:40007924:40007926:40007929:40007942:40007948:40007949
30000123,3,The Forge,Ruomo,Vaankalen,0.65,30000119,40007961:40007972:40007988:40007991:40008015:40008039:40008046:40008048
30000124,3,The Forge,Ruomo,Kylmabe,0.73,30000119,40008052:40008053:40008054:40008055:40008056:40008057:40008060:40008062:40008065:40008068
30000125,3,The Forge,Ruomo,Ahtulaima,0.61,30000119,40008071:40008074:40008076:40008078:40008081:40008083:40008089:40008092:40008118:40008120:40008124
30000126,5,The Forge,Anttanen,Geras,0.65,30000128:30000131,40008129:40008130:40008133:40008134:40008136:40008139:40008154:40008157:40008161:40008186:40008195
30000127,5,The Forge,Anttanen,Sirseshin,0.75,30000128:30002788,40008200:40008201:40008202:40008204:40008207:40008209:40008212:40008215:40008222
30000128,5,The Forge,Anttanen,Tuuriainas,0.61,30000126:30000127:30000130,40008227:40008228:40008230:40008231
30000129,3,The Forge,Anttanen,Unpas,0.95,30000130:30000139:30003400:30030141,40008234:40008235:40008236:40008237:40008239:40008242:40008266:40008273:40008295:40008303
30000130,4,The Forge,Anttanen,Shihuken,0.87,30000128:30000129:30020141,40008310:40008311:40008314:40008315:40008317:40008319:40008322:40008343
30000131,4,The Forge,Anttanen,Nomaa,0.61,30000126:30000146:30000153,40008348:40008350:40008351:40008356:40008362:40008366:40008387
30000132,2,The Forge,Ihilakken,Ansila,0.91,30000133:30000134:30000138,40008392:40008394:40008396:40008397:40008399:40008402:40008409:40008428:40008452:40008457
30000133,2,The Forge,Ihilakken,Hirtamon,0.97,30000132:30000138:30000145:30021407,40008462:40008464:40008466:40008468:40008471:40008472:40008495:40008517
30000134,3,The Forge,Ihilakken,Hykkota,0.82,30000132:30000135:30000136,40008525:40008527:40008529:40008545:40008565:40008586
30000135,4,The Forge,Ihilakken,Outuni,0.73,30000134:30000136:30000137,40008606:40008608:40008609:40008611:40008613:40008615:40008618:40008638:40008640:40008658:40008685:40008690
30000136,4,The Forge,Ihilakken,Ohmahailen,0.66,30000134:30000135:30000137,40008721:40008723:40008725:40008729:40008747:40008768:40008772:40008784
30000137,5,The Forge,Ihilakken,Eskunen,0.63,30000135:30000136,40008791:40008792:40008793:40008795:40008799:40008802:40008806:40008816:40008820:40008823:40008849
30000138,1,The Forge,Ihilakken,Ikuchi,0.99,30000132:30000133:30000142:30001379:30010141,40008854:40008855:40008856:40008859:40008863:40008867
30000139,2,The Forge,Kimotoro,Urlen,0.96,30000129:30000141:30000144:30002791:30002802,40008889:40008890:40008892:40008894:40008896:40008900:40008904:40008915:40008918
30000140,1,The Forge,Kimotoro,Maurasi,0.91,30000119:30000142:30000144:30002780,40008921:40008923:40008925:40008927:40008929:40008931:40008935:40008938:40008960:40008980:40009008:40009045
30000141,3,The Forge,Kimotoro,Kisogo,1.00,30000139,40009050:40009052:40009053:40009056:40009059:40009062:40009067:40009070:40009073
30000142,0,The Forge,Kimotoro,Jita,0.95,30000138:30000140:30000143:30000144:30000145:30001363:30002780,40009077:40009078:40009080:40009082:40009098:40009116:40009119:40009123
30000143,1,The Forge,Kimotoro,Niyabainen,0.96,30000142:30000144:30000145:30001379,40009127:40009128:40009130:40009132:40009134:40009141:40009162:40009177:40009202
30000144,1,The Forge,Kimotoro,Perimeter,0.95,30000139:30000140:30000142:30000143:30002642,40009229:40009231:40009234:40009235:40009236:40009238:40009241:40009244:40009247:40009248
30000145,1,The Forge,Kimotoro,New Caldari,1.00,30000133:30000142:30000143:30000156:30001393:30002754,40009253:40009255:40009257:40009260:40009264
30000146,5,The Forge,Okomon,Saisio,0.65,30000131:30000147:30000148,40009269:40009270:40009271:40009273:40009277:40009280:40009282:40009299:40009326
30000147,6,The Forge,Okomon,Abagawa,0.63,30000146:30000150,40009333:40009335:40009338:40009340:40009343:40009348:40009354:40009375:40009385
30000148,6,The Forge,Okomon,Jakanerva,0.74,30000146:30000149:30000152,40009391:40009394:40009411:40009432:40009468:40009498:40009502
30000149,7,The Forge,Okomon,Gekutami,0.70,30000148:30000151,40009504:40009506:40009507:40009510:40009513:40009518:40009524:40009531
30000150,7,The Forge,Okomon,Hurtoken,0.59,30000147:30000152,40009542:40009544:40009546:40009548:40009569:40009573:40009597
30000151,8,The Forge,Okomon,Uoyonen,0.70,30000149:30000173,40009604:40009605:40009606:40009607:40009610:40009613:40009618:40009623:40009628:40009633
30000152,7,The Forge,Okomon,Hampinen,0.54,30000148:30000150:30000159,40009640:40009641:40009643:40009645:40009648:40009650:40009652:40009675
30000153,3,The Forge,Onirvura,Poinen,0.56,30000131:30000154:30000155:30000156:30000157,40009681:40009686:40009702:40009723:40009742:40009782:40009791:40009796
30000154,3,The Forge,Onirvura,Liekuri,0.60,30000153:30000155:30000156,40009801:40009802:40009805:40009806:40009807:40009812:40009837
30000155,4,The Forge,Onirvura,Obanen,0.56,30000153:30000154:30000158,40009864:40009865:40009867:40009868:40009870:40009873:40009876:40009894:40009909
30000156,2,The Forge,Onirvura,Josameto,0.58,30000145:30000153:30000154:30000157,40009917:40009919:40009920:40009922:40009924:40009926:40009931:40009934:40009938
30000157,3,The Forge,Onirvura,Otela,0.53,30000153:30000156,40009948:40009950:40009955:40009980:40009997:40010023
30000158,5,The Forge,Onirvura,Olo,0.68,30000155:30000165:30000180,40010058:40010060:40010065:40010070
30000159,8,The Forge,Ihatalo,Ikami,0.53,30000152:30000160:30000161,40010076:40010078:40010080:40010081:40010083:40010086:40010107:40010109:40010145:40010165:40010169
30000160,9,The Forge,Ihatalo,Reisen,0.52,30000159:30000161:30000163,40010191:40010193:40010196:40010198:40010203:40010228:40010255
30000161,9,The Forge,Ihatalo,Purjola,0.52,30000159:30000160:30000162,40010264:40010265:40010267:40010269:40010272:40010275:40010293
30000162,10,The Forge,Ihatalo,Maila,0.44,30000161:30000163,40010321:40010322:40010324:40010326:40010332:40010337:40010340
30000163,10,The Forge,Ihatalo,Akora,0.32,30000160:30000162:30000164:30000186,40010346:40010347:40010349:40010350:40010354:40010358:40010367:40010372:40010373:40010398
30000164,11,The Forge,Ihatalo,Messoya,0.32,30000163:30000195,40010404:40010406:40010408:40010410:40010412:40010415:40010419:40010422:40010443
30000165,6,The Forge,Okkelen,Ishisomo,0.65,30000158:30000166:30000167,40010450:40010451:40010453:40010455:40010457:40010460:40010462:40010484:40010510:40010534
30000166,7,The Forge,Okkelen,Airmia,0.62,30000165:30000167:30000168,40010540:40010541:40010542:40010543:40010545:40010548:40010553:40010576
30000167,7,The Forge,Okkelen,Sakkikainen,0.59,30000165:30000166:30000168:30000170,40010581:40010583:40010586:40010589:40010592:40010595:40010619:40010638
30000168,8,The Forge,Okkelen,Friggi,0.51,30000166:30000167:30000169:30000171,40010643:40010645:40010646:40010648:40010651:40010673:40010679:40010707:40010741
30000169,9,The Forge,Okkelen,Ihakana,0.38,30000168:30000171:30000172:30000194,40010746:40010748:40010749:40010750:40010752:40010755:40010757:40010762:40010777
30000170,8,The Forge,Okkelen,Vahunomi,0.53,30000167,40010780:40010783:40010785:40010786:40010788:40010790:40010792:40010795:40010798:40010815
30000171,9,The Forge,Okkelen,Otitoh,0.48,30000168:30000169,40010839:40010841:40010843:40010844:40010846:40010849:40010854
30000172,10,The Forge,Okkelen,Otomainen,0.48,30000169,40010881:40010882:40010884:40010886:40010887:40010889:40010890:40010892:40010895:40010906:40010913:40010930:40010940
30000173,9,The Forge,Otsabaira,Vattuolen,0.71,30000151:30000174:30000175:30000178,40010945:40010947:40010949:40010951:40010953:40010955:40010963:40010966:40010978:40011003:40011030:40011033
30000174,10,The Forge,Otsabaira,Onuse,0.74,30000173:30000176:30000178,40011038:40011040:40011042:40011045:40011048:40011070:40011075:40011099
30000175,10,The Forge,Otsabaira,Soshin,0.63,30000173:30000178:30000179,40011114:40011115:40011117:40011118:40011119:40011123:40011124:40011133:40011137:40011142
30000176,11,The Forge,Otsabaira,Keikaken,0.72,30000174:30000177,40011145:40011146:40011148:40011150:40011153:40011156:40011161:40011168:40011170:40011174
30000177,12,The Forge,Otsabaira,Ukkalen,0.65,30000176,40011177:40011178:40011179:40011181:40011183:40011184:40011185:40011187:40011190
30000178,10,The Forge,Otsabaira,Akkilen,0.69,30000173:30000174:30000175:30000188,40011216:40011218:40011220:40011222:40011224:40011229:40011246:40011248:40011270
30000179,11,The Forge,Otsabaira,Silen,0.52,30000175,40011274:40011278:40011281:40011300:40011324
30000180,6,The Forge,Aulari,Osmon,0.68,30000158:30000181:30000182,40011330:40011332:40011334:40011336:40011355:40011366:40011375
30000181,7,The Forge,Aulari,Korsiki,0.64,30000180:30000183:30000185,40011379:40011381:40011394:40011418:40011442:40011443:40011449
30000182,7,The Forge,Aulari,Inaya,0.55,30000180:30000184:30000187,40011452:40011453:40011455:40011457:40011459:40011460:40011463:40011467:40011492:40011525
30000183,8,The Forge,Aulari,Nuken,0.76,30000181,40011532:40011533:40011535:40011537:40011540:40011542:40011560:40011582:40011605:40011608:40011612:40011616
30000184,8,The Forge,Aulari,Uminas,0.48,30000182,40011621:40011622:40011625:40011626:40011629:40011634
30000185,8,The Forge,Aulari,Airaken,0.50,30000181:30000186,40011651:40011654:40011657:40011659:40011665:40011686:40011691:40011701
30000186,9,The Forge,Aulari,Oijanen,0.35,30000163:30000185:30002440,40011708:40011710:40011713:40011716:40011723:40011740:40011745:40011748:40011772:40011774:40011783
30000187,8,The Forge,Aulari,Wuos,0.56,30000182,40011786:40011787:40011788:40011790:40011792:40011796:40011801:40011805:40011809
30000188,11,The Forge,Etsala,Hentogaira,0.57,30000178:30000189:30000194,40011813:40011830:40011853:40011886:40011890
30000189,11,The Forge,Etsala,Kiainti,0.53,30000188:30000190:30000191:30000194,40011894:40011895:40011896:40011899:40011901:40011903:40011905:40011907:40011927:40011945
30000190,11,The Forge,Etsala,Vasala,0.49,30000189:30000191:30000192:30000193:30000194,40011950:40011952:40011954:40011956:40011958:40011975:40011999:40012010
30000191,11,The Forge,Etsala,Walvalin,0.38,30000189:30000190:30000192:30000194,40012016:40012017:40012019:40012021:40012023:40012026:40012030:40012035:40012038:40012057:40012075:40012106
30000192,11,The Forge,Etsala,Otanuomi,0.37,30000190:30000191:30000193:30000194:30000207,40012115:40012117:40012119:40012122:40012138:40012167:40012193:40012199
30000193,12,The Forge,Etsala,Vouskiaho,0.50,30000190:30000192:30000201,40012202:40012204:40012210:40012212:40012230:40012249:40012274:40012298
30000194,10,The Forge,Etsala,Otsela,0.38,30000169:30000188:30000189:30000190:30000191:30000192,40012324:40012325:40012327:40012329:40012331:40012349:40012376:40012381
30000195,12,The Forge,Mivora,Tasti,0.28,30000164:30000196:30001720,40012387:40012389:40012392:40012394:40012416:40012435:40012458:40012460:40012463
30000196,13,The Forge,Mivora,Otosela,0.24,30000195:30000197:30000200,40012510:40012511:40012513:40012516:40012519:40012539:40012551:40012574:40012580
30000197,14,The Forge,Mivora,Uemon,0.20,30000196:30000198:30000199,40012583:40012584:40012585:40012587:40012590:40012593:40012597:40012598:40012613:40012616:40012637:40012659
30000198,15,The Forge,Mivora,Paala,0.13,30000197,40012664:40012665:40012667:40012671:40012682:40012685:40012691
30000199,15,The Forge,Mivora,Fuskunen,0.22,30000197:30003446,40012696:40012698:40012701:40012705:40012711:40012735:40012762:40012765
30000200,13,The Forge,Mivora,Akkio,0.16,30000196:30002062:30002475,40012771:40012772:40012774:40012775:40012777:40012794:40012798:40012801:40012809:40012825:40012833
30000201,11,The Forge,Orpana,Uchoshi,0.47,30000193:30000202:30000206,40012838:40012839:40012840:40012842:40012844:40012846:40012849:40012852:40012856:40012861:40012887:40012920
30000202,10,The Forge,Orpana,Mastakomon,0.46,30000201:30000203:30000204:30000207,40012922:40012923:40012924:40012926:40012927:40012928:40012931:40012934:40012937:40012941:40012943:40012951
30000203,11,The Forge,Orpana,Eruka,0.42,30000202:30000207,40012954:40012956:40012958:40012960:40012975:40012981:40012984:40012987:40013007:40013012
30000204,9,The Forge,Orpana,Ohkunen,0.38,30000202:30000205,40013017:40013020:40013022:40013024:40013038:40013063
30000205,8,The Forge,Orpana,Obe,0.35,30000204:30000250:30001448,40013068:40013069:40013070:40013074:40013078:40013082
30000206,12,The Forge,Orpana,Wirashoda,0.49,30000201,40013087:40013088:40013090:40013092:40013093:40013095:40013100:40013119:40013128
30000207,11,The Forge,Orpana,Osaa,0.33,30000192:30000202:30000203,40013131:40013133:40013136:40013139:40013157:40013174:40013176
30000208,18,Vale of the Silent,U29-0S,LZ-6SU,-0.17,30000211:30000213:30000214,40013181:40013183:40013186:40013188:40013191:40013194:40013201:40013209:40013213:40013231:40013260
30000209,16,Vale of the Silent,U29-0S,MC6O-F,-0.28,30000212:30000214:30000242,40013262:40013263:40013265:40013267:40013269:40013274:40013279:40013297:40013302
30000210,18,Vale of the Silent,U29-0S,U54-1L,-0.27,30000212:30000222,40013308:40013310:40013311:40013312:40013313:40013315:40013316:40013319:40013332:40013367:40013371
30000211,19,Vale of the Silent,U29-0S,B-588R,-0.15,30000208:30000213,40013376:40013377:40013378:40013380:40013384:40013404:40013425:40013452:40013456
30000212,17,Vale of the Silent,U29-0S,NCGR-Q,-0.26,30000209:30000210:30000214:30000289,40013487:40013489:40013491:40013494:40013506:40013530:40013559
30000213,19,Vale of the Silent,U29-0S,G-LOIT,-0.16,30000208:30000211:30000268,40013563:40013565:40013567:40013592:40013613:40013634:40013637:40013644
30000214,17,Vale of the Silent,U29-0S,HE-V4V,-0.21,30000208:30000209:30000212,40013679:40013680:40013683:40013685:40013687:40013690:40013693:40013708:40013725:40013738:40013773
30000215,15,Vale of the Silent,BUG6-X,N-HSK0,-0.36,30000216:30000217:30000219:30000251,40013789:40013790:40013792:40013796:40013798:40013802:40013808
30000216,16,Vale of the Silent,BUG6-X,05R-7A,-0.40,30000215:30000219:30000221,40013815:40013816:40013817:40013819:40013823:40013827:40013830:40013833:40013838:40013841
30000217,16,Vale of the Silent,BUG6-X,7-UH4Z,-0.36,30000215:30000218:30000220:30000221,40013845:40013847:40013850:40013852:40013854:40013856:40013877:40013897:40013935
30000218,17,Vale of the Silent,BUG6-X,5ZO-NZ,-0.30,30000217,40013940:40013942:40013945:40013946:40013948:40013950:40013954:40013975:40013996
30000219,16,Vale of the Silent,BUG6-X,FS-RFL,-0.37,30000215:30000216,40014001:40014002:40014004:40014005:40014008:40014012:40014034:40014058
30000220,17,Vale of the Silent,BUG6-X,Y0-BVN,-0.44,30000217,40014064:40014066:40014068:40014070:40014072:40014074:40014078:40014081:40014106
30000221,17,Vale of the Silent,BUG6-X,X97D-W,-0.43,30000216:30000217,40014124:40014126:40014131:40014148:40014168:40014171:40014199
30000222,19,Vale of the Silent,OSJ7-I,0-R5TS,-0.22,30000210:30000223,40014204:40014206:40014212:40014220:40014241:40014277:40014280
30000223,19,Vale of the Silent,OSJ7-I,H-UCD1,-0.17,30000222:30000224,40014284:40014286:40014289:40014291:40014318:40014328
30000224,18,Vale of the Silent,OSJ7-I,7-K5EL,-0.15,30000223:30000225,40014331:40014333:40014335:40014358:40014377:40014401:40014418
30000225,17,Vale of the Silent,OSJ7-I,H-5GUI,-0.14,30000224:30000226:30000274:30002421,40014420:40014422:40014424:40014425:40014428:40014448:40014476:40014496:40014499
30000226,18,Vale of the Silent,OSJ7-I,FH-TTC,-0.14,30000225:30000227:30000280,40014506:40014507:40014508:40014511:40014514:40014518:40014534
30000227,19,Vale of the Silent,OSJ7-I,FMBR-8,-0.14,30000226:30000295,40014571:40014573:40014575:40014576:40014579:40014593:40014612:40014623:40014628:40014638
30000228,17,Vale of the Silent,DMXN-3,3HX-DL,-0.42,30000232:30000233:30000235,40014641:40014642:40014645:40014649:40014652:40014656:40014671:40014677
30000229,14,Vale of the Silent,DMXN-3,UH-9ZG,-0.46,30000230:30000231:30000247,40014682:40014684:40014687:40014688:40014691:40014695
30000230,15,Vale of the Silent,DMXN-3,NFM-0V,-0.50,30000229:30000232,40014701:40014702:40014704:40014705:40014707:40014710:40014727:40014748
30000231,15,Vale of the Silent,DMXN-3,YXIB-I,-0.51,30000229,40014756:40014758:40014762:40014780:40014798:40014821:40014832:40014834:40014842
30000232,16,Vale of the Silent,DMXN-3,MY-T2P,-0.38,30000228:30000230:30000234:30000237,40014845:40014846:40014847:40014848:40014851:40014853:40014874:40014897:40014901
30000233,18,Vale of the Silent,DMXN-3,FA-DMO,-0.39,30000228:30000235:30000236,40014905:40014907:40014909:40014911:40014914:40014917:40014920:40014923:40014928:40014952:40014972:40015001:40015005
30000234,17,Vale of the Silent,DMXN-3,GEKJ-9,-0.39,30000232,40015010:40015011:40015013:40015030:40015054:40015080:40015087
30000235,18,Vale of the Silent,DMXN-3,Q-R3GP,-0.36,30000228:30000233,40015093:40015095:40015097:40015098:40015100:40015103:40015106:40015122:40015127:40015130:40015156
30000236,19,Vale of the Silent,DMXN-3,N-5QPW,-0.39,30000233,40015162:40015163:40015164:40015166:40015168:40015172:40015175:40015192:40015217
30000237,17,Vale of the Silent,DMXN-3,XV-8JQ,-0.39,30000232,40015222:40015223:40015226:40015228:40015231:40015260:40015283
30000238,16,Vale of the Silent,I89-EP,WBR5-R,-0.52,30000239:30000242:30000243:30000263,40015291:40015293:40015296:40015300:40015304
30000239,15,Vale of the Silent,I89-EP,4GYV-Q,-0.54,30000238:30000240,40015309:40015310:40015311:40015313:40015315:40015317:40015319:40015322:40015325:40015334:40015339:40015358
30000240,14,Vale of the Silent,I89-EP,4-HWWF,-0.47,30000239:30000241:30000242:30000243,40015363:40015364:40015366:40015368:40015381:40015403:40015426
30000241,13,Vale of the Silent,I89-EP,YMJG-4,-0.42,30000240:30000253,40015457:40015459:40015461:40015463:40015466:40015476:40015480:40015483
30000242,15,Vale of the Silent,I89-EP,8TPX-N,-0.44,30000209:30000238:30000240,40015487:40015488:40015490:40015492:40015494:40015497:40015500:40015522
30000243,15,Vale of the Silent,I89-EP,PM-DWE,-0.42,30000238:30000240,40015530:40015532:40015533:40015534:40015535:40015538:40015541:40015545
30000244,12,Vale of the Silent,Z-DO53,K8X-6B,-0.43,30000245:30000246:30000247:30000249,40015550:40015552:40015554:40015568:40015577:40015597:40015624
30000245,13,Vale of the Silent,Z-DO53,X445-5,-0.41,30000244:30000247,40015630:40015631:40015632:40015634:40015636:40015639:40015641:40015643:40015646
30000246,12,Vale of the Silent,Z-DO53,KRUN-N,-0.39,30000244:30000249:30000253,40015651:40015653:40015655:40015659:40015662:40015665:40015680:40015701:40015731
30000247,13,Vale of the Silent,Z-DO53,9OO-LH,-0.47,30000229:30000244:30000245:30000864,40015736:40015738:40015740:40015743:40015745:40015749:40015753:40015759
30000248,13,Vale of the Silent,Z-DO53,V-OJEN,-0.32,30000251:30000253,40015766:40015768:40015770:40015772:40015790:40015796:40015815:40015820:40015831:40015836
30000249,11,Vale of the Silent,Z-DO53,EIDI-N,-0.41,30000244:30000246:30000252:30000253,40015840:40015841:40015843:40015844:40015847:40015848:40015851:40015855
30000250,9,Vale of the Silent,Z-DO53,P3EN-E,-0.27,30000205:30000252,40015860:40015861:40015862:40015863:40015865:40015867:40015870:40015872:40015876:40015881
30000251,14,Vale of the Silent,Z-DO53,49-0LI,-0.32,30000215:30000248,40015914:40015915:40015917:40015918:40015921:40015927:40015930:40015934
30000252,10,Vale of the Silent,Z-DO53,IPAY-2,-0.34,30000249:30000250:30000256,40015942:40015944:40015946:40015950:40015952:40015959:40015963
30000253,12,Vale of the Silent,Z-DO53,DAYP-G,-0.39,30000241:30000246:30000248:30000249,40015967:40015968:40015981:40015997
30000254,12,Vale of the Silent,YUT3-U,IFJ-EL,-0.29,30000255:30000256:30000257:30000260,40016008:40016009:40016010:40016012:40016030:40016033:40016057
30000255,13,Vale of the Silent,YUT3-U,47L-J4,-0.26,30000254:30000257:30000258:30000259,40016088:40016089:40016092:40016093:40016094:40016097:40016099:40016102
30000256,11,Vale of the Silent,YUT3-U,Q-L07F,-0.32,30000252:30000254,40016108:40016110:40016112:40016123:40016125:40016150:40016174
30000257,13,Vale of the Silent,YUT3-U,E-D0VZ,-0.27,30000254:30000255,40016178:40016180:40016181:40016184:40016188:40016189:40016192:40016193
30000258,14,Vale of the Silent,YUT3-U,6WW-28,-0.23,30000255,40016197:40016199:40016201:40016204:40016216:40016219
30000259,14,Vale of the Silent,YUT3-U,A8A-JN,-0.27,30000255:30000260,40016244:40016246:40016248:40016252:40016259:40016264:40016281:40016308
30000260,13,Vale of the Silent,YUT3-U,S-NJBB,-0.28,30000254:30000259,40016315:40016317:40016318:40016320:40016327:40016330:40016334:40016363:40016370
30000261,18,Vale of the Silent,5YHF-H,T-GCGL,-0.73,30000262:30000263:30000264,40016381:40016383:40016385:40016387:40016390:40016394:40016412:40016431:40016459:40016484:40016486:40016512
30000262,18,Vale of the Silent,5YHF-H,0MV-4W,-0.66,30000261:30000263,40016515:40016517:40016519:40016521:40016526:40016533:40016556:40016595:40016607
30000263,17,Vale of the Silent,5YHF-H,TVN-FM,-0.65,30000238:30000261:30000262:30000265,40016610:40016611:40016612:40016614:40016617:40016620:40016625:40016628:40016649:40016652
30000264,19,Vale of the Silent,5YHF-H,V-NL3K,-0.76,30000261:30000301,40016658:40016660:40016662:40016665:40016670:40016672:40016686:40016709:40016725:40016732:40016740:40016742
30000265,18,Vale of the Silent,5YHF-H,AZBR-2,-0.71,30000263:30000266,40016745:40016746:40016748:40016750:40016751:40016753:40016756:40016759:40016764:40016779:40016784
30000266,17,Vale of the Silent,5YHF-H,Z-8Q65,-0.77,30000265:30000267,40016799:40016801:40016805:40016812:40016837:40016851:40016860
30000267,16,Vale of the Silent,5YHF-H,0J3L-V,-0.79,30000266:30000871,40016866:40016867:40016868:40016869:40016870:40016872:40016874:40016877:40016883:40016891:40016895:40016902:40016906
30000268,20,Vale of the Silent,UK-MI6,H-NOU5,-0.14,30000213:30000269,40016911:40016912:40016914:40016916:40016917:40016919:40016923:40016926:40016929:40016938:40016940
30000269,21,Vale of the Silent,UK-MI6,KX-2UI,-0.16,30000268:30000270:30000271,40016973:40016974:40016977:40016978:40016982:40016985:40016989:40016998:40017000:40017004
30000270,22,Vale of the Silent,UK-MI6,MO-FIF,-0.11,30000269:30000272,40017010:40017011:40017012:40017013:40017017:40017019:40017022:40017023:40017026
30000271,22,Vale of the Silent,UK-MI6,97-M96,-0.19,30000269,40017030:40017032:40017034:40017037:40017040:40017043:40017047:40017060
30000272,23,Vale of the Silent,UK-MI6,MA-XAP,-0.10,30000270:30000273,40017093:40017094:40017096:40017098:40017101:40017109:40017127:40017152
30000273,24,Vale of the Silent,UK-MI6,C-J7CR,-0.09,30000272,40017161:40017162:40017164:40017166:40017172:40017173:40017176:40017178:40017200:40017205
30000274,18,Vale of the Silent,YDS0-Y,Q-EHMJ,-0.15,30000225:30000275,40017210:40017212:40017213:40017215:40017234:40017236:40017240:40017258:40017275
30000275,19,Vale of the Silent,YDS0-Y,XSQ-TF,-0.16,30000274:30000276,40017278:40017280:40017282:40017284:40017290:40017295:40017316:40017341:40017346:40017372:40017399:40017404
30000276,20,Vale of the Silent,YDS0-Y,H-1EOH,-0.17,30000275:30000277,40017407:40017408:40017409:40017410:40017412:40017414:40017417:40017421
30000277,21,Vale of the Silent,YDS0-Y,IR-DYY,-0.16,30000276:30000278:30000279,40017426:40017428:40017430:40017433:40017437:40017442
30000278,22,Vale of the Silent,YDS0-Y,C-DHON,-0.12,30000277,40017455:40017457:40017458:40017460:40017462:40017465:40017476:40017485
30000279,22,Vale of the Silent,YDS0-Y,F-D49D,-0.19,30000277,40017495:40017497:40017498:40017501:40017506:40017508:40017512:40017531:40017535:40017540:40017556
30000280,19,Vale of the Silent,A3-T8B,MQ-O27,-0.13,30000226:30000281,40017560:40017561:40017562:40017564:40017568:40017591:40017595
30000281,20,Vale of the Silent,A3-T8B,H-EY0P,-0.16,30000280:30000282,40017600:40017601:40017602:40017605:40017607:40017610:40017612
30000282,21,Vale of the Silent,A3-T8B,UNAG-6,-0.22,30000281:30000283:30000287,40017619:40017621:40017624:40017627:40017630:40017632:40017635:40017638:40017655:40017679
30000283,20,Vale of the Silent,A3-T8B,E-SCTX,-0.21,30000282:30000284:30000286,40017707:40017709:40017711:40017715:40017736:40017754:40017773:40017798:40017823
30000284,19,Vale of the Silent,A3-T8B,S6QX-N,-0.22,30000283:30000285:30000286,40017827:40017829:40017846:40017851:40017876:40017903:40017908
30000285,18,Vale of the Silent,A3-T8B,IT-YAU,-0.16,30000284:30000288,40017915:40017917:40017919:40017921:40017924:40017927:40017931:40017937:40017945:40017962
30000286,20,Vale of the Silent,A3-T8B,1VK-6B,-0.17,30000283:30000284:30000323,40017967:40017968:40017971:40017972
30000287,22,Vale of the Silent,A3-T8B,7-PO3P,-0.26,30000282,40017978:40017980:40017982:40017984:40017987:40017994:40018012:40018033:40018057
30000288,17,Vale of the Silent,A3-T8B,1W-0KS,-0.10,30000285:30002479,40018063:40018064:40018066:40018068:40018089:40018108:40018134
30000289,18,Vale of the Silent,DILJ-7,669-IX,-0.27,30000212:30000290:30000291,40018139:40018140:40018141:40018143:40018146:40018150:40018153:40018162:40018185
30000290,19,Vale of the Silent,DILJ-7,0R-F2F,-0.31,30000289:30000292:30000299,40018190:40018191:40018193:40018196:40018199:40018201:40018204:40018205
30000291,19,Vale of the Silent,DILJ-7,R-P7KL,-0.26,30000289:30000292:30000293,40018210:40018212:40018214:40018216:40018220:40018247:40018266:40018292
30000292,20,Vale of the Silent,DILJ-7,2DWM-2,-0.20,30000290:30000291:30000294,40018299:40018300:40018302:40018304:40018321:40018345:40018348:40018353
30000293,20,Vale of the Silent,DILJ-7,XF-PWO,-0.31,30000291,40018358:40018359:40018360:40018362:40018365:40018371:40018380:40018385
30000294,21,Vale of the Silent,DILJ-7,1N-FJ8,-0.22,30000292,40018415:40018416:40018417:40018419:40018421:40018422:40018443:40018463:40018493
30000295,20,Vale of the Silent,0-8MWQ,VI2K-J,-0.13,30000227:30000296:30000298,40018499:40018501:40018503:40018505:40018508:40018512:40018535:40018562:40018590
30000296,21,Vale of the Silent,0-8MWQ,ZLZ-1Z,-0.17,30000295:30000297:30000298,40018594:40018595:40018596:40018598:40018615:40018634:40018657:40018660
30000297,21,Vale of the Silent,0-8MWQ,6Y-WRK,-0.16,30000296:30000299,40018698:40018699:40018700:40018701:40018702:40018713:40018717:40018721:40018725:40018729:40018730:40018734
30000298,21,Vale of the Silent,0-8MWQ,RVCZ-C,-0.14,30000295:30000296:30000300,40018743:40018744:40018746:40018750:40018754:40018778
30000299,20,Vale of the Silent,0-8MWQ,5T-KM3,-0.17,30000290:30000297:30000307,40018784:40018786:40018788:40018791:40018792:40018796:40018800:40018825:40018831:40018835
30000300,22,Vale of the Silent,0-8MWQ,LS9B-9,-0.20,30000298,40018837:40018839:40018841:40018855:40018858:40018861:40018885:40018916:40018920
30000301,20,Vale of the Silent,F-V9QW,1-GBBP,-0.77,30000264:30000302:30000303:30000304,40018923:40018925:40018928:40018930:40018936:40018940:40018943:40018947
30000302,21,Vale of the Silent,F-V9QW,C-FP70,-0.76,30000301:30000303:30000304,40018951:40018953:40018955:40018957:40018959:40018961:40018970:40018987:40019018:40019028:40019032
30000303,21,Vale of the Silent,F-V9QW,T-ZWA1,-0.75,30000301:30000302:30000899,40019037:40019038:40019041:40019043:40019046:40019049:40019067:40019070:40019097:40019102
30000304,21,Vale of the Silent,F-V9QW,ZA0L-U,-0.81,30000301:30000302:30000305,40019105:40019107:40019108:40019109:40019126:40019145:40019172:40019178
30000305,22,Vale of the Silent,F-V9QW,G96R-F,-0.87,30000304:30000306,40019183:40019184:40019186:40019188:40019191:40019194:40019198:40019200:40019204
30000306,23,Vale of the Silent,F-V9QW,Y-ZXIO,-0.90,30000305,40019236:40019238:40019243:40019247:40019251:40019272:40019294
30000307,21,Vale of the Silent,E-8CSQ,B-E3KQ,-0.26,30000299:30000308:30000309,40019301:40019302:40019303:40019305:40019308:40019327:40019346:40019370:40019376:40019379
30000308,21,Vale of the Silent,E-8CSQ,Y5J-EU,-0.22,30000307:30000309:30000310:30000312:30000898,40019383:40019384:40019386:40019388:40019391:40019393:40019396:40019400
30000309,22,Vale of the Silent,E-8CSQ,O-LR1H,-0.25,30000307:30000308:30000310,40019405:40019407:40019409:40019411:40019414:40019416:40019418:40019421:40019424:40019448
30000310,22,Vale of the Silent,E-8CSQ,G5ED-Y,-0.27,30000308:30000309:30000311:30000312:30000313,40019454:40019456:40019458:40019459:40019465:40019470:40019489:40019493
30000311,23,Vale of the Silent,E-8CSQ,BR-6XP,-0.25,30000310:30000312:30000313:30000314,40019527:40019528:40019530:40019532:40019535:40019548:40019557:40019568:40019605
30000312,22,Vale of the Silent,E-8CSQ,8-TFDX,-0.19,30000308:30000310:30000311:30000313,40019610:40019611:40019614:40019618:40019626
30000313,23,Vale of the Silent,E-8CSQ,UL-4ZW,-0.41,30000310:30000311:30000312:30000320,40019633:40019634:40019636:40019639:40019640:40019644:40019650:40019657:40019660
30000314,24,Vale of the Silent,9KX-M0,A-QRQT,-0.13,30000311:30000315,40019662:40019664:40019665:40019667:40019678:40019681:40019688:40019714
30000315,24,Vale of the Silent,9KX-M0,WMBZ-U,-0.09,30000314:30000316,40019746:40019747:40019749:40019752:40019755:40019757:40019759:40019786:40019788
30000316,23,Vale of the Silent,9KX-M0,PX5-LR,-0.17,30000315:30000317,40019795:40019807:40019809:40019833:40019850:40019867
30000317,22,Vale of the Silent,9KX-M0,A3-RQ3,-0.30,30000316:30000318:30000319,40019902:40019903:40019904:40019905:40019906:40019908:40019917:40019921
30000318,21,Vale of the Silent,9KX-M0,9-GBPD,-0.16,30000317:30000319:30002470,40019928:40019930:40019932:40019934:40019937:40019940:40019958:40019981
30000319,22,Vale of the Silent,9KX-M0,LS-JEP,-0.24,30000317:30000318,40020013:40020014:40020016:40020018:40020023:40020027:40020031:40020054:40020059
30000320,22,Vale of the Silent,88G-M4,R-RSZZ,-0.44,30000313:30000321:30000322:30000323,40020086:40020087:40020089:40020091:40020093:40020096:40020105:40020129:40020148:40020181
30000321,22,Vale of the Silent,88G-M4,MGAM-4,-0.58,30000320:30000322:30000323:30000324,40020188:40020191:40020192:40020195:40020200
30000322,22,Vale of the Silent,88G-M4,VORM-W,-0.56,30000320:30000321:30000323:30000324,40020206:40020207:40020208:40020210:40020211:40020214:40020216:40020237:40020257
30000323,21,Vale of the Silent,88G-M4,7G-H7D,-0.36,30000286:30000320:30000321:30000322,40020259:40020260:40020262:40020263:40020265:40020266:40020287:40020312:40020319
30000324,23,Vale of the Silent,88G-M4,Q3-BAY,-0.81,30000321:30000322:30000325,40020346:40020348:40020350:40020352:40020364:40020383:40020414
30000325,24,Vale of the Silent,88G-M4,JZV-F4,-0.85,30000324,40020419:40020422:40020424:40020447:40020472
30000326,-1,UUA-F4,L5-H1O,WF-1LM,0.00,,40020477:40020479:40020481:40020483:40020485:40020489:40020496:40020515:40020534:40020562
30000327,-1,UUA-F4,L5-H1O,D95-FQ,0.00,,40020568:40020570:40020571:40020574:40020576:40020581:40020605
30000328,-1,UUA-F4,L5-H1O,ZSPJ-K,0.00,,40020607:40020608:40020611:40020614:40020616:40020619:40020625
30000329,-1,UUA-F4,L5-H1O,U1F-86,0.00,,40020629:40020630:40020631:40020633:40020634:40020636:40020638:40020642:40020644:40020647:40020674:40020713:40020717
30000330,-1,UUA-F4,L5-H1O,T-P7A6,0.00,,40020721:40020722:40020724:40020748:40020772:40020794:40020799:40020829
30000331,-1,UUA-F4,L5-H1O,Y-T3JJ,0.00,,40020835:40020836:40020838:40020841:40020844:40020862:40020871:40020903
30000332,-1,UUA-F4,L5-H1O,F3R-IA,0.00,,40020925:40020928:40020931:40020940:40020951:40020954:40020974:40020978:40020982:40020983
30000333,-1,UUA-F4,L5-H1O,74-YTJ,0.00,,40020988:40020990:40020991:40020992:40020994:40020997:40021001:40021004
30000334,-1,UUA-F4,J-4QD7,8-RS3U,0.00,,40021007:40021008:40021009:40021011:40021013:40021015:40021018:40021035:40021052:40021060
30000335,-1,UUA-F4,J-4QD7,OVFN-N,0.00,,40021092:40021094:40021097:40021103:40021108:40021128:40021154:40021159
30000336,-1,UUA-F4,J-4QD7,1Q-BBM,0.00,,40021163:40021164:40021165:40021166:40021168:40021172:40021175:40021178:40021181:40021183:40021187
30000337,-1,UUA-F4,J-4QD7,WXNC-N,0.00,,40021192:40021194:40021196:40021198:40021201:40021208:40021213
30000338,-1,UUA-F4,J-4QD7,G-EA07,0.00,,40021223:40021225:40021227:40021229:40021231:40021236:40021238:40021255:40021265:40021286
30000339,-1,UUA-F4,J-4QD7,X-L6BO,0.00,,40021294:40021296:40021298:40021300:40021304:40021330:40021339
30000340,-1,UUA-F4,LC-AQD,D-PHUA,0.00,,40021341:40021342:40021343:40021346:40021348:40021351:40021366
30000341,-1,UUA-F4,LC-AQD,3-HXHQ,0.00,,40021376:40021377:40021379:40021381:40021396:40021419:40021454
30000342,-1,UUA-F4,LC-AQD,18A-NB,0.00,,40021459:40021460:40021461:40021462:40021463:40021465:40021467:40021469
30000343,-1,UUA-F4,LC-AQD,3-J5OQ,0.00,,40021472:40021474:40021476:40021477:40021479:40021481:40021503:40021524:40021552
30000344,-1,UUA-F4,LC-AQD,GYF-GD,0.00,,40021584:40021586:40021587:40021589:40021591:40021594:40021602:40021603
30000345,-1,UUA-F4,LC-AQD,W-6TS9,0.00,,40021613:40021614:40021615:40021619:40021623:40021627
30000346,-1,UUA-F4,LC-AQD,VIG-VR,0.00,,40021636:40021638:40021640:40021642:40021648:40021660:40021679:40021706
30000347,-1,UUA-F4,7PUP-K,KX-P5C,0.00,,40021711:40021712:40021715:40021717:40021733:40021739:40021765:40021770
30000348,-1,UUA-F4,7PUP-K,N-FJBK,0.00,,40021774:40021775:40021776:40021778:40021779:40021782:40021786:40021792:40021799:40021806:40021831
30000349,-1,UUA-F4,7PUP-K,2-4ZT5,0.00,,40021836:40021837:40021838:40021840:40021842:40021843:40021845:40021849:40021856:40021860
30000350,-1,UUA-F4,7PUP-K,NVN-6F,0.00,,40021863:40021865:40021866:40021868:40021870:40021885:40021906:40021915
30000351,-1,UUA-F4,7PUP-K,09-8TH,0.00,,40021933:40021935:40021936:40021938:40021940:40021943:40021966:40021987
30000352,-1,UUA-F4,7PUP-K,TI0-AX,0.00,,40022020:40022022:40022024:40022042:40022066:40022095:40022100
30000353,-1,UUA-F4,V8UW-M,7O-POM,0.00,,40022105:40022106:40022107:40022109:40022113:40022116:40022120:40022144:40022148:40022153
30000354,-1,UUA-F4,V8UW-M,L6Q-SX,0.00,,40022158:40022160:40022161:40022163:40022166:40022168:40022171:40022176:40022180:40022184:40022185:40022189
30000355,-1,UUA-F4,V8UW-M,BFJ-TB,0.00,,40022193:40022194:40022195:40022197:40022199:40022202:40022203:40022210:40022224:40022239
30000356,-1,UUA-F4,V8UW-M,ZZ7-L6,0.00,,40022271:40022273:40022275:40022278:40022283:40022285:40022306
30000357,-1,UUA-F4,V8UW-M,L-CHVW,0.00,,40022319:40022320:40022323:40022325:40022327:40022344:40022371:40022373
30000358,-1,UUA-F4,V8UW-M,X0LN-U,0.00,,40022400:40022402:40022404:40022406:40022408:40022424:40022429:40022460:40022463
30000359,-1,UUA-F4,V8UW-M,RQAE-M,0.00,,40022469:40022470:40022471:40022473:40022474:40022476:40022480:40022490:40022495:40022514:40022518
30000360,-1,UUA-F4,T7B-VB,7CO-SA,0.00,,40022524:40022525:40022527:40022530:40022531:40022532:40022535:40022542:40022547:40022556
30000361,-1,UUA-F4,T7B-VB,4G-E5A,0.00,,40022560:40022562:40022564:40022567:40022569:40022593:40022619:40022623
30000362,-1,UUA-F4,T7B-VB,A-VWK9,0.00,,40022627:40022629:40022631:40022632:40022652:40022678
30000363,-1,UUA-F4,T7B-VB,JQHP-4,0.00,,40022713:40022714:40022716:40022717:40022736:40022738:40022768:40022790:40022796
30000364,-1,UUA-F4,T7B-VB,6Q5K-5,0.00,,40022802:40022804:40022806:40022807:40022808:40022809:40022811:40022813:40022816:40022822:40022826:40022834:40022841
30000365,-1,UUA-F4,T7B-VB,P-MVFP,0.00,,40022845:40022847:40022848:40022849:40022851:40022864:40022886
30000366,-1,UUA-F4,B-PHYN,J-Z1UW,0.00,,40022922:40022924:40022926:40022930:40022933:40022937:40022957:40022978:40023014:40023017:40023020
30000367,-1,UUA-F4,B-PHYN,W477-P,0.00,,40023026:40023028:40023029:40023030:40023034:40023037:40023052
30000368,-1,UUA-F4,B-PHYN,NQ1-BL,0.00,,40023057:40023059:40023060:40023062:40023065:40023068:40023088:40023094:40023122:40023127
30000369,-1,UUA-F4,B-PHYN,K7A-G8,0.00,,40023131:40023132:40023134:40023135:40023140:40023162:40023184
30000370,-1,UUA-F4,B-PHYN,HP-PMX,0.00,,40023191:40023193:40023194:40023196:40023199:40023204
30000371,-1,UUA-F4,B-PHYN,6BN-K9,0.00,,40023208:40023210:40023212:40023214:40023216:40023219:40023221:40023225:40023228:40023248:40023275:40023287
30000372,-1,UUA-F4,B-PHYN,WLE-PY,0.00,,40023292:40023293:40023294:40023296:40023298:40023300:40023303:40023307:40023311:40023314:40023343:40023369
30000373,-1,UUA-F4,B-PHYN,EH-HXW,0.00,,40023375:40023376:40023378:40023380:40023383:40023393:40023417:40023421
30000374,-1,UUA-F4,B-PHYN,OS-RR3,0.00,,40023426:40023428:40023430:40023432:40023434:40023437:40023440:40023458
30000375,-1,UUA-F4,B-PHYN,V4-GZL,0.00,,40023485:40023486:40023487:40023489:40023492:40023495:40023498:40023524:40023533
30000376,-1,UUA-F4,9RW5-Z,4C-Z91,0.00,,40023537:40023539:40023541:40023543:40023545:40023548:40023550:40023566:40023599
30000377,-1,UUA-F4,9RW5-Z,RU-97T,-1.00,,40023606:40023608:40023609:40023611:40023613:40023616
30000378,-1,UUA-F4,9RW5-Z,1S-1V7,0.00,,40023621:40023622:40023623:40023625:40023627:40023629:40023651
30000379,-1,UUA-F4,9RW5-Z,PE1-R1,0.00,,40023681:40023682:40023684:40023686:40023689:40023691:40023694:40023697:40023708:40023735:40023739
30000380,-1,UUA-F4,9RW5-Z,Polaris,0.00,,40023744:40023745:40023747:40023749:40023751:40023753:40023757:40023761:40023764
30000381,-1,UUA-F4,9RW5-Z,JB-007,0.00,,40023767:40023768:40023770:40023773:40023789:40023810:40023834
30000382,-1,UUA-F4,VL-OGL,USJ2-M,0.00,,40023839:40023841:40023843:40023847:40023851:40023869
30000383,-1,UUA-F4,VL-OGL,7M-RAL,0.00,,40023873:40023874:40023877:40023879:40023882:40023885:40023891:40023896
30000384,-1,UUA-F4,VL-OGL,LPBU-U,0.00,,40023900:40023902:40023903:40023904:40023906:40023925:40023946:40023960
30000385,-1,UUA-F4,VL-OGL,RF-342,0.00,,40023965:40023967:40023971:40023973:40023977:40023997:40024023
30000386,-1,UUA-F4,VL-OGL,J2V-XY,0.00,,40024028:40024031:40024033:40024036:40024037:40024040:40024042:40024045:40024048:40024057:40024063
30000387,-1,UUA-F4,VL-OGL,Z-JBTR,0.00,,40024072:40024074:40024075:40024076:40024078:40024081:40024083:40024089:40024108:40024113
30000388,-1,UUA-F4,VL-OGL,S-QNXH,0.00,,40024119:40024121:40024122:40024124:40024126:40024143:40024173:40024203:40024208
30000389,-1,UUA-F4,VW-JMB,S94-X8,0.00,,40024212:40024213:40024214:40024217:40024218:40024221
30000390,-1,UUA-F4,VW-JMB,J-YQEC,0.00,,40024226:40024228:40024230:40024232:40024235:40024238:40024250:40024274:40024299:40024305:40024308
30000391,-1,UUA-F4,VW-JMB,8MX-OR,0.00,,40024313:40024314:40024316:40024317:40024319:40024337:40024359:40024385:40024391
30000392,-1,UUA-F4,VW-JMB,97YC-C,0.00,,40024396:40024398:40024399:40024401:40024403:40024404:40024407:40024412:40024414:40024421:40024435
30000393,-1,UUA-F4,VW-JMB,V-AMD5,0.00,,40024441:40024443:40024445:40024447:40024449:40024451:40024452:40024473:40024483
30000394,-1,UUA-F4,VW-JMB,U-JC8X,0.00,,40024488:40024490:40024492:40024495:40024512:40024518
30000395,-1,UUA-F4,HN5-RL,1HH3-E,0.00,,40024526:40024528:40024530:40024531:40024532:40024534:40024550:40024558
30000396,-1,UUA-F4,HN5-RL,DUIU-Q,0.00,,40024563:40024565:40024567:40024568:40024571:40024575:40024578:40024581:40024604:40024627:40024632
30000397,-1,UUA-F4,HN5-RL,LQH0-H,0.00,,40024636:40024637:40024639:40024642:40024644:40024647:40024654:40024678
30000398,-1,UUA-F4,HN5-RL,FRW3-2,0.00,,40024684:40024686:40024687:40024689:40024692:40024694:40024700:40024709:40024732:40024766
30000399,-1,UUA-F4,HN5-RL,9MX-1C,0.00,,40024771:40024774:40024776:40024778:40024779:40024782:40024785:40024791
30000400,-1,UUA-F4,HN5-RL,IED-4U,0.00,,40024821:40024823:40024826:40024828:40024848:40024876:40024904
30000401,-1,UUA-F4,HN5-RL,N-9EOQ,0.00,,40024910:40024911:40024912:40024913:40024915:40024917:40024922:40024945:40024946:40024951
30000402,-1,UUA-F4,RO-AZT,6F3-TK,0.00,,40024957:40024958:40024960:40024963:40024965:40024988:40025006
30000403,-1,UUA-F4,RO-AZT,2E0P-2,0.00,,40025037:40025039:40025041:40025042:40025045:40025048:40025049:40025053:40025056
30000404,-1,UUA-F4,RO-AZT,U-ITH5,0.00,,40025059:40025060:40025062:40025064:40025066:40025070:40025086:40025107:40025127:40025131:40025135
30000405,-1,UUA-F4,RO-AZT,N-4G5L,0.00,,40025140:40025142:40025143:40025144:40025145:40025147:40025150:40025165:40025171:40025188:40025208
30000406,-1,UUA-F4,RO-AZT,RB-2EA,0.00,,40025214:40025215:40025217:40025219:40025221:40025239:40025267:40025296:40025303
30000407,-1,UUA-F4,RO-AZT,ZK5-42,0.00,,40025306:40025309:40025310:40025313:40025315:40025317:40025340
30000408,-1,UUA-F4,KCR-1E,YRZ-E4,0.00,,40025349:40025350:40025352:40025355:40025358:40025360:40025363:40025364:40025388
30000409,-1,UUA-F4,KCR-1E,A3-PAT,0.00,,40025397:40025398:40025399:40025400:40025402:40025404:40025407:40025409:40025416:40025419:40025423
30000410,-1,UUA-F4,KCR-1E,H55-2R,0.00,,40025429:40025430:40025432:40025433:40025434:40025437:40025439:40025460:40025464:40025469:40025472
30000411,-1,UUA-F4,KCR-1E,P6-DBM,0.00,,40025480:40025481:40025483:40025485:40025487:40025491:40025503:40025512:40025534
30000412,-1,UUA-F4,KCR-1E,9XI-0X,0.00,,40025540:40025542:40025544:40025545:40025550:40025554:40025574:40025598:40025630
30000413,-1,UUA-F4,KCR-1E,Q8T-MC,0.00,,40025656:40025658:40025661:40025664:40025668:40025673:40025679
30000414,-1,UUA-F4,FL-TD4,Z-YOJ9,0.00,,40025685:40025687:40025688:40025690:40025692:40025695:40025699:40025702:40025703:40025705:40025707:40025711:40025720:40025739
30000415,-1,UUA-F4,FL-TD4,4T4B-L,0.00,,40025745:40025746:40025749:40025753:40025758
30000416,-1,UUA-F4,FL-TD4,F-JB3H,0.00,,40025765:40025766:40025768:40025771:40025772:40025773:40025775:40025778:40025798:40025801
30000417,-1,UUA-F4,FL-TD4,XBO7-F,0.00,,40025805:40025806:40025808:40025810:40025813:40025815:40025822:40025829:40025833:40025837:40025864
30000418,-1,UUA-F4,FL-TD4,FI-449,0.00,,40025869:40025871:40025873:40025875:40025878:40025882:40025886:40025902:40025906:40025932:40025935
30000419,-1,UUA-F4,FL-TD4,UA7-U4,-0.01,,40025946:40025948:40025949:40025951:40025952:40025954:40025956:40025974:40026001
30000420,-1,UUA-F4,B-HLOG,VM-QFU,0.00,,40026019:40026020:40026021:40026023:40026025:40026049:40026051:40026054:40026075
30000421,-1,UUA-F4,B-HLOG,PU-1Z8,0.00,,40026082:40026083:40026084:40026088:40026091:40026095:40026100
30000422,-1,UUA-F4,B-HLOG,IEZW-V,0.00,,40026105:40026106:40026108:40026110:40026113:40026115:40026125:40026136:40026166
30000423,-1,UUA-F4,B-HLOG,B-DXO9,0.00,,40026171:40026174:40026176:40026178:40026182:40026204:40026227:40026257
30000424,-1,UUA-F4,B-HLOG,1TS-WN,0.00,,40026262:40026263:40026265:40026266:40026268:40026284:40026299:40026304:40026327:40026366
30000425,-1,UUA-F4,B-HLOG,16-31U,0.00,,40026370:40026371:40026373:40026374:40026375:40026377:40026381:40026401:40026403
30000426,-1,UUA-F4,B-HLOG,H472-N,0.00,,40026431:40026433:40026435:40026437:40026452:40026455:40026475:40026504:40026508
30000427,-1,UUA-F4,0VFS-G,U8MM-3,0.00,,40026513:40026514:40026515:40026517:40026519:40026521:40026523:40026526:40026533:40026556:40026559:40026588
30000428,-1,UUA-F4,0VFS-G,3C-26I,0.00,,40026593:40026594:40026596:40026597:40026599:40026614:40026635
30000429,-1,UUA-F4,0VFS-G,9K-VDI,0.00,,40026638:40026639:40026642:40026644:40026647:40026656:40026657:40026662:40026687:40026711
30000430,-1,UUA-F4,0VFS-G,L-SDU7,0.00,,40026716:40026718:40026720:40026723:40026725:40026742:40026760:40026786
30000431,-1,UUA-F4,0VFS-G,4-IPWK,0.00,,40026790:40026792:40026794:40026822:40026850:40026873
30000432,-1,UUA-F4,0VFS-G,Q-KCK3,0.00,,40026878:40026879:40026881:40026884:40026900
30000433,34,Detorid,GJH-1C,WU-FHQ,-0.26,30000434:30000458,40026925:40026926:40026927:40026930:40026932:40026936:40026947:40026951:40026974:40026980
30000434,35,Detorid,GJH-1C,V-4DBR,-0.32,30000433:30000435:30000436,40026984:40026985:40026987:40026989:40026993:40026996:40027009:40027012
30000435,36,Detorid,GJH-1C,B-5UFY,-0.40,30000434:30000438,40027017:40027018:40027020:40027022:40027023:40027025:40027027:40027030:40027036:40027038:40027043
30000436,36,Detorid,GJH-1C,SK42-F,-0.32,30000434:30000437,40027048:40027050:40027052:40027055:40027074
30000437,37,Detorid,GJH-1C,EU9-J3,-0.25,30000436,40027102:40027103:40027104:40027105:40027108:40027112:40027120:40027135:40027146:40027173:40027175
30000438,37,Detorid,GJH-1C,PQRE-W,-0.62,30000435:30000439,40027202:40027204:40027205:40027207:40027224:40027250:40027277
30000439,38,Detorid,GJH-1C,OEG-K9,-0.80,30000438:30000603,40027288:40027290:40027292:40027294:40027296:40027299:40027302:40027306:40027327:40027334:40027357:40027360:40027365
30000440,35,Detorid,RFQ-8Y,0-W778,-0.22,30000441:30000442:30000443,40027370:40027372:40027373:40027376:40027379:40027382:40027384
30000441,34,Detorid,RFQ-8Y,DG-8VJ,-0.35,30000440:30000442:30000445:30000455,40027411:40027413:40027415:40027417:40027427:40027433:40027437:40027440:40027458:40027477:40027508
30000442,35,Detorid,RFQ-8Y,5J4K-9,-0.20,30000440:30000441,40027512:40027514:40027516:40027517:40027532:40027536:40027557:40027567
30000443,36,Detorid,RFQ-8Y,MD-0AW,-0.20,30000440:30000444,40027575:40027577:40027597:40027618:40027638:40027676:40027677:40027681
30000444,37,Detorid,RFQ-8Y,H-FGJO,-0.21,30000443:30000466:30000492,40027685:40027686:40027689:40027692:40027694:40027698:40027700:40027703:40027712:40027734
30000445,35,Detorid,RFQ-8Y,1KAW-T,-0.40,30000441:30000838,40027761:40027763:40027767
30000446,38,Detorid,MZ-PA2,C5-SUU,-0.51,30000447:30000448:30000450:30000452,40027776:40027778:40027780:40027782:40027790:40027806:40027825:40027828:40027834:40027841
30000447,39,Detorid,MZ-PA2,XSUD-1,-0.34,30000446:30000472,40027847:40027848:40027850:40027851:40027853:40027856:40027860:40027862:40027883:40027908:40027914
30000448,37,Detorid,MZ-PA2,3-LJW3,-0.62,30000446:30000449:30000581,40027920:40027922:40027924:40027927:40027930:40027933:40027936:40027942:40027946:40027948
30000449,38,Detorid,MZ-PA2,ZLO3-V,-0.59,30000448:30000451,40027952:40027953:40027955:40027956:40027958:40027960:40027965:40027968:40027988:40028015:40028039:40028043:40028047
30000450,39,Detorid,MZ-PA2,P7MI-T,-0.40,30000446:30000451,40028091:40028093:40028095:40028097:40028100:40028121:40028124:40028133
30000451,39,Detorid,MZ-PA2,JFV-ID,-0.36,30000449:30000450,40028138:40028140:40028143:40028145:40028147:40028152:40028179:40028184
30000452,39,Detorid,MZ-PA2,3-3EZB,-0.51,30000446:30000453,40028198:40028200:40028202:40028205:40028222:40028243:40028271:40028273
30000453,40,Detorid,MZ-PA2,52CW-6,-0.46,30000452:30000485,40028275:40028278:40028280:40028297:40028320:40028334
30000454,34,Detorid,5F8-PZ,9-OUGJ,-0.36,30000455:30000459,40028339:40028341:40028344:40028346:40028352:40028372:40028373:40028400:40028406:40028410
30000455,33,Detorid,5F8-PZ,4NDT-W,-0.33,30000441:30000454:30000544,40028415:40028417:40028419:40028420:40028423:40028427:40028430:40028433:40028436:40028459:40028461:40028474
30000456,35,Detorid,5F8-PZ,GR-X26,-0.32,30000457:30000459,40028480:40028481:40028483:40028485:40028488:40028509:40028532
30000457,34,Detorid,5F8-PZ,6OU9-U,-0.32,30000456:30000458,40028539:40028541:40028543:40028563:40028581:40028612:40028655:40028659
30000458,33,Detorid,5F8-PZ,9N-0HF,-0.26,30000433:30000457:30000779,40028665:40028667:40028669:40028672:40028675:40028677
30000459,35,Detorid,5F8-PZ,U-OVFR,-0.31,30000454:30000456:30000461,40028681:40028682:40028684:40028688:40028690:40028693:40028700:40028724:40028725:40028759:40028763:40028766
30000460,37,Detorid,PR-ACX,G3D-ZT,-0.34,30000461:30000462:30000464:30000465,40028771:40028772:40028774:40028777:40028779:40028781:40028784:40028787:40028792:40028797
30000461,36,Detorid,PR-ACX,D-0UI0,-0.32,30000459:30000460,40028825:40028827:40028828:40028829:40028831:40028834:40028852:40028862
30000462,38,Detorid,PR-ACX,L8-WNE,-0.44,30000460:30000463,40028895:40028897:40028899:40028901:40028903:40028920:40028923:40028938:40028968
30000463,39,Detorid,PR-ACX,1-GBVE,-0.44,30000462:30000502,40028984:40028985:40028986:40028988:40028992:40028995:40028999:40029003
30000464,38,Detorid,PR-ACX,GC-LTF,-0.26,30000460,40029005:40029007:40029009:40029012:40029015:40029019
30000465,38,Detorid,PR-ACX,NB-ALM,-0.46,30000460,40029024:40029025:40029026:40029027:40029031:40029033
30000466,38,Detorid,5P4-QA,LT-XI4,-0.24,30000444:30000467,40029040:40029042:40029043:40029045:40029047:40029050:40029055:40029058
30000467,39,Detorid,5P4-QA,L-QQ6P,-0.35,30000466:30000468,40029063:40029065:40029072:40029086:40029115:40029118
30000468,40,Detorid,5P4-QA,5OJ-G2,-0.47,30000467:30000469:30000470,40029128:40029129:40029132:40029134:40029148:40029149:40029169:40029197:40029201
30000469,41,Detorid,5P4-QA,9-02G0,-0.47,30000468:30000471,40029204:40029206:40029208:40029230:40029249:40029276:40029305
30000470,41,Detorid,5P4-QA,XA5-TY,-0.53,30000468,40029310:40029312:40029315:40029318:40029321:40029329:40029334:40029343
30000471,42,Detorid,5P4-QA,M-XUZZ,-0.46,30000469:30000479,40029350:40029351:40029353:40029356:40029359:40029361:40029365:40029368:40029370
30000472,40,Detorid,1RG-GU,OFVH-Y,-0.30,30000447:30000473:30000475,40029374:40029375:40029394:40029412:40029442
30000473,41,Detorid,1RG-GU,2-X0PF,-0.38,30000472:30000474:30000475,40029446:40029448:40029450:40029452:40029453:40029469:40029496
30000474,42,Detorid,1RG-GU,1-PGSG,-0.50,30000473,40029526:40029528:40029529:40029531:40029533:40029537:40029538:40029553:40029572:40029610:40029616
30000475,41,Detorid,1RG-GU,QLPX-J,-0.28,30000472:30000473:30000476,40029621:40029624:40029626:40029629:40029631:40029649:40029652:40029657:40029658
30000476,42,Detorid,1RG-GU,A-C5TC,-0.24,30000475:30000477:30000478,40029663:40029665:40029667:40029669:40029673:40029674:40029680
30000477,42,Detorid,1RG-GU,RZ-PIY,-0.23,30000476:30000478:30000500,40029700:40029702:40029704:40029716:40029735:40029752:40029780:40029797
30000478,41,Detorid,1RG-GU,FR46-E,-0.27,30000476:30000477:30000508:30000514,40029800:40029802:40029803:40029806:40029808:40029810:40029818:40029822
30000479,43,Detorid,ZPI-2E,SLVP-D,-0.57,30000471:30000480:30000481:30000483,40029826:40029828:40029830:40029834:40029837:40029848:40029855:40029873:40029885
30000480,44,Detorid,ZPI-2E,0-G8NO,-0.69,30000479:30000482,40029889:40029891:40029893:40029897:40029899:40029901:40029919:40029945:40029960
30000481,44,Detorid,ZPI-2E,QRFJ-Q,-0.53,30000479,40029965:40029967:40029969:40029972:40029974:40029978
30000482,43,Detorid,ZPI-2E,HZFJ-M,-0.71,30000480:30000483,40029982:40029984:40029987:40029990:40029993:40030011:40030038:40030073:40030081
30000483,42,Detorid,ZPI-2E,77S8-E,-0.82,30000479:30000482:30000484:30004878,40030086:40030087:40030090:40030092:40030096:40030115:40030148:40030157
30000484,41,Detorid,ZPI-2E,FMH-OV,-0.90,30000483:30000498,40030165:40030167:40030173:40030191:40030211:40030239:40030269:40030272
30000485,41,Detorid,D-95MV,TYB-69,-0.34,30000453:30000486:30000487,40030277:40030278:40030280:40030284:40030286:40030292:40030295:40030298
30000486,42,Detorid,D-95MV,EDQG-L,-0.21,30000485:30000489,40030310:40030312:40030314:40030316:40030323:40030341:40030363
30000487,41,Detorid,D-95MV,7-P1JO,-0.25,30000485:30000488:30000490,40030375:40030376:40030377:40030379:40030381:40030383:40030386:40030406:40030408:40030433:40030436
30000488,41,Detorid,D-95MV,T-0JWP,-0.24,30000487:30000490,40030441:40030444:40030446:40030448:40030451:40030454:40030475:40030499:40030528:40030535:40030538:40030541
30000489,43,Detorid,D-95MV,J-L9MA,-0.24,30000486,40030545:40030546:40030547:40030550:40030552:40030557:40030575:40030593
30000490,40,Detorid,D-95MV,DX-TAR,-0.24,30000487:30000488:30000491,40030599:40030600:40030601:40030603:40030615:40030625:40030648
30000491,39,Detorid,D-95MV,A-7XFN,-0.23,30000490:30000492,40030653:40030655:40030656:40030658:40030661:40030664:40030671:40030676
30000492,38,Detorid,D-95MV,O3-4MN,-0.25,30000444:30000491:30000493:30000509,40030703:40030705:40030707:40030712:40030715:40030724:40030728:40030751
30000493,39,Detorid,D-95MV,U-MFTL,-0.31,30000492:30000521,40030787:40030789:40030792:40030797:40030825
30000494,36,Detorid,3R-BJL,8FN-GP,-0.51,30000495:30000844,40030829:40030830:40030831:40030832:40030834:40030855:40030887
30000495,37,Detorid,3R-BJL,FIDY-8,-0.52,30000494:30000496,40030893:40030894:40030896:40030898:40030900:40030903:40030928:40030949:40030953
30000496,38,Detorid,3R-BJL,X40H-9,-0.62,30000495:30000497,40030959:40030961:40030963:40030965:40030968:40030971:40030990:40031008:40031039
30000497,39,Detorid,3R-BJL,F2W-C6,-0.71,30000496:30000498,40031045:40031047:40031050:40031052:40031055
30000498,40,Detorid,3R-BJL,KZ9T-C,-0.77,30000484:30000497:30000499,40031064:40031066:40031068:40031070:40031090:40031111:40031114:40031144
30000499,41,Detorid,3R-BJL,XW2H-V,-0.87,30000498,40031150:40031152
30000500,42,Detorid,T875-C,F9O-U9,-0.17,30000477:30000501:30000505,40031171:40031173:40031175:40031178:40031183:40031207:40031227
30000501,41,Detorid,T875-C,S-51XG,-0.14,30000500:30000502:30000503,40031234:40031235:40031237:40031239:40031244:40031247:40031270
30000502,40,Detorid,T875-C,E-1XVP,-0.21,30000463:30000501,40031274:40031275:40031277:40031281:40031286:40031306:40031312:40031335
30000503,42,Detorid,T875-C,E-ACV6,-0.16,30000501:30000504:30000506,40031339:40031341:40031342:40031344:40031346:40031347:40031353:40031354:40031379:40031399:40031421
30000504,43,Detorid,T875-C,BOZ1-O,-0.15,30000503:30000505:30000507,40031427:40031429:40031430:40031432:40031435:40031440:40031464
30000505,43,Detorid,T875-C,QIMO-2,-0.15,30000500:30000504,40031474:40031476:40031478:40031500:40031525:40031543:40031568
30000506,43,Detorid,T875-C,Z-2Y2Y,-0.15,30000503,40031573:40031574:40031576:40031579:40031581:40031584:40031594:40031597:40031622:40031630
30000507,44,Detorid,T875-C,Q0J-RH,-0.14,30000504,40031634:40031636:40031637:40031639:40031640:40031652:40031677:40031703
30000508,40,Detorid,4SRW-B,SAI-T9,-0.31,30000478:30000509:30000510:30000511,40031708:40031710:40031714:40031724:40031728:40031747:40031752:40031774:40031794:40031796
30000509,39,Detorid,4SRW-B,IAS-I5,-0.39,30000492:30000508:30000510:30000511,40031801:40031802:40031804:40031806:40031810:40031815
30000510,40,Detorid,4SRW-B,K7S-FF,-0.34,30000508:30000509,40031841:40031846:40031865:40031881:40031890:40031925
30000511,40,Detorid,4SRW-B,RT-9WL,-0.50,30000508:30000509:30000512,40031930:40031932:40031934:40031936:40031938:40031940:40031958:40031982
30000512,41,Detorid,4SRW-B,O5Q7-U,-0.60,30000511:30000513,40032012:40032014:40032029:40032043:40032060:40032089:40032119
30000513,42,Detorid,4SRW-B,62O-UE,-0.56,30000512:30002181,40032126:40032128:40032130:40032132:40032136:40032140:40032144:40032145:40032164:40032192:40032203
30000514,42,Detorid,HOV-VI,U0W-DR,-0.24,30000478:30000515:30000516,40032209:40032210:40032211:40032213:40032216:40032221:40032224
30000515,43,Detorid,HOV-VI,SY-UWN,-0.18,30000514:30000517,40032228:40032230:40032233:40032237:40032243:40032247:40032251:40032261:40032285
30000516,43,Detorid,HOV-VI,DX-DFJ,-0.27,30000514:30000518:30000519,40032290:40032292:40032294:40032296:40032298:40032300:40032305
30000517,44,Detorid,HOV-VI,X-31TE,-0.20,30000515,40032317:40032319:40032321:40032323:40032339:40032347:40032349:40032371
30000518,44,Detorid,HOV-VI,DVWV-3,-0.36,30000516:30000519:30000520,40032376:40032378:40032380:40032382:40032384:40032393:40032403:40032417
30000519,44,Detorid,HOV-VI,KE-0FB,-0.25,30000516:30000518:30000520,40032422:40032423:40032425:40032427:40032429:40032437:40032458:40032482:40032486
30000520,45,Detorid,HOV-VI,I-9GI1,-0.20,30000518:30000519:30002163,40032490:40032492:40032497:40032501:40032504:40032507:40032527:40032553:40032557
30000521,40,Detorid,NZU8-G,W6P-7U,-0.32,30000493:30000522:30000523,40032563:40032565:40032566:40032569:40032571:40032572:40032574:40032576
30000522,41,Detorid,NZU8-G,0IF-26,-0.40,30000521,40032581:40032582:40032584:40032585:40032588:40032590:40032593:40032601:40032618:40032622:40032627
30000523,40,Detorid,NZU8-G,H-93YV,-0.33,30000521:30000524:30000525:30000526,40032633:40032634:40032636:40032638:40032641:40032661:40032668:40032697
30000524,41,Detorid,NZU8-G,E51-JE,-0.28,30000523,40032700:40032702:40032704:40032721:40032742:40032760:40032766
30000525,39,Detorid,NZU8-G,7-A6XV,-0.45,30000523:30000527,40032772:40032775:40032778:40032779:40032781:40032794:40032820:40032854:40032868
30000526,41,Detorid,NZU8-G,QXE-1N,-0.35,30000523,40032872:40032874:40032875:40032877:40032878:40032883:40032886:40032907:40032911:40032915:40032920
30000527,38,Detorid,NZU8-G,U69-YC,-0.52,30000525:30000528:30000839,40032925:40032926:40032927:40032929:40032931:40032933:40032937:40032942:40032964:40032989:40033026
30000528,39,Detorid,NZU8-G,L-L7PE,-0.56,30000527,40033029:40033030:40033032:40033034:40033037:40033040:40033044:40033061:40033090
30000529,31,Wicked Creek,0FC-ZX,MKIG-5,-0.22,30000530:30000534:30000544:30000557,40033094:40033096:40033097:40033099:40033101:40033103:40033106:40033109:40033114:40033118:40033121
30000530,32,Wicked Creek,0FC-ZX,YHEN-G,-0.20,30000529:30000531:30000534:30000535,40033126:40033127:40033129:40033132:40033134:40033137:40033139:40033163
30000531,32,Wicked Creek,0FC-ZX,E-JCUS,-0.22,30000530:30000532:30000533:30000536,40033167:40033169:40033171:40033173:40033175:40033180:40033195:40033214
30000532,33,Wicked Creek,0FC-ZX,W-QN5X,-0.27,30000531:30000537,40033248:40033249:40033250:40033251:40033253:40033259:40033275
30000533,33,Wicked Creek,0FC-ZX,LP1M-Q,-0.24,30000531:30000598,40033279:40033281:40033283:40033285:40033289:40033293:40033298:40033302
30000534,32,Wicked Creek,0FC-ZX,30-YOU,-0.27,30000529:30000530:30000536:30000538,40033305:40033306:40033307:40033309:40033311:40033330
30000535,31,Wicked Creek,0FC-ZX,384-IN,-0.20,30000530:30000557,40033337:40033338:40033340:40033343:40033346:40033348:40033355:40033360:40033382
30000536,31,Wicked Creek,0FC-ZX,4F89-U,-0.25,30000531:30000534:30000557,40033386:40033387:40033388:40033390:40033393:40033395:40033398:40033400:40033403:40033410:40033413
30000537,34,Wicked Creek,0FC-ZX,G063-U,-0.30,30000532:30000596,40033435:40033436:40033438:40033441:40033444:40033463:40033480:40033487
30000538,33,Wicked Creek,0FC-ZX,J7-BDX,-0.41,30000534,40033491:40033493:40033495:40033500:40033510:40033535:40033558
30000539,32,Wicked Creek,AC-RON,MLQ-O9,-0.20,30000542,40033564:40033565:40033567:40033569:40033571:40033573:40033578:40033582:40033602:40033630
30000540,31,Wicked Creek,AC-RON,L-FM3P,-0.17,30000543:30000544:30000773,40033636:40033638:40033640:40033643:40033645:40033660:40033688:40033719:40033723
30000541,34,Wicked Creek,AC-RON,X-ARMF,-0.09,30000545,40033728:40033730:40033733:40033754:40033774:40033794:40033819:40033847
30000542,31,Wicked Creek,AC-RON,8-OZU1,-0.18,30000539:30000543:30000773,40033853:40033855:40033857:40033860:40033865:40033870:40033874:40033879
30000543,32,Wicked Creek,AC-RON,0TYR-T,-0.16,30000540:30000542:30000763,40033882:40033884:40033899:40033917:40033941:40033971:40033982:40033986
30000544,32,Wicked Creek,AC-RON,GM-50Y,-0.17,30000455:30000529:30000540:30000545,40033990:40033991:40033993:40033994:40033998:40034000:40034024:40034046
30000545,33,Wicked Creek,AC-RON,G9L-LP,-0.15,30000541:30000544,40034077:40034080:40034082:40034083:40034089:40034096
30000546,33,Wicked Creek,RF9-ZU,MWA-5Q,-0.31,30000547:30000548:30000549:30000558,40034110:40034111:40034113:40034114:40034115:40034116:40034118:40034141:40034153
30000547,34,Wicked Creek,RF9-ZU,H-HHTH,-0.42,30000546:30000549:30000600,40034159:40034161:40034178:40034201:40034221
30000548,34,Wicked Creek,RF9-ZU,JQU-KY,-0.27,30000546:30000550,40034227:40034228:40034230:40034232:40034234:40034237:40034257
30000549,34,Wicked Creek,RF9-ZU,UY5A-D,-0.40,30000546:30000547:30000551,40034269:40034271:40034274:40034290:40034311:40034335:40034363:40034386:40034389
30000550,35,Wicked Creek,RF9-ZU,C-62I5,-0.12,30000548:30000551,40034397:40034399:40034401:40034419
30000551,35,Wicked Creek,RF9-ZU,ZH-GKG,-0.13,30000549:30000550,40034427:40034429:40034448:40034467:40034473
30000552,29,Wicked Creek,DJ-XCW,GPLB-C,-0.25,30000554:30000555:30000557:30000774,40034484:40034485:40034487:40034489:40034490:40034492:40034494:40034497:40034508:40034513:40034537:40034539:40034541:40034550
30000553,29,Wicked Creek,DJ-XCW,GGE-5Q,-0.49,30000554:30000562,40034556:40034557:40034558:40034559:40034561:40034564:40034566:40034585:40034607:40034612:40034617
30000554,28,Wicked Creek,DJ-XCW,5E-CMA,-0.42,30000552:30000553:30000610:30000680:30000681,40034622:40034623:40034624:40034626:40034629:40034630:40034631
30000555,30,Wicked Creek,DJ-XCW,U104-3,-0.27,30000552:30000556,40034638:40034640:40034641:40034645:40034665:40034667:40034689:40034707:40034736:40034739
30000556,31,Wicked Creek,DJ-XCW,M3-KAQ,-0.32,30000555:30000594,40034747:40034748:40034749:40034750:40034752:40034754:40034757:40034776:40034781:40034783:40034789
30000557,30,Wicked Creek,DJ-XCW,6-L4YC,-0.24,30000529:30000535:30000536:30000552,40034795:40034796:40034798:40034801:40034824:40034842:40034864:40034877:40034881
30000558,32,Wicked Creek,3GK-WS,UM-SCG,-0.31,30000546:30000560:30000588,40034889:40034892:40034894:40034895:40034898:40034901:40034903:40034920:40034951:40034956
30000559,31,Wicked Creek,3GK-WS,F-3FOY,-0.41,30000562:30000593,40034966:40034967:40034969:40034970:40034973:40034976:40034984:40034990:40034995
30000560,31,Wicked Creek,3GK-WS,OAIG-0,-0.35,30000558:30000562,40034999:40035000:40035002:40035004:40035006:40035009:40035012:40035019:40035045
30000561,31,Wicked Creek,3GK-WS,UZ-QXW,-0.48,30000562:30000563,40035060:40035062:40035064:40035068:40035070:40035094:40035096:40035120:40035152
30000562,30,Wicked Creek,3GK-WS,5DE-QS,-0.37,30000553:30000559:30000560:30000561,40035157:40035159:40035161:40035163:40035165:40035168:40035171:40035173:40035190:40035212
30000563,32,Wicked Creek,3GK-WS,R0-DMM,-0.47,30000561:30000564:30000679,40035247:40035248:40035250:40035251:40035253:40035257:40035260:40035264:40035273:40035296
30000564,33,Wicked Creek,3GK-WS,5Q65-4,-0.62,30000563,40035333:40035335:40035337:40035339:40035343:40035362:40035391:40035427:40035429
30000565,33,Wicked Creek,5ZR-29,SR-4EK,-0.34,30000566:30000568:30000569:30000570,40035435:40035436:40035437:40035438:40035440:40035441:40035444:40035446:40035463:40035494
30000566,33,Wicked Creek,5ZR-29,0RI-OV,-0.29,30000565:30000568:30000570:30000605,40035498:40035499:40035500:40035502:40035504:40035509:40035512:40035524:40035530:40035537
30000567,34,Wicked Creek,5ZR-29,C-LTXS,-0.29,30000568:30000569:30000571,40035548:40035549:40035551:40035553:40035555:40035557:40035560:40035562:40035567
30000568,33,Wicked Creek,5ZR-29,C0O6-K,-0.30,30000565:30000566:30000567:30000569:30000570:30000664,40035577:40035578:40035580:40035582:40035591:40035593:40035613:40035635
30000569,34,Wicked Creek,5ZR-29,HD-AJ7,-0.31,30000565:30000567:30000568:30000571,40035639:40035640:40035641:40035642:40035645:40035647:40035665:40035690
30000570,32,Wicked Creek,5ZR-29,G9NE-B,-0.33,30000565:30000566:30000568:30000730,40035704:40035705:40035707:40035709:40035710:40035712:40035714:40035718:40035723:40035748
30000571,35,Wicked Creek,5ZR-29,SJJ-4F,-0.25,30000567:30000569,40035775:40035776:40035778:40035780:40035782:40035785:40035806:40035811
30000572,36,Wicked Creek,J-9M7D,F-QQ5N,-0.65,30000573:30000575:30000576:30000579,40035816:40035817:40035819:40035821:40035823:40035826:40035833:40035839:40035861
30000573,37,Wicked Creek,J-9M7D,1-7B6D,-0.69,30000572:30000574:30000576,40035868:40035869:40035871:40035873:40035875:40035897
30000574,38,Wicked Creek,J-9M7D,H6-EYX,-0.73,30000573,40035903:40035905:40035908:40035934:40035938:40035941:40035969
30000575,37,Wicked Creek,J-9M7D,U-HVIX,-0.66,30000572:30000576:30000577,40036008:40036009:40036011:40036013:40036016:40036020
30000576,37,Wicked Creek,J-9M7D,4-EFLU,-0.52,30000572:30000573:30000575,40036024:40036026:40036028:40036037:40036043:40036058:40036074
30000577,38,Wicked Creek,J-9M7D,EIH-IU,-0.60,30000575,40036102:40036103:40036104:40036106:40036109:40036111:40036114:40036131
30000578,38,Wicked Creek,R-M719,F-EM4Q,-0.43,30000580,40036159:40036160:40036162:40036178:40036183:40036202
30000579,35,Wicked Creek,R-M719,1L-OEK,-0.66,30000572:30000581:30000583:30000584:30000586,40036230:40036231:40036232:40036234:40036235:40036238:40036259:40036281:40036287
30000580,37,Wicked Creek,R-M719,MN-Q26,-0.51,30000578:30000582:30000585:30000586,40036293:40036294:40036297:40036299:40036301:40036303:40036329:40036352:40036356
30000581,36,Wicked Creek,R-M719,5H-SM2,-0.71,30000448:30000579,40036362:40036363:40036365:40036366:40036369:40036392:40036415:40036429:40036446
30000582,37,Wicked Creek,R-M719,4-OS2A,-0.60,30000580:30000586,40036480:40036503:40036519:40036521:40036522:40036524
30000583,34,Wicked Creek,R-M719,YI-GV6,-0.64,30000579:30000584:30000663,40036529:40036531:40036534:40036538:40036540
30000584,35,Wicked Creek,R-M719,SO-X5L,-0.70,30000579:30000583,40036544:40036546:40036548:40036551:40036570:40036586:40036608:40036649
30000585,37,Wicked Creek,R-M719,XQS-GZ,-0.55,30000580:30000586:30000599,40036655:40036657:40036659:40036661:40036664:40036665:40036670:40036680:40036696:40036699
30000586,36,Wicked Creek,R-M719,Q-GQHN,-0.53,30000579:30000580:30000582:30000585,40036705:40036706:40036707:40036709:40036711:40036714:40036718:40036730:40036734:40036742
30000587,34,Wicked Creek,5Y1E-3,A-4JOO,-0.20,30000588:30000590,40036746:40036748:40036750:40036753:40036755:40036759
30000588,33,Wicked Creek,5Y1E-3,TP7-KE,-0.33,30000558:30000587:30000589:30000716,40036761:40036763:40036766:40036772:40036792:40036810:40036838:40036843
30000589,34,Wicked Creek,5Y1E-3,R4N-LD,-0.26,30000588:30000591:30000592,40036846:40036847:40036848:40036849:40036852:40036855:40036858:40036862
30000590,35,Wicked Creek,5Y1E-3,3Q-VZA,-0.25,30000587,40036867:40036868:40036871:40036874:40036875:40036877:40036878:40036881:40036887
30000591,35,Wicked Creek,5Y1E-3,M-MBRT,-0.24,30000589,40036892:40036894:40036896:40036898:40036901:40036917:40036932:40036956
30000592,35,Wicked Creek,5Y1E-3,HPBE-D,-0.29,30000589,40036972:40036973:40036974:40036976:40036978:40036998:40037001
30000593,32,Wicked Creek,760-9C,GRHS-B,-0.46,30000559:30000594:30000595,40037005:40037008:40037010:40037012:40037014:40037017:40037022:40037042:40037049:40037075:40037098:40037101
30000594,32,Wicked Creek,760-9C,J-RXYN,-0.46,30000556:30000593:30000595:30000597,40037107:40037108:40037109:40037111:40037113:40037117:40037123
30000595,33,Wicked Creek,760-9C,DUO-51,-0.47,30000593:30000594:30000596:30000597,40037127:40037129:40037131:40037134:40037158:40037172
30000596,34,Wicked Creek,760-9C,07-SLO,-0.40,30000537:30000595:30000597:30000598,40037200:40037201:40037202:40037204:40037205:40037207:40037224:40037228:40037246:40037271
30000597,33,Wicked Creek,760-9C,Z-A8FS,-0.54,30000594:30000595:30000596,40037300:40037302:40037303:40037305:40037307:40037309:40037314:40037333:40037355
30000598,34,Wicked Creek,760-9C,GPD5-0,-0.31,30000533:30000596,40037362:40037364:40037366:40037367:40037369:40037372:40037395
30000599,36,Wicked Creek,4-QV2L,LKZ-CY,-0.45,30000585:30000600:30000602,40037422:40037423:40037424:40037425:40037426:40037428:40037431:40037454:40037458
30000600,35,Wicked Creek,4-QV2L,F5M-CC,-0.39,30000547:30000599:30000601,40037492:40037493:40037495:40037507:40037529:40037554:40037583
30000601,36,Wicked Creek,4-QV2L,TZE-UB,-0.32,30000600:30000604,40037595:40037596:40037598:40037599:40037601:40037604:40037607:40037610:40037614:40037626
30000602,37,Wicked Creek,4-QV2L,WRL4-2,-0.41,30000599:30000603,40037631:40037632:40037634:40037636:40037638:40037641:40037645:40037653:40037677
30000603,38,Wicked Creek,4-QV2L,V7G-RL,-0.44,30000439:30000602,40037684:40037685:40037687:40037689:40037691:40037693:40037705:40037729:40037734
30000604,37,Wicked Creek,4-QV2L,XEN7-0,-0.19,30000601,40037740:40037742:40037744:40037746:40037748:40037750:40037756:40037759:40037763:40037789:40037794
30000605,33,Wicked Creek,GU-JZ1,L-Z9KJ,-0.35,30000566:30000606,40037797:40037799:40037801:40037804:40037807:40037811:40037825:40037849:40037874:40037914
30000606,32,Wicked Creek,GU-JZ1,7K-NSE,-0.29,30000605:30000607,40037923:40037924:40037925:40037927:40037928:40037930:40037942:40037947
30000607,31,Wicked Creek,GU-JZ1,OR-7N5,-0.30,30000606:30000608:30000609,40037949:40037950:40037951:40037952:40037954:40037956:40037958:40037961:40037970
30000608,30,Wicked Creek,GU-JZ1,JEQG-7,-0.29,30000607:30000610,40038001:40038003:40038004:40038006:40038007:40038022:40038025:40038047:40038056
30000609,32,Wicked Creek,GU-JZ1,5NQI-E,-0.25,30000607,40038066:40038067:40038070:40038090:40038112
30000610,29,Wicked Creek,GU-JZ1,B-WQDP,-0.34,30000554:30000608,40038142:40038143:40038145:40038148:40038149:40038151:40038154:40038160:40038163:40038189:40038192:40038195
30000611,26,Cache,BVA-YH,2-2EWC,-0.11,30000615:30000616:30000618,40038201:40038203:40038204:40038208:40038225:40038250:40038271:40038301:40038307
30000612,24,Cache,BVA-YH,E1W-TB,-0.19,30000615:30000626,40038312:40038313:40038315:40038316:40038317:40038335:40038358:40038385
30000613,28,Cache,BVA-YH,D-6H64,-0.06,30000614:30000616,40038411:40038412:40038414:40038416:40038419:40038445:40038449
30000614,28,Cache,BVA-YH,8-BIE3,-0.08,30000613:30000630,40038454:40038456:40038458:40038474:40038479:40038482:40038504
30000615,25,Cache,BVA-YH,LMM7-L,-0.19,30000611:30000612,40038508:40038510:40038512:40038529:40038554
30000616,27,Cache,BVA-YH,995-3G,-0.09,30000611:30000613,40038560:40038562:40038577:40038593:40038610:40038635:40038639
30000617,29,Cache,VS-8P0,W2T-TR,-0.05,30000620:30000621:30000622:30000623,40038644:40038646:40038647:40038649:40038651:40038653:40038654:40038658:40038677:40038681
30000618,27,Cache,VS-8P0,Q-UEN6,-0.06,30000611:30000619:30000621,40038687:40038689:40038690:40038692:40038694:40038697:40038699:40038701:40038732
30000619,28,Cache,VS-8P0,BLMX-B,-0.03,30000618:30000620:30000821,40038743:40038744:40038746:40038748:40038750:40038772:40038775:40038802:40038807
30000620,29,Cache,VS-8P0,M-CNUD,-0.04,30000617:30000619:30000623,40038826:40038827:40038829:40038831:40038833:40038838:40038852:40038874:40038904
30000621,28,Cache,VS-8P0,YE1-9S,-0.05,30000617:30000618,40038908:40038909:40038910:40038912:40038915:40038918:40038935:40038960:40038984:40038988
30000622,30,Cache,VS-8P0,IVP-KA,-0.06,30000617:30000762,40038992:40038993:40038995:40038997:40039014:40039020
30000623,30,Cache,VS-8P0,04EI-U,-0.08,30000617:30000620,40039035:40039037:40039039:40039041:40039052:40039072:40039095:40039099:40039145
30000624,25,Cache,5HN-S5,B-T6BT,-0.90,30000625:30000628:30000631,40039151:40039153:40039154:40039155:40039156:40039158:40039159:40039161:40039164
30000625,24,Cache,5HN-S5,VK-A5G,-0.56,30000624:30000626,40039168:40039169:40039171:40039173:40039176:40039195:40039223:40039253
30000626,23,Cache,5HN-S5,I6-SYN,-0.35,30000612:30000625:30000627:30001000,40039256:40039257:40039259:40039261:40039265:40039274:40039277
30000627,24,Cache,5HN-S5,O-5TN1,-0.40,30000626:30000629,40039305:40039307:40039309:40039310:40039311:40039314:40039317:40039320:40039325:40039328:40039331:40039357
30000628,26,Cache,5HN-S5,8-SPNN,-0.95,30000624,40039367:40039370:40039372:40039374:40039376:40039386:40039388:40039409:40039435:40039467
30000629,25,Cache,5HN-S5,U-QMOA,-0.31,30000627,40039472:40039473:40039475:40039477:40039481:40039484:40039491:40039494:40039522
30000630,27,Cache,Y-JSM8,4S0-NP,-0.08,30000614:30000631,40039527:40039528:40039530:40039531:40039532:40039534:40039544:40039565:40039570:40039590:40039615
30000631,26,Cache,Y-JSM8,K-RMI5,-0.10,30000624:30000630:30000632,40039622:40039623:40039624:40039625:40039628:40039631:40039653:40039656:40039662:40039671
30000632,27,Cache,Y-JSM8,C-6YHJ,-0.13,30000631:30000633:30000636,40039677:40039678:40039679:40039681:40039707:40039711:40039734
30000633,28,Cache,Y-JSM8,M53-1V,-0.19,30000632:30000634,40039740:40039742:40039744:40039748:40039770:40039800:40039822
30000634,29,Cache,Y-JSM8,E5T-CS,-0.20,30000633:30000635:30000636,40039832:40039834:40039836:40039838:40039842:40039849:40039872:40039878
30000635,30,Cache,Y-JSM8,W4C8-Q,-0.27,30000634:30000637,40039882:40039884:40039886:40039888:40039890:40039893:40039899:40039903:40039912:40039939:40039943
30000636,28,Cache,Y-JSM8,I-2705,-0.09,30000632:30000634,40039946:40039947:40039948:40039950:40039953:40039957:40039960:40039977
30000637,31,Cache,VSC-W9,5F-MG1,-0.31,30000635:30000638,40039980:40039981:40039982:40039983:40039985:40039987:40039991:40040008:40040024:40040028:40040049:40040054
30000638,32,Cache,VSC-W9,P7-45V,-0.34,30000637:30000639:30000640:30000641,40040059:40040076:40040094:40040095:40040101:40040102
30000639,33,Cache,VSC-W9,M-MCP8,-0.39,30000638:30000641:30000649,40040107:40040109:40040110:40040113:40040117
30000640,33,Cache,VSC-W9,JZ-B5Y,-0.39,30000638:30000642,40040123:40040125:40040127:40040130:40040149:40040166:40040192:40040195:40040202:40040207
30000641,33,Cache,VSC-W9,TPG-DD,-0.30,30000638:30000639,40040212:40040213:40040214:40040217:40040220:40040224:40040228:40040230:40040233:40040237
30000642,34,Cache,VSC-W9,NIF-JE,-0.62,30000640:30000643,40040242:40040243:40040244:40040245:40040247:40040250:40040260:40040264:40040285:40040290
30000643,34,Cache,FQ-COP,BTLH-I,-0.63,30000642:30000644:30000645,40040295:40040296:40040297:40040298:40040300:40040303:40040305:40040309:40040313:40040337
30000644,33,Cache,FQ-COP,U93O-A,-0.84,30000643:30000646,40040342:40040344:40040346:40040348:40040350:40040353:40040356:40040360:40040379:40040401:40040407
30000645,35,Cache,FQ-COP,0LY-W1,-0.55,30000643,40040411:40040413:40040414:40040416:40040418:40040424:40040448
30000646,32,Cache,FQ-COP,4YO-QK,-0.91,30000644:30000647:30000648,40040453:40040454:40040455:40040457:40040459:40040462:40040465:40040491:40040515
30000647,33,Cache,FQ-COP,LJ-RJK,-0.88,30000646,40040520:40040521:40040522:40040524:40040526:40040529:40040550:40040573:40040595:40040599:40040602
30000648,31,Cache,FQ-COP,8-VC6H,-1.00,30000646:30000823,40040607:40040609:40040630:40040652:40040680:40040684
30000649,34,Cache,MRC-29,LQ-01M,-0.58,30000639:30000650:30000651,40040690:40040692:40040694:40040696:40040706:40040727:40040749:40040777
30000650,35,Cache,MRC-29,NG-M8K,-0.91,30000649:30000652:30000653,40040783:40040784:40040786:40040789:40040791:40040799:40040812:40040835:40040850:40040857:40040862
30000651,35,Cache,MRC-29,RV5-TT,-0.37,30000649:30000654,40040886:40040887:40040889:40040892:40040895:40040898:40040901:40040902:40040910:40040935
30000652,36,Cache,MRC-29,8OYE-Z,-0.53,30000650,40040940:40040942:40040944:40040954:40040956:40040972:40040994:40041019:40041022
30000653,36,Cache,MRC-29,K85Y-6,-1.00,30000650,40041025:40041027:40041029:40041031:40041048:40041071:40041096
30000654,36,Cache,MRC-29,PKN-NJ,-0.26,30000651,40041103:40041104:40041106:40041107:40041108:40041109:40041111:40041114:40041116:40041122:40041126:40041147:40041172:40041184
30000655,30,Scalding Pass,51ZT-6,EIN-QG,-0.11,30000657:30000658:30000662:30000671,40041189:40041191:40041193:40041205:40041221:40041242:40041253:40041290
30000656,28,Scalding Pass,51ZT-6,ARG-3R,-0.04,30000658:30000661:30000665:30000668:30001019,40041294:40041295:40041296:40041298:40041301:40041317:40041320:40041353:40041358
30000657,31,Scalding Pass,51ZT-6,S-E6ES,-0.11,30000655:30000659:30001001:30001029,40041368:40041369:40041371:40041373:40041375:40041378:40041394:40041406:40041408:40041428
30000658,29,Scalding Pass,51ZT-6,R-3FBU,-0.06,30000655:30000656:30000659:30000671:30000721,40041438:40041440:40041443:40041445:40041447:40041449:40041455:40041461:40041484:40041508:40041509:40041516:40041540:40041543
30000659,30,Scalding Pass,51ZT-6,K7-LDX,-0.11,30000657:30000658:30000660:30000691,40041547:40041549:40041551:40041554:40041557
30000660,30,Scalding Pass,51ZT-6,U-IVGH,-0.11,30000659:30000665,40041570:40041571:40041573:40041576:40041590:40041593:40041599:40041631
30000661,29,Scalding Pass,51ZT-6,P-N5N9,-0.03,30000656,40041642:40041643:40041644:40041646:40041647:40041650:40041653:40041657:40041660
30000662,31,Scalding Pass,51ZT-6,JMH-PT,-0.22,30000655:30000664,40041663:40041664:40041666:40041668:40041670:40041675:40041700:40041707
30000663,33,Scalding Pass,51ZT-6,DE-A7P,-0.47,30000583:30000664,40041712:40041713:40041714:40041715:40041718:40041720:40041723:40041748
30000664,32,Scalding Pass,51ZT-6,X9V-15,-0.32,30000568:30000662:30000663,40041754:40041756:40041759:40041761:40041764:40041780:40041803:40041829:40041856
30000665,29,Scalding Pass,51ZT-6,K212-A,-0.06,30000656:30000660,40041858:40041859:40041861:40041863:40041865:40041867:40041883:40041885:40041888:40041907
30000666,26,Scalding Pass,4YFT-F,F-5FDA,-0.05,30000667:30000668:30000926:30000939,40041912:40041913:40041914:40041915:40041916:40041918:40041920:40041923:40041936:40041940:40041971
30000667,27,Scalding Pass,4YFT-F,S1-XTL,-0.11,30000666:30000673,40041977:40041979:40041981:40041985:40042001:40042024:40042045:40042052
30000668,27,Scalding Pass,4YFT-F,9PX2-F,-0.07,30000656:30000666:30000669,40042055:40042057:40042059:40042061:40042074:40042099:40042127:40042147
30000669,28,Scalding Pass,4YFT-F,N3-JBX,-0.13,30000668:30000670:30000671,40042152:40042154:40042156:40042171:40042173:40042175:40042196:40042229
30000670,29,Scalding Pass,4YFT-F,SG-75T,-0.29,30000669:30000678:30000732,40042237:40042239:40042240:40042242:40042243:40042246:40042249:40042252:40042271:40042279
30000671,29,Scalding Pass,4YFT-F,GN-PDU,-0.09,30000655:30000658:30000669:30000697,40042284:40042285:40042287:40042289:40042296:40042299:40042302:40042321:40042331
30000672,29,Scalding Pass,P-I9PF,AZ3F-N,-0.08,30000673:30000675:30000676,40042351:40042353:40042356:40042371:40042388:40042395
30000673,28,Scalding Pass,P-I9PF,RNM-Y6,-0.18,30000667:30000672:30000674:30000677,40042399:40042401:40042403:40042406:40042408:40042411:40042431:40042450:40042473:40042482
30000674,29,Scalding Pass,P-I9PF,V-KDY2,-0.23,30000673:30000677,40042486:40042487:40042488:40042489:40042492:40042505:40042529
30000675,30,Scalding Pass,P-I9PF,FYD-TO,-0.03,30000672,40042533:40042535:40042537:40042539:40042543:40042565:40042589:40042593:40042635
30000676,30,Scalding Pass,P-I9PF,ER2O-Y,-0.04,30000672:30000677,40042640:40042641:40042643:40042645:40042647:40042650:40042651:40042672:40042677:40042680
30000677,29,Scalding Pass,P-I9PF,J2-PZ6,-0.33,30000673:30000674:30000676,40042685:40042686:40042688:40042691:40042694:40042704:40042718:40042750:40042777
30000678,29,Scalding Pass,ENP-SH,XV-MWG,-0.41,30000670:30000682:30000683:30000684,40042781:40042782:40042783:40042785:40042787:40042790:40042793:40042795:40042799:40042820:40042824
30000679,31,Scalding Pass,ENP-SH,OAQY-M,-0.53,30000563:30000683:30000730,40042862:40042865:40042868:40042870:40042878:40042900:40042921:40042961:40042987
30000680,27,Scalding Pass,ENP-SH,1V-LI2,-0.43,30000554:30000681:30000682:30000704:30000792,40042996:40042998:40042999:40043002
30000681,28,Scalding Pass,ENP-SH,M9-MLR,-0.40,30000554:30000680:30000717,40043008:40043009:40043011:40043012:40043014:40043026
30000682,28,Scalding Pass,ENP-SH,Q-K2T7,-0.46,30000678:30000680,40043037:40043039:40043041:40043043:40043045:40043065:40043082:40043117:40043125
30000683,30,Scalding Pass,ENP-SH,LBC-AW,-0.60,30000678:30000679,40043130:40043132:40043134:40043136:40043137:40043140:40043143:40043166:40043168
30000684,30,Scalding Pass,ENP-SH,2-KPW6,-0.56,30000678:30000710,40043177:40043178:40043180:40043182:40043183:40043186:40043193:40043203:40043227:40043233
30000685,31,Scalding Pass,Y-M7ML,H5N-V7,-0.24,30000686:30000689,40043253:40043255:40043257:40043259:40043261:40043265:40043267:40043271:40043274:40043279:40043303:40043304
30000686,30,Scalding Pass,Y-M7ML,HQ-Q1Q,-0.16,30000685:30000688,40043306:40043307:40043308:40043310:40043312:40043314:40043316:40043319:40043328
30000687,31,Scalding Pass,Y-M7ML,WHI-61,-0.05,30000690:30000722,40043335:40043337:40043339:40043341:40043342:40043359:40043381:40043408
30000688,29,Scalding Pass,Y-M7ML,ZFJH-T,-0.10,30000686:30000690:30001021,40043440:40043442:40043444:40043458:40043479:40043485:40043488
30000689,32,Scalding Pass,Y-M7ML,I-1B7X,-0.16,30000685,40043492:40043493:40043496:40043498:40043500:40043503:40043506:40043523:40043536:40043562:40043580:40043607
30000690,30,Scalding Pass,Y-M7ML,G15Z-W,-0.09,30000687:30000688,40043612:40043614:40043616:40043617:40043619:40043642:40043662:40043683
30000691,31,Scalding Pass,QI1M-Q,AH8-Q7,-0.19,30000659:30000694:30000695,40043693:40043694:40043695:40043697:40043698:40043701:40043702:40043719:40043742:40043772
30000692,33,Scalding Pass,QI1M-Q,SD4A-2,-0.26,30000693:30000695,40043777:40043779:40043780:40043783:40043786:40043790:40043807:40043811:40043815
30000693,34,Scalding Pass,QI1M-Q,U6K-RG,-0.21,30000692:30000696,40043824:40043825:40043828:40043831:40043834:40043839:40043843:40043847
30000694,32,Scalding Pass,QI1M-Q,V-S9YY,-0.13,30000691:30000695,40043854:40043856:40043858:40043860:40043862:40043865:40043868:40043871:40043888:40043910
30000695,32,Scalding Pass,QI1M-Q,F2-NXA,-0.18,30000691:30000692:30000694,40043946:40043949:40043951:40043953:40043963:40043967:40043971
30000696,35,Scalding Pass,QI1M-Q,NSBE-L,-0.16,30000693,40043975:40043976:40043977:40043979:40043981:40043983:40044004
30000697,30,Scalding Pass,7VJ-7M,8Q-T7B,-0.06,30000671:30000698:30000699:30000701:30000721,40044009:40044011:40044013:40044030:40044034:40044050
30000698,31,Scalding Pass,7VJ-7M,WV0D-1,-0.08,30000697,40044054:40044055:40044057:40044059:40044061:40044070:40044072:40044082:40044109
30000699,31,Scalding Pass,7VJ-7M,ZNF-OK,-0.03,30000697:30000700:30000701:30000721,40044115:40044116:40044118:40044119:40044121:40044123:40044124:40044142:40044144
30000700,32,Scalding Pass,7VJ-7M,C8-7AS,-0.01,30000699:30000701:30000702:30000722,40044169:40044171:40044173:40044180:40044206:40044208:40044212:40044235:40044243
30000701,31,Scalding Pass,7VJ-7M,4E-EZS,-0.02,30000697:30000699:30000700,40044247:40044248:40044250:40044252:40044255:40044258:40044261:40044266:40044269:40044285:40044294:40044298
30000702,33,Scalding Pass,7VJ-7M,A-80UA,-0.01,30000700,40044303:40044304:40044306:40044308:40044312:40044317:40044332:40044334:40044340
30000703,25,Scalding Pass,02QH-A,U2-28D,-0.34,30000704:30000705:30000706:30000707:30000978,40044344:40044345:40044347:40044349:40044352:40044354:40044359:40044361:40044367:40044371:40044380:40044393:40044397
30000704,26,Scalding Pass,02QH-A,LQ-OAI,-0.54,30000680:30000703:30000705,40044399:40044400:40044401:40044402:40044404:40044407:40044410:40044415:40044418:40044441
30000705,26,Scalding Pass,02QH-A,5-MQQ7,-0.37,30000703:30000704:30000707,40044449:40044451:40044453:40044456:40044464:40044465:40044484:40044489:40044494
30000706,26,Scalding Pass,02QH-A,6-EQYE,-0.40,30000703:30000708:30000787,40044499:40044501:40044504:40044506:40044508:40044511:40044515:40044518:40044540
30000707,26,Scalding Pass,02QH-A,03-OR2,-0.17,30000703:30000705:30000708,40044547:40044548:40044549:40044551:40044553:40044556:40044559:40044564:40044568
30000708,27,Scalding Pass,02QH-A,JLO-Z3,-0.20,30000706:30000707,40044590:40044591:40044593:40044595:40044597:40044600:40044602:40044605:40044623:40044630
30000709,32,Scalding Pass,WQZ8-4,IAK-JW,-0.78,30000710:30000711:30000712,40044648:40044650:40044652:40044654:40044664:40044674:40044691:40044692:40044723
30000710,31,Scalding Pass,WQZ8-4,KZFV-4,-0.67,30000684:30000709:30000714,40044729:40044730:40044732:40044734:40044738:40044741:40044744:40044746:40044751:40044757:40044763
30000711,33,Scalding Pass,WQZ8-4,WO-GC0,-0.79,30000709:30000712,40044788:40044790:40044792:40044798:40044820:40044845:40044852
30000712,32,Scalding Pass,WQZ8-4,RYC-19,-0.88,30000709:30000711:30000713,40044861:40044862:40044864:40044867:40044869:40044871:40044875:40044893
30000713,31,Scalding Pass,WQZ8-4,X2-ZA5,-0.90,30000712:30000789,40044898:40044900:40044903:40044905:40044927:40044955:40044961
30000714,32,Scalding Pass,WQZ8-4,28Y9-P,-0.69,30000710,40044966:40044967:40044969:40044971:40044973:40044976:40044978:40044998:40045003
30000715,30,Scalding Pass,DITJ-X,Q4C-S5,-0.68,30000717:30000718:30000719,40045008:40045010:40045012:40045014:40045016:40045037:40045054:40045080
30000716,32,Scalding Pass,DITJ-X,B-1UJC,-0.53,30000588:30000718,40045115:40045116:40045117:40045119:40045121:40045123:40045124:40045126:40045143
30000717,29,Scalding Pass,DITJ-X,Q-NA5H,-0.72,30000681:30000715,40045180:40045181:40045182:40045184:40045185:40045187:40045198:40045216:40045219:40045226:40045229
30000718,31,Scalding Pass,DITJ-X,4-CM8I,-0.51,30000715:30000716:30000720,40045235:40045236:40045241:40045243:40045254:40045256:40045278:40045312:40045315
30000719,31,Scalding Pass,DITJ-X,ZDB-HT,-0.58,30000715:30000720,40045321:40045322:40045323:40045324:40045326:40045328:40045332:40045348:40045351:40045373:40045379
30000720,31,Scalding Pass,DITJ-X,1QZ-Y9,-0.44,30000718:30000719:30000774,40045385:40045387:40045389:40045391:40045396:40045399:40045420:40045441:40045448
30000721,30,Scalding Pass,YCM-AI,HJ-BCH,-0.03,30000658:30000697:30000699:30000722:30000725:30000729,40045452:40045453:40045455:40045457:40045460:40045463:40045466:40045471:40045473:40045475:40045498:40045503
30000722,31,Scalding Pass,YCM-AI,QPTT-F,-0.02,30000687:30000700:30000721:30000723:30000724:30000727,40045510:40045511:40045513:40045515:40045517:40045524:40045531:40045563:40045601:40045606
30000723,32,Scalding Pass,YCM-AI,9M-M0P,-0.01,30000722,40045611:40045613:40045615:40045619:40045646:40045667:40045692:40045696:40045699
30000724,32,Scalding Pass,YCM-AI,9BC-EB,-0.02,30000722,40045701:40045703:40045705:40045706:40045707:40045710:40045713:40045722:40045729:40045734
30000725,31,Scalding Pass,YCM-AI,WFFE-4,-0.02,30000721:30000726:30000729,40045738:40045739:40045742:40045743:40045747:40045748:40045751:40045755:40045758
30000726,32,Scalding Pass,YCM-AI,71-UTX,-0.03,30000725:30000729,40045762:40045763:40045764:40045765:40045767:40045770:40045775
30000727,32,Scalding Pass,YCM-AI,PU-UMM,-0.01,30000722:30000728,40045779:40045781:40045782:40045784:40045787:40045792:40045795:40045799:40045802
30000728,33,Scalding Pass,YCM-AI,6-KPAB,-0.01,30000727,40045806:40045807:40045809:40045811:40045826:40045846:40045867:40045871
30000729,31,Scalding Pass,YCM-AI,Y5-E1U,-0.03,30000721:30000725:30000726,40045875:40045878:40045880:40045888:40045891:40045911:40045936
30000730,31,Scalding Pass,CN5-F2,4-43BW,-0.35,30000570:30000679:30000731:30000732:30000734,40045970:40045972:40045974:40045977:40045979:40045981:40045993:40046023:40046033
30000731,32,Scalding Pass,CN5-F2,8CN-CH,-0.32,30000730,40046040:40046041:40046044:40046046:40046048:40046052
30000732,30,Scalding Pass,CN5-F2,V-F6DQ,-0.29,30000670:30000730:30000733:30000734,40046077:40046078:40046079:40046081:40046082:40046084:40046086:40046089:40046111:40046134:40046153:40046161
30000733,31,Scalding Pass,CN5-F2,3S-6VU,-0.21,30000732:30000735,40046166:40046168:40046170:40046173:40046186:40046203:40046231
30000734,31,Scalding Pass,CN5-F2,1-7HVI,-0.40,30000730:30000732:30000735,40046243:40046244:40046248:40046251:40046253
30000735,32,Scalding Pass,CN5-F2,OX-S7P,-0.46,30000733:30000734,40046259:40046261:40046266:40046288:40046309:40046334
30000736,34,Insmother,IV-LWJ,KDG-TA,-0.18,30000739:30000760,40046337:40046339:40046341:40046343:40046345:40046348:40046351:40046358:40046366:40046389:40046417
30000737,38,Insmother,IV-LWJ,KD-KPR,-0.42,30000741,40046443:40046446:40046448:40046452:40046456:40046479:40046485:40046504
30000738,38,Insmother,IV-LWJ,PT-21C,-0.18,30000742,40046528:40046529:40046531:40046532:40046534:40046537:40046561:40046564:40046578:40046601:40046623
30000739,35,Insmother,IV-LWJ,Z182-R,-0.22,30000736:30000740,40046629:40046630:40046632:40046635:40046657:40046674
30000740,36,Insmother,IV-LWJ,EKPB-3,-0.36,30000739:30000741:30000742,40046701:40046703:40046704:40046707:40046713:40046739:40046778
30000741,37,Insmother,IV-LWJ,5M2-KP,-0.40,30000737:30000740,40046783:40046784:40046785:40046786:40046788:40046805:40046828:40046845:40046865
30000742,37,Insmother,IV-LWJ,TK-DLH,-0.31,30000738:30000740:30000831,40046872:40046873:40046875:40046877:40046880:40046884:40046905:40046909
30000743,34,Insmother,U-EUG7,C8H5-X,-0.15,30000745:30000747:30000749:30000756,40046917:40046918:40046920:40046922:40046925:40046927:40046929:40046935:40046940
30000744,36,Insmother,U-EUG7,O-7LAI,-0.08,30000745,40046945:40046947:40046949:40046951:40046954:40046958:40046965:40046990:40046993
30000745,35,Insmother,U-EUG7,7L3-JS,-0.12,30000743:30000744:30000746,40046997:40046999:40047001:40047004:40047008:40047011:40047014:40047018:40047039:40047050:40047071
30000746,36,Insmother,U-EUG7,WF4C-8,-0.17,30000745:30000747,40047078:40047079:40047081:40047083:40047085:40047087:40047091:40047093:40047111:40047140
30000747,35,Insmother,U-EUG7,TZN-2V,-0.15,30000743:30000746:30000748:30000749,40047145:40047146:40047148:40047151:40047153:40047155:40047159
30000748,36,Insmother,U-EUG7,8EF-58,-0.28,30000747,40047162:40047164:40047166:40047168:40047171:40047174:40047196:40047216:40047219
30000749,35,Insmother,U-EUG7,4DS-OI,-0.20,30000743:30000747,40047225:40047226:40047228:40047231:40047233:40047251
30000750,34,Insmother,E-95ID,XQP-9C,-0.16,30000751:30000756,40047264:40047265:40047266:40047268:40047272:40047275
30000751,35,Insmother,E-95ID,W-6GBI,-0.20,30000750:30000752:30000755,40047280:40047281:40047282:40047285:40047287:40047289:40047291:40047293:40047310:40047312:40047318
30000752,36,Insmother,E-95ID,XKH-6O,-0.15,30000751:30000754,40047324:40047326:40047328:40047331:40047345:40047348:40047365:40047371:40047389
30000753,37,Insmother,E-95ID,S0U-MO,-0.25,30000755:30000824,40047396:40047397:40047398:40047400:40047403:40047404:40047406:40047409:40047416:40047421
30000754,37,Insmother,E-95ID,F39H-1,-0.17,30000752,40047425:40047426:40047428:40047430:40047434:40047461:40047484:40047487
30000755,36,Insmother,E-95ID,V-QXXK,-0.23,30000751:30000753,40047489:40047490:40047492:40047494:40047496:40047507:40047531:40047557:40047561
30000756,33,Insmother,8-4EFQ,2-Q4YG,-0.11,30000743:30000750:30000757:30000759,40047568:40047569:40047577:40047579:40047597:40047613:40047632:40047635
30000757,32,Insmother,8-4EFQ,2JT-3Q,-0.10,30000756:30000758:30000759:30000762,40047640:40047642:40047644:40047663
30000758,33,Insmother,8-4EFQ,I3CR-F,-0.16,30000757:30000761:30000763,40047697:40047699:40047702:40047705:40047722:40047731:40047761:40047772
30000759,32,Insmother,8-4EFQ,7-JT09,-0.09,30000756:30000757:30000760:30000762,40047779:40047781:40047782:40047784:40047786:40047789:40047794:40047814:40047840
30000760,33,Insmother,8-4EFQ,AGCP-I,-0.14,30000736:30000759,40047845:40047846:40047847:40047849:40047850:40047852:40047855:40047858:40047863:40047887
30000761,33,Insmother,8-4EFQ,M4-GJ6,-0.16,30000758:30000763:30000777,40047908:40047921:40047923:40047939:40047962:40047968
30000762,31,Insmother,8-4EFQ,5-2PQU,-0.08,30000622:30000757:30000759:30000764,40047973:40047975:40047976:40047978:40047982:40047984:40047989:40048012:40048030:40048034:40048064
30000763,33,Insmother,8-4EFQ,SN9-3Z,-0.14,30000543:30000758:30000761,40048093:40048095:40048097:40048100:40048107:40048120:40048141:40048143
30000764,32,Insmother,Z-ONUI,6BJH-3,-0.05,30000762:30000767:30000768,40048150:40048152:40048154:40048156:40048158:40048161:40048166:40048186:40048191
30000765,34,Insmother,Z-ONUI,U-UTU9,-0.04,30000766:30000767,40048197:40048199:40048202:40048205:40048209:40048216:40048225:40048249:40048257:40048287:40048291
30000766,34,Insmother,Z-ONUI,1TG7-W,-0.06,30000765:30000767:30000768:30000769,40048295:40048297:40048299:40048305:40048326:40048346:40048379
30000767,33,Insmother,Z-ONUI,QYD-WK,-0.04,30000764:30000765:30000766:30000769,40048384:40048385:40048387:40048388:40048390:40048398:40048419
30000768,33,Insmother,Z-ONUI,R959-U,-0.06,30000764:30000766,40048453:40048455:40048457:40048460:40048463:40048477
30000769,34,Insmother,Z-ONUI,A-TJ0G,-0.09,30000766:30000767:30000814,40048501:40048503:40048506:40048508:40048510:40048530:40048552:40048574:40048581
30000770,30,Insmother,QA-P7J,88A-RA,-0.29,30000772:30000773:30000780,40048585:40048587:40048589:40048591:40048594:40048615:40048622:40048644
30000771,31,Insmother,QA-P7J,8G-2FP,-0.21,30000775,40048674:40048675:40048677:40048679:40048682:40048686:40048690:40048692:40048703
30000772,29,Insmother,QA-P7J,C-J6MT,-0.29,30000770:30000773:30000775:30000776:30000784,40048708:40048709:40048711:40048731:40048735:40048738
30000773,30,Insmother,QA-P7J,78-0R6,-0.26,30000540:30000542:30000770:30000772:30000774,40048742:40048743:40048745:40048746:40048747:40048749:40048751:40048760:40048762:40048783:40048786
30000774,30,Insmother,QA-P7J,MSG-BZ,-0.28,30000552:30000720:30000773,40048791:40048793:40048811:40048835:40048862:40048867:40048871
30000775,30,Insmother,QA-P7J,8-WYQZ,-0.23,30000771:30000772:30000803,40048875:40048877:40048879:40048882:40048904:40048930:40048933:40048937
30000776,30,Insmother,QA-P7J,4M-QXK,-0.15,30000772,40048941:40048942:40048944:40048948:40048952:40048956:40048976:40049004:40049011
30000777,32,Insmother,UR-HG4,X5-0EM,-0.25,30000761:30000778:30000782,40049032:40049034:40049036:40049043:40049065:40049092:40049096
30000778,32,Insmother,UR-HG4,G-EURJ,-0.29,30000777:30000779:30000782:30000797,40049102:40049103:40049104:40049106:40049108:40049109:40049114:40049118
30000779,32,Insmother,UR-HG4,SHBF-V,-0.29,30000458:30000778:30000780,40049124:40049126:40049128:40049130:40049132:40049136:40049139:40049156
30000780,31,Insmother,UR-HG4,RERZ-L,-0.22,30000770:30000779:30000782,40049180:40049182:40049187
30000781,30,Insmother,UR-HG4,0UBC-R,-0.21,30000782:30000791,40049191:40049193:40049195:40049210:40049212:40049236:40049268
30000782,31,Insmother,UR-HG4,3U-48K,-0.21,30000777:30000778:30000780:30000781,40049278:40049279:40049281:40049283:40049286:40049295:40049320:40049325:40049331:40049342
30000783,29,Insmother,0YMH-Q,EFM-C4,-0.48,30000788,40049346:40049360:40049375:40049401
30000784,28,Insmother,0YMH-Q,YPW-M4,-0.54,30000772:30000785:30000786:30000787,40049442:40049444:40049446:40049449:40049470:40049491:40049514:40049542:40049543
30000785,29,Insmother,0YMH-Q,Q7-FZ8,-0.55,30000784:30000788:30000810,40049550:40049553:40049554:40049556:40049578:40049585:40049618:40049624:40049630
30000786,29,Insmother,0YMH-Q,L5-UWT,-0.65,30000784:30000788:30000794,40049636:40049638:40049639:40049641:40049646:40049648:40049659:40049683:40049685:40049688
30000787,27,Insmother,0YMH-Q,74-VZA,-0.72,30000706:30000784:30000788,40049694:40049696:40049698:40049700:40049702:40049704:40049729:40049735
30000788,28,Insmother,0YMH-Q,I-1QKL,-0.58,30000783:30000785:30000786:30000787,40049758:40049760:40049762:40049764:40049766:40049771:40049780:40049785:40049789
30000789,30,Insmother,0EA3-8,GK5Z-T,-0.53,30000713:30000790:30000793,40049794
30000790,29,Insmother,0EA3-8,RQN-OO,-0.39,30000789:30000791:30000792:30000793,40049816:40049818:40049819:40049821:40049823:40049826:40049828:40049847:40049878:40049881
30000791,29,Insmother,0EA3-8,67Y-NR,-0.26,30000781:30000790:30000792:30000795,40049885:40049886:40049888:40049890:40049891:40049893:40049895:40049915:40049918:40049944:40049947
30000792,28,Insmother,0EA3-8,GDHN-K,-0.37,30000680:30000790:30000791,40049962:40049963:40049964:40049966:40049968:40049971:40049982:40049985:40049992:40050013
30000793,30,Insmother,0EA3-8,QTME-D,-0.45,30000789:30000790:30000794,40050016:40050018:40050020:40050024:40050047:40050063:40050075
30000794,30,Insmother,0EA3-8,A24L-V,-0.48,30000786:30000793:30000795,40050080:40050082:40050084:40050090:40050100:40050120:40050139
30000795,30,Insmother,0EA3-8,4CJ-AC,-0.20,30000791:30000794,40050176:40050177:40050179:40050181:40050185:40050188:40050190:40050213:40050240:40050244
30000796,34,Insmother,0-YMZM,EUU-4N,-0.68,30000797,40050249:40050251:40050253:40050255:40050259:40050265:40050273:40050275:40050296:40050309:40050347:40050350
30000797,33,Insmother,0-YMZM,Q-3HS5,-0.58,30000778:30000796:30000798:30000799,40050357:40050358:40050359:40050361:40050364:40050367:40050376:40050381:40050384:40050387:40050407:40050410
30000798,34,Insmother,0-YMZM,3AE-CP,-0.67,30000797:30000800,40050415:40050417:40050418:40050437:40050439:40050447:40050470:40050480:40050519:40050523
30000799,34,Insmother,0-YMZM,0-VG7A,-0.43,30000797,40050526:40050528:40050530:40050531:40050533:40050536:40050540:40050559
30000800,35,Insmother,0-YMZM,9OLQ-6,-0.79,30000798:30000801,40050564:40050566:40050568:40050569:40050594:40050613:40050619:40050623
30000801,36,Insmother,0-YMZM,MOCW-2,-0.82,30000800,40050628:40050629:40050632:40050635:40050636:40050638
30000802,32,Insmother,N5V-Y0,ZO-4AR,-0.29,30000803:30000804,40050641:40050642:40050644:40050645:40050648:40050651:40050657:40050679
30000803,31,Insmother,N5V-Y0,MJ-LGH,-0.26,30000775:30000802,40050691:40050693:40050695:40050698:40050702:40050720:40050746:40050788:40050792
30000804,33,Insmother,N5V-Y0,F2A-GX,-0.26,30000802:30000805:30000806,40050799:40050801:40050804:40050831:40050837:40050865
30000805,34,Insmother,N5V-Y0,RD-FWY,-0.18,30000804,40050873:40050874:40050875:40050877:40050880:40050883:40050896:40050906:40050933:40050939
30000806,34,Insmother,N5V-Y0,VBPT-T,-0.32,30000804:30000807,40050944:40050946:40050947:40050950:40050954:40050955:40050958:40050961:40050985:40051009:40051041:40051057
30000807,35,Insmother,N5V-Y0,KS-1TS,-0.45,30000806,40051063:40051064:40051067:40051069:40051073:40051076:40051080:40051088:40051098
30000808,31,Insmother,N-LY4R,X0-6LH,-0.71,30000809:30000810:30000811:30000812,40051104:40051106:40051108:40051110:40051112:40051113:40051130:40051131:40051157:40051168:40051172
30000809,32,Insmother,N-LY4R,FN0-QS,-0.85,30000808:30000812:30000813,40051186:40051188:40051190:40051192:40051200:40051225:40051237:40051241
30000810,30,Insmother,N-LY4R,F3-8X2,-0.54,30000785:30000808,40051245:40051247:40051248:40051256:40051277:40051304
30000811,32,Insmother,N-LY4R,N7-BIY,-0.65,30000808,40051313:40051314:40051315:40051317:40051319:40051323:40051327:40051350
30000812,32,Insmother,N-LY4R,TTP-2B,-0.93,30000808:30000809:30000813,40051360:40051361:40051362:40051363:40051365:40051367:40051369:40051371:40051373:40051380:40051396:40051409:40051434:40051464:40051467
30000813,33,Insmother,N-LY4R,LVL-GZ,-0.96,30000809:30000812:30000837,40051472:40051473:40051475:40051477:40051479:40051483:40051490:40051511:40051536:40051539
30000814,33,Insmother,V2S-RH,EJ48-O,-0.10,30000769:30000815,40051543:40051545:40051547:40051549:40051562:40051565:40051580:40051605
30000815,32,Insmother,V2S-RH,ROJ-B0,-0.19,30000814:30000816:30000817,40051618:40051619:40051622:40051624:40051628:40051633:40051658
30000816,31,Insmother,V2S-RH,DFH-V5,-0.32,30000815:30000818,40051662:40051664:40051665:40051667:40051669:40051681:40051697:40051723:40051749:40051778
30000817,33,Insmother,V2S-RH,B-II34,-0.09,30000815,40051783:40051784:40051785:40051786:40051789:40051801:40051805:40051814
30000818,30,Insmother,V2S-RH,4LB-EL,-0.39,30000816:30000819:30000821,40051820:40051822:40051823:40051825:40051826:40051828:40051831:40051835:40051838:40051842:40051852
30000819,31,Insmother,V2S-RH,UDE-FX,-0.41,30000818:30000820,40051886:40051888:40051890:40051892:40051913:40051931:40051955
30000820,30,Insmother,V2S-RH,5IH-GL,-0.51,30000819:30000821:30000822,40051962:40051964:40051972:40051990:40052020:40052045:40052058
30000821,29,Insmother,V2S-RH,C1G-XC,-0.56,30000619:30000818:30000820:30000823,40052060:40052061:40052063:40052065:40052068:40052071:40052079:40052081:40052102
30000822,31,Insmother,V2S-RH,04-EHC,-0.56,30000820:30000830,40052107:40052110:40052112:40052115:40052118:40052124:40052150:40052153
30000823,30,Insmother,V2S-RH,3-0FYP,-0.49,30000648:30000821,40052158:40052160:40052163:40052166:40052168:40052169:40052186:40052197:40052200:40052203
30000824,37,Insmother,FD-7Y4,N-O53U,-0.43,30000753:30000825,40052210:40052212:40052215:40052217:40052220:40052223:40052227:40052253:40052263:40052290
30000825,36,Insmother,FD-7Y4,HZ-O18,-0.42,30000824:30000826,40052293:40052296:40052298:40052301:40052304
30000826,35,Insmother,FD-7Y4,D-P1EH,-0.54,30000825:30000827,40052309:40052311:40052313:40052315:40052317:40052321:40052324:40052345:40052368
30000827,34,Insmother,FD-7Y4,74L2-U,-0.53,30000826:30000828,40052375:40052377:40052378:40052381:40052383:40052386:40052388:40052390:40052411:40052419:40052423:40052428
30000828,33,Insmother,FD-7Y4,HL-VZX,-0.50,30000827:30000829:30000830,40052434:40052435:40052437:40052439:40052449:40052453
30000829,33,Insmother,FD-7Y4,38NZ-1,-0.54,30000828:30000830:30000845,40052458:40052463:40052475:40052490:40052509:40052512:40052520:40052528:40052533
30000830,32,Insmother,FD-7Y4,W-MF6J,-0.51,30000822:30000828:30000829,40052539:40052541:40052542:40052544:40052545:40052551:40052566:40052593
30000831,38,Insmother,TL-FDN,O-9G5Y,-0.52,30000742:30000832:30000834,40052598:40052599:40052600:40052602:40052603:40052605:40052607:40052610:40052615:40052619:40052623:40052627:40052650
30000832,39,Insmother,TL-FDN,27-HP0,-0.64,30000831:30000833,40052659:40052660:40052661:40052664:40052668:40052675:40052680
30000833,40,Insmother,TL-FDN,X1-IZ0,-0.59,30000832,40052684:40052686:40052688:40052691:40052693:40052706:40052726:40052737:40052741
30000834,37,Insmother,TL-FDN,RZ-TI6,-0.77,30000831:30000835,40052745:40052747:40052749:40052753:40052770:40052797:40052807
30000835,36,Insmother,TL-FDN,FX4L-2,-0.76,30000834:30000836,40052812:40052817:40052819:40052821:40052840:40052870
30000836,35,Insmother,TL-FDN,1ZF-PJ,-0.86,30000835:30000837,40052874:40052875:40052877:40052879:40052882:40052884:40052886:40052889:40052892:40052899:40052903
30000837,34,Insmother,TL-FDN,HFC-AQ,-0.93,30000813:30000836,40052907:40052908:40052910:40052912:40052913:40052915:40052918:40052921:40052935
30000838,36,Insmother,R-CL2W,0-6VZ5,-0.50,30000445:30000839,40052960:40052962:40052964:40052969:40052973:40052991:40053016:40053036:40053058:40053090:40053095:40053101
30000839,37,Insmother,R-CL2W,GB-6X5,-0.52,30000527:30000838:30000840,40053106:40053108:40053110:40053112:40053119:40053131:40053155:40053171:40053172:40053197:40053201:40053203
30000840,38,Insmother,R-CL2W,7EX-14,-0.56,30000839:30000841,40053208:40053209:40053211:40053213:40053215:40053216:40053217:40053240:40053243:40053269:40053273
30000841,38,Insmother,R-CL2W,N7-KGJ,-0.59,30000840:30000842,40053297:40053299:40053301:40053304:40053307:40053308:40053329:40053361
30000842,37,Insmother,R-CL2W,VD-8QY,-0.56,30000841:30000843,40053368:40053370:40053372:40053373:40053376:40053380:40053384:40053394
30000843,36,Insmother,R-CL2W,J-ZYSZ,-0.51,30000842:30000844,40053401:40053402:40053404:40053405:40053407:40053410:40053413:40053421:40053422:40053442:40053468:40053488
30000844,35,Insmother,R-CL2W,5C-RPA,-0.50,30000494:30000843:30000845,40053506:40053507:40053508:40053510:40053513:40053517:40053521:40053537
30000845,34,Insmother,R-CL2W,CR2-PQ,-0.50,30000829:30000844,40053543:40053544:40053546:40053549:40053551:40053554:40053557:40053561:40053565
30000846,9,Tribute,1P-VL2,E-OGL4,-0.29,30000848:30000861,40053570:40053571:40053573:40053574:40053577:40053580:40053582:40053601:40053620:40053641
30000847,9,Tribute,1P-VL2,J-GAMP,-0.24,30000848:30000850,40053675:40053676:40053678:40053680:40053682:40053684:40053689:40053695:40053701
30000848,8,Tribute,1P-VL2,M-OEE8,-0.22,30000846:30000847:30000849:30000850:30001447,40053707:40053708:40053710:40053713:40053715:40053717:40053719:40053727:40053729:40053746:40053751:40053779
30000849,9,Tribute,1P-VL2,V0DF-2,-0.21,30000848:30000850:30000851,40053803:40053805:40053807:40053822:40053842:40053860:40053865:40053873
30000850,9,Tribute,1P-VL2,FY0W-N,-0.19,30000847:30000848:30000849,40053878:40053879:40053881:40053883:40053885:40053909:40053938
30000851,10,Tribute,1P-VL2,MJI3-8,-0.20,30000849,40053981:40053983:40053985:40053989:40053992:40054010
30000852,15,Tribute,X-VN63,A-DDGY,-0.21,30000856,40054041:40054042:40054044:40054046:40054049:40054067:40054090
30000853,13,Tribute,X-VN63,F-RT6Q,-0.25,30000854:30000856:30000860:30000862,40054123:40054125:40054127:40054129:40054132:40054136:40054146:40054174
30000854,14,Tribute,X-VN63,B-S42H,-0.22,30000853:30000856:30000859:30000860:30000886,40054179:40054181:40054182:40054184:40054207:40054237
30000855,15,Tribute,X-VN63,NL6V-7,-0.26,30000856:30000859,40054248:40054249:40054251:40054253:40054255:40054258:40054260:40054265:40054284:40054316:40054325
30000856,14,Tribute,X-VN63,F-749O,-0.24,30000852:30000853:30000854:30000855:30000860,40054330:40054332:40054334:40054335:40054354:40054363:40054386:40054390
30000857,16,Tribute,X-VN63,0-YMBJ,-0.16,30000858:30001963,40054422:40054423:40054425:40054427:40054430:40054446:40054471:40054497:40054531:40054534
30000858,15,Tribute,X-VN63,UMI-KK,-0.17,30000857:30000860:30000879:30001261,40054544:40054546:40054548:40054550:40054552:40054555:40054563:40054570:40054592:40054632:40054635
30000859,15,Tribute,X-VN63,GKP-YT,-0.21,30000854:30000855,40054641:40054643:40054645:40054647:40054650:40054658:40054686:40054692:40054696
30000860,14,Tribute,X-VN63,AW1-2I,-0.22,30000853:30000854:30000856:30000858,40054698:40054701:40054703:40054719:40054734:40054760
30000861,10,Tribute,LLAP-1,15W-GC,-0.32,30000846:30000863:30000866,40054764:40054766:40054768:40054769:40054772:40054780:40054793:40054812:40054847
30000862,12,Tribute,LLAP-1,N-FK87,-0.26,30000853:30000866,40054855:40054857:40054858:40054860:40054862:40054865:40054878:40054898
30000863,11,Tribute,LLAP-1,C2X-M5,-0.37,30000861:30000864,40054903:40054905:40054906:40054908:40054910:40054913:40054917:40054936:40054964
30000864,12,Tribute,LLAP-1,MSHD-4,-0.44,30000247:30000863:30000865,40054976:40054977:40054978:40054979:40054984:40054987:40054992:40054997:40055004
30000865,13,Tribute,LLAP-1,H-W9TY,-0.46,30000864:30000867,40055036:40055037:40055038:40055041:40055043:40055045:40055048:40055050:40055053:40055076:40055099:40055124:40055133
30000866,11,Tribute,LLAP-1,PNDN-V,-0.31,30000861:30000862:30000877,40055154:40055156:40055166:40055168:40055171:40055190:40055213:40055238:40055247
30000867,14,Tribute,52-JKU,D7-ZAC,-0.52,30000865:30000868:30000871,40055252:40055254:40055255:40055257:40055258:40055260:40055263:40055266:40055269:40055273:40055276:40055297
30000868,15,Tribute,52-JKU,SH1-6P,-0.57,30000867:30000869:30000870,40055302:40055303:40055305:40055309:40055313:40055316:40055342
30000869,16,Tribute,52-JKU,TRKN-L,-0.68,30000868:30000870,40055371:40055372:40055374:40055376:40055382:40055401:40055423:40055426:40055460
30000870,16,Tribute,52-JKU,O-0ERG,-0.73,30000868:30000869:30000871,40055465:40055466:40055467:40055469:40055472:40055475:40055480:40055490:40055510:40055513
30000871,15,Tribute,52-JKU,WH-JCA,-0.73,30000267:30000867:30000870:30000872:30000894,40055517:40055520:40055524:40055526:40055536:40055558:40055587:40055591
30000872,16,Tribute,52-JKU,Q-CAB2,-0.78,30000871:30001281,40055636:40055638:40055640:40055654:40055657:40055678:40055709:40055731:40055735
30000873,14,Tribute,E3-NLE,PBD-0G,-0.23,30000875,40055739:40055741:40055742:40055744:40055746:40055753:40055761:40055772:40055796:40055799:40055804
30000874,14,Tribute,E3-NLE,L-1HKR,-0.25,30000875,40055808:40055809:40055810:40055812:40055814:40055829:40055853:40055860
30000875,13,Tribute,E3-NLE,9GI-FB,-0.26,30000873:30000874:30000877,40055862:40055864:40055867:40055870:40055876:40055879:40055906:40055910
30000876,13,Tribute,E3-NLE,3G-LHB,-0.21,30000877:30000878,40055914:40055925:40055930:40055948:40055979
30000877,12,Tribute,E3-NLE,DBT-GB,-0.25,30000866:30000875:30000876,40055982:40055984:40055986:40055987:40055989:40056009:40056029:40056048:40056078
30000878,14,Tribute,E3-NLE,U-W3WS,-0.16,30000876,40056085:40056086:40056088:40056089:40056091:40056094:40056097:40056102:40056105:40056125
30000879,16,Tribute,GORV-P,DL1C-E,-0.13,30000858:30000880:30000881,40056134:40056135:40056138:40056142:40056167:40056176
30000880,17,Tribute,GORV-P,YLS8-J,-0.11,30000879:30000882:30000885,40056180:40056181:40056182:40056184:40056186:40056188:40056191:40056194:40056217:40056222:40056225
30000881,17,Tribute,GORV-P,2ISU-Y,-0.13,30000879,40056230:40056232:40056233:40056234:40056237:40056241:40056258:40056288:40056309:40056314
30000882,18,Tribute,GORV-P,X-CFN6,-0.10,30000880:30000883,40056317:40056318:40056319:40056322:40056324:40056332:40056339:40056346:40056353:40056367
30000883,19,Tribute,GORV-P,9SL-K9,-0.10,30000882:30000884,40056372:40056374:40056376:40056380:40056388:40056406:40056432:40056434:40056439
30000884,20,Tribute,GORV-P,Y-PZHM,-0.09,30000883,40056444:40056445:40056447:40056448:40056451:40056464:40056471:40056498:40056530
30000885,18,Tribute,GORV-P,OY-UZ1,-0.13,30000880,40056535:40056536:40056537:40056539:40056542:40056544:40056566:40056580:40056586
30000886,15,Tribute,03C-SU,S8-NSQ,-0.20,30000854:30000887,40056591:40056593
30000887,16,Tribute,03C-SU,GIH-ZG,-0.24,30000886:30000888:30000889:30000891,40056615:40056617:40056620:40056623:40056626:40056628:40056637:40056646:40056668:40056675
30000888,17,Tribute,03C-SU,V7-FB4,-0.25,30000887:30000889,40056685:40056686:40056688:40056690:40056694:40056714:40056742:40056752
30000889,17,Tribute,03C-SU,XD-TOV,-0.27,30000887:30000888:30000890:30000891,40056757:40056758:40056760:40056775:40056777:40056783:40056804:40056828
30000890,18,Tribute,03C-SU,K-6SNI,-0.27,30000889:30000891:30000893,40056858:40056859:40056861:40056863:40056866:40056883:40056911:40056914
30000891,17,Tribute,03C-SU,L-VXTK,-0.27,30000887:30000889:30000890:30000892,40056936:40056937:40056938:40056940:40056953:40056957
30000892,18,Tribute,03C-SU,C8VC-S,-0.27,30000891,40056963:40056964:40056966:40056970:40056974:40056977:40056979
30000893,19,Tribute,03C-SU,W-UQA5,-0.30,30000890,40056984:40056986:40056988:40056990:40056992:40056993:40057000:40057008:40057015:40057022:40057031:40057036
30000894,16,Tribute,W-XBGF,W6VP-Y,-0.78,30000871:30000895,40057041:40057042:40057059:40057062:40057088:40057131:40057135:40057139
30000895,17,Tribute,W-XBGF,IMK-K1,-0.78,30000894:30000896,40057144:40057145:40057147:40057149:40057153:40057155:40057156:40057160:40057188
30000896,18,Tribute,W-XBGF,NJ4X-S,-0.72,30000895:30000897:30001348,40057214:40057217:40057218:40057220:40057222:40057224:40057228:40057246:40057265:40057293
30000897,19,Tribute,W-XBGF,F-G7BO,-0.59,30000896:30000898,40057313:40057314:40057315:40057317:40057319:40057321:40057323:40057329:40057332:40057354
30000898,20,Tribute,W-XBGF,2CG-5V,-0.61,30000308:30000897:30000899,40057370:40057372:40057374:40057376:40057379:40057382:40057386:40057390
30000899,21,Tribute,W-XBGF,QFF-O6,-0.54,30000303:30000898,40057397:40057398:40057400:40057402:40057405:40057407:40057411:40057435:40057458:40057499
30000900,20,Great Wildlands,730-KH,NIH-02,-0.04,30000904:30000905:30000964,40057505:40057507:40057509:40057511:40057515:40057527:40057551:40057567
30000901,20,Great Wildlands,730-KH,JPL-RA,-0.10,30000902:30000923,40057599:40057601:40057603:40057618:40057637:40057647
30000902,19,Great Wildlands,730-KH,NK-7XO,-0.02,30000901:30000903,40057654:40057656:40057658:40057660:40057678:40057699:40057729
30000903,18,Great Wildlands,730-KH,E02-IK,-0.06,30000902:30000905:30000942,40057743:40057744:40057746:40057749:40057751:40057754:40057762:40057786:40057813:40057824:40057831
30000904,21,Great Wildlands,730-KH,N-DQ0D,-0.07,30000900:30000949:30000971,40057836:40057837:40057839:40057841:40057842:40057844:40057855
30000905,19,Great Wildlands,730-KH,M-MD3B,-0.12,30000900:30000903,40057877:40057878:40057879:40057882:40057885:40057889:40057894:40057897:40057900:40057904:40057908:40057909
30000906,26,Great Wildlands,U-3HAO,FVXK-D,-0.38,30000909:30000977,40057914:40057933
30000907,25,Great Wildlands,U-3HAO,6EG7-R,-0.71,30000908:30000909:30000910:30000938,40057952:40057953:40057954:40057955:40057959:40057982:40057986:40058008
30000908,24,Great Wildlands,U-3HAO,56D-TC,-0.70,30000907:30000909:30000910:30000927,40058039:40058041:40058043:40058046:40058047
30000909,25,Great Wildlands,U-3HAO,2X7Z-L,-0.55,30000906:30000907:30000908,40058052:40058055:40058062:40058068:40058092:40058118
30000910,25,Great Wildlands,U-3HAO,8DL-CP,-0.84,30000907:30000908:30000911,40058153:40058154:40058155:40058159:40058163:40058167:40058182
30000911,26,Great Wildlands,U-3HAO,UMDQ-6,-0.87,30000910,40058213:40058215:40058217:40058219:40058223:40058243
30000912,23,Great Wildlands,K-DLD2,504Z-V,-0.09,30000913:30000914:30000917:30000919:30000941,40058263:40058265:40058267:40058269:40058272:40058278:40058301:40058327:40058353:40058361
30000913,22,Great Wildlands,K-DLD2,F8K-WQ,-0.02,30000912:30000914:30000916:30000917:30000923,40058365:40058366:40058368:40058370:40058372:40058375:40058378:40058382:40058384:40058387
30000914,23,Great Wildlands,K-DLD2,AB-FZE,-0.11,30000912:30000913:30000915,40058392:40058393:40058395:40058397:40058413:40058430:40058452:40058480
30000915,24,Great Wildlands,K-DLD2,N-6Z8B,-0.08,30000914:30000962:30000989,40058486:40058488:40058490:40058492:40058494:40058514:40058537:40058569:40058570:40058583
30000916,23,Great Wildlands,K-DLD2,YUY-LM,-0.02,30000913,40058587:40058588:40058589:40058590:40058592:40058594:40058603:40058622
30000917,23,Great Wildlands,K-DLD2,NE-3GR,-0.03,30000912:30000913,40058653:40058654:40058655:40058657:40058660:40058662:40058683
30000918,23,Great Wildlands,V-LQBF,Y4-GQV,-0.02,30000920:30000922:30000924:30000957:30000994,40058694:40058696:40058697:40058700:40058705:40058729:40058734:40058737
30000919,24,Great Wildlands,V-LQBF,7-IDWY,-0.01,30000912:30000925:30000926,40058767:40058768:40058769:40058771:40058774:40058775:40058783:40058808:40058835
30000920,22,Great Wildlands,V-LQBF,AZF-GH,-0.03,30000918:30000923:30000924,40058840:40058842:40058843:40058846:40058849:40058850:40058853:40058856
30000921,24,Great Wildlands,V-LQBF,UT-UZB,-0.01,30000924:30000925:30001020,40058860:40058863:40058865:40058868:40058886:40058913
30000922,24,Great Wildlands,V-LQBF,M-EKDF,0.00,30000918:30000924,40058916:40058917:40058918:40058920:40058925:40058927:40058931:40058950:40058966:40058974:40059002
30000923,21,Great Wildlands,V-LQBF,CRXA-Y,-0.08,30000901:30000913:30000920,40059007:40059008:40059009:40059011:40059013:40059016
30000924,23,Great Wildlands,V-LQBF,VXO-OM,0.00,30000918:30000920:30000921:30000922:30000993,40059022:40059023:40059025:40059027:40059041
30000925,25,Great Wildlands,V-LQBF,BY5-V8,-0.01,30000919:30000921,40059071:40059072:40059073:40059074:40059077:40059080:40059087:40059089:40059095:40059098
30000926,25,Great Wildlands,V-LQBF,TET3-B,-0.02,30000666:30000919,40059102:40059104:40059106:40059108:40059110:40059116:40059132:40059144
30000927,23,Great Wildlands,BB8E-G,VKU-BG,-0.55,30000908:30000928:30000935,40059150:40059152:40059154:40059157:40059159:40059175:40059179:40059184:40059206:40059213:40059217
30000928,23,Great Wildlands,BB8E-G,WPR-EI,-0.46,30000927:30000929,40059222:40059224:40059225:40059227:40059231:40059252:40059274:40059296:40059299:40059302
30000929,22,Great Wildlands,BB8E-G,0NV-YU,-0.29,30000928:30000930:30000932,40059307:40059308:40059309:40059311:40059314:40059317
30000930,22,Great Wildlands,BB8E-G,V-2GYS,-0.19,30000929:30000931:30000932,40059323:40059325:40059327:40059335:40059352:40059369:40059404
30000931,23,Great Wildlands,BB8E-G,168-6H,-0.13,30000930,40059413:40059414:40059415:40059418:40059421:40059423:40059427:40059433:40059437
30000932,21,Great Wildlands,BB8E-G,W-RFUO,-0.16,30000929:30000930:30000933:30000934,40059441:40059442:40059444:40059446:40059449:40059453:40059475
30000933,20,Great Wildlands,BB8E-G,AI-EVH,-0.06,30000932:30000934:30000947,40059488:40059489:40059491:40059493:40059495:40059498:40059502:40059505:40059512:40059516:40059547
30000934,21,Great Wildlands,BB8E-G,F-MKH3,-0.12,30000932:30000933:30000935,40059553
30000935,22,Great Wildlands,BB8E-G,ZM-DNR,-0.07,30000927:30000934,40059577:40059578:40059580:40059581:40059583:40059585:40059587:40059589:40059597:40059600:40059605:40059617:40059622
30000936,25,Great Wildlands,IYOO-M,GF-3FL,-0.43,30000937:30000939:30000940:30000941,40059626:40059628:40059630:40059632:40059637:40059643:40059664:40059686:40059700:40059705
30000937,25,Great Wildlands,IYOO-M,ZJ-GOU,-0.15,30000936:30000938:30000941,40059709:40059710:40059711:40059713:40059721:40059741:40059767:40059773
30000938,26,Great Wildlands,IYOO-M,QQ3-YI,-0.25,30000907:30000937,40059777:40059801:40059820:40059856
30000939,26,Great Wildlands,IYOO-M,9-34L5,-0.08,30000666:30000936,40059863:40059865:40059866:40059868:40059875:40059878:40059888:40059891:40059893
30000940,26,Great Wildlands,IYOO-M,0R-GZQ,-0.44,30000936,40059896:40059898:40059900:40059903:40059907:40059914
30000941,24,Great Wildlands,IYOO-M,QM-20X,-0.15,30000912:30000936:30000937,40059923:40059924:40059925:40059927:40059930:40059933:40059950:40059954:40059956
30000942,17,Great Wildlands,Q-PVMK,8YC-AN,-0.15,30000903:30000943:30000944,40059965:40059967:40059970:40059971:40059973:40059992:40060018:40060044
30000943,16,Great Wildlands,Q-PVMK,7Q-8Z2,-0.30,30000117:30000942:30000944,40060082:40060083:40060085:40060087:40060090:40060093:40060095:40060099:40060125:40060128
30000944,17,Great Wildlands,Q-PVMK,SUR-F7,-0.44,30000942:30000943:30000945:30000946,40060159:40060162:40060165:40060168:40060169:40060187:40060191:40060195:40060217:40060219
30000945,18,Great Wildlands,Q-PVMK,OK-6XN,-0.56,30000944:30000948,40060224:40060226:40060229:40060232:40060233:40060236:40060259
30000946,18,Great Wildlands,Q-PVMK,Q2FL-T,-0.25,30000944:30000947,40060283:40060284:40060286:40060288:40060293:40060312:40060342
30000947,19,Great Wildlands,Q-PVMK,Y7-XFD,-0.05,30000933:30000946,40060362:40060363:40060365:40060366:40060369:40060374:40060396:40060413:40060419:40060441
30000948,19,Great Wildlands,Q-PVMK,U3K-4A,-0.75,30000945,40060446:40060448:40060449:40060452:40060455:40060458:40060462:40060483
30000949,22,Great Wildlands,AP-S8F,P1T-LP,-0.06,30000904:30000950,40060527:40060530:40060533:40060535:40060552:40060573:40060584
30000950,23,Great Wildlands,AP-S8F,R-ESG0,-0.05,30000949:30000951,40060592:40060593:40060594:40060595:40060597:40060598:40060601:40060606:40060609:40060621
30000951,24,Great Wildlands,AP-S8F,CI4M-T,-0.03,30000950:30000952,40060625:40060626:40060627:40060628:40060630:40060634:40060653:40060661:40060664
30000952,25,Great Wildlands,AP-S8F,I-QRJA,-0.07,30000951:30000953:30000954,40060670:40060671:40060672:40060675:40060677:40060680:40060681:40060689
30000953,26,Great Wildlands,AP-S8F,M-YWAL,-0.23,30000952,40060694:40060696:40060699:40060700:40060702:40060705:40060727:40060762:40060795
30000954,26,Great Wildlands,AP-S8F,DE71-9,-0.14,30000952:30000955,40060799:40060801:40060803:40060821:40060842:40060861:40060880
30000955,27,Great Wildlands,AP-S8F,7JF-0Z,-0.27,30000954:30000983,40060886:40060888:40060913:40060941:40060944
30000956,25,Great Wildlands,T-W4L3,IX8-JB,-0.04,30000957:30000958:30000962:30000963,40060973:40060975:40060976:40060979:40060981:40060984:40060987:40061007:40061014:40061041:40061046
30000957,24,Great Wildlands,T-W4L3,WTIE-6,-0.03,30000918:30000956:30000962,40061050:40061051:40061053:40061055:40061057:40061059:40061063:40061069:40061088
30000958,26,Great Wildlands,T-W4L3,Y-DSSK,-0.02,30000956:30000959:30000961,40061115:40061117:40061120:40061121:40061123
30000959,27,Great Wildlands,T-W4L3,F5-CGW,0.00,30000958:30000960,40061128:40061129:40061131:40061132:40061135:40061138:40061143:40061146
30000960,28,Great Wildlands,T-W4L3,H9S-WC,-0.01,30000959,40061153:40061154:40061157:40061159:40061160:40061162:40061165:40061168:40061172
30000961,27,Great Wildlands,T-W4L3,B-ROFP,-0.05,30000958,40061176:40061178:40061181:40061184:40061201:40061217:40061237:40061264
30000962,25,Great Wildlands,T-W4L3,1L-AED,-0.07,30000915:30000956:30000957:30000963,40061270:40061272:40061274:40061276:40061281:40061302:40061321:40061341:40061373
30000963,26,Great Wildlands,T-W4L3,1C-953,-0.07,30000956:30000962,40061375:40061377:40061379:40061381:40061382:40061385:40061387:40061389:40061396:40061430
30000964,21,Great Wildlands,V-4QJC,SL-YBS,-0.03,30000900:30000965:30000967,40061435:40061437:40061439:40061442:40061444:40061463:40061486:40061499:40061503
30000965,22,Great Wildlands,V-4QJC,UNJ-GX,-0.01,30000964:30000966:30000968,40061507:40061508:40061510:40061512:40061515:40061517:40061521:40061543
30000966,21,Great Wildlands,V-4QJC,0PI4-E,0.00,30000965:30000967:30000969,40061552:40061554:40061556:40061559:40061561:40061575:40061599:40061631:40061638:40061643
30000967,21,Great Wildlands,V-4QJC,6WT-BE,0.00,30000964:30000966:30000969,40061675:40061676:40061678:40061681:40061702:40061726:40061734:40061760
30000968,23,Great Wildlands,V-4QJC,L1S-G1,-0.02,30000965,40061765:40061767:40061769:40061771:40061774:40061778:40061783:40061787:40061815
30000969,20,Great Wildlands,V-4QJC,9SNK-O,0.00,30000966:30000967:30000970,40061848:40061849:40061852:40061854:40061858:40061861:40061883
30000970,19,Great Wildlands,V-4QJC,B-VIP9,0.00,30000969:30002420,40061889:40061892:40061894:40061896:40061900:40061903:40061925
30000971,22,Great Wildlands,DYK-G8,LXTC-S,-0.03,30000904:30000972,40061930:40061931:40061932:40061935:40061936:40061938:40061943:40061946:40061967:40061970:40061980
30000972,23,Great Wildlands,DYK-G8,WE3-BX,-0.02,30000971:30000973:30000974,40061983:40061984:40061986:40061988:40061992
30000973,24,Great Wildlands,DYK-G8,H7O-JZ,-0.01,30000972:30000975,40061996:40061997:40061999:40062002:40062024:40062027
30000974,24,Great Wildlands,DYK-G8,H-8F5Q,-0.02,30000972,40062035:40062036:40062037:40062039:40062042:40062044:40062047
30000975,25,Great Wildlands,DYK-G8,O-RXCZ,-0.01,30000973:30000976,40062053:40062054:40062055:40062057:40062058:40062081:40062106
30000976,26,Great Wildlands,DYK-G8,4M-P1I,-0.03,30000975,40062114:40062115:40062117:40062132:40062138:40062162:40062186
30000977,25,Great Wildlands,L-TEVM,P7UZ-T,-0.22,30000906:30000978:30000980,40062193:40062195:40062196:40062204:40062225:40062249:40062274
30000978,24,Great Wildlands,L-TEVM,PUZ-IO,-0.19,30000703:30000977:30000979:30000982,40062308:40062310:40062311:40062313:40062315:40062317:40062337:40062363:40062364:40062397
30000979,23,Great Wildlands,L-TEVM,HB-1NJ,-0.13,30000978:30000981:30000982,40062401:40062402:40062404:40062406:40062423:40062440:40062443:40062480
30000980,26,Great Wildlands,L-TEVM,EOE3-N,-0.17,30000977,40062516:40062517:40062519:40062520:40062523:40062528:40062532:40062536
30000981,22,Great Wildlands,L-TEVM,F7A-MR,-0.06,30000979:30000995,40062563:40062564:40062566:40062569:40062570:40062572:40062575:40062577:40062579:40062583:40062591
30000982,24,Great Wildlands,L-TEVM,O-8SOC,-0.10,30000978:30000979,40062597:40062599:40062600:40062603:40062605:40062607:40062611:40062615:40062641:40062661
30000983,28,Great Wildlands,HRJG-D,OJOS-T,-0.31,30000955:30000984,40062666:40062685:40062701:40062704
30000984,29,Great Wildlands,HRJG-D,V89M-R,-0.55,30000983:30000985,40062707:40062709:40062713:40062719:40062723:40062742
30000985,30,Great Wildlands,HRJG-D,66U-1P,-0.50,30000984:30000986,40062751:40062752:40062754:40062757:40062761:40062764:40062765:40062784:40062805:40062811:40062818
30000986,31,Great Wildlands,HRJG-D,BRT-OP,-0.46,30000985:30000987,40062823:40062824:40062825:40062826:40062829:40062832:40062833:40062836:40062840:40062842:40062846:40062861:40062894
30000987,32,Great Wildlands,HRJG-D,JUK0-1,-0.66,30000986:30000988,40062899:40062901:40062905:40062926:40062951:40062976
30000988,33,Great Wildlands,HRJG-D,V-IH6B,-1.00,30000987,40062982:40062983:40062985:40062988:40062994:40063019:40063027
30000989,25,Great Wildlands,W-3Y6D,52V6-B,-0.03,30000915:30000990:30000991:30000992:30000994,40063032:40063033:40063035:40063037:40063039:40063046:40063052:40063067:40063093
30000990,26,Great Wildlands,W-3Y6D,PUC-JZ,-0.03,30000989:30000992,40063101:40063102:40063104:40063107:40063108:40063112:40063117:40063120
30000991,25,Great Wildlands,W-3Y6D,SB-23C,-0.02,30000989:30000993:30000994,40063122:40063124:40063125:40063127:40063130:40063133:40063135:40063138:40063141
30000992,25,Great Wildlands,W-3Y6D,5FCV-A,-0.01,30000989:30000990:30000993,40063143:40063144:40063145:40063147:40063149:40063151:40063155:40063158
30000993,24,Great Wildlands,W-3Y6D,O-OVOQ,-0.01,30000924:30000991:30000992:30000994,40063179:40063181:40063183:40063186:40063189:40063192:40063198
30000994,24,Great Wildlands,W-3Y6D,92-B0X,-0.01,30000918:30000989:30000991:30000993,40063203:40063205:40063206:40063208:40063212:40063214:40063225:40063253:40063276:40063279:40063293
30000995,21,Great Wildlands,I3-2J0,0-3VW8,-0.03,30000981:30000996,40063299:40063301:40063315:40063338:40063361
30000996,20,Great Wildlands,I3-2J0,28-QWU,-0.05,30000995:30000997:30000999,40063373:40063375:40063378:40063399:40063414
30000997,20,Great Wildlands,I3-2J0,UD-AOK,-0.11,30000996:30000998:30000999,40063437:40063439:40063441:40063445:40063468:40063490:40063503
30000998,21,Great Wildlands,I3-2J0,M9U-75,-0.14,30000997:30001000,40063508:40063509:40063510:40063512:40063515:40063518:40063533
30000999,19,Great Wildlands,I3-2J0,N-RAEL,-0.03,30000996:30000997:30003471,40063537:40063538:40063540:40063543:40063546:40063548:40063550:40063554