-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGathering - General.xml
3130 lines (3025 loc) · 428 KB
/
Gathering - General.xml
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
<OverlayData>
<POIs>
<!-- GENERAL GATHERING -->
<!-- Gathering - Rich Copper Nodes -->
<!-- Caledon Haven Waypoint in Caledon Forest [&BDwBAAA=] -->
<Trail type="legs.gathering.general.richcopper.caledon" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Caledon Forest 1.trl"/>
<POI MapID="34" xpos="-210.147" ypos="56.1356" zpos="449.508" type="legs.gathering.general.richcopper.start" GUID="5J1aUcQiLk+BqXtegVkPMw=="/>
<POI MapID="34" xpos="-7.72915" ypos="11.5469" zpos="375.861" type="legs.gathering.general.richcopper.node" GUID="QAv1j0PVNkShBOwsOf3koQ=="/>
<POI MapID="34" xpos="-7.33273" ypos="9.88492" zpos="374.648" GUID="OXKlyGMsakepj5z7QyGOvA==" copy="[&BEEBAAA=]" copy-message="Wychmire Waypoint" type="legs.gathering.general.richcopper.wp"/>
<Trail type="legs.gathering.general.richcopper.caledon" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Caledon Forest 2.trl"/>
<POI MapID="34" xpos="-228.273" ypos="1.75709" zpos="1215.23" type="legs.gathering.general.richcopper.node" GUID="Cqt5tzpRLUWvQ21iRsJJkw=="/>
<POI MapID="34" xpos="-228.007" ypos="0.00298907" zpos="1213.81" GUID="+yCglmGGbUGDE2zP3Xrl5Q==" copy="[&BPwAAAA=]" copy-message="Godslost Waypoint
Queensdale" type="legs.gathering.general.richcopper.wp"/>
<!-- Kryta -->
<Trail type="legs.gathering.general.richcopper.queensdale" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Queensdale 1.trl"/>
<Trail type="legs.gathering.general.richcopper.queensdale" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Queensdale 2.trl"/>
<Trail type="legs.gathering.general.richcopper.queensdale" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Queensdale 3.trl"/>
<Trail type="legs.gathering.general.richcopper.queensdale" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Queensdale 4.trl" texture="Data/LadyElyssa/Images/Trails/Dashed Line with Shadow.png"/>
<Trail type="legs.gathering.general.richcopper.queensdale" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Queensdale 4 Alt.trl" texture="Data/LadyElyssa/Images/Trails/Dashed Line with Shadow.png"/>
<POI MapID="15" xpos="699.613" ypos="57.9323" zpos="-595.795" type="legs.gathering.general.richcopper" GUID="/lt/CvWRnE64sezLNQAqTw==" iconFile="Data/LadyElyssa/Images/Icons/Blank.png" info="To open the door use the /threaten emote"/>
<POI MapID="15" xpos="687.625" ypos="60.5272" zpos="-642.22" type="legs.gathering.general.richcopper.node" GUID="vhwavbCD0ECYjjH3ZIdUEw=="/>
<POI MapID="15" xpos="688.964" ypos="59.1917" zpos="-642.379" GUID="PqueLh8bq0uB8d3ZTlXDgA==" copy="[&BPMAAAA=]" copy-message="Phinney Ridge Waypoint" type="legs.gathering.general.richcopper.wp"/>
<POI MapID="15" xpos="70.6969" ypos="24.6564" zpos="-107.077" type="legs.gathering.general.richcopper.node" GUID="IdswsihcH0S3zhpsoSzB1w=="/>
<POI MapID="15" xpos="69.33533" ypos="22.55245" zpos="-108.67" GUID="j7wucTah4k2IgX84btlqgQ==" copy="[&BPkAAAA=]" copy-message="Ojon's Lumbermill Waypoint" type="legs.gathering.general.richcopper.wp"/>
<POI MapID="15" xpos="343.517" ypos="-1.98898" zpos="719.955" type="legs.gathering.general.richcopper.node" GUID="ORb9OCDFBkSzS1V//QoiOQ=="/>
<POI MapID="15" xpos="342.3992" ypos="-3.961953" zpos="719.539" GUID="2RNAmtq+jkyROtTsx9LdGA==" copy="[&BJgDAAA=]" copy-message="Guardpoint Decimus Waypoint
Plains of Ashford" type="legs.gathering.general.richcopper.wp"/>
<!-- Ascalon -->
<Trail type="legs.gathering.general.richcopper.ashford" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Plains of Ashford 1.trl"/>
<Trail type="legs.gathering.general.richcopper.ashford" trailData="Data/LadyElyssa/Gathering/Rich Copper Nodes/Plains of Ashford 2.trl"/>
<POI MapID="19" xpos="-831.839" ypos="58.9545" zpos="-471.705" type="legs.gathering.general.richcopper.node" GUID="YmcyJ1JB4EWEPdBf5L06jw=="/>
<POI MapID="19" xpos="251.315" ypos="-14.6078" zpos="-336.558" type="legs.gathering.general.richcopper.node" GUID="PuseGZBgPEuvVZ3wo3I22g=="/>
<POI MapID="19" xpos="-831.121" ypos="57.1518" zpos="-472.997" GUID="7GU/PRcBREGvvUwoXAP69A==" copy="[&BIoBAAA=]" copy-message="Irondock Shipyard Waypoint" type="legs.gathering.general.richcopper.wp"/>
<POI MapID="19" xpos="454.349" ypos="-0.044089" zpos="-271.717" type="legs.gathering.general.richcopper.mount.skimmer" GUID="+niVMsfVcEek6Bk5UVTUyA=="/>
<POI MapID="19" xpos="252.222" ypos="-15.8633" zpos="-336.077" GUID="yRLDFsmgfk+/S1p1zh6J6Q==" copy="[&BNgAAAA=]" copy-message="For Rich Silver
Rosko's Campsite Waypoint
Fields of Ruin" type="legs.gathering.general.richcopper.wp"/>
<POI MapID="19" xpos="252.533" ypos="-16.7039" zpos="-335.329" type="legs.gathering.general.richcopper.end" GUID="J/m8xq0YoE6FT1yVTB2IfQ=="/>
<!-- Gathering - Rich Silver Nodes -->
<!-- Rosko's Campsite Waypoint in Fields of Ruin [&BNgAAAA=] -->
<POI MapID="21" xpos="366.932" ypos="3.42703" zpos="744.067" type="legs.gathering.general.richsilver.start" GUID="/idSneXCU0KKjqdQqoL+qA=="/>
<Trail type="legs.gathering.general.richsilver.fields" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Fields of Ruin 1.trl"/>
<POI MapID="21" xpos="544.709" ypos="6.18912" zpos="820.144" type="legs.gathering.general.richsilver.node" GUID="c7jr3wIRPkO2xarZzjWujQ=="/>
<POI MapID="21" xpos="544.586" ypos="5.29521" zpos="819.03" GUID="GKuDJEhWTEGh5oSYZCsCYw==" copy="[&BNoAAAA=] (JP) or [&BMADAAA=]" copy-message="Blasted Moors Waypoint
Diessa Plateau (JP)

OR

Valslake Waypoint
Snowden Drifts" type="legs.gathering.general.richsilver.wp"/>
<Trail type="legs.gathering.general.richsilver.diessa" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Diessa Plateau 1.trl"/>
<POI MapID="32" xpos="-103.578" ypos="78.1124" zpos="116.913" type="legs.gathering.general.richsilver.node" GUID="iyFST7J95k+vVReN7m7HIg=="/>
<POI MapID="32" xpos="-103.57" ypos="46.2085" zpos="147.289" type="legs.gathering.general.richsilver.mount.springer" GUID="IXOELhQcM0OiKsUZ0/DJGw=="/>
<POI MapID="32" xpos="-106.755" ypos="71.039" zpos="136.158" type="legs.gathering.general.richsilver.mount.bof" GUID="MKgL5syMaEO6f6S3bQZvZQ=="/>
<Trail type="legs.gathering.general.richsilver.diessa" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Diessa Plateau 2.trl"/>
<POI MapID="32" xpos="-163.096" ypos="123.565" zpos="-60.4269" type="legs.gathering.general.richsilver.mount.skyscale" GUID="Sh5yzBumzkqqKQwH8+20wg=="/>
<POI MapID="32" xpos="-104.643" ypos="77.2373" zpos="115.816" GUID="EH0DoadYdketkFd5cROR/w==" copy="[&BMADAAA=]" copy-message="Valslake Waypoint
Snowden Drifts" type="legs.gathering.general.richsilver.wp"/>
<!-- Shiverpeaks -->
<Trail type="legs.gathering.general.richsilver.snowden" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Snowden Drifts 1.trl"/>
<POI MapID="31" xpos="-62.3437" ypos="16.511" zpos="-269.762" type="legs.gathering.general.richsilver.node" GUID="8hOhaXFGH0GcmEIgE1cdnA=="/>
<POI MapID="31" xpos="-61.6062" ypos="15.4717" zpos="-270.448" GUID="xpcDQCQkjEyfudzCrNlIFw==" copy="[&BOkAAAA=]" copy-message="Durmand Priory Waypoint
Lornars Pass" type="legs.gathering.general.richsilver.wp"/>
<Trail type="legs.gathering.general.richsilver.lornars" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Lornars Pass 1.trl"/>
<POI MapID="27" xpos="-519.131" ypos="83.1022" zpos="641.816" type="legs.gathering.general.richsilver.node" GUID="BkX0K+oFcE+UlG7efqHiDQ=="/>
<POI MapID="27" xpos="-519.011" ypos="82.1173" zpos="640.703" GUID="nlACrtz4SEiZNi0exonquQ==" copy="[&BJMBAAA=]" copy-message="Icegate Waypoint
Gendarran Fields" type="legs.gathering.general.richsilver.wp"/>
<!-- Kryta -->
<Trail type="legs.gathering.general.richsilver.gendarran" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Gendarran Fields 1.trl"/>
<POI MapID="24" xpos="1167.9" ypos="78.2336" zpos="-502.6" type="legs.gathering.general.richsilver.node" GUID="HMDj3vfmTkGNo2MCfwcDpw=="/>
<POI MapID="24" xpos="1128.57" ypos="81.3058" zpos="-501.268" type="legs.gathering.general.richsilver.mount.springer" GUID="PpfalGx31kmTQNgGjFrAVw=="/>
<POI MapID="24" xpos="1166.82" ypos="77.3304" zpos="-502.618" GUID="mVUiootEOkyXcdFk6j7rQA==" copy="[&BGMAAAA=]" copy-message="Gallowfields Waypoint
Brisban Wildlands" type="legs.gathering.general.richsilver.wp"/>
<!-- Maguuma Jungle -->
<Trail type="legs.gathering.general.richsilver.brisban" trailData="Data/LadyElyssa/Gathering/Rich Silver Nodes/Brisban Wildlands 1.trl"/>
<POI MapID="54" xpos="-366.963" ypos="27.0772" zpos="694.303" type="legs.gathering.general.richsilver.node" GUID="kS97WIExuUSTyWaosNBasA=="/>
<POI MapID="54" xpos="-367.662" ypos="26.0431" zpos="695.492" GUID="+KDJNpE2+0mpjRt56L03yg==" copy="[&BLEAAAA=]" copy-message="For Rich Gold
Cloven Hoof Waypoint
Harathi Hinterlands" type="legs.gathering.general.richsilver.wp"/>
<POI MapID="54" xpos="-366.721" ypos="26.7122" zpos="694.021" type="legs.gathering.general.richsilver.end" GUID="47kxEQ4DoEqv5ojaEDLahg=="/>
<!-- Gathering - Rich Gold Nodes -->
<!-- Junction Camp Waypoint in Harathi Hinterlands [&BLAAAAA=] -->
<POI MapID="17" xpos="176.792" ypos="64.016" zpos="514.302" type="legs.gathering.general.richgold.start" GUID="5cac5kI9g0q+IwqgmwzK6A=="/>
<Trail type="legs.gathering.general.richgold.hirathi" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Hirathi Hinterlands 1.trl"/>
<POI MapID="17" xpos="948.489" ypos="184.547" zpos="591.412" GUID="8RLqfhIyW0eXneVp1tusog==" copy="[&BOYAAAA=]" copy-message="Demon's Maw Waypoint
Lornars Pass" type="legs.gathering.general.richgold.wp"/>
<POI MapID="17" xpos="949.978" ypos="185.823" zpos="591.253" type="legs.gathering.general.richgold.node" GUID="WKu/KtxsBkGE5DNm6kiLUQ=="/>
<!-- Shiverpeaks -->
<Trail type="legs.gathering.general.richgold.lornars" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Lornars Pass 1.trl"/>
<POI MapID="27" xpos="-395.607" ypos="59.9663" zpos="-1364.77" type="legs.gathering.general.richgold.node" GUID="Gi3rhnJSwUOG4QC+tRp5yw=="/>
<POI MapID="27" xpos="-396.469" ypos="58.6346" zpos="-1363.4" GUID="S5PJW11+xU2pQuBCgchWIA==" copy="[&BFsCAAA=]" copy-message="Steelbrachen Waypoint
Dredgehaunt Cliffs" type="legs.gathering.general.richgold.wp"/>
<Trail type="legs.gathering.general.richgold.dredgehaunt" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Dredgehaunt Cliffs 1.trl"/>
<Trail type="legs.gathering.general.richgold.dredgehaunt" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Dredgehaunt Cliffs 2.trl"/>
<POI MapID="26" xpos="-330.006" ypos="118.207" zpos="-346.169" type="legs.gathering.general.richgold.node" GUID="rADfWEeDEkGgPB0PqvUxqw=="/>
<POI MapID="26" xpos="-330.006" ypos="118.207" zpos="-346.169" type="legs.gathering.general.richgold.wp" GUID="LNHE2fpe0kG9FFG3bHNlkA==" copy="[&BFwCAAA=]" copy-message="Toran Hollow Waypoint"/>
<POI MapID="26" xpos="-478.881" ypos="92.8816" zpos="139.932" type="legs.gathering.general.richgold.node" GUID="bnlqc2aIFkqZ+VHUEIscXA=="/>
<POI MapID="26" xpos="-479.896" ypos="91.5054" zpos="139.958" type="legs.gathering.general.richgold.wp" GUID="fKwYqPUSeUKRIx+tfXfJ2Q==" copy="[&BAECAAA=] (JP) or [&BEwBAAA=]" copy-message="Terra Carorunda Waypoint (JP)
Blazeridge Steppes

OR

Fangfury Watch Waypoint
Fields of Ruin"/>
<!-- Ascalon -->
<Trail type="legs.gathering.general.richgold.blazeridge" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Blazeridge Steppes 1.trl"/>
<POI MapID="20" xpos="559.441" ypos="49.3378" zpos="1173.99" type="legs.gathering.general.richgold.node" GUID="K7szHC3chEefhnTuKxBBWw=="/>
<POI MapID="20" xpos="568.267" ypos="1.35462" zpos="-784.614" type="legs.gathering.general.richgold.node" GUID="b7BfHu7ybEubkM6H/L/uJA=="/>
<POI MapID="20" xpos="560.511" ypos="47.9093" zpos="1172.93" type="legs.gathering.general.richgold.wp" GUID="O/vg6sbbJEaVkrACMrhvOg==" copy="[&BEwBAAA=]" copy-message="Fangfury Watch Waypoint
Fields of Ruin"/>
<Trail type="legs.gathering.general.richgold.fields" trailData="Data/LadyElyssa/Gathering/Rich Gold Nodes/Fields of Ruin 1.trl"/>
<POI MapID="21" xpos="879.821" ypos="17.8988" zpos="271.032" type="legs.gathering.general.richgold.node" GUID="5JCu5IUyEUG9D6+/ma+OhA=="/>
<POI MapID="21" xpos="879.967" ypos="17.5603" zpos="271.692" GUID="AK+f1qIn2EWcBYPGV8w1Rw==" type="legs.gathering.general.richgold.wp" copy="[&BEsBAAA=]" copy-message="For Rich Iron

Helliot Mine Waypoint"/>
<POI MapID="21" xpos="879.967" ypos="19.5603" zpos="271.692" type="legs.gathering.general.richgold.end" GUID="TpE40FAtp0iMBA460ImM8A=="/>
<!-- Gathering - Rich Iron Nodes -->
<!-- Helliot Mine Waypoint in Fields of Ruin [&BEsBAAA=] -->
<Trail type="legs.gathering.general.richiron.fields" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Fields of Ruin 1.trl"/>
<POI MapID="21" xpos="-752.56" ypos="13.7096" zpos="299.735" type="legs.gathering.general.richiron.start" GUID="zcNOcf8dIkGNDGGKUPE1Iw=="/>
<POI MapID="21" xpos="-753.714" ypos="12.8372" zpos="294.576" GUID="7xBVIL2PEkymGUdCGNJTpA==" type="legs.gathering.general.richiron.mount.springer"/>
<POI MapID="21" xpos="-759.5" ypos="44.069" zpos="265.953" type="legs.gathering.general.richiron.iron" GUID="5drq7FS/U0KqV37R9GtxKg=="/>
<POI MapID="21" xpos="-759.62" ypos="44.0964" zpos="265.818" type="legs.gathering.general.richiron.wp" GUID="doWMSocXHUm0+keFm+zIwg==" copy="[&BP0BAAA=]" copy-message="Behem Waypoint
Blazeridge Steppes"/>
<Trail type="legs.gathering.general.richiron.blazeridge" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Blazeridge 1.trl"/>
<POI MapID="20" xpos="257.463" ypos="76.8686" zpos="-589.594" GUID="TKtAZbhI/UaYChHGWsprtg==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="20" xpos="401.44" ypos="28.1184" zpos="-1154.96" GUID="ZMNRx4FU5UKz02lyOfqV1Q==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="20" xpos="578.773" ypos="9.21971" zpos="-491.219" type="legs.gathering.general.richiron.wp" GUID="3Qo10L8GS0CWM4+EyXyFmA==" copy="[&BF4BAAA=]" copy-message="Oldgate Waypoint
Diessa Plateau"/>
<POI MapID="20" xpos="426.357" ypos="70.3614" zpos="-713.058" type="legs.gathering.general.richiron.iron" GUID="aiLZf8PS4kmdXwuikI8C6Q=="/>
<Trail type="legs.gathering.general.richiron.diessa" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Diessa 1.trl"/>
<POI MapID="32" xpos="-736.13" ypos="32.1706" zpos="-236.527" GUID="Epzu/N4cy0uW5V8QKiSvdA==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="32" xpos="-966.682" ypos="94.5452" zpos="-197.687" type="legs.gathering.general.richiron.wp" GUID="fLuVgowoWkqxWtg6yUYTig==" copy="[&BL8AAAA=]" copy-message="Snowhawk Landing Waypoint
Snowden Drifts"/>
<Trail type="legs.gathering.general.richiron.snowden" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Snowden 1.trl"/>
<POI MapID="31" xpos="727.06" ypos="56.5476" zpos="59.4572" GUID="6aqbGnW5cEG8ZJxqDD3pbw==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="31" xpos="733.303" ypos="38.5794" zpos="-96.533" type="legs.gathering.general.richiron.wp" GUID="ivOygCpXZkiK5ws/49I4Iw==" copy="[&BGUCAAA=]" copy-message="Wyrmblood Waypoint
Dredgehaunt Cliffs"/>
<Trail type="legs.gathering.general.richiron.dredge" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Dredgehaunt 1.trl"/>
<POI MapID="26" xpos="-412.882" ypos="40.2587" zpos="530.896" GUID="GIeZciYk5UK0GxI0ZOwYjA==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="26" xpos="-148.13" ypos="41.1471" zpos="550.521" type="legs.gathering.general.richiron.wp" GUID="rbgTD+xN8UqU3rPg1MvPDw==" copy="[&BFEGAAA=]" copy-message="Icedevil's Waypoint
Lornar's Pass"/>
<Trail type="legs.gathering.general.richiron.lornars" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Lornar's 1.trl"/>
<POI MapID="27" xpos="-65.5983" ypos="116.678" zpos="1399.82" GUID="Zr8MnmPpvkqOr/98Uu0PLA==" type="legs.gathering.general.richiron.mount.springer"/>
<POI MapID="27" xpos="-128.77" ypos="126.505" zpos="1401.21" type="legs.gathering.general.richiron.wp" GUID="BBjn0GAWbEqINWONxA/28w==" copy="[&BKsAAAA=]" copy-message="Demetra Waypoint
Harathi Hinterlands"/>
<POI MapID="27" xpos="432.314" ypos="118.453" zpos="685.249" type="legs.gathering.general.richiron.iron" GUID="+zhz8o/9XEuetM58oYzGIQ=="/>
<Trail type="legs.gathering.general.richiron.harathi" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Harathi 1.trl"/>
<POI MapID="17" xpos="-757.947" ypos="76.9655" zpos="-230.812" GUID="YK6W03Bx6kecYLnVGpeBjg==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="17" xpos="-870.041" ypos="131.715" zpos="-140.968" type="legs.gathering.general.richiron.wp" GUID="y50z2ZrXTUqlLHiszMztxQ==" copy="[&BBIAAAA=]" copy-message="Cereboth Waypoint
Kessex Hills"/>
<Trail type="legs.gathering.general.richiron.gendarren" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Gendarren 1.trl"/>
<POI MapID="24" xpos="977.784" ypos="73.9593" zpos="-436.681" GUID="U8U5cxCbDkCnHqT0Cx39PQ==" type="legs.gathering.general.richiron.mount.springer"/>
<POI MapID="24" xpos="885.214" ypos="65.1048" zpos="-432.477" type="legs.gathering.general.richiron.wp" GUID="JLbt08RXbE2xjYJz9m1aoQ==" copy="[&BBIAAAA=]" copy-message="Cereboth Waypoint
Kessex Hills"/>
<!-- Kessex Hills -->
<Trail type="legs.gathering.general.richiron.kessex" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Kessex 1.trl"/>
<Trail type="legs.gathering.general.richiron.kessex" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Kessex 2.trl"/>
<Trail type="legs.gathering.general.richiron.kessex" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Kessex 2 Alt.trl" texture="Data/LadyElyssa/Images/Dashed Line with Shadow.png"/>
<POI MapID="23" xpos="835.144" ypos="81.602" zpos="-278.013" GUID="GCsYUGzjikmagIVqojWH/w==" type="legs.gathering.general.richiron.number.1"/>
<POI MapID="23" xpos="835.376" ypos="81.5294" zpos="-285.248" GUID="Ek3WP0nkSU63bVAIQf8ARQ==" type="legs.gathering.general.richiron.number.2"/>
<POI MapID="23" xpos="852.929" ypos="56.2584" zpos="-350.003" GUID="ej7vtADE2EWhP5cxn4sZKQ==" type="legs.gathering.general.richiron.mount.jackal"/>
<POI MapID="23" xpos="760.909" ypos="21.2192" zpos="-290.059" type="legs.gathering.general.richiron.wp" GUID="OO6vzRkvMEyvPEZK+paflA==" copy="[&BBIAAAA=]" copy-message="Cereboth Waypoint
Kessex Hills"/>
<POI MapID="23" xpos="820.3" ypos="85.9263" zpos="-394.477" type="legs.gathering.general.richiron.wp" GUID="pStJ3RkBEUySrLX1Fp/Yiw==" copy="[&BGMAAAA=]" copy-message="If No Rich Iron,

Gallowfields Waypoint
Brisban Wildlands"/>
<POI MapID="23" xpos="796.153" ypos="35.4484" zpos="-519.017" type="legs.gathering.general.richiron.wp" GUID="4CcVENDTa06cwlnXt8waUA==" copy="[&BGMAAAA=]" copy-message="Gallowfields Waypoint
Brisban Wildlands"/>
<POI MapID="23" xpos="-1102.5" ypos="43.3404" zpos="24.0516" type="legs.gathering.general.richiron.iron" GUID="yyczxSMyfUOMnZbUW/Ke/g=="/>
<Trail type="legs.gathering.general.richiron.brisban" trailData="Data/LadyElyssa/Gathering/Rich Iron Nodes/Brisban 1.trl"/>
<POI MapID="54" xpos="-746.586" ypos="35.9339" zpos="506.548" type="legs.gathering.general.richiron.wp" GUID="n7X8BFXfTEuAx5viYLOtiQ==" copy="[&BMkBAAA=]" copy-message="Ocean's Gullet Waypoint
Sparkfly Fen"/>
<POI MapID="54" xpos="-746.586" ypos="37.9339" zpos="506.548" type="legs.gathering.general.richiron.end" GUID="rx9AxWC8z0i26FTumGzu+w=="/>
<POI MapID="24" xpos="885.073" ypos="65.0835" zpos="-432.165" type="legs.gathering.general.richiron.iron" GUID="jzAeOBw0e0e2YnW4JAKmpQ=="/>
<POI MapID="26" xpos="-288.748" ypos="62.4029" zpos="611.358" type="legs.gathering.general.richiron.iron" GUID="f0sMOaBVTke7OfzezGOsFw=="/>
<POI MapID="26" xpos="-148.082" ypos="41.1349" zpos="550.24" type="legs.gathering.general.richiron.iron" GUID="5fFyk+BLcEW0dPYEJMA3cw=="/>
<POI MapID="54" xpos="-746.559" ypos="36.0133" zpos="506.401" type="legs.gathering.general.richiron.iron" GUID="WtDBfcnRAkuA+17tsDnTlg=="/>
<POI MapID="23" xpos="761.173" ypos="21.4331" zpos="-289.798" type="legs.gathering.general.richiron.iron" GUID="MiCV9dK+p0eQP+AGGzd62w=="/>
<POI MapID="23" xpos="796.039" ypos="35.4478" zpos="-518.896" type="legs.gathering.general.richiron.iron" GUID="j7A2rxilbkizlbv6Acm2Ow=="/>
<POI MapID="17" xpos="-869.959" ypos="131.758" zpos="-140.51" type="legs.gathering.general.richiron.iron" GUID="kimULxlP80myVLG61U4W0g=="/>
<POI MapID="31" xpos="732.997" ypos="38.6847" zpos="-96.913" type="legs.gathering.general.richiron.iron" GUID="n3Zoa9BFgUWSEjtYZ7Gvfg=="/>
<POI MapID="27" xpos="-128.888" ypos="126.557" zpos="1401.48" type="legs.gathering.general.richiron.iron" GUID="niQQdTwb/kaq5eaDVtqq6g=="/>
<POI MapID="32" xpos="-966.671" ypos="94.517" zpos="-197.804" type="legs.gathering.general.richiron.iron" GUID="n/9il0+lXk64vff7Y5Vkhw=="/>
<POI MapID="20" xpos="578.542" ypos="9.15939" zpos="-491.107" type="legs.gathering.general.richiron.iron" GUID="OnlWkKIKi0Gs/wD6kwwWpg=="/>
<!-- Gathering - Rich Platinum Nodes -->
<!-- [&BMkBAAA=] Ocean's Gullet Waypoint in Sparkfly Fen -->
<Trail type="legs.gathering.general.richplat.sparkfly" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Sparkfly Fen.trl"/>
<POI MapID="53" xpos="-643.911" ypos="105.543" zpos="468.868" type="legs.gathering.general.richplat.plat" GUID="kxPs82iFFUavEpOjNrlMoQ=="/>
<POI MapID="53" xpos="-342.733" ypos="21.239" zpos="524.254" GUID="6n69BVyTkkWVTQVP0jSQ8Q==" type="legs.gathering.general.richplat.mount.jackal"/>
<POI MapID="53" xpos="-470.6" ypos="38.8451" zpos="618.744" GUID="/mAqIC6WE0GBBJaI/MK+fw==" type="legs.gathering.general.richplat.mount.springer"/>
<POI MapID="53" xpos="-541.49" ypos="51.4829" zpos="289.661" type="legs.gathering.general.richplat.wp" GUID="XOCjUmrNJUKueHe1+OhpmQ==" copy="[&BMkCAAA=]" copy-message="Criterion Waypoint
Mount Maelstrom"/>
<POI MapID="53" xpos="-541.59" ypos="51.4493" zpos="289.613" type="legs.gathering.general.richplat.plat" GUID="pajc1xGOR024dbW9NRrLzQ=="/>
<POI MapID="53" xpos="-522.656" ypos="11.051" zpos="87.9232" type="legs.gathering.general.richplat.plat" GUID="xExIstHKPU6ZD9WL9AT9Mg=="/>
<Trail type="legs.gathering.general.richplat.maelstrom" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Mount Maelstrom 1.trl"/>
<Trail type="legs.gathering.general.richplat.maelstrom" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Mount Maelstrom 2.trl"/>
<POI MapID="39" xpos="872.412" ypos="0.194717" zpos="-160.173" GUID="s7k2UQrEB02iAdNjqUTc8w==" type="legs.gathering.general.richplat.mount.skimmer"/>
<POI MapID="39" xpos="716.548" ypos="1.37639" zpos="63.865" GUID="5EFFcXXYEEanUcfkpoqcPw==" type="legs.gathering.general.richplat.mount.skimmer.dive"/>
<POI MapID="39" xpos="-954.883" ypos="66.3632" zpos="347.162" GUID="jTeZKjbLm0iI30XuSd7eEA==" type="legs.gathering.general.richplat.mount.skyscale"/>
<POI MapID="39" xpos="-1076.47" ypos="56.6828" zpos="304.591" type="legs.gathering.general.richplat.wp" GUID="YTzVRsyJl0OO1/ZIPuXhBQ==" copy="[&BNQCAAA=]" copy-message="Old Sledge Waypoint
Mount Maelstrom"/>
<POI MapID="39" xpos="744.54" ypos="-40.8801" zpos="91.9298" type="legs.gathering.general.richplat.wp" GUID="tsXHX0PH8UamgoakjoQCXQ==" copy="[&BEwCAAA=]" copy-message="Valance Tutory Waypoint
Timberline Falls"/>
<POI MapID="39" xpos="744.951" ypos="-40.7896" zpos="91.706" type="legs.gathering.general.richplat.plat" GUID="1jdASr0JfUOi1IoxoE6gpQ=="/>
<POI MapID="39" xpos="-1076.39" ypos="56.6861" zpos="304.696" type="legs.gathering.general.richplat.plat" GUID="jdmJ6KRv3k+s26MXH6vTrA=="/>
<POI MapID="73" xpos="27.6765" ypos="74.8302" zpos="-405.761" type="legs.gathering.general.richplat.plat" GUID="EYCTR8/kDkmbZ+bU8PjkmA=="/>
<Trail type="legs.gathering.general.richplat.timberline" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Timberline Falls.trl"/>
<POI MapID="29" xpos="-430.633" ypos="9.12564" zpos="166.242" GUID="8zrtqx7/kEGWNOecR1KlIQ==" type="legs.gathering.general.richplat.mount.jackal"/>
<POI MapID="29" xpos="-566.164" ypos="1.44257" zpos="358.451" GUID="wZVbBioQRkSiSpJUGtuaZA==" type="legs.gathering.general.richplat.wp" copy="[&BO8BAAA=]" copy-message="Grostogg's Kraal Waypoint
Iron Marches"/>
<POI MapID="29" xpos="-479.121" ypos="5.48778" zpos="400.93" type="legs.gathering.general.richplat.plat" GUID="u891lCnrOkqcuUnXFLPhOQ=="/>
<POI MapID="29" xpos="-565.866" ypos="1.41578" zpos="358.401" type="legs.gathering.general.richplat.plat" GUID="/vtkAwuGF0myPoDUQfUunA=="/>
<Trail type="legs.gathering.general.richplat.ironmarches" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Iron Marches 1.trl"/>
<Trail type="legs.gathering.general.richplat.ironmarches" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Iron Marches 2.trl"/>
<POI MapID="25" xpos="-155.651" ypos="25.2159" zpos="999.486" GUID="RHGyeaTCOUiXVvxcFWcz+g==" type="legs.gathering.general.richplat.mount.skyscale"/>
<POI MapID="25" xpos="435.054" ypos="9.93395" zpos="898.417" GUID="gtsYop///EiiJ4QURpdQLg==" type="legs.gathering.general.richplat.mount.jackal"/>
<POI MapID="25" xpos="563.252" ypos="0.61618" zpos="1165.16" GUID="L8Ce+JyD+06CwqMtEvTSyA==" type="legs.gathering.general.richplat.wp" copy="[&BO4BAAA=]" copy-message="Gladefall Waypoint"/>
<POI MapID="25" xpos="-248.586" ypos="21.2931" zpos="1124.79" type="legs.gathering.general.richplat.wp" GUID="A7ufemCTRkSabAf2bIiQAw==" copy="[&BBoCAAA=]" copy-message="Breaktooth's Waypoint
Fireheart Rise"/>
<POI MapID="25" xpos="-248.765" ypos="21.3002" zpos="1124.64" type="legs.gathering.general.richplat.plat" GUID="HTmn6AI5xEaNR5tp1NCA+A=="/>
<POI MapID="25" xpos="563.557" ypos="0.545296" zpos="1165.38" type="legs.gathering.general.richplat.plat" GUID="2i1N8u+6kEyExcP5xnx3Cw=="/>
<Trail type="legs.gathering.general.richplat.fireheart" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Fireheart Rise 1.trl"/>
<Trail type="legs.gathering.general.richplat.fireheart" trailData="Data/LadyElyssa/Gathering/Rich Platinum Nodes/Fireheart Rise 2.trl"/>
<POI MapID="22" xpos="-860.732" ypos="81.9694" zpos="36.9582" GUID="hIuwmuZmCE6jajmLCdhy4A==" type="legs.gathering.general.richplat.mount.raptor"/>
<POI MapID="22" xpos="833.155" ypos="26.6588" zpos="46.839" GUID="ZBnyYvBKH0O6giknDqGl3A==" type="legs.gathering.general.richplat.mount.springer"/>
<POI MapID="22" xpos="845.29" ypos="39.3394" zpos="40.6561" GUID="kTumU7PoU0irlnNXQ6lGTg==" type="legs.gathering.general.richplat.mount.skyscale"/>
<POI MapID="22" xpos="891.546" ypos="44.2376" zpos="4.05391" type="legs.gathering.general.richplat.wp" GUID="u/wUiDDBw0mX60UW9iK7JA==" copy="[&BB4CAAA=]" copy-message="Rustbowl Waypoint"/>
<POI MapID="22" xpos="-484.127" ypos="60.2132" zpos="311.457" type="legs.gathering.general.richplat.wp" GUID="QQ+96rymWE+MgaAsOx78og==" copy="[&BEAFAAA=] or [&BCUCAAA=]" copy-message="For Mithril
The Citadel of Flame Waypoint OR Simurgh Waypoint"/>
<POI MapID="22" xpos="-484.127" ypos="62.2132" zpos="311.457" type="legs.gathering.general.richplat.end" GUID="RrjTIPHhnkiG6AdSP6kHNw=="/>
<POI MapID="22" xpos="-483.937" ypos="60.2509" zpos="311.325" type="legs.gathering.general.richplat.plat" GUID="qIkXTkOPMEesHCPQrq9aqw=="/>
<POI MapID="22" xpos="891.499" ypos="44.2502" zpos="4.16054" type="legs.gathering.general.richplat.plat" GUID="lm7tIWpJ9kmNV/Ufc8u6dw=="/>
<POI MapID="22" xpos="963.373" ypos="28.5845" zpos="-130.461" type="legs.gathering.general.richplat.plat" GUID="KyRQ2viQckWTVKKr/+WkSA=="/>
<!-- Gathering - Rich Mithril Nodes -->
<Trail type="legs.gathering.general.richmithril.fireheart" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Fireheart Rise.trl"/>
<POI MapID="39" xpos="388.349" ypos="-141.654" zpos="-45.2428" type="legs.gathering.general.richmithril.mithril" GUID="JAET3ywyskq5II5QSY67AQ=="/>
<POI MapID="22" xpos="962.406" ypos="55.7064" zpos="520.276" type="legs.gathering.general.richmithril.mithril" GUID="fktOm4Mdg0C5thy7kyy5tA=="/>
<POI MapID="22" xpos="441.925" ypos="19.4886" zpos="343.876" GUID="A514mieGQkOdISpAJd3bXw==" type="legs.gathering.general.richmithril.mount.raptor"/>
<POI MapID="22" xpos="875.724" ypos="55.5407" zpos="644.603" type="legs.gathering.general.richmithril.mount.skyscale" GUID="TlX9RfXr4EeR1NXOHLne1A=="/>
<POI MapID="22" xpos="635.162" ypos="38.9799" zpos="346.01" type="legs.gathering.general.richmithril.mount.skyscale" GUID="/KcBR6iUiUyS94D7DONoCA=="/>
<POI MapID="22" xpos="962.694" ypos="55.7845" zpos="520.072" type="legs.gathering.general.richmithril.wp" GUID="uXr5nuqM7EeikPooFpDj5g==" copy="[&BIEJAAA=] or [&BHwCAAA=]" copy-message="Koda's Welcome Waypoint
Bitterfrost Frontier

OR

Slough of Despond Waypoint
Frostgorge Sound"/>
<Trail type="legs.gathering.general.richmithril.bitterfrost" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Bitterfrost Frontier.trl"/>
<POI MapID="1178" xpos="-541.67" ypos="0.122123" zpos="-348.162" GUID="DITSLfUCd0aJ5Lqtrfs3kw==" type="legs.gathering.general.richmithril.mount.jackal"/>
<POI MapID="1178" xpos="-392.377" ypos="36.1463" zpos="-91.7398" type="legs.gathering.general.richmithril.wp" GUID="W1sTTLNwGUiQQbOPvPlIig==" copy="[&BHwCAAA=]" copy-message="Slough of Despond Waypoint
Frostgorge Sound"/>
<POI MapID="1178" xpos="-392.24" ypos="36.1446" zpos="-91.9174" type="legs.gathering.general.richmithril.mithril" GUID="PyYuiB7qlkKV5tv6EVGlaQ=="/>
<Trail type="legs.gathering.general.richmithril.frostgorge" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Frostgorge.trl"/>
<POI MapID="30" xpos="-666.784" ypos="-11.9859" zpos="-721.046" type="legs.gathering.general.richmithril.mount.skimmer" GUID="WKsbwww4G0qdREYNGMoeQw=="/>
<POI MapID="30" xpos="-705.45" ypos="45.3442" zpos="-882.314" GUID="GHFsmkQ/3kiCOIZk9p6qBw==" type="legs.gathering.general.richmithril.mount.jackal"/>
<POI MapID="30" xpos="118.073" ypos="5.44148" zpos="560.849" GUID="M6H+6e6RZ0KbZF7E6vo/Cg==" type="legs.gathering.general.richmithril.mount.skimmer"/>
<POI MapID="30" xpos="150.565" ypos="1.73762" zpos="484.871" GUID="cemj66esIUWNOT6Gz0n6NA==" type="legs.gathering.general.richmithril.mount.jackal"/>
<POI MapID="30" xpos="142.021" ypos="37.8073" zpos="303.638" GUID="JICWa9pjZ0e5IA+2/IJSTw==" type="legs.gathering.general.richmithril.mount.springer"/>
<POI MapID="30" xpos="155.862" ypos="39.7539" zpos="313.622" GUID="Ijg/bhUgzUCcqSDTm7d8Tw==" type="legs.gathering.general.richmithril.mount.springer"/>
<POI MapID="30" xpos="129.436" ypos="-7.05971" zpos="112.891" GUID="0F5GPjj+KEqgCGEB6AnmYg==" type="legs.gathering.general.richmithril.mount.skimmer"/>
<POI MapID="30" xpos="-564.018" ypos="-126.909" zpos="-628.506" type="legs.gathering.general.richmithril.mithril" GUID="vO9RGJOoN06xicuuKOlfkg=="/>
<POI MapID="30" xpos="-48.9831" ypos="-54.8871" zpos="170.16" type="legs.gathering.general.richmithril.mithril" GUID="0L5nT+FQGEKiD/mWLFO0QA=="/>
<POI MapID="30" xpos="-49.0823" ypos="-55.1043" zpos="170.686" type="legs.gathering.general.richmithril.wp" GUID="RUOX7fegB0mghTlqBLeB8A==" copy="[&BHkCAAA=]" copy-message="Groznev Waypoint"/>
<POI MapID="30" xpos="-564.187" ypos="-127.104" zpos="-628.917" GUID="Y+YKl6E5J0qPlgZM0spkUQ==" type="legs.gathering.general.richmithril.wp" copy="[&BKgCAAA=]" copy-message="Waste Hollows Waypoint
Malchor's Leap"/>
<Trail type="legs.gathering.general.richmithril.malchors" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Malchor's Leap.trl"/>
<POI MapID="65" xpos="-445.44" ypos="-0.0258859" zpos="-141.612" GUID="tl6qoGNKxUaZqXSyYqygjQ==" type="legs.gathering.general.richmithril.mount.skimmer"/>
<POI MapID="65" xpos="1048.43" ypos="-0.123347" zpos="106.494" GUID="wFfpKpxpok2IQzWWUX72Ww==" type="legs.gathering.general.richmithril.mount.skimmer"/>
<POI MapID="65" xpos="-839.362" ypos="8.96976" zpos="158.472" type="legs.gathering.general.richmithril.wp" GUID="o77EyAuqtkanJmfYQJP7EA==" copy="[&BB4DAAA=]" copy-message="Meddler's Waypoint
Cursed Shore"/>
<POI MapID="65" xpos="1122.05" ypos="15.8387" zpos="450.811" type="legs.gathering.general.richmithril.wp" GUID="V+FxtSs4G0emqXpiUgdY5A==" copy="[&BLICAAA=]" copy-message="Lights Waypoint"/>
<POI MapID="65" xpos="-839.28" ypos="9.02099" zpos="158.549" type="legs.gathering.general.richmithril.mithril" GUID="CW9Jl2VTnE6bUYxcLxncdQ=="/>
<POI MapID="65" xpos="1122.23" ypos="16.0369" zpos="451.17" type="legs.gathering.general.richmithril.mithril" GUID="peLFVDY4kEGIC7OFE6r/cQ=="/>
<POI MapID="65" xpos="593.25" ypos="-47.6045" zpos="345.466" type="legs.gathering.general.richmithril.mithril" GUID="9+BgTpWJ00yc9CM7CmOe7A=="/>
<Trail type="legs.gathering.general.richmithril.cursedshore" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Cursed Shore.trl"/>
<POI MapID="62" xpos="-34.7267" ypos="28.8853" zpos="-62.5139" GUID="Ow5oIeOYrESmg/T24SRcyw==" type="legs.gathering.general.richmithril.mount.jackal"/>
<POI MapID="62" xpos="-210.244" ypos="-0.793865" zpos="-8.97504" GUID="Hkxgeo5mMUOokAA9MxZsnw==" type="legs.gathering.general.richmithril.mount.skimmer"/>
<POI MapID="62" xpos="-262.181" ypos="-69.1025" zpos="-117.568" type="legs.gathering.general.richmithril.wp" GUID="gp7Oc/P9YEmBsAIDOYRnxg==" copy="[&BOQGAAA=]" copy-message="Shipwreck Rock Waypoint
Cursed Shore"/>
<POI MapID="62" xpos="318.208" ypos="-43.2913" zpos="-1145.01" type="legs.gathering.general.richmithril.wp" GUID="wLt7j8HmLUGokqGVJVAT3w==" copy="[&BHMKAAA=]" copy-message="For more Mithril and then Orichalcum
The Scourgeway Waypoint
The Desolation"/>
<POI MapID="62" xpos="-261.813" ypos="-69.1415" zpos="-116.922" type="legs.gathering.general.richmithril.mithril" GUID="R7NTeKFlLkqnAqUfPKUP2Q=="/>
<POI MapID="62" xpos="318.321" ypos="-43.0487" zpos="-1144.79" type="legs.gathering.general.richmithril.mithril" GUID="mFNLUfycCE6fqjuc5NszaA=="/>
<POI MapID="62" xpos="413.393" ypos="18.0695" zpos="-1099.99" type="legs.gathering.general.richmithril.glider" GUID="9l1DfK8WcU6R+wq07gr7TA=="/>
<!--
copy="[&BEoKAAA=]" copy-message="End of Rich Mithril

Rich Orichalcum
Necropolis Waypoint
Domain of Vabbi
PoF"
<POI MapID="65" xpos="1121.01" ypos="13.7413" zpos="450.08" type="legs.gathering.general.richmithril.end" GUID="Sm3YWMi0p0yn42kp+3PbRA=="/>
-->
<!-- Crystal Desert - Domain of Vabbi, Necropolis -->
<!-- Domain of Vabbi -->
<Trail type="legs.gathering.general.richmithril.vabbi" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Domain of Vabbi 1.trl"/>
<Trail type="legs.gathering.general.richmithril.vabbi" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Domain of Vabbi 1 Alt.trl" texture="Data/LadyElyssa/Images/trailarrow.png" color="A366FF"/>
<Trail type="legs.gathering.general.richmithril.vabbi" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Domain of Vabbi 2.trl"/>
<POI MapID="1248" xpos="-309.872" ypos="138.317" zpos="-523.146" type="legs.gathering.general.richmithril.wp" GUID="kbo7Jg4YCUKCR9eABooxgw==" copy="[&BHQKAAA=]" copy-message="Market Ruins Waypoint"/>
<POI MapID="1248" xpos="-567.105" ypos="117.296" zpos="-429.556" GUID="6y6q9XPVZ0+2FgL+oXP+HQ==" type="legs.gathering.general.richmithril.mount.jackal"/>
<POI MapID="1248" xpos="-364.906" ypos="163.473" zpos="-540.39" GUID="As5sOkc33UGHQXxAQKHnnQ==" type="legs.gathering.general.richmithril.mount.skyscale"/>
<POI MapID="1248" xpos="1406.48" ypos="96.7709" zpos="-641.075" type="legs.gathering.general.richmithril.mithril" GUID="+eHjjO6AXUa1XEgNSw94yA=="/>
<POI MapID="1248" xpos="1405.45" ypos="95.6929" zpos="-640.31" type="legs.gathering.general.richmithril.wp" GUID="wZQRtKITlECZo9y9/7TaIQ==" copy="[&BAEKAAA=]" copy-message="USE Spearmarshal's Plea to return to the Griffon Sanctuary

to being gathering Orichalcum"/>
<POI MapID="1248" xpos="-309.793" ypos="138.482" zpos="-522.783" type="legs.gathering.general.richmithril.mithril" GUID="iZIZiw/kzk2NdeG70Optng=="/>
<!-- Dzasha Uplands -->
<Trail type="legs.gathering.general.richmithril.vabbi" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Domain of Vabbi 3.trl"/>
<POI MapID="1248" xpos="813.101" ypos="142.352" zpos="56.2111" type="legs.gathering.general.richmithril.mount.skimmer" GUID="2Dj3LIwwdUGlkLzxqbcxfw=="/>
<POI MapID="1248" xpos="860.186" ypos="-10.76399" zpos="848.753" type="legs.gathering.general.richmithril.mithril" GUID="x0NhmsBLA0KU/9cZdGkIYA=="/>
<POI MapID="1248" xpos="860.393" ypos="-8.68915" zpos="848.651" type="legs.gathering.general.richmithril.wp" GUID="G6S/XeNO1Ee81kYa28CEAg==" copy="[&BAEKAAA=]" copy-message="USE Spearmarshal's Plea
to take you to the Last Spear Marshal
at the Griffon Sanctuary"/>
<!-- The Desolation -->
<Trail type="legs.gathering.general.richmithril.desolation" trailData="Data/LadyElyssa/Gathering/Rich Mithril Nodes/Desolation 1.trl"/>
<POI MapID="1226" xpos="256.833" ypos="276.367" zpos="308.161" type="legs.gathering.general.richmithril.mount.skimmer" GUID="sjvshQtJAkaQqrX9jEQiGg=="/>
<POI MapID="1226" xpos="769.4" ypos="279.448" zpos="592.988" type="legs.gathering.general.richmithril.mithril" GUID="+KYIAFS8T0eyINbTBFzx+w=="/>
<POI MapID="1226" xpos="-907.204" ypos="152.416" zpos="143.275" type="legs.gathering.general.richmithril.mithril" GUID="yuSB8OJEL0i/XhgLsZpsFg=="/>
<!-- Elon Riverlands -->
<POI MapID="1228" xpos="1072.78" ypos="19.473" zpos="-125.409" type="legs.gathering.general.richmithril.mithril" GUID="hdinkT5kJ0GtxISRDCtglg=="/>
<!-- Desert Highlands -->
<POI MapID="1211" xpos="-971.647" ypos="538.815" zpos="38.1153" type="legs.gathering.general.richmithril.mithril" GUID="UrMS/6HfqEOXueSjLWuwpw=="/>
<POI MapID="1211" xpos="-1011.65" ypos="336.789" zpos="-195.892" type="legs.gathering.general.richmithril.mithril" GUID="+nUU/rgfckuOr6q2XbLBbg=="/>
<POI MapID="1211" xpos="-750.198" ypos="136.216" zpos="-245.066" type="legs.gathering.general.richmithril.mithril" GUID="YIb/3r0su02jLMsKbWIWEg=="/>
<!-- Crystal Oasis -->
<POI MapID="1210" xpos="-1126.41" ypos="30.6121" zpos="-616.497" type="legs.gathering.general.richmithril.mithril" GUID="XLvxMtUHf0qRvx5ZPnZ6CQ=="/>
<POI MapID="1210" xpos="-903.387" ypos="37.63" zpos="688.982" type="legs.gathering.general.richmithril.mithril" GUID="yrdXuZ0ixki2xHzjEF0Z+A=="/>
<!-- LIVING WORLD SEASON 4 -->
<!-- Domain of Istan -->
<!-- Gathering - Rich Orichalcum Nodes -->
<Trail type="legs.gathering.general.richorich.sandswept" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Sandswept Isles.trl"/>
<POI MapID="1271" xpos="-100.538" ypos="5.32453" zpos="685.841" GUID="gVY60IfUx0emzHJeLXUkDg==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1271" xpos="-70.627" ypos="24.5267" zpos="687.909" GUID="6VCXFI2INEC4eFzFlASphA==" type="legs.gathering.general.richorich.mount.raptor"/>
<POI MapID="1271" xpos="-70.1554" ypos="23.7594" zpos="686.532" GUID="B+O0Bl1ER0esTF31Bb4HpQ==" type="legs.gathering.general.richorich.mount.beetle"/>
<POI MapID="1271" xpos="278.065" ypos="24.1782" zpos="712.223" GUID="xqMHEaAXTUe9hiu9bqKpng==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1271" xpos="345.517" ypos="33.5072" zpos="723.384" GUID="GETzEjFupE2z6LdgXJXowQ==" type="legs.gathering.general.richorich.mount.springer"/>
<Trail type="legs.gathering.general.richorich.sandswept" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Sandswept Isles - Mount.trl" texture="Data/LadyElyssa/Images/trailarrow.png" color="A366FF"/>
<POI MapID="1271" xpos="17.4753" ypos="32.4735" zpos="721.444" GUID="NuzZx8AGvUabbttg6/EK2g==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1271" xpos="338.922" ypos="72.222" zpos="798.666" GUID="GC2CEnzjGUCNNZyTXi6t6w==" copy="Complete!" copy-message="Complete!" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1271" xpos="338.83" ypos="72.3545" zpos="799.198" type="legs.gathering.general.richorich.orich" GUID="jpKZ0Qw6jEKfRrJXq9J6Ww=="/>
<Trail type="legs.gathering.general.richorich.istan" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Istan.trl" texture="Data/LadyElyssa/Images/trailarrow.png" color="A366FF"/>
<POI MapID="1263" xpos="-593.221" ypos="56.205" zpos="-128.529" GUID="vRPSQeGkUUCh1qI+arfb8A==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1263" xpos="-630.09" ypos="63.4715" zpos="-449.945" GUID="3CpPXtw+VEuADZ2DyT6fUg==" copy="[&BEMLAAA=]" copy-message="Atholma Waypoint
Sandswept Isles" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1263" xpos="-630.056" ypos="63.4128" zpos="-449.881" type="legs.gathering.general.richorich.orich" GUID="2fx9huFM6E6OoVX/VKS9ig=="/>
<Trail type="legs.gathering.general.richorich.kourna" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Kourna.trl"/>
<POI MapID="1288" xpos="-555.0278" ypos="18.83801" zpos="261.2401" GUID="19RT7aQGHkWETqjSBPclHw==" type="legs.gathering.general.richorich.mount.beetle"/>
<POI MapID="1288" xpos="-301.803" ypos="52.7881" zpos="389.48" GUID="SkBrHfJSZUa+UfBTDvb1Zg==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1288" xpos="-301.803" ypos="54.6661" zpos="389.48" GUID="iBf67QHaMUyNVHasCH3Usw==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1288" xpos="-252.191" ypos="128.45" zpos="383.482" GUID="9gPKO2M4V0Cf49F2apMxvg==" copy="[&BBoLAAA=] (not guaranteed)" copy-message="Champion's Dawn Waypoint (not guaranteed)
Domain of Istan" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1288" xpos="-253.143" ypos="122.053" zpos="393.347" GUID="bWO1baK+yUWHVYBfrW53AA==" copy="[&BBoLAAA=] (not guaranteed)" copy-message="Champion's Dawn Waypoint (not guaranteed)
Domain of Istan" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1288" xpos="-249.57" ypos="129.762" zpos="378.796" type="legs.gathering.general.richorich.orich" GUID="nuhqC74eM0aPbp1CKXOEAA=="/>
<POI MapID="1288" xpos="-253.353" ypos="122.112" zpos="393.544" type="legs.gathering.general.richorich.orich" GUID="jHsLNjj0xEyIGjr7cyGtJA=="/>
<POI MapID="1288" xpos="-956.797" ypos="-401.589" zpos="878.865" type="legs.gathering.general.richorich.kourna" GUID="L41UZwjDMECDyqPccOnbFg=="/>
<!-- PoF - Crystal Desert -->
<Trail type="legs.gathering.general.richorich.crystaloasis" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Crystal Oasis 1.trl" texture="Data/LadyElyssa/Images/trailarrow-two-tone.png"/>
<Trail type="legs.gathering.general.richorich.crystaloasis" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Crystal Oasis Orich.trl" color="FFAC00"/>
<POI MapID="1210" xpos="1080.41" ypos="19.5768" zpos="-363.814" GUID="AwK7R97w/0mUsxDXoBqiTg==" type="legs.gathering.general.richorich.mount.raptor"/>
<POI MapID="1210" xpos="718.269" ypos="115.795" zpos="342.726" GUID="CaHdY64TWkCsijJ8UOaD3w==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1210" xpos="731.1" ypos="135.5" zpos="348.7" GUID="9jy/a5c0g0+PHQIsrza4uA==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1210" xpos="731.1" ypos="137.0" zpos="348.7" GUID="EOMp+ZpkN0mUreYyY5W8hw==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1210" xpos="710.223" ypos="223" zpos="404.857" GUID="iI/0B8Gslk6YOG5ewb5WgQ==" copy="[&BGsKAAA=]" copy-message="Makali Outpost Waypoint
Desert Highlands" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1210" xpos="1346.54" ypos="78.737" zpos="-130.407" GUID="Vk9KSb0l1ESi1q1zIcz24g==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1210" xpos="1346.54" ypos="80.237" zpos="-130.407" GUID="etuqT6dXike+75SgrODcvg==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1210" xpos="1407.69" ypos="105.966" zpos="-149.805" GUID="WxiFzD1i20an1Q7ybZh3lw==" copy="[&BEAKAAA=]" copy-message="Temple of Kormir Waypoint" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1210" xpos="710.209" ypos="222.953" zpos="405.39" type="legs.gathering.general.richorich.orich" GUID="ter20k1E1kKI0AqzCYO+2Q=="/>
<POI MapID="1210" xpos="1408.04" ypos="105.958" zpos="-149.648" type="legs.gathering.general.richorich.orich" GUID="F1356gT9BEiEpUHW7bG/Rw=="/>
<!-- Desert Highlands -->
<Trail type="legs.gathering.general.richorich.deserthighlands" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Desert Highlands.trl"/>
<POI MapID="1211" xpos="-177.642" ypos="244.077" zpos="338.062" GUID="HZPV8rA2DEWB174sWKstlg==" type="legs.gathering.general.richorich.mount.raptor"/>
<POI MapID="1211" xpos="-160.45" ypos="229.027" zpos="191.039" GUID="4Q4IOC9gTkeuhon/VXLDjg==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1211" xpos="-127.832" ypos="298.198" zpos="33.2493" GUID="R6JJ/dS2FUqMqYu8jAD4sQ==" type="legs.gathering.general.richorich.mount.jackal"/>
<Trail type="legs.gathering.general.richorich.deserthighlands" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Desert Highlands Short.trl"/>
<POI MapID="1211" xpos="522.116" ypos="162.531" zpos="-683.623" GUID="Zn9OFZX4t0+UWGbDx/v9SA==" type="legs.gathering.general.richorich.mount.beetle"/>
<POI MapID="1211" xpos="163.687" ypos="139.603" zpos="-580.57" GUID="0xHoAbCMQkyp6k8BxYuw9A==" type="legs.gathering.general.richorich.mount.jackal"/>
<POI MapID="1211" xpos="-54.1073" ypos="173.951" zpos="-572.71" GUID="1yoTalWZ00m1wjzf14Sz1w==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1211" xpos="-195.088" ypos="181.005" zpos="-517.812" GUID="ueZz7kLcW0q4Xjb0O6hPtw==" copy="[&BFcLAAA=]" copy-message="Allied Encampment Waypoint
Domain of Kourna" type="legs.gathering.general.richorich.wp"/>
<POI MapID="1211" xpos="-125.998" ypos="298.225" zpos="37.6122" type="legs.gathering.general.richorich.orich" GUID="C8qHUdGOlkagM9jOuS0Pfg=="/>
<POI MapID="1211" xpos="-194.475" ypos="180.959" zpos="-517.789" type="legs.gathering.general.richorich.orich" GUID="QeQCX3MYik+wH9RDkRwcYQ=="/>
<!-- Elon Riverlands -->
<POI MapID="1228" xpos="490.843" ypos="64.5741" zpos="809.369" type="legs.gathering.general.richorich.orich" GUID="y1WxR3qtEEqzeWyT0a2Azw=="/>
<!-- The Desolation -->
<Trail type="legs.gathering.general.richorich.desolation" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/The Desolation.trl"/>
<POI MapID="1226" xpos="423.189" ypos="0.146048" zpos="1422.96" GUID="uYBQJHv8Y0uJ+RqqbxeF4A==" type="legs.gathering.general.richorich.mount.skimmer"/>
<POI MapID="1226" xpos="851.018" ypos="262.214" zpos="-236.838" GUID="SZHJawE5CUy9l7l4O6eZrw==" type="legs.gathering.general.richorich.mount.jackal"/>
<POI MapID="1226" xpos="783.326" ypos="296.55" zpos="98.9959" GUID="uNBRQkgWdUmnjwhoMFoiYw==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1226" xpos="33.824" ypos="0.209127" zpos="1432.12" GUID="49YIrQdiskWzdzd+s0uUag==" type="legs.gathering.general.richorich.mount.beetle"/>
<POI MapID="1226" xpos="516.585" ypos="5.34345" zpos="1419.56" GUID="+4oMViv2+E+gLKLYa6J5uA==" type="legs.gathering.general.richorich.mount.skimmer"/>
<POI MapID="1226" xpos="1007.89" ypos="21.9123" zpos="1413.71" GUID="eyRaZj3DdkSq/XQeljRYKg==" type="legs.gathering.general.richorich.mount.jackal"/>
<POI MapID="1226" xpos="1062.93" ypos="53.3331" zpos="1435.73" type="legs.gathering.general.richorich.wp" GUID="n4c02Q8EA0eLDBdBi618JA==" copy="[&BJMKAAA=]" copy-message="Destiny's Gorge Waypoint
Crystal Oasis"/>
<POI MapID="1226" xpos="1063.24" ypos="53.3066" zpos="1435.77" type="legs.gathering.general.richorich.orich" GUID="xLzw4PDpC0eSG7XpLg/DZw=="/>
<POI MapID="1226" xpos="761.823" ypos="350.651" zpos="44.3717" type="legs.gathering.general.richorich.orich" GUID="kpwsQnBBREOeZICrSx2ZuQ=="/>
<POI MapID="1226" xpos="761.942" ypos="350.607" zpos="44.1953" type="legs.gathering.general.richorich.wp" GUID="bYIXVV1xOEudSTyCK/x83Q==" copy="[&BNwKAAA=]" copy-message="Bonestrand Waypoint"/>
<POI MapID="1226" xpos="768.5" ypos="278.145" zpos="592.174" type="legs.gathering.general.richmithril.wp" GUID="f0LHzTN8NES65IGvrPagew==" copy="[&BEoKAAA=]" copy-message="Necropolis Waypoint"/>
<!-- Vabbi -->
<Trail type="legs.gathering.general.richorich.vabbi" trailData="Data/LadyElyssa/Gathering/Rich Orich Nodes/Vabbi.trl"/>
<POI MapID="1248" xpos="1425.76" ypos="154.412" zpos="-665.35" GUID="sz4wcdZQukKEObz1Rq1qWA==" type="legs.gathering.general.richorich.mount.jackal"/>
<POI MapID="1248" xpos="1436.18" ypos="149.918" zpos="-528.464" GUID="oxPTYZx2mE+azCZ4Qex1qw==" type="legs.gathering.general.richorich.mount.springer"/>
<POI MapID="1248" xpos="1408.92" ypos="174.015" zpos="-477.624" GUID="XpX8VHnVJkOcY2WZ4DHdmg==" type="legs.gathering.general.richorich.mount.skyscale"/>
<POI MapID="1248" xpos="1446.71" ypos="157.061" zpos="-409.304" type="legs.gathering.general.richorich.orich" GUID="YTd2Y9x030yA13/L+/H3rw=="/>
<POI MapID="1248" xpos="-949.091" ypos="108.481" zpos="-752.608" type="legs.gathering.general.richorich.orich" GUID="YFbzFZPjyECFDSU4OyfEuw=="/>
<POI MapID="1248" xpos="1190.11" ypos="78.8806" zpos="938.161" type="legs.gathering.general.richorich.orich" GUID="G+XuojUthUO2FpsvPdySKg=="/>
<POI MapID="1248" xpos="1447.03" ypos="157.063" zpos="-409.139" type="legs.gathering.general.richorich.orich" GUID="ixHmvopk1E+jwKRyWofqLw=="/>
<POI MapID="1248" xpos="1370.04" ypos="150.651" zpos="-888.182" type="legs.gathering.general.richorich.orich" GUID="QBeRNNhk3UeP88nKz8G0yA=="/>
<POI MapID="1248" xpos="1441.11" ypos="161.015" zpos="-420.102" type="legs.gathering.general.richorich.wp" GUID="XcaNqZmOZUCBPpyltMTpWw==" copy="[&BMEKAAA=]" copy-message="Lair of the Forgotten Waypoint, The Desolation"/>
<!-- PLANTS -->
<!-- ARTICHOKE -->
<!-- Mount Maelstrom -->
<Trail type="legs.gathering.general.artichoke.maelstrom" trailData="Data/LadyElyssa/Gathering/Plants/Artichoke - Mount Maelstrom.trl"/>
<POI MapID="39" xpos="190.364" ypos="3.85568" zpos="16.4355" type="legs.gathering.general.artichoke.start" GUID="2X8eUZpjSEmZYwx64ooN4w=="/>
<POI MapID="39" xpos="205.586" ypos="38.6474" zpos="-167.793" type="legs.gathering.general.artichoke.wp" GUID="OcBeNb3kd0On+YKnyPvaCw==" copy="[&BFgGAAA=]" copy-message="Plinth Timberland Waypoint
Straits of Devastation"/>
<POI MapID="39" xpos="217.561" ypos="37.7471" zpos="-156.402" type="legs.gathering.general.artichoke.node" GUID="X/+eIqKaI0W1+fW1eEZHSA=="/>
<!-- Straits Of Devastation -->
<Trail type="legs.gathering.general.artichoke.straits" trailData="Data/LadyElyssa/Gathering/Plants/Artichoke - Straits of Devastation.trl"/>
<POI MapID="51" xpos="820.515" ypos="58.3668" zpos="689.089" type="legs.gathering.general.artichoke.node" GUID="CRwo5aj58U2x+q2vmYdcOg=="/>
<POI MapID="51" xpos="819.603" ypos="58.1886" zpos="692.769" type="legs.gathering.general.artichoke.wp" GUID="XJXm/YB+jEKViXMErjaQ9Q==" copy="[&BEoKAAA=]" copy-message="Necropolis Waypoint
Domain of Vabbi"/>
<!-- Path Of Fire -->
<Trail type="legs.gathering.general.artichoke.dov" trailData="Data/LadyElyssa/Gathering/Plants/Artichoke - Domain of Vabbi.trl"/>
<POI MapID="1248" xpos="-970.898" ypos="261.464" zpos="-925.667" type="legs.gathering.general.artichoke.node" GUID="ofAB6Ig38EuvOkTie+tpow=="/>
<POI MapID="1248" xpos="-968.888" ypos="262.058" zpos="-921.931" type="legs.gathering.general.artichoke.wp" GUID="2odANkpirkyVAPZjyfbGSg==" copy="[&BEMLAAA=]" copy-message="Atholma Waypoint
Sandswept Isles"/>
<!-- Sandswept Isles -->
<Trail type="legs.gathering.general.artichoke.sandswept" trailData="Data/LadyElyssa/Gathering/Plants/Artichoke - Sandswept Isles.trl"/>
<POI MapID="1271" xpos="57.078" ypos="27.227" zpos="655.115" type="legs.gathering.general.artichoke.node" GUID="VbtTPRI1Ok+PbMLcwRuOIg=="/>
<POI MapID="1271" xpos="54.5631" ypos="27.9886" zpos="664.188" type="legs.gathering.general.artichoke.node" GUID="AckIYVPUa02Fo9cdfqb0EA=="/>
<POI MapID="1271" xpos="51.9215" ypos="28.3371" zpos="672.793" type="legs.gathering.general.artichoke.node" GUID="3d+jiFqty0SigoD4UtPOmA=="/>
<POI MapID="1271" xpos="49.0846" ypos="27.5398" zpos="683.137" type="legs.gathering.general.artichoke.node" GUID="e2BBJNpoykKc2t+7zdE/xw=="/>
<POI MapID="1271" xpos="48.7848" ypos="27.3907" zpos="684.115" type="legs.gathering.general.artichoke.end" GUID="iOyugFLr+0uamlRCNXcOrQ=="/>
<!-- ASPARAGUS -->
<!-- Fireheart Rise -->
<Trail type="legs.gathering.general.asparagus.fireheart.1" trailData="Data/LadyElyssa/Gathering/Plants/Asparagus - Fireheart Rise 1.trl" color="F2BFFF"/>
<Trail type="legs.gathering.general.asparagus.fireheart.2" trailData="Data/LadyElyssa/Gathering/Plants/Asparagus - Fireheart Rise 2.trl" color="F2BFFF"/>
<POI MapID="22" xpos="-217.974" ypos="20.3926" zpos="-303.363" type="legs.gathering.general.asparagus.start" GUID="YmuQuTvTWEOrLuhULnZtug=="/>
<POI MapID="22" xpos="-203.431" ypos="21.5027" zpos="-291.395" type="legs.gathering.general.asparagus.fireheart.1" GUID="W+8hzf06cUeEj3gYBJaatw=="/>
<POI MapID="22" xpos="-80.7279" ypos="63.5818" zpos="490.635" type="legs.gathering.general.asparagus.wp" GUID="bKLH+gAmqUmAzgq2f46/9w==" copy="[&BBsCAAA=]" copy-message="Havoc Waypoint"/>
<POI MapID="22" xpos="-208.332" ypos="20.5367" zpos="-299.383" type="legs.gathering.general.asparagus.fireheart.2" GUID="MXj77tpnNECUzy674h6wsw=="/>
<POI MapID="22" xpos="-170.689" ypos="31.5737" zpos="-755.645" type="legs.gathering.general.asparagus.wp" GUID="J85Y+nA1xUS9Fsp0crridQ==" copy="[&BNMCAAA=]" copy-message="Gauntlet Waypoint
Mount Maelstrom"/>
<POI MapID="22" xpos="-170.724" ypos="31.5145" zpos="-755.363" type="legs.gathering.general.asparagus.node" GUID="cRodUlYHJ0yZjjxsP2OJFg=="/>
<POI MapID="22" xpos="-149.733" ypos="16.2992" zpos="-507.074" type="legs.gathering.general.asparagus.node" GUID="Ef/LQ7qPUUS2/CxmJeVcyQ=="/>
<POI MapID="22" xpos="-154.764" ypos="65.7803" zpos="461.943" type="legs.gathering.general.asparagus.node" GUID="NhlE1eezCEyvXHucHPuzqg=="/>
<POI MapID="22" xpos="-100.08" ypos="60.1669" zpos="453.08" type="legs.gathering.general.asparagus.node" GUID="Dap6AeqlMk6PSi6bngDQ5Q=="/>
<POI MapID="22" xpos="-291.384" ypos="35.3853" zpos="128.544" type="legs.gathering.general.asparagus.node" GUID="Wax2pOXa/UiXn0CAj5p/mA=="/>
<POI MapID="22" xpos="-144.39" ypos="62.8789" zpos="-77.5769" type="legs.gathering.general.asparagus.node" GUID="+mLC2IGVAkyut651ZW79Cg=="/>
<POI MapID="22" xpos="-203.311" ypos="19.5846" zpos="-690.064" type="legs.gathering.general.asparagus.node" GUID="XRtp5XbNDk2l+46uRUoQ2A=="/>
<POI MapID="22" xpos="-80.1192" ypos="63.5846" zpos="491.462" type="legs.gathering.general.asparagus.node" GUID="CJ9c+y/GQkWmyy0QaHRPjg=="/>
<POI MapID="22" xpos="-358.749" ypos="53.6083" zpos="266.528" type="legs.gathering.general.asparagus.node" GUID="r0M2S9dPO02ishKQn5eOVw=="/>
<POI MapID="22" xpos="-251.218" ypos="79.1533" zpos="282.397" type="legs.gathering.general.asparagus.node" GUID="6cY/IZphXkaqnZJi6GxoAg=="/>
<!-- Mount Maelstrom -->
<Trail type="legs.gathering.general.asparagus.maelstrom" trailData="Data/LadyElyssa/Gathering/Plants/Asparagus - Mount Maelstrom.trl"/>
<POI MapID="39" xpos="294.848" ypos="54.654" zpos="656.447" type="legs.gathering.general.asparagus.start" GUID="7qvVQd9PJkS8XjZfyhKM3g=="/>
<POI MapID="39" xpos="388.259" ypos="30.1348" zpos="427.566" type="legs.gathering.general.asparagus.wp" GUID="7n9q0bXcOkqRC2C73cYQUw==" copy="[&BNUCAAA=]" copy-message="Judgement Waypoint"/>
<POI MapID="39" xpos="255.6846" ypos="3.688215" zpos="-524.2751" type="legs.gathering.general.asparagus.wp" GUID="r7amOnA0ZE6ksjylr2mTUw==" copy="[&BMcCAAA=]" copy-message="Murkvale Waypoint"/>
<POI MapID="39" xpos="-1074.1" ypos="31.979" zpos="-157.344" type="legs.gathering.general.asparagus.node" GUID="prNKYqVxEkud8p6m3ICoDA=="/>
<POI MapID="39" xpos="-951.834" ypos="27.9973" zpos="-43.1134" type="legs.gathering.general.asparagus.node" GUID="SRFQEUzJVE2DVm7HbQO0ZQ=="/>
<POI MapID="39" xpos="-952.881" ypos="27.9611" zpos="-44.1351" type="legs.gathering.general.asparagus.wp" GUID="W0+LZaxNJESENWWxv3xEiQ==" copy="[&BFgGAAA=]" copy-message="Plinth Timberland Waypoint
Straits of Devastation"/>
<POI MapID="39" xpos="388.5" ypos="30.1567" zpos="427.954" type="legs.gathering.general.asparagus.node" GUID="G6QFj114g0yqDP+yw1v2Tg=="/>
<POI MapID="39" xpos="336.759" ypos="23.7147" zpos="386.689" type="legs.gathering.general.asparagus.node" GUID="5Rk0Z++I40GjRcxmmqVJUQ=="/>
<POI MapID="39" xpos="-988.559" ypos="13.4973" zpos="-16.1548" type="legs.gathering.general.asparagus.node" GUID="6Pl1Q3Wu/0usrfV9flllHw=="/>
<POI MapID="39" xpos="-1085.6" ypos="33.8166" zpos="-79.0604" type="legs.gathering.general.asparagus.node" GUID="LuYOvrFVoEaA1UVoDbPYhA=="/>
<POI MapID="39" xpos="741.994" ypos="9.09478" zpos="-486.039" type="legs.gathering.general.asparagus.node" GUID="e9HBIYGQ2EG7hOTwtR+7gw=="/>
<POI MapID="39" xpos="824.392" ypos="5.76003" zpos="-617.866" type="legs.gathering.general.asparagus.node" GUID="NxXTf2NKf0GD5QVuww5ubw=="/>
<POI MapID="39" xpos="366.478" ypos="6.44584" zpos="-590.206" type="legs.gathering.general.asparagus.node" GUID="d3UJsmVyJkS5XumBwmEZkA=="/>
<POI MapID="39" xpos="767.82" ypos="22.605" zpos="-615.023" type="legs.gathering.general.asparagus.node" GUID="uCwUd4pnJ0mn8DI6fy7R+w=="/>
<POI MapID="39" xpos="315.594" ypos="42.2747" zpos="515.315" type="legs.gathering.general.asparagus.node" GUID="L8P5z3fuQE6p9tGFW1ulcA=="/>
<POI MapID="39" xpos="215.882" ypos="52.452" zpos="539.757" type="legs.gathering.general.asparagus.node" GUID="wloL/+AIe0CTQvQOczkxxA=="/>
<POI MapID="39" xpos="-1053.5" ypos="20.1381" zpos="-107.759" type="legs.gathering.general.asparagus.node" GUID="MjL2IS9Wr0aMmj3v+T9vvA=="/>
<POI MapID="39" xpos="287.039" ypos="32.9202" zpos="470.772" type="legs.gathering.general.asparagus.node" GUID="bstavheX4UiCr3vmNc4JvQ=="/>
<POI MapID="39" xpos="578.315" ypos="7.44171" zpos="-411.327" type="legs.gathering.general.asparagus.node" GUID="4B3SAKB5WkuwuaQY1+9Rjw=="/>
<POI MapID="39" xpos="-1069.5" ypos="32.4251" zpos="-13.07" type="legs.gathering.general.asparagus.node" GUID="rQmqnGmP2kGWwOMhrbzSIA=="/>
<POI MapID="39" xpos="-990.028" ypos="17.2617" zpos="66.0937" type="legs.gathering.general.asparagus.node" GUID="YQTJrVF8Tk2H8inWSbmOdw=="/>
<POI MapID="39" xpos="255.479" ypos="3.55649" zpos="-523.735" type="legs.gathering.general.asparagus.node" GUID="pD+HzBAXKkOL2F9QUQjA3Q=="/>
<!-- Straits Of Devastation -->
<Trail type="legs.gathering.general.asparagus.straits" trailData="Data/LadyElyssa/Gathering/Plants/Asparagus - Straits of Devastation.trl"/>
<POI MapID="51" xpos="761.841" ypos="79.0742" zpos="756.662" type="legs.gathering.general.asparagus.wp" GUID="tjEVT9ZuU0qkjfzVCAczjw==" copy="[&BOwCAAA=]" copy-message="Bramble Pass Waypoint"/>
<POI MapID="51" xpos="460.492" ypos="36.8499" zpos="720.959" type="legs.gathering.general.asparagus.wp" GUID="teFEUBce/kKxtxvGiIbZrQ==" copy="[&BOUGAAA=]" copy-message="Dire Shoal Waypoint"/>
<POI MapID="51" xpos="-870.002" ypos="7.91392" zpos="220.839" type="legs.gathering.general.asparagus.wp" GUID="fnl2MQyVukiccxHsMFGnNQ==" copy="[&BNIEAAA=]" copy-message="Rally Waypoint"/>
<POI MapID="51" xpos="-430.014" ypos="23.1421" zpos="-566.346" type="legs.gathering.general.asparagus.wp" GUID="wbMGcyoDKEi4jbzgTYF1Qg==" copy="[&BPACAAA=]" copy-message="Thunderhead Waypoint"/>
<POI MapID="51" xpos="832.536" ypos="14.9253" zpos="335.085" type="legs.gathering.general.asparagus.node" GUID="NQ4ibIU+ckulDvpHrYXawA=="/>
<POI MapID="51" xpos="810.406" ypos="33.333" zpos="573.404" type="legs.gathering.general.asparagus.node" GUID="EOHD3Y+T7ECqCdDBNeGDkw=="/>
<POI MapID="51" xpos="761.751" ypos="79.0997" zpos="756.785" type="legs.gathering.general.asparagus.node" GUID="rQCOtPzoiUqqsgK37ES8WA=="/>
<POI MapID="51" xpos="460.418" ypos="36.862" zpos="721.121" type="legs.gathering.general.asparagus.node" GUID="fhTKmIlz4U62zrhSsKKD0A=="/>
<POI MapID="51" xpos="825.913" ypos="32.9034" zpos="-32.4277" type="legs.gathering.general.asparagus.node" GUID="28gUwc5EaES10nuqu2QNJw=="/>
<POI MapID="51" xpos="-640.491" ypos="7.12288" zpos="212.262" type="legs.gathering.general.asparagus.node" GUID="Ok+IBxqp7UmlnBdjHgb0jA=="/>
<POI MapID="51" xpos="-709.796" ypos="16.3001" zpos="282.498" type="legs.gathering.general.asparagus.node" GUID="Q2Y8RYbTlEmp/IeXVNhGQA=="/>
<POI MapID="51" xpos="-782.819" ypos="13.3" zpos="245.352" type="legs.gathering.general.asparagus.node" GUID="tylyVvwHD0GxA0GN+5sHYQ=="/>
<POI MapID="51" xpos="-591.093" ypos="31.9534" zpos="-355.685" type="legs.gathering.general.asparagus.node" GUID="fZaQOa4NmEmBrKPibnJlsQ=="/>
<POI MapID="51" xpos="-496.216" ypos="15.41" zpos="-332.977" type="legs.gathering.general.asparagus.node" GUID="Q3sIQQzbXkq7nsgRuxC1uA=="/>
<POI MapID="51" xpos="-429.791" ypos="23.1398" zpos="-566.388" type="legs.gathering.general.asparagus.node" GUID="dVJpbj1gTUCg4f7sPPK/+g=="/>
<POI MapID="51" xpos="684.57" ypos="5.28082" zpos="-101.11" type="legs.gathering.general.asparagus.node" GUID="K70Owh9/MEyqSqsY5Z6IMA=="/>
<POI MapID="51" xpos="741.17" ypos="26.2153" zpos="601.117" type="legs.gathering.general.asparagus.node" GUID="6svU3tHCXk6Fiao/4sjuBA=="/>
<POI MapID="51" xpos="818.497" ypos="50.7764" zpos="612.699" type="legs.gathering.general.asparagus.node" GUID="ZPZl4Mb3JkuSag6aURUeIw=="/>
<POI MapID="51" xpos="798.208" ypos="53.5261" zpos="646.782" type="legs.gathering.general.asparagus.node" GUID="hCkAQfXqhUey5oZ7gqQ0DA=="/>
<POI MapID="51" xpos="568.393" ypos="48.0715" zpos="642.748" type="legs.gathering.general.asparagus.node" GUID="69oG2RjgpEqFdPi3PBl3kA=="/>
<POI MapID="51" xpos="463.212" ypos="30.0524" zpos="675.541" type="legs.gathering.general.asparagus.node" GUID="G8a38My8Skq+ySbt+GOaZQ=="/>
<POI MapID="51" xpos="-822.388" ypos="26.7226" zpos="-558.377" type="legs.gathering.general.asparagus.node" GUID="BnYszc8ygEags2USqN9zTQ=="/>
<POI MapID="51" xpos="-840.115" ypos="1.52474" zpos="315.516" type="legs.gathering.general.asparagus.node" GUID="5j3FvkOcs0eUq8UDTosjrg=="/>
<POI MapID="51" xpos="-870.22" ypos="7.94475" zpos="220.876" type="legs.gathering.general.asparagus.node" GUID="3GQijMxEsUuABMfJvDlDiQ=="/>
<POI MapID="51" xpos="826.073" ypos="32.9019" zpos="-31.3446" type="legs.gathering.general.asparagus.end" GUID="LBOzdJ8CCUOaCWUb0Ihe5Q=="/>
<POI MapID="51" xpos="503.298" ypos="21.556" zpos="644.182" type="legs.gathering.general.asparagus.node" GUID="cldprq1IAkOVCULJ/M6w/w=="/>
<POI MapID="51" xpos="-775.197" ypos="1.6927" zpos="341.339" type="legs.gathering.general.asparagus.node" GUID="zih6uc9vWk+soopppbSPxQ=="/>
<POI MapID="51" xpos="541.974" ypos="17.8847" zpos="605.616" type="legs.gathering.general.asparagus.node" GUID="vCma7jxTM0e9pWXeBFSUQQ=="/>
<POI MapID="51" xpos="706.37" ypos="53.9062" zpos="727.284" type="legs.gathering.general.asparagus.node" GUID="GNtzPiAI/0+WX93/duUDIA=="/>
<POI MapID="51" xpos="660.148" ypos="22.5699" zpos="406.198" type="legs.gathering.general.asparagus.node" GUID="dUSca75HtUmYYtGAQ1Wqjw=="/>
<POI MapID="51" xpos="-792.699" ypos="27.8323" zpos="-441.891" type="legs.gathering.general.asparagus.node" GUID="PPfc2rGN0Ee4P6FL16R7Hw=="/>
<POI MapID="51" xpos="-910.874" ypos="7.05438" zpos="-108.898" type="legs.gathering.general.asparagus.node" GUID="HG4Jl1grQU60tknUGVFI0A=="/>
<!-- LWS3 - Grothmar Valley -->
<!--
<POI MapID="1330" xpos="30.3991" ypos="87.4452" zpos="419.794" type="legs.gathering.general.asparagus.node" GUID="Ru7JpmY+KEeHoCKZdAKU9A=="/>
<POI MapID="1330" xpos="-429.909" ypos="70.815" zpos="-451.878" type="legs.gathering.general.asparagus.node" GUID="sIcaFI2KaUuRPSiXN3dOtQ=="/>
<POI MapID="1330" xpos="271.324" ypos="65.5156" zpos="-385.109" type="legs.gathering.general.asparagus.node" GUID="tIs28TSaAUWI+Cd4YqRY/w=="/>
<POI MapID="1330" xpos="154.471" ypos="26.5143" zpos="-448.117" type="legs.gathering.general.asparagus.node" GUID="Ws1G8hbBOEu4Bt1Ez7Fa5w=="/>
-->
<!-- Black Crocus (Saffron) -->
<!-- Malchor's Leap -->
<Trail type="legs.gathering.general.crocus.malchors" trailData="Data/LadyElyssa/Gathering/Plants/Black Crocus - Malchor's Leap.trl" color="9C0C00"/>
<POI MapID="65" xpos="1018.2" ypos="30.6099" zpos="-378.453" type="legs.gathering.general.crocus.start" GUID="AZZpmaXgtUeqPnETEtI8Lw=="/>
<POI MapID="65" xpos="1033.49" ypos="30.2491" zpos="-366.635" type="legs.gathering.general.crocus.malchors.1" GUID="+crdmt6mPU2Y4mW2hZfLFw=="/>
<POI MapID="65" xpos="941.586" ypos="54.2447" zpos="-453.237" type="legs.gathering.general.crocus.wp" GUID="JPmKarEiZkyjVWOi8U9igw==" copy="[&BKYCAAA=]" copy-message="Pagga's Waypoint"/>
<POI MapID="65" xpos="1027.24" ypos="30.4039" zpos="-358.401" type="legs.gathering.general.crocus.malchors.2" GUID="f8RHphzpMEq3z790ObAo2g=="/>
<POI MapID="65" xpos="433.175" ypos="43.5266" zpos="-428.118" type="legs.gathering.general.crocus.wp" GUID="WHoLBrL0+kuznoC6Yq+WCg==" copy="[&BKcCAAA=]" copy-message="Doric's Waypoint"/>
<POI MapID="65" xpos="-323.947" ypos="50.9043" zpos="-421.456" type="legs.gathering.general.crocus.malchors.3" GUID="Mg8kEZI7xkWnNrw9xnUzLg=="/>
<POI MapID="65" xpos="-58.2007" ypos="37.627" zpos="-370.567" type="legs.gathering.general.crocus.wp" GUID="3ftTp3vf9Eui8oD16J1S+w==" copy="[&BKcCAAA=]" copy-message="Doric's Waypoint"/>
<POI MapID="65" xpos="-324.262" ypos="51.1773" zpos="-423.772" type="legs.gathering.general.crocus.malchors.4" GUID="4XwQ6NulPUe8JyJMIT2j4A=="/>
<POI MapID="65" xpos="-377.33" ypos="22.2079" zpos="-568.285" type="legs.gathering.general.crocus.wp" GUID="FfwNIvQcdkelg3G7Tc7+YA==" copy="[&BCEDAAA=]" copy-message="Caer Shadowfain Waypoint
Cursed Shore"/>
<POI MapID="65" xpos="989.677" ypos="56.2204" zpos="-223.932" type="legs.gathering.general.crocus.node" GUID="5wYj5ecg2k+V3nyx0VigwQ=="/>
<POI MapID="65" xpos="1008.59" ypos="59.4859" zpos="-205.998" type="legs.gathering.general.crocus.node" GUID="o+YRBwzOMkan8fD/AnsZjA=="/>
<POI MapID="65" xpos="379.025" ypos="19.777" zpos="-402.83" type="legs.gathering.general.crocus.node" GUID="Zi0z2tpadUaEMcIc4x8rUA=="/>
<POI MapID="65" xpos="-276.832" ypos="39.6101" zpos="-355.006" type="legs.gathering.general.crocus.node" GUID="wQ9EHonV90+aTvyebhnWxg=="/>
<POI MapID="65" xpos="-104.393" ypos="36.6549" zpos="-376.184" type="legs.gathering.general.crocus.node" GUID="p7udueXhLUWub4CTjF0EzQ=="/>
<POI MapID="65" xpos="434.6" ypos="28.6226" zpos="-152.017" type="legs.gathering.general.crocus.node" GUID="WWWk1zTPWEeMZ1djdG5w/g=="/>
<POI MapID="65" xpos="-377.427" ypos="22.0667" zpos="-568.043" type="legs.gathering.general.crocus.node" GUID="nCl4ZpI9Y0+CeNKDOMBR1A=="/>
<POI MapID="65" xpos="941.538" ypos="54.2368" zpos="-453.486" type="legs.gathering.general.crocus.node" GUID="WyXPPaOn10K32lQ4sP4KBA=="/>
<POI MapID="65" xpos="356.789" ypos="19.5894" zpos="-342.218" type="legs.gathering.general.crocus.node" GUID="2KiIR3/eQUypOdQiNUMQ3g=="/>
<POI MapID="65" xpos="433.004" ypos="43.5209" zpos="-428.14" type="legs.gathering.general.crocus.node" GUID="8X5pJQjsXUqFOD9tgLVjrA=="/>
<POI MapID="65" xpos="-147.241" ypos="41.3755" zpos="-418.058" type="legs.gathering.general.crocus.node" GUID="EPYVTiWbSkS10/SYM5Epsw=="/>
<POI MapID="65" xpos="-57.6254" ypos="37.7423" zpos="-370.844" type="legs.gathering.general.crocus.node" GUID="wB5TJLkBI0KC8Jijd4g2GQ=="/>
<POI MapID="65" xpos="1077.94" ypos="29.3193" zpos="30.6903" type="legs.gathering.general.crocus.node" GUID="51yCulNbXkKUL6z0qsk62g=="/>
<POI MapID="65" xpos="337.076" ypos="21.6172" zpos="-311.761" type="legs.gathering.general.crocus.node" GUID="QmY/YCH8d0uitIvVqAxy6w=="/>
<POI MapID="65" xpos="-25.2334" ypos="37.3112" zpos="-318.012" type="legs.gathering.general.crocus.node" GUID="Pkh0RogFqkCdfuOa2vog+g=="/>
<POI MapID="65" xpos="-475.07" ypos="13.6117" zpos="-468.889" type="legs.gathering.general.crocus.node" GUID="ct5UWuUiuECcTLQzxj5RzQ=="/>
<!-- Cursed Shore -->
<Trail type="legs.gathering.general.crocus.cs" trailData="Data/LadyElyssa/Gathering/Plants/Black Crocus - Cursed Shore.trl"/>
<POI MapID="62" xpos="88.4771" ypos="80.5727" zpos="1104.37" type="legs.gathering.general.crocus.wp" GUID="Xvcm/ZkRyk6Lhw0dnyYcsA==" copy="[&BBgDAAA=]" copy-message="R&D Waypoint"/>
<POI MapID="62" xpos="-31.1625" ypos="9.62152" zpos="509.234" type="legs.gathering.general.crocus.wp" GUID="vPYXTjf13E+L1VKt2l2Axg==" copy="[&BB4DAAA=]" copy-message="Meddler's Waypoint"/>
<POI MapID="62" xpos="75.5272" ypos="42.3659" zpos="980.514" type="legs.gathering.general.crocus.node" GUID="8meF/txJSEaYfdgjYmsFhQ=="/>
<POI MapID="62" xpos="121.364" ypos="38.4878" zpos="997.437" type="legs.gathering.general.crocus.node" GUID="QPnatfHqWUym+cOJmE9Zng=="/>
<POI MapID="62" xpos="88.4962" ypos="80.5509" zpos="1104.2" type="legs.gathering.general.crocus.node" GUID="3VM0RjupZkGFUbqAqAzL4A=="/>
<POI MapID="62" xpos="-30.4097" ypos="9.16713" zpos="508.631" type="legs.gathering.general.crocus.node" GUID="915f+OGTC0CsFQ+ObxemEA=="/>
<POI MapID="62" xpos="-265.364" ypos="31.2487" zpos="609.355" type="legs.gathering.general.crocus.node" GUID="waG9D45EX0if1oWgoSAljA=="/>
<POI MapID="62" xpos="-220.163" ypos="30.8797" zpos="650.798" type="legs.gathering.general.crocus.node" GUID="es+dHWhCl0GpHD8IF3tkVg=="/>
<POI MapID="62" xpos="-26.3463" ypos="17.9811" zpos="98.3575" type="legs.gathering.general.crocus.node" GUID="Rz3+jOqvnEyfZyD4w88icQ=="/>
<POI MapID="62" xpos="50.7563" ypos="20.6884" zpos="-15.034" type="legs.gathering.general.crocus.node" GUID="+VWobwdhFEWDCAsPPwxlNQ=="/>
<POI MapID="62" xpos="35.7269" ypos="27.747" zpos="-276.136" type="legs.gathering.general.crocus.node" GUID="UKuA25tpD02arZbUTQqn/g=="/>
<POI MapID="62" xpos="115.226" ypos="27.27" zpos="-238.216" type="legs.gathering.general.crocus.node" GUID="rLPeJjadRk6m817NRGxtWQ=="/>
<POI MapID="62" xpos="-62.9728" ypos="29.0292" zpos="-475.654" type="legs.gathering.general.crocus.node" GUID="3TreWW/OeUCDM7ZNmzLxlw=="/>
<POI MapID="62" xpos="-380.372" ypos="15.5219" zpos="-314.255" type="legs.gathering.general.crocus.node" GUID="u56+Uxp130CU3OKLfzyH2g=="/>
<POI MapID="62" xpos="-357.858" ypos="14.3294" zpos="-289.591" type="legs.gathering.general.crocus.node" GUID="0k6Az5IXl0CIhgkoFN5A7Q=="/>
<POI MapID="62" xpos="427.076" ypos="88.9483" zpos="-258.215" type="legs.gathering.general.crocus.node" GUID="1g9MepOX8ESDNXgbUr3SHQ=="/>
<POI MapID="62" xpos="-175.382" ypos="8.23228" zpos="29.6177" type="legs.gathering.general.crocus.node" GUID="5HPyAdkH1UaklnWZ9vfS4g=="/>
<POI MapID="62" xpos="-133.329" ypos="22.4514" zpos="-8.13511" type="legs.gathering.general.crocus.node" GUID="cyO9W338pEWYr6whkqCs6A=="/>
<POI MapID="62" xpos="83.8885" ypos="48.644" zpos="1034.26" type="legs.gathering.general.crocus.node" GUID="5IH8EEXyU06jE2rnH6fNaA=="/>
<POI MapID="62" xpos="68.453" ypos="66.5264" zpos="1091.03" type="legs.gathering.general.crocus.node" GUID="R+5+xwyUv0aKOVo38bCqPw=="/>
<POI MapID="62" xpos="-63.7373" ypos="29.0217" zpos="-475.068" type="legs.gathering.general.crocus.end" GUID="cUC54oK/Vk6h1lpl6ljAWQ=="/>
<POI MapID="62" xpos="132.172" ypos="28.5813" zpos="951.993" type="legs.gathering.general.crocus.node" GUID="lkBZw8jxeku3bwniGvQHpA=="/>
<POI MapID="62" xpos="18.908" ypos="47.4768" zpos="959.565" type="legs.gathering.general.crocus.node" GUID="zBpV2ugVeESBJXu7HMhc0A=="/>
<POI MapID="62" xpos="-98.1823" ypos="3.29173" zpos="647.487" type="legs.gathering.general.crocus.node" GUID="ZaDV7fGpn0OhuGwA09kvZQ=="/>
<POI MapID="62" xpos="-215.757" ypos="7.62303" zpos="141.467" type="legs.gathering.general.crocus.node" GUID="DUkuVsWMd023uaHAnck4og=="/>
<POI MapID="62" xpos="-182.461" ypos="6.80491" zpos="172.017" type="legs.gathering.general.crocus.node" GUID="jyvfd0VZIkeqsq+uT+d35w=="/>
<POI MapID="62" xpos="-190.313" ypos="8.23404" zpos="101.126" type="legs.gathering.general.crocus.node" GUID="vHeaKF63l0GOVzh1yqa6Ew=="/>
<POI MapID="62" xpos="133.919" ypos="28.7705" zpos="-184.315" type="legs.gathering.general.crocus.node" GUID="dPAHty51cEmigKLZjmyUvQ=="/>
<POI MapID="62" xpos="405.864" ypos="1.53749" zpos="-958.232" type="legs.gathering.general.crocus.node" GUID="OYQ2XCKheUW+rFaWsGnNAw=="/>
<POI MapID="62" xpos="-356.873" ypos="9.79216" zpos="-347.715" type="legs.gathering.general.crocus.node" GUID="Y8f9ZSkx3U6+Re7nQTbOjA=="/>
<POI MapID="62" xpos="264" ypos="52.6801" zpos="784.11" type="legs.gathering.general.crocus.node" GUID="05Wr0IbbsUSoE7wfvCfRGw=="/>
<!-- Siren's Landing -->
<!--
<Trail type="legs.gathering.general.crocus.cs" trailData="Data/LadyElyssa/Gathering/Plants/Black Crocus - Cursed Shore.trl" color="9C0C00"/>
<POI MapID="1203" xpos="-88.7558" ypos="28.1892" zpos="-99.9871" type="legs.gathering.general.crocus.node" GUID="orqBhrbcV0mdzNGu8h8ytg=="/>
<POI MapID="1203" xpos="-153.404" ypos="83.3032" zpos="-145.222" type="legs.gathering.general.crocus.node" GUID="YdlAD9LxnkGJg9uobLPVlw=="/>
<POI MapID="1203" xpos="-299.788" ypos="106.144" zpos="-299.737" type="legs.gathering.general.crocus.node" GUID="MNomFqVNuEi70y+XiFXfEg=="/>
<POI MapID="1203" xpos="-197.073" ypos="43.535" zpos="265.052" type="legs.gathering.general.crocus.node" GUID="6Km7513WXE2OwcEs7oTGiQ=="/>
-->
<!-- Blooming Passiflora -->
<!-- Southsun Cove -->
<Trail type="legs.gathering.general.blooming.southsun" trailData="Data/LadyElyssa/Gathering/Plants/Blooming Passiflora 1 - Southsun Cove.trl"/>
<Trail type="legs.gathering.general.blooming.southsun" trailData="Data/LadyElyssa/Gathering/Plants/Blooming Passiflora 2 - Southsun Cove.trl"/>
<Trail type="legs.gathering.general.blooming.southsun" trailData="Data/LadyElyssa/Gathering/Plants/Blooming Passiflora 3 - Southsun Cove.trl"/>
<Trail type="legs.gathering.general.blooming.southsun" trailData="Data/LadyElyssa/Gathering/Plants/Blooming Passiflora 4 - Southsun Cove.trl"/>
<POI MapID="873" xpos="616.137" ypos="30.842" zpos="-355.28" type="legs.gathering.general.blooming.start" GUID="3O+NlEnEC0u6Eq7/QfYwIQ=="/>
<POI MapID="873" xpos="616.11" ypos="31.0873" zpos="-342.616" type="legs.gathering.general.blooming.number.1" GUID="b2ZzI+0wpkKQlkjobgLYIg=="/>
<POI MapID="873" xpos="685.648" ypos="18.1713" zpos="33.7189" type="legs.gathering.general.blooming.wp" GUID="+ctRjaRCHkK32ua4S8nOnw==" copy="[&BNgGAAA=]" copy-message="Owain's Refuge Waypoint"/>
<POI MapID="873" xpos="-542.171" ypos="31.7139" zpos="-405.943" type="legs.gathering.general.blooming.number.2" GUID="y1AZJK1FokG1D0DH2HhAYA=="/>
<POI MapID="873" xpos="-608.294" ypos="31.57" zpos="-262.926" type="legs.gathering.general.blooming.wp" GUID="WTTnefdIQkuYkC+BUoSc0A==" copy="[&BNgGAAA=]" copy-message="Owain's Refuge Waypoint"/>
<POI MapID="873" xpos="-532.164" ypos="31.7862" zpos="-409.059" type="legs.gathering.general.blooming.number.3" GUID="mpm+30d8Kk6gLOEXBi86fw=="/>
<POI MapID="873" xpos="-341.333" ypos="40.7707" zpos="69.1028" type="legs.gathering.general.blooming.wp" GUID="1IVjyTp5MEi56M/AwjyaxA==" copy="[&BNAGAAA=]" copy-message="Lion Point Waypoint"/>
<POI MapID="873" xpos="-19.921" ypos="0.694355" zpos="353.697" type="legs.gathering.general.blooming.number.4" GUID="ok7TFlxcD0e8w/cUSiDF4Q=="/>
<POI MapID="873" xpos="-511.458" ypos="34.0283" zpos="272.404" type="legs.gathering.general.blooming.wp" GUID="4+/uDBU/ZkOPGm7IHB0r2g==" copy="[&BHgJAAA=]" copy-message="Castaway Circus Waypoint
Ember Bay"/>
<POI MapID="873" xpos="636.97" ypos="34.3981" zpos="-108.475" type="legs.gathering.general.blooming.passiflora" GUID="UgHgP0Hk70G39n672COIWw=="/>
<POI MapID="873" xpos="543.249" ypos="41.275" zpos="-40.145" type="legs.gathering.general.blooming.passiflora" GUID="T4j7Pv0InUGLXD2guzHGyA=="/>
<POI MapID="873" xpos="685.974" ypos="18.0322" zpos="33.8936" type="legs.gathering.general.blooming.passiflora" GUID="MnhYE/dxC0KBXMvx4V/K1w=="/>
<POI MapID="873" xpos="396.18" ypos="58.9333" zpos="-177.619" type="legs.gathering.general.blooming.passiflora" GUID="vrSlxIsVHU+izZPMzEVKvw=="/>
<POI MapID="873" xpos="543.135" ypos="46.4883" zpos="-196.47" type="legs.gathering.general.blooming.passiflora" GUID="NpbIxKi6e0WUmLJbnppuHg=="/>
<POI MapID="873" xpos="-304.572" ypos="0.862335" zpos="370.234" type="legs.gathering.general.blooming.passiflora" GUID="x+UPBvmQ/UmJjb5di7oKlQ=="/>
<POI MapID="873" xpos="-531.891" ypos="54.8416" zpos="313.949" type="legs.gathering.general.blooming.passiflora" GUID="xi75Vgp3ykSNLwaNSpBFYQ=="/>
<POI MapID="873" xpos="-511.044" ypos="33.9972" zpos="271.619" type="legs.gathering.general.blooming.passiflora" GUID="1URSZFSjDEuWyiSFiTqn6g=="/>
<POI MapID="873" xpos="-609.537" ypos="31.5872" zpos="-262.568" type="legs.gathering.general.blooming.passiflora" GUID="pTXxJAvI00OtFSpq1xFYLA=="/>
<POI MapID="873" xpos="-167.97" ypos="42.9902" zpos="-208.899" type="legs.gathering.general.blooming.passiflora" GUID="snucP/gPREW3crRk5nywpw=="/>
<POI MapID="873" xpos="-341.278" ypos="40.7347" zpos="69.3161" type="legs.gathering.general.blooming.passiflora" GUID="iTatoVizHE64YaaL3WHRLA=="/>
<!-- Ember Bay -->
<POI MapID="1175" xpos="-465.221" ypos="30.7042" zpos="-844.058" type="legs.gathering.general.blooming.passiflora" GUID="kl9np89XiUaI56tUvyQpQA=="/>
<POI MapID="1175" xpos="-757.609" ypos="4.63609" zpos="-845.68" type="legs.gathering.general.blooming.passiflora" GUID="1Vafyw2umUCEcTiMhpQg/A=="/>
<POI MapID="1175" xpos="-865.063" ypos="18.5925" zpos="-421.275" type="legs.gathering.general.blooming.passiflora" GUID="VipTqd/sX0arQE7821C3Tw=="/>
<!-- Clams -->
<!-- Brisban Wildlands -->
<Trail type="legs.gathering.general.clam.brisban" trailData="Data/LadyElyssa/Gathering/Plants/Clams - Brisban Wildlands.trl"/>
<POI MapID="54" xpos="424.974" ypos="-7.1488" zpos="-455.086" type="legs.gathering.general.clam.node" GUID="+e2JJtaMzEyRQS0hNZWFlw=="/>
<POI MapID="54" xpos="548.383" ypos="-17.1642" zpos="-495.698" type="legs.gathering.general.clam.node" GUID="IMfd9WQ5JkmByL5ybQvh9g=="/>
<POI MapID="54" xpos="556.207" ypos="-20.6384" zpos="-478.32" type="legs.gathering.general.clam.node" GUID="sKVV6OLMtUeoBQ1oD1nCFA=="/>
<POI MapID="54" xpos="561.802" ypos="-13.5913" zpos="-526.001" type="legs.gathering.general.clam.node" GUID="HjQGom1ZckaECBXu4lIc+Q=="/>
<POI MapID="54" xpos="536.156" ypos="-3.5228" zpos="-508.752" type="legs.gathering.general.clam.node" GUID="TG7S3AWjckqpR+zsEdCiGw=="/>
<POI MapID="54" xpos="614.937" ypos="-24.9999" zpos="-507.898" type="legs.gathering.general.clam.node" GUID="wcU1B4PedkekdWE2kWt52A=="/>
<POI MapID="54" xpos="607.302" ypos="-19.6995" zpos="-492.878" type="legs.gathering.general.clam.node" GUID="3vDXbZ7IBEiPYXKbM++oqQ=="/>
<!-- Crystal OAsis -->
<Trail type="legs.gathering.general.clam.co" trailData="Data/LadyElyssa/Gathering/Plants/Clams - CO.trl"/>
<POI MapID="1210" xpos="-737.299" ypos="1.07577" zpos="-103.05" type="legs.gathering.general.clam.start" GUID="hrbhPTZI9Ei2Yyquwbzhaw=="/>
<POI MapID="1210" xpos="-1445.45" ypos="-83.9124" zpos="471.566" type="legs.gathering.general.clam.node" GUID="rsKWYWDx2UGlbE1IIKSnCw=="/>
<POI MapID="1210" xpos="-1431.52" ypos="-36.602" zpos="-706.335" type="legs.gathering.general.clam.node" GUID="AKFhps8q90egk7Y5miSnZg=="/>
<!-- LWS5 - Drizzlewood -->
<Trail type="legs.gathering.general.clam.drizzlewood" trailData="Data/LadyElyssa/Gathering/Plants/Clams and Seaweed - Drizzlewood Coast.trl"/>
<POI MapID="1371" xpos="563.366" ypos="-0.72896" zpos="-945.672" type="legs.gathering.general.clam.node" GUID="eboclgNP5UKByAlPQVbbrw=="/>
<POI MapID="1371" xpos="601.685" ypos="-2.53423" zpos="-1058.14" type="legs.gathering.general.clam.node" GUID="h8iYl1eS0UepiSGddWHpmw=="/>
<POI MapID="1371" xpos="582.687" ypos="-1.49431" zpos="-1109.48" type="legs.gathering.general.clam.node" GUID="Rec/ioccxUqt6nyzJIk23Q=="/>
<POI MapID="1371" xpos="389.378" ypos="-2.56673" zpos="-595.509" type="legs.gathering.general.clam.node" GUID="6cWl1SQQzkafpPPevQsMWg=="/>
<POI MapID="1371" xpos="417.329" ypos="-2.37439" zpos="-595.445" type="legs.gathering.general.clam.node" GUID="omKsg/zFKUiJeeBY6nvgBg=="/>
<POI MapID="1371" xpos="457.078" ypos="-6.58442" zpos="-600.258" type="legs.gathering.general.clam.node" GUID="W7b5CcU4nUqFPyhoJhJgaA=="/>
<POI MapID="1371" xpos="478.195" ypos="-4.53828" zpos="-579.489" type="legs.gathering.general.clam.node" GUID="gVVA9wD4yE2bMXQcb37Mag=="/>
<POI MapID="1371" xpos="530.408" ypos="-19.5134" zpos="-609.186" type="legs.gathering.general.clam.node" GUID="rgYQZRL7XEq/+GA9nFZggw=="/>
<POI MapID="1371" xpos="541.24" ypos="-4.53073" zpos="-544.945" type="legs.gathering.general.clam.node" GUID="Y6exF5Wqr0K1zQNLqd4wCw=="/>
<POI MapID="1371" xpos="596.571" ypos="-0.888871" zpos="-1030.29" type="legs.gathering.general.clam.node" GUID="dvqC59vE0EeeeidlBaXmyA=="/>
<POI MapID="1371" xpos="465.207" ypos="-16.2554" zpos="-626.22" type="legs.gathering.general.clam.node" GUID="E3YvhRD1/EKQSme7lhBdXQ=="/>
<POI MapID="1371" xpos="532.744" ypos="-2.06667" zpos="-573.953" type="legs.gathering.general.clam.node" GUID="GgcfefgL/U6LiMWbP2Xykg=="/>
<!-- EoD - New Kaineng City -->
<POI MapID="1438" xpos="-315.811" ypos="-10.9264" zpos="-8.94415" type="legs.gathering.general.clam.node" GUID="PsYQL0gCD0O9XGpM6ILemw=="/>
<POI MapID="1438" xpos="-328.721" ypos="-10.9931" zpos="-100.998" type="legs.gathering.general.clam.node" GUID="gC+qcFaRUEWkds6BTcuOCg=="/>
<POI MapID="1438" xpos="-344.196" ypos="-11.4115" zpos="-208.598" type="legs.gathering.general.clam.node" GUID="Ub2X4SC3AUOt1I91NtLLpQ=="/>
<POI MapID="1438" xpos="-160.063" ypos="-13.7495" zpos="140.328" type="legs.gathering.general.clam.node" GUID="jwEjgQyAwk2vXm/C+v6jtQ=="/>
<POI MapID="1438" xpos="-85.879" ypos="-13.2306" zpos="193.385" type="legs.gathering.general.clam.node" GUID="E3FWDlx8hEeViTivvCyRrg=="/>
<POI MapID="1438" xpos="-170.365" ypos="-11.8621" zpos="-350.021" type="legs.gathering.general.clam.node" GUID="h2dJOJW/OUCfHXhNl9LxHg=="/>
<POI MapID="1438" xpos="-69.8818" ypos="-11.6309" zpos="-357.005" type="legs.gathering.general.clam.node" GUID="gmf1f/TCgEevTvkPe5Er7g=="/>
<POI MapID="1438" xpos="-48.8996" ypos="-12.5763" zpos="-281.701" type="legs.gathering.general.clam.node" GUID="Q/QQcoRWdku1z2hNgMEzBQ=="/>
<POI MapID="1438" xpos="44.4346" ypos="-14.1036" zpos="-270.378" type="legs.gathering.general.clam.node" GUID="WHcWVsCl/UWvFjDeYHrdfg=="/>
<POI MapID="1438" xpos="147.566" ypos="-13.4998" zpos="-343.044" type="legs.gathering.general.clam.node" GUID="NpZnbblbQk2acaDRCW6K8g=="/>
<POI MapID="1438" xpos="230.9699" ypos="-14.38741" zpos="-136.7224" type="legs.gathering.general.clam.node" GUID="HELf6QqJQEWo0SqKIWMWyQ=="/>
<POI MapID="1438" xpos="38.55106" ypos="-11.21968" zpos="-337.5816" type="legs.gathering.general.clam.node" GUID="tyZGma24gE+eWQdhNzN/Rw=="/>
<!-- Coral - Drizzlewood -->
<!-- Malchor's Leap -->
<POI MapID="65" xpos="-525.776" ypos="-28.345" zpos="71.4085" type="legs.gathering.general.coral.node" GUID="StwlAYGpCUm6TKMXB/3S/A=="/>
<POI MapID="65" xpos="-9.82174" ypos="-41.701" zpos="336.644" type="legs.gathering.general.coral.node" GUID="xOoAQSJHN0+kabCbn3nsnQ=="/>
<!-- Cursed Shore -->
<POI MapID="62" xpos="-444.064" ypos="-5.59214" zpos="572.285" type="legs.gathering.general.coral.node" GUID="UQYFSL0vOU+YqIkTJthnQg=="/>
<POI MapID="62" xpos="-396.397" ypos="-31.9289" zpos="279.568" type="legs.gathering.general.coral.node" GUID="tvs7Kal/PkOflMslbcHqfg=="/>
<POI MapID="62" xpos="-122.358" ypos="8.35913" zpos="491.345" type="legs.gathering.general.coral.node" GUID="Z8oilJjhOkq6KTfsF1HTEg=="/>
<POI MapID="62" xpos="3.23866" ypos="-27.2655" zpos="-790.382" type="legs.gathering.general.coral.node" GUID="kzgdBvaLjkaNEd2iB/Lm/A=="/>
<POI MapID="62" xpos="217.106" ypos="-42.8568" zpos="-1103.12" type="legs.gathering.general.coral.node" GUID="oA48d86eEEe93zkJwZJY1w=="/>
<!-- Ember Bay -->
<POI MapID="1175" xpos="-279.115" ypos="-41.5449" zpos="-917.071" type="legs.gathering.general.coral.node" GUID="h3aDU6+wRk6JaDLy31VprQ=="/>
<POI MapID="1175" xpos="-285.91" ypos="-30.5244" zpos="-793.317" type="legs.gathering.general.coral.node" GUID="RvKULCxRyEuuRW8YS/F3Wg=="/>
<POI MapID="1175" xpos="-149.835" ypos="-16.6558" zpos="-825.458" type="legs.gathering.general.coral.node" GUID="JdguuD5lzUqPP2n1kufkkQ=="/>
<POI MapID="1175" xpos="-93.5327" ypos="-37.7577" zpos="-822.677" type="legs.gathering.general.coral.node" GUID="+b2W3fKB/k2C1r5POm8llw=="/>
<!-- Drizzlewood -->
<Trail type="legs.gathering.general.coral.drizzlewood" trailData="Data/LadyElyssa/Gathering/Plants/Coral - Drizzlewood.trl"/>
<POI MapID="1371" xpos="-104.799" ypos="151.825" zpos="-1083.6" type="legs.gathering.general.coral.start" GUID="wNI1SB5NiUqcc4CE7YFETw=="/>
<POI MapID="1371" xpos="476.691" ypos="-21.0193" zpos="-685.57" type="legs.gathering.general.coral.node" GUID="DWxmUZCy/E2GEPcZAoQJMw=="/>
<POI MapID="1371" xpos="564.68" ypos="-37.5293" zpos="-691.023" type="legs.gathering.general.coral.node" GUID="LtvWCwWy2kqSlSOpN70Nng=="/>
<POI MapID="1371" xpos="606.449" ypos="-47.3831" zpos="-669.62" type="legs.gathering.general.coral.node" GUID="GpxSRuTzXkyP1XTyp8zr8A=="/>
<POI MapID="1371" xpos="597.427" ypos="-27.7026" zpos="-583.478" type="legs.gathering.general.coral.node" GUID="vDV49OTWL0SivfhPToa0tA=="/>
<POI MapID="1371" xpos="605.52" ypos="-11.434" zpos="-224.949" type="legs.gathering.general.coral.node" GUID="pr/b13khDkKCdGZAifc2ew=="/>
<POI MapID="1371" xpos="587.232" ypos="-19.6044" zpos="-158.024" type="legs.gathering.general.coral.node" GUID="K1ZZgYb3W0axamel4gAoVg=="/>
<POI MapID="1371" xpos="629.981" ypos="-37.5799" zpos="-95.9975" type="legs.gathering.general.coral.node" GUID="3LBw1FHnOUCSH6N/iH1Keg=="/>
<POI MapID="1371" xpos="584.938" ypos="-10.9183" zpos="-44.4897" type="legs.gathering.general.coral.node" GUID="y7AGZwc0vUqdxKheU+dXvg=="/>
<POI MapID="1371" xpos="617.957" ypos="-35.8162" zpos="35.0502" type="legs.gathering.general.coral.node" GUID="HhZZXcvnAU+qTHx1YgMR3A=="/>
<POI MapID="1371" xpos="546.319" ypos="-18.3285" zpos="85.6204" type="legs.gathering.general.coral.node" GUID="0cWiulPgF0CLyhkiU3fTrg=="/>
<POI MapID="1371" xpos="513.032" ypos="-12.1706" zpos="44.7579" type="legs.gathering.general.coral.node" GUID="xyeNrNtZzEq5fbQW2CVf7Q=="/>
<POI MapID="1371" xpos="405.058" ypos="-1.39341" zpos="21.8877" type="legs.gathering.general.coral.node" GUID="E5BFZR0vV06hcEy6tgNIGg=="/>
<!-- Siren's Landing -->
<POI MapID="1203" xpos="687.485" ypos="-26.1743" zpos="-280.758" type="legs.gathering.general.coral.node" GUID="QPqQPQ5+pkKpdmn/vR1Jew=="/>
<POI MapID="1203" xpos="712.445" ypos="-61.4199" zpos="-36.4434" type="legs.gathering.general.coral.node" GUID="DTtmUprDDkW6hqOgg4stUQ=="/>
<POI MapID="1203" xpos="297.953" ypos="-5.13488" zpos="48.2157" type="legs.gathering.general.coral.node" GUID="VvIoJrn5VkaWdoVWgR17lg=="/>
<POI MapID="1203" xpos="355.765" ypos="-9.42816" zpos="97.8553" type="legs.gathering.general.coral.node" GUID="l+/BVhUQHE+PjFlq3mEecw=="/>
<POI MapID="1203" xpos="461.358" ypos="-0.507254" zpos="75.4374" type="legs.gathering.general.coral.node" GUID="SsaacaT1mE20ky/DLJJOlA=="/>
<POI MapID="1203" xpos="541.345" ypos="-58.8084" zpos="291.524" type="legs.gathering.general.coral.node" GUID="0RIEY3ECtEeA/JkNVY/gYg=="/>
<!-- Desert Herbs - Jahai -->
<POI MapID="1301" xpos="-829.016" ypos="69.8115" zpos="185.904" type="legs.gathering.general.desert.herbs" GUID="KVCvkqZa7k6DzopXY/Ncqg=="/>
<POI MapID="1301" xpos="772.1782" ypos="1.343939" zpos="-240.3111" type="legs.gathering.general.desert.herbs" GUID="U776C9WNYkag42ArEMi8YQ=="/>
<POI MapID="1301" xpos="-874.178" ypos="72.1374" zpos="152.485" type="legs.gathering.general.desert.herbs" GUID="nfoHrrE9Hka02UvbiAe26w=="/>
<POI MapID="1301" xpos="-658.274" ypos="80.5209" zpos="416.827" type="legs.gathering.general.desert.herbs" GUID="YogxZUx/7UewGOXuX8r+JA=="/>
<POI MapID="1301" xpos="662.374" ypos="97.8694" zpos="-821.352" type="legs.gathering.general.desert.herbs" GUID="CNXc1Pseska9EIU4L5EtWA=="/>
<!-- Desert Herbs - Kourna -->
<Trail type="legs.gathering.general.desert.kourna" trailData="Data/LadyElyssa/Gathering/Plants/Desert Herbs - Kourna.trl"/>
<POI MapID="1288" xpos="-560.245" ypos="19.4505" zpos="252.882" type="legs.gathering.general.desert.start" GUID="VaYZWQHUw06OFmzKLyrj0g=="/>
<POI MapID="1288" xpos="-846.551" ypos="1.77166" zpos="1009.5" type="legs.gathering.general.desert.herbs" GUID="I5/1vb2wxUCuUtLhtZH4pw=="/>
<POI MapID="1288" xpos="-782.512" ypos="38.279" zpos="688.349" type="legs.gathering.general.desert.herbs" GUID="50ikIF5yBkuF22CFhMpaIw=="/>
<POI MapID="1288" xpos="-779.269" ypos="38.5199" zpos="699.495" type="legs.gathering.general.desert.herbs" GUID="kDTcXzGS5UCd1XRwZj+gVA=="/>
<POI MapID="1288" xpos="-756.321" ypos="38.5872" zpos="794.09" type="legs.gathering.general.desert.herbs" GUID="6M4uANosMkOZiJ+MpDHQlQ=="/>
<POI MapID="1288" xpos="-751.238" ypos="38.3669" zpos="813.75" type="legs.gathering.general.desert.herbs" GUID="LB3kGJGv+0CHEcouaWeYHg=="/>
<POI MapID="1288" xpos="-731.825" ypos="38.4217" zpos="839.078" type="legs.gathering.general.desert.herbs" GUID="OGT2ZBJqvkyysc7n30OVhw=="/>
<POI MapID="1288" xpos="-726.235" ypos="45.0548" zpos="863.138" type="legs.gathering.general.desert.herbs" GUID="N83zmHdTQEO4/DPfJsL89A=="/>
<POI MapID="1288" xpos="-703.465" ypos="44.4379" zpos="854.792" type="legs.gathering.general.desert.herbs" GUID="lRBv0Ard20mABuBIDS98aA=="/>
<POI MapID="1288" xpos="-694.499" ypos="44.1127" zpos="855.03" type="legs.gathering.general.desert.herbs" GUID="3EgKNPi0BUmmz4rBJcrqAw=="/>
<POI MapID="1288" xpos="-656.839" ypos="48.222" zpos="861.382" type="legs.gathering.general.desert.herbs" GUID="wMh3CygXw0iMJzszFYEA8g=="/>
<POI MapID="1288" xpos="-635.446" ypos="43.9538" zpos="854.627" type="legs.gathering.general.desert.herbs" GUID="Ql9SOWASkES4HI/4uhrCEA=="/>
<POI MapID="1288" xpos="-650.027" ypos="43.5263" zpos="836.046" type="legs.gathering.general.desert.herbs" GUID="ZdXcc/EfBkCj7ITAWP5fhQ=="/>
<POI MapID="1288" xpos="-660.332" ypos="43.7362" zpos="823.769" type="legs.gathering.general.desert.herbs" GUID="Cj4opImYxE26JR5txKyIDg=="/>
<POI MapID="1288" xpos="-644.758" ypos="43.8374" zpos="824.26" type="legs.gathering.general.desert.herbs" GUID="3IwDYttJmk66V5cfIQEzeg=="/>
<POI MapID="1288" xpos="-611.547" ypos="44.224" zpos="820.06" type="legs.gathering.general.desert.herbs" GUID="fOFwGrwY6U2ZZw0dqAjy6g=="/>
<POI MapID="1288" xpos="-614.212" ypos="43.7023" zpos="798.315" type="legs.gathering.general.desert.herbs" GUID="psAfp6awqUmOaVyjyyvfeA=="/>
<POI MapID="1288" xpos="-642.539" ypos="43.9719" zpos="803.919" type="legs.gathering.general.desert.herbs" GUID="P8gHUhEi4UyiJJzJRODWyA=="/>
<POI MapID="1288" xpos="-649.95" ypos="43.9973" zpos="792.536" type="legs.gathering.general.desert.herbs" GUID="9PzH+IhFWEy7SP+n9ZJdAA=="/>
<POI MapID="1288" xpos="-708.865" ypos="38.5193" zpos="843.183" type="legs.gathering.general.desert.herbs" GUID="36qH/dkcMESzneRSdBbcwA=="/>
<POI MapID="1288" xpos="-686.982" ypos="38.1826" zpos="826.075" type="legs.gathering.general.desert.herbs" GUID="lRJi+BXfyUanA0LJtx41CQ=="/>
<POI MapID="1288" xpos="-694.254" ypos="38.07" zpos="823.897" type="legs.gathering.general.desert.herbs" GUID="iFAQMsL8wUyQQ4AT2EigPw=="/>
<POI MapID="1288" xpos="-675.1" ypos="38.5711" zpos="807.746" type="legs.gathering.general.desert.herbs" GUID="18WgaawwvkGb9OeJz5ZCQg=="/>
<POI MapID="1288" xpos="-676.703" ypos="38.1647" zpos="798.929" type="legs.gathering.general.desert.herbs" GUID="ehSQxoPCi0uoY5FG0JQWtQ=="/>
<POI MapID="1288" xpos="-668.716" ypos="38.2166" zpos="796.026" type="legs.gathering.general.desert.herbs" GUID="33Qn2QT2HkGX53jUpc671A=="/>
<POI MapID="1288" xpos="-704.546" ypos="29.3516" zpos="792.525" type="legs.gathering.general.desert.herbs" GUID="dJaGS6sqakqa0mFr/hTlFQ=="/>
<POI MapID="1288" xpos="-691.453" ypos="29.5478" zpos="778.274" type="legs.gathering.general.desert.herbs" GUID="imDAYURNokWfHXEaYlx2Ww=="/>
<POI MapID="1288" xpos="-679.493" ypos="29.606" zpos="755.815" type="legs.gathering.general.desert.herbs" GUID="jm7qsGbTSE2gg3jW2LpP7Q=="/>
<POI MapID="1288" xpos="-663.507" ypos="29.7619" zpos="749.747" type="legs.gathering.general.desert.herbs" GUID="zCCTFL0Kk0GL+HQ4qfO93w=="/>
<POI MapID="1288" xpos="-659.57" ypos="29.6242" zpos="722.842" type="legs.gathering.general.desert.herbs" GUID="0u4JYIoEJkijBFux6xzX1g=="/>
<POI MapID="1288" xpos="-676.632" ypos="29.5645" zpos="725.606" type="legs.gathering.general.desert.herbs" GUID="NC7JoQebU0W3v8lSEBewEg=="/>
<POI MapID="1288" xpos="-719.318" ypos="29.3405" zpos="683.733" type="legs.gathering.general.desert.herbs" GUID="mjFo52n9pUyTpS0J1XaYxg=="/>
<POI MapID="1288" xpos="-729.041" ypos="29.5929" zpos="678.401" type="legs.gathering.general.desert.herbs" GUID="kTGPtKkmj0yzqRaz/JpvVQ=="/>
<POI MapID="1288" xpos="-725.741" ypos="29.3682" zpos="688.909" type="legs.gathering.general.desert.herbs" GUID="bouBuYI5Ski5Vrdxmx47WQ=="/>
<POI MapID="1288" xpos="-721.255" ypos="29.2662" zpos="742.806" type="legs.gathering.general.desert.herbs" GUID="qzWhADCR0EuC7Nofyrvcnw=="/>
<POI MapID="1288" xpos="-726.055" ypos="29.2869" zpos="752.69" type="legs.gathering.general.desert.herbs" GUID="y2T1DyGbxkWrvqnjrM/s8w=="/>
<POI MapID="1288" xpos="-723.112" ypos="29.3613" zpos="778.185" type="legs.gathering.general.desert.herbs" GUID="gdB+JpR7M0WGZwWyxNidKw=="/>
<POI MapID="1288" xpos="-771.378" ypos="39.2153" zpos="738.439" type="legs.gathering.general.desert.herbs" GUID="l3BNh0iHIESr7JqG6c9gAw=="/>
<POI MapID="1288" xpos="-618.832" ypos="44.5506" zpos="806.373" type="legs.gathering.general.desert.herbs" GUID="vAEI0d4VoUGmucpY32NDzQ=="/>
<POI MapID="1288" xpos="-631.364" ypos="43.3535" zpos="836.959" type="legs.gathering.general.desert.herbs" GUID="5hDtKwij80CPGmnAImTttw=="/>
<POI MapID="1288" xpos="-869.8" ypos="13.8461" zpos="1098.23" type="legs.gathering.general.desert.herbs" GUID="4mt/VS8ox0ys9xGtLTEHug=="/>
<POI MapID="1288" xpos="-870.322" ypos="14.3275" zpos="1099.43" type="legs.gathering.general.desert.end" GUID="yJveUwJm8EyxfGSwAsxMLg=="/>
<POI MapID="1288" xpos="-683.244" ypos="29.5188" zpos="772.518" type="legs.gathering.general.desert.herbs" GUID="gNz/TfuXfkOmn5M41aVkBA=="/>
<POI MapID="1288" xpos="-719.518" ypos="29.2629" zpos="759.775" type="legs.gathering.general.desert.herbs" GUID="7RYpi2PrFUGvPPIJQzCd8A=="/>
<POI MapID="1288" xpos="-727.909" ypos="29.7464" zpos="703.826" type="legs.gathering.general.desert.herbs" GUID="3GJiCb/HQEqebvE3mhSTdQ=="/>
<POI MapID="1288" xpos="-741.728" ypos="38.011" zpos="823.903" type="legs.gathering.general.desert.herbs" GUID="c68hljYK+E6QAAdUbPlkQA=="/>
<POI MapID="1288" xpos="-740.081" ypos="38.3963" zpos="834.087" type="legs.gathering.general.desert.herbs" GUID="rq2cuEDTakiagZjc8bWqIw=="/>
<POI MapID="1288" xpos="-669.367" ypos="44.1564" zpos="839.581" type="legs.gathering.general.desert.herbs" GUID="V+LTqJKHUEamqVEUKZ0g+A=="/>
<POI MapID="1288" xpos="-897.676" ypos="22.2539" zpos="1153.78" type="legs.gathering.general.desert.herbs" GUID="W3WwDaOwlEiu1l3x8mJK2Q=="/>
<POI MapID="1288" xpos="-966.134" ypos="2.85906" zpos="1121.91" type="legs.gathering.general.desert.herbs" GUID="6omIcPiAw0OruKpVhSvJDg=="/>
<!-- Sandswept Isles -->
<Trail type="legs.gathering.general.desert.sandswept" trailData="Data/LadyElyssa/Gathering/Plants/Desert Herbs - Sandswept.trl"/>
<POI MapID="1271" xpos="41.0803" ypos="28.4719" zpos="633.554" type="legs.gathering.general.desert.wp" GUID="CxrPFJsxRUGEMn4r20n9KA==" copy="[&BFcLAAA=]" copy-message="Allied Encampment Waypoint
Domain of Kourna"/>
<POI MapID="1271" xpos="26.0251" ypos="28.6702" zpos="640.699" type="legs.gathering.general.desert.herbs" GUID="FOoZbcP1UESiljibbOrX7A=="/>
<POI MapID="1271" xpos="31.6277" ypos="28.6297" zpos="638.109" type="legs.gathering.general.desert.herbs" GUID="wuGR8xEYYUen4PBUBylmyg=="/>
<POI MapID="1271" xpos="35.9831" ypos="28.5053" zpos="636.133" type="legs.gathering.general.desert.herbs" GUID="Zn7Q0XLDHkOFJvu8q0WlYA=="/>
<POI MapID="1271" xpos="41.0922" ypos="28.4734" zpos="633.48" type="legs.gathering.general.desert.herbs" GUID="h8H+7kLfJkax7sQJ3kWiig=="/>
<!-- Crystal Oasis -->
<Trail type="legs.gathering.general.desert.co" trailData="Data/LadyElyssa/Gathering/Plants/Desert Herbs - CO.trl"/>
<POI MapID="1210" xpos="187.233" ypos="2.00506" zpos="299.853" type="legs.gathering.general.desert.wp" GUID="MmvOpBTPt0aztomMppzRNQ==" copy="[&BEMLAAA=]" copy-message="Atholma Waypoint
Sandswept Isles"/>
<POI MapID="1210" xpos="421.888" ypos="9.40651" zpos="359.369" type="legs.gathering.general.desert.herbs" GUID="Y1MwepJoD0OqacIszXQxNg=="/>
<POI MapID="1210" xpos="377.225" ypos="5.2937" zpos="332.78" type="legs.gathering.general.desert.herbs" GUID="h0cfKo2yjkO+bUsGUl0mUw=="/>
<POI MapID="1210" xpos="319.611" ypos="8.13306" zpos="316.34" type="legs.gathering.general.desert.herbs" GUID="iLoG6+f4/0qendjr+J4jsQ=="/>
<POI MapID="1210" xpos="187.299" ypos="2.05775" zpos="299.81" type="legs.gathering.general.desert.herbs" GUID="jjUaLO9AQ0214E708XuKPw=="/>
<POI MapID="1210" xpos="823.469" ypos="52.4985" zpos="271.334" type="legs.gathering.general.desert.herbs" GUID="GrKyZOiFMEqLpUZiS7PgUQ=="/>
<POI MapID="1210" xpos="733.221" ypos="44.0018" zpos="233.726" type="legs.gathering.general.desert.herbs" GUID="iUu1DEqV5EGiCg5L18Y5Qw=="/>
<POI MapID="1210" xpos="503.194" ypos="14.0966" zpos="298.072" type="legs.gathering.general.desert.herbs" GUID="ui4TPfTXDEGOZjraym3h1g=="/>
<POI MapID="1210" xpos="457.616" ypos="8.92005" zpos="335.182" type="legs.gathering.general.desert.herbs" GUID="6B0RLZcXXUi9SwgXfFwjBA=="/>
<!-- PLANTS - Flax - Heart of Thorns -->
<!-- Verdant Brink -->
<Trail type="legs.gathering.general.flax.vb" trailData="Data/LadyElyssa/Gathering/Plants/Flax - VB.trl"/>
<POI MapID="1052" xpos="654.8041" ypos="374.6819" zpos="359.6667" type="legs.gathering.general.flax.start" GUID="tXhT1LuOJEWDjMGlVOq0ZQ=="/>
<POI MapID="1052" xpos="673.566" ypos="368.151" zpos="372.664" type="legs.gathering.general.flax.vb.glider" GUID="5vAB5P9vuEKizl/XzmmnIQ==" />
<POI MapID="1052" xpos="728.249" ypos="15.0388" zpos="415.559" type="legs.gathering.general.flax.flax" GUID="bV3mgP+glkW2r/Qfe2d8Yw=="/>
<POI MapID="1052" xpos="716.367" ypos="13.8282" zpos="418.851" type="legs.gathering.general.flax.flax" GUID="BjRlXIW89keRzIp1myBXSg=="/>
<POI MapID="1052" xpos="720.21" ypos="13.9596" zpos="408.228" type="legs.gathering.general.flax.flax" GUID="qh8WN+YYIkamuBNyTSdfUA=="/>
<POI MapID="1052" xpos="723.188" ypos="14.4559" zpos="411.414" GUID="5u8Hyp0WvEGDM+fB+ah7uw==" copy="[&BMwHAAA=] or [&BA4IAAA=]" copy-message="Tangled Depths
Mounts - Ogre Camp Waypoint
Glider - Order of Whispers Camp Waypoint" type="legs.gathering.general.flax.wp"/>
<!-- Tangled Depths -->
<Trail type="legs.gathering.general.flax.td.mount" trailData="Data/LadyElyssa/Gathering/Plants/Flax - TD Mount.trl"/>
<Trail type="legs.gathering.general.flax.td.glider" trailData="Data/LadyElyssa/Gathering/Plants/Flax - TD Glider.trl" defaulttoggle="0"/>
<POI MapID="1045" xpos="-196.606" ypos="224.374" zpos="-187.471" type="legs.gathering.general.flax.start" GUID="Jo606kq7yE2dYyt26muAmg=="/>
<POI MapID="1045" xpos="-185.975" ypos="227.584" zpos="-135.616" GUID="ueZB8QapAkyabsHpMCiacQ==" type="legs.gathering.general.flax.mount.springer"/>
<POI MapID="1045" xpos="-198.801" ypos="267.432" zpos="-113.995" GUID="sOpzVJ8o+UibKGcys6Te+A==" type="legs.gathering.general.flax.mount.skyscale"/>
<POI MapID="1045" xpos="-295.875" ypos="329.352" zpos="-98.2757" type="legs.gathering.general.flax.flax" GUID="fKuiRFkoVkGzUmsbltfUwA=="/>
<POI MapID="1045" xpos="-289.886" ypos="329.527" zpos="-80.5739" type="legs.gathering.general.flax.flax" GUID="KOmFiRY3oUOMm5HknSvkzQ=="/>
<POI MapID="1045" xpos="-292.493" ypos="329.625" zpos="-64.806" type="legs.gathering.general.flax.flax" GUID="81YVVL3trkOXgzaqmjLzlQ=="/>
<POI MapID="1045" xpos="-307.202" ypos="329.96" zpos="-48.4141" type="legs.gathering.general.flax.flax" GUID="KpEFfDoNlUqjojryEwEtWA=="/>
<POI MapID="1045" xpos="-306.289" ypos="329.144" zpos="-81.4974" type="legs.gathering.general.flax.flax" GUID="pmc4tG9SjEO2fWyCtuNH2w=="/>
<POI MapID="1045" xpos="-325.066" ypos="329.819" zpos="-76.7033" type="legs.gathering.general.flax.flax" GUID="yC6bA0/K6U+xDoB4E+IBAA=="/>
<POI MapID="1045" xpos="-323.733" ypos="328.953" zpos="-100.211" type="legs.gathering.general.flax.flax" GUID="i57xIyZSAkWSeIYmBTvr/A=="/>
<POI MapID="1045" xpos="-346.843" ypos="331.428" zpos="-66.1504" type="legs.gathering.general.flax.flax" GUID="J5fzwhkgF0O2ffZNCWpyrg=="/>
<POI MapID="1045" xpos="-339.648" ypos="329.661" zpos="-97.9204" type="legs.gathering.general.flax.flax" GUID="vRwLyHBACEaq0SLlaaNYYw=="/>
<POI MapID="1045" xpos="-351.758" ypos="330.456" zpos="-90.4122" type="legs.gathering.general.flax.flax" GUID="caSkdrAlU0iwwXKfFPK5zw=="/>
<POI MapID="1045" xpos="-307.095" ypos="329.958" zpos="-48.5099" type="legs.gathering.general.flax.wp" GUID="52XX73gPSkSkxMOdxxW7rg==" copy="[&BM0JAAA=]" copy-message="Heathen's Hold Waypoint
Draconis Mons"/>
<!-- Flax - LWS3 -->
<Trail type="legs.gathering.general.flax.draconis" trailData="Data/LadyElyssa/Gathering/Plants/Flax - Draconis Mons.trl"/>
<POI MapID="1195" xpos="407.695" ypos="410.774" zpos="-313.095" type="legs.gathering.general.flax.start" GUID="PvsBrEYytUyn7iPurHPOPQ=="/>
<POI MapID="1195" xpos="525.783" ypos="102.973" zpos="-466.338" type="legs.gathering.general.flax.wp" GUID="DEISg1YDkUe/GUCHSrlG7w==" copy="[&BJMLAAA=]" copy-message="Venta Pass Waypoint
Jahai Bluffs"/>
<POI MapID="1195" xpos="527.031" ypos="102.285" zpos="-473.523" type="legs.gathering.general.flax.flax" GUID="UJNJRuxMxU6am15HdRgXiQ=="/>
<POI MapID="1195" xpos="532.237" ypos="102.268" zpos="-479.729" type="legs.gathering.general.flax.flax" GUID="WD0xf+aLOEec80Q7Vr+55w=="/>
<POI MapID="1195" xpos="539.86" ypos="104.581" zpos="-482.753" type="legs.gathering.general.flax.flax" GUID="pKG4oPTDGUebqIN5duDEmg=="/>
<POI MapID="1195" xpos="547.871" ypos="107.288" zpos="-481.275" type="legs.gathering.general.flax.flax" GUID="x994ziyyV0GQTUJGHxMB9A=="/>
<POI MapID="1195" xpos="552.937" ypos="108.183" zpos="-473.14" type="legs.gathering.general.flax.flax" GUID="G9TDuD9p4EiZ73yUhe2X0Q=="/>
<POI MapID="1195" xpos="554.148" ypos="108.466" zpos="-464.264" type="legs.gathering.general.flax.flax" GUID="X0fKnDxJD0mqOMAvh9N1dg=="/>
<POI MapID="1195" xpos="547.316" ypos="107.43" zpos="-458.22" type="legs.gathering.general.flax.flax" GUID="CmXaUxiMfkizeE9JmCgTZQ=="/>
<POI MapID="1195" xpos="538.421" ypos="106.01" zpos="-457.43" type="legs.gathering.general.flax.flax" GUID="fQRizJh9l0WCY5Z0geRIIA=="/>
<POI MapID="1195" xpos="530.567" ypos="104.722" zpos="-460.07" type="legs.gathering.general.flax.flax" GUID="k/jLsVEtGkmysEW9UZddfw=="/>
<POI MapID="1195" xpos="526.241" ypos="103.296" zpos="-465.771" type="legs.gathering.general.flax.flax" GUID="mwywA2JsD02tJpx2iPGNJQ=="/>
<!-- Flax - Path of Fire -->
<Trail type="legs.gathering.general.flax.jahai" trailData="Data/LadyElyssa/Gathering/Plants/Flax - Jahai.trl"/>
<POI MapID="1301" xpos="-846.421" ypos="68.8249" zpos="98.001" type="legs.gathering.general.flax.start" GUID="Zq05R2OLlUC6iCa+vIavPA=="/>
<POI MapID="1301" xpos="-88.2168" ypos="173.388" zpos="642.932" type="legs.gathering.general.flax.wp" GUID="EGQRN5KrWUyDDUduqyjSmw==" copy="[&BFcLAAA=]" copy-message="Allied Encampment Waypoint
Domain of Kourna"/>
<POI MapID="1301" xpos="-430.725" ypos="75.236" zpos="594.738" type="legs.gathering.general.flax.mount.jackal" GUID="ri1qZJ8C+kG1kW7s66+jiw=="/>
<POI MapID="1301" xpos="-97.5685" ypos="181.237" zpos="598.244" type="legs.gathering.general.flax.mount.skyscale" GUID="VzTAs7URxkasFVx5y1wxIg=="/>
<POI MapID="1301" xpos="-60.3551" ypos="154.416" zpos="612.872" type="legs.gathering.general.flax.flax" GUID="38ClvtUlM0WP4CCNMAg0iw=="/>
<POI MapID="1301" xpos="-71.898" ypos="163.48" zpos="597.766" type="legs.gathering.general.flax.flax" GUID="yuQihbtPU0a/r8qvqA8MdA=="/>
<POI MapID="1301" xpos="-97.2357" ypos="181.238" zpos="605.663" type="legs.gathering.general.flax.flax" GUID="NYyiTKj1REGeR9Hz4sD1XQ=="/>
<POI MapID="1301" xpos="-86.3459" ypos="181.205" zpos="596.894" type="legs.gathering.general.flax.flax" GUID="ig9qSn5hrky3pQKG49zVCA=="/>
<POI MapID="1301" xpos="-132.359" ypos="179.466" zpos="563.54" type="legs.gathering.general.flax.flax" GUID="ptN4zr2siEqNMuj4QlI99g=="/>
<POI MapID="1301" xpos="-124.274" ypos="161.309" zpos="603.512" type="legs.gathering.general.flax.flax" GUID="7BGmPKLcukudxa0Pbae+tw=="/>
<POI MapID="1301" xpos="-87.9213" ypos="173.388" zpos="642.103" type="legs.gathering.general.flax.flax" GUID="74E6pelON0KEiFtRWtt6pg=="/>
<POI MapID="1301" xpos="-45.9264" ypos="153.884" zpos="637.84" type="legs.gathering.general.flax.flax" GUID="8nDBgT8HkkeHUTth5Kt0zA=="/>
<Trail type="legs.gathering.general.flax.kourna" trailData="Data/LadyElyssa/Gathering/Plants/Flax - Kourna.trl"/>
<POI MapID="1288" xpos="-560.245" ypos="19.4505" zpos="252.882" type="legs.gathering.general.flax.start" GUID="IAQA0CLXlESAr42j9btPxg=="/>
<POI MapID="1288" xpos="-555.4797" ypos="40.27707" zpos="465.7251" type="legs.gathering.general.flax.mount.skyscale" GUID="iPf2+k6UD0SJRBM4w+WGpQ=="/>
<POI MapID="1288" xpos="-737.552" ypos="33.903" zpos="715.851" type="legs.gathering.general.flax.flax" GUID="FrM3lWZqbE20syeHykV3AA=="/>
<POI MapID="1288" xpos="-742.3" ypos="33.9206" zpos="761.839" type="legs.gathering.general.flax.flax" GUID="EKjG/R1ytUm0FoudqkeFBA=="/>
<POI MapID="1288" xpos="-743.62" ypos="33.9991" zpos="781.125" type="legs.gathering.general.flax.flax" GUID="dqzzpq1770K1yVnm5QAh+g=="/>
<POI MapID="1288" xpos="-729.843" ypos="33.9315" zpos="823.319" type="legs.gathering.general.flax.flax" GUID="15RySf6TSkmKayIz6bb2zQ=="/>
<POI MapID="1288" xpos="-716.74" ypos="33.9194" zpos="827.199" type="legs.gathering.general.flax.flax" GUID="gEMcwhM2Skex6HJfewgLug=="/>
<POI MapID="1288" xpos="-706.633" ypos="33.8423" zpos="823.669" type="legs.gathering.general.flax.flax" GUID="nxPpTlqt2EOkCUjN48wI4w=="/>
<POI MapID="1288" xpos="-740.258" ypos="33.4557" zpos="733.324" type="legs.gathering.general.flax.flax" GUID="r3orLQlNIkGoAGEtUkfe6w=="/>
<POI MapID="1288" xpos="-737.435" ypos="33.909" zpos="801.821" type="legs.gathering.general.flax.flax" GUID="ckQwYoZdHEyOqoH/IgMNOQ=="/>
<POI MapID="1288" xpos="-686.564" ypos="33.805" zpos="792.06" type="legs.gathering.general.flax.flax" GUID="E/DDadyVjkiWlYqQiT7l4w=="/>
<POI MapID="1288" xpos="-686.564" ypos="33.805" zpos="792.06" type="legs.gathering.general.flax.wp" GUID="0FSD9NOV/U67Nk+y/ghh5A==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint
Seitung Province"/>
<!-- PLANTS - Flax - End of Dragons -->
<Trail type="legs.gathering.general.flax.seitung" trailData="Data/LadyElyssa/Gathering/Plants/Flax - Seitung.trl"/>
<POI MapID="1442" xpos="-81.7285" ypos="13.9851" zpos="-186.519" type="legs.gathering.general.flax.start" GUID="xx7fGHEvEUa0ic+oKI3mNg=="/>
<POI MapID="1442" xpos="-157.9392" ypos="43.31505" zpos="-463.2564" type="legs.gathering.general.flax.end" GUID="L/vLEURYfEWL61v/Plh89Q=="/>
<POI MapID="1442" xpos="-150.688" ypos="43.7239" zpos="-461.379" type="legs.gathering.general.flax.flax" GUID="8qQ7/odG10GzBWUhzFq/tQ=="/>
<POI MapID="1442" xpos="-149.094" ypos="43.7393" zpos="-464.969" type="legs.gathering.general.flax.flax" GUID="wajc7/QkWUucuWL909NRJA=="/>
<POI MapID="1442" xpos="-156.6106" ypos="43.70161" zpos="-458.9013" type="legs.gathering.general.flax.flax" GUID="Y59r/Nldw02VkaIBw3cWrw=="/>
<POI MapID="1442" xpos="-151.309" ypos="43.7448" zpos="-466.058" type="legs.gathering.general.flax.flax" GUID="ej12xR1Kk0OA8tJvhnUSog=="/>
<POI MapID="1442" xpos="-153.8885" ypos="43.64655" zpos="-456.1265" type="legs.gathering.general.flax.flax" GUID="olaXi3Xe7ESChKPtehsARg=="/>
<!-- MIXED HERBS -->
<!-- Blazeridge Steppes -->
<!--
<POI MapID="20" xpos="68.7714" ypos="39.5123" zpos="-1020.72" type="legs.gathering.general.herbs.node" GUID="UGwZaIuYxEisG4GtVha+Xg=="/>
<POI MapID="20" xpos="383.473" ypos="19.8941" zpos="-1031.88" type="legs.gathering.general.herbs.node" GUID="P21eeW5WS0G+KyHejySXOw=="/>
<POI MapID="20" xpos="-508.172" ypos="35.6794" zpos="-352.612" type="legs.gathering.general.herbs.node" GUID="TqoSmToDEEevxs66Q22LqA=="/>
<POI MapID="20" xpos="-410.363" ypos="38.8044" zpos="331.942" type="legs.gathering.general.herbs.node" GUID="gjQ84nU/ZEKI9hALskN83w=="/>
<POI MapID="20" xpos="-2.02114" ypos="25.9651" zpos="858.203" type="legs.gathering.general.herbs.node" GUID="PPL0mFdhSU6hOH6j5X1R6Q=="/>
<POI MapID="20" xpos="202.456" ypos="22.4545" zpos="830.709" type="legs.gathering.general.herbs.node" GUID="K50k/U6kn06chqGm1G3JWg=="/>
<POI MapID="20" xpos="199.632" ypos="25.3191" zpos="941.472" type="legs.gathering.general.herbs.node" GUID="UMYXFCPjgEaAIoztU3gUWg=="/>
<POI MapID="20" xpos="97.8661" ypos="40.9103" zpos="115.025" type="legs.gathering.general.herbs.node" GUID="n52SJ2Gnx0+2pt5qpkF1vA=="/>
<POI MapID="20" xpos="99.8253" ypos="8.67443" zpos="218.513" type="legs.gathering.general.herbs.node" GUID="+R2EjziVgk+mNk7RDlpq0w=="/>
-->
<!-- Diessa Plateau -->
<!--
<POI MapID="32" xpos="-518.391" ypos="31.8004" zpos="-476.533" type="legs.gathering.general.herbs.node" GUID="LaXGCvf4H0KsLmXAZz+2kg=="/>
<POI MapID="32" xpos="-388.913" ypos="29.7011" zpos="-485.283" type="legs.gathering.general.herbs.node" GUID="8wvs2jLi1EWJHwBwGnUvqA=="/>
<POI MapID="32" xpos="804.576" ypos="28.6959" zpos="295.607" type="legs.gathering.general.herbs.node" GUID="JPK5u5aYj0SKIRE6FvPHHg=="/>
<POI MapID="32" xpos="-235.127" ypos="54.9279" zpos="276.981" type="legs.gathering.general.herbs.node" GUID="UO8tgIVrJUGCVf5vtZXupw=="/>
<POI MapID="32" xpos="-618.791" ypos="68.6304" zpos="307.02" type="legs.gathering.general.herbs.node" GUID="g6qHUF6P6E+nAv+SLWJtLA=="/>
<POI MapID="32" xpos="-188.266" ypos="54.7622" zpos="-48.6538" type="legs.gathering.general.herbs.node" GUID="dcaxpU46RkqC/8m9puwCOg=="/>
-->
<!-- Iron Marches -->
<!--
<POI MapID="25" xpos="-370.714" ypos="57.5099" zpos="-750.988" type="legs.gathering.general.herbs.node" GUID="NqmqKsbWA0a0TQrnq1CJjw=="/>
<POI MapID="25" xpos="77.9753" ypos="25.7818" zpos="291.837" type="legs.gathering.general.herbs.node" GUID="YdxGwUd9Tke+2M5YM7rTQw=="/>
<POI MapID="25" xpos="35.1192" ypos="35.7456" zpos="-60.4434" type="legs.gathering.general.herbs.node" GUID="qqYoXZzJ1kW5Vgn+URTvtg=="/>
<POI MapID="25" xpos="0.0847142" ypos="33.0054" zpos="-223.184" type="legs.gathering.general.herbs.node" GUID="DQOoNQkR/EuXKWbkjNkweQ=="/>
-->
<!-- Queensdale -->
<!--
<POI MapID="15" xpos="863.522" ypos="22.0274" zpos="214.741" type="legs.gathering.general.herbs.node" GUID="v15qPQCts0qlbdYxgPnWIQ=="/>
<POI MapID="15" xpos="75.7981" ypos="26.1564" zpos="-347.53" type="legs.gathering.general.herbs.node" GUID="gm90sgFu10ia7vDcx0B+Ow=="/>
<POI MapID="15" xpos="-658.283" ypos="12.5188" zpos="-140.928" type="legs.gathering.general.herbs.node" GUID="rTdhdD8kiUSwYwlK4N0JXA=="/>
<POI MapID="15" xpos="-620.459" ypos="29.3119" zpos="-364.454" type="legs.gathering.general.herbs.node" GUID="UNFkF7lQ50O/I8PPIyLmkw=="/>
-->
<!-- Wayfarer Foothills -->
<!--
<POI MapID="28" xpos="-108.615" ypos="66.3068" zpos="-166.415" type="legs.gathering.general.herbs.node" GUID="lgda3OLzv0mgr9UiYr7ENw=="/>
<POI MapID="28" xpos="88.1942" ypos="42.5673" zpos="-95.5116" type="legs.gathering.general.herbs.node" GUID="J+zDhKOqyEm+5KGrb/oUQA=="/>
<POI MapID="28" xpos="-129.386" ypos="47.9274" zpos="-52.6408" type="legs.gathering.general.herbs.node" GUID="0NtA7rCSO0ymFPVlgobQ8Q=="/>
<POI MapID="28" xpos="141.57" ypos="154.947" zpos="1104.85" type="legs.gathering.general.herbs.node" GUID="FGfw3hik7kWINQ3gmR7uSg=="/>
<POI MapID="28" xpos="124.572" ypos="201.184" zpos="1211.45" type="legs.gathering.general.herbs.node" GUID="FzSjXngLT0C2YC//j1t8fw=="/>
-->
<!-- Lornar's Pass -->
<Trail type="legs.gathering.general.herbs.lornars" trailData="Data/LadyElyssa/Gathering/Plants/Herbs - Lornar's Pass.trl"/>
<POI MapID="27" xpos="-381.606" ypos="64.1723" zpos="-8.17829" type="legs.gathering.general.herbs.node" GUID="gzxV4EYASkapv/UjEYYvkg=="/>
<POI MapID="27" xpos="-382.298" ypos="47.0657" zpos="-269.404" type="legs.gathering.general.herbs.node" GUID="l8Br6MrHw0qrJ97mNyH0LQ=="/>
<POI MapID="27" xpos="-37.7638" ypos="21.5716" zpos="-808.52" type="legs.gathering.general.herbs.node" GUID="azIK+5f5UkeBrxjWeNpZmw=="/>
<POI MapID="27" xpos="-152.051" ypos="14.2347" zpos="-1115.8" type="legs.gathering.general.herbs.node" GUID="O9fMtf9+wE2wzFBZ1rJjfQ=="/>
<POI MapID="27" xpos="-240.902" ypos="26.3682" zpos="-1077.24" type="legs.gathering.general.herbs.node" GUID="rrtSZeAuQUuJVU2xY7z/qw=="/>
<POI MapID="27" xpos="299.958" ypos="158.036" zpos="1121.34" type="legs.gathering.general.herbs.node" GUID="W0w9zxgVykGB4/IXgY66wQ=="/>
<POI MapID="27" xpos="146.251" ypos="159" zpos="1268.35" type="legs.gathering.general.herbs.node" GUID="bVIBQ/kGKUqvtctlIhXERQ=="/>
<POI MapID="27" xpos="58.2959" ypos="87.4697" zpos="1122.61" type="legs.gathering.general.herbs.node" GUID="ehsW8BikWE2XEq0X9FZ4rA=="/>
<POI MapID="27" xpos="325.133" ypos="153.654" zpos="1309.71" type="legs.gathering.general.herbs.node" GUID="78JXKV7KFUSNYxT/Tx+IWA=="/>
<POI MapID="27" xpos="49.9278" ypos="92.2967" zpos="1218.14" type="legs.gathering.general.herbs.node" GUID="TdB6obW2c0eUQdeZ4ftU/Q=="/>
<POI MapID="27" xpos="145.747" ypos="159.27" zpos="1267.35" type="legs.gathering.general.herbs.wp" GUID="a1NpsqLbzEm4Kvab69psiA==" copy="[&BGICAAA=]" copy-message="Graupel Waypoint
Dredgehaunt Cliffs"/>
<!-- Dredgehaunt -->
<Trail type="legs.gathering.general.herbs.dredgehaunt" trailData="Data/LadyElyssa/Gathering/Plants/Herbs - Dredgehaunt.trl"/>
<POI MapID="26" xpos="180.597" ypos="92.6776" zpos="832.131" type="legs.gathering.general.herbs.wp" GUID="UBpgED+Np0iwJE5mzoP3Ow==" copy="[&BGUCAAA=]" copy-message="Wyrmblood Waypoint"/>
<POI MapID="26" xpos="-486.293" ypos="3.88867" zpos="585.973" type="legs.gathering.general.herbs.wp" GUID="7xzQC0uUxEGXjGstI4aKLQ==" copy="[&BF0CAAA=]" copy-message="Hessdallen Kenning Waypoint"/>
<POI MapID="26" xpos="-429.271" ypos="68.2793" zpos="-27.1363" type="legs.gathering.general.herbs.wp" GUID="uP2b4LVJIk6eEKHOAZ5Plg==" copy="[&BFkCAAA=]" copy-message="Seven Pines Waypoint"/>
<POI MapID="26" xpos="578.218" ypos="130.074" zpos="-166.37" type="legs.gathering.general.herbs.wp" GUID="hZrd/LsPtEGT73jxBw3CpQ==" copy="[&BNECAAA=]" copy-message="Oxbow Isle Waypoint
Mount Maelstrom"/>
<POI MapID="26" xpos="159.844" ypos="93.0188" zpos="842.388" type="legs.gathering.general.herbs.node" GUID="qvgTkH1Vc0ihz3abyiiPeg=="/>
<POI MapID="26" xpos="475.52" ypos="76.7129" zpos="-185.937" type="legs.gathering.general.herbs.node" GUID="1uha2P/CNEqMMt4+74uCQA=="/>
<POI MapID="26" xpos="336.357" ypos="80.7685" zpos="-169.106" type="legs.gathering.general.herbs.node" GUID="zO7kiyQsyEOYysvgTzL1jw=="/>
<POI MapID="26" xpos="-431.926" ypos="94.9646" zpos="-515.403" type="legs.gathering.general.herbs.node" GUID="tlkTrW1sY0me5qcKCfvyXA=="/>
<POI MapID="26" xpos="-429.302" ypos="68.287" zpos="-27.1796" type="legs.gathering.general.herbs.node" GUID="EKcoNlLHs0SKOlUQSI0brQ=="/>
<POI MapID="26" xpos="-280.583" ypos="55.0665" zpos="257.863" type="legs.gathering.general.herbs.node" GUID="ORhCyZlOeU6uUpo5wpV72Q=="/>
<POI MapID="26" xpos="-486.71" ypos="3.74027" zpos="586.771" type="legs.gathering.general.herbs.node" GUID="NWCT/U7GhUqcb6ZjcZIFQg=="/>
<POI MapID="26" xpos="180.201" ypos="92.6971" zpos="832.016" type="legs.gathering.general.herbs.node" GUID="8CVvR+ffcUyLBaqiy6+MVA=="/>
<POI MapID="26" xpos="577.585" ypos="129.901" zpos="-166.343" type="legs.gathering.general.herbs.node" GUID="8jiQ5d/7xkSzikVKomCAVg=="/>
<POI MapID="26" xpos="-406.04" ypos="37.1022" zpos="560.764" type="legs.gathering.general.herbs.node" GUID="0K8JKGLlvU6Fsvi47l7Mwg=="/>
<POI MapID="26" xpos="-478.168" ypos="6.90048" zpos="541.302" type="legs.gathering.general.herbs.node" GUID="9GF9KDA+d06e+TL8ntrQPQ=="/>
<POI MapID="26" xpos="70.9454" ypos="86.0313" zpos="-349.165" type="legs.gathering.general.herbs.node" GUID="SpKlVM+j0kWiFjkjGp5PKQ=="/>
<POI MapID="26" xpos="353.965" ypos="81.5308" zpos="294.123" type="legs.gathering.general.herbs.node" GUID="KP4rmpHB00ewXqIwTT3irA=="/>
<POI MapID="26" xpos="-565.326" ypos="25.3977" zpos="342.095" type="legs.gathering.general.herbs.node" GUID="aj4WJcqwlU6kanD7cB+L3w=="/>
<POI MapID="26" xpos="-455.413" ypos="76.5198" zpos="-132.733" type="legs.gathering.general.herbs.node" GUID="VJoqDQeKuUK3PYc2Ov3dSA=="/>
<!-- Mount Maelstrom -->
<Trail type="legs.gathering.general.herbs.maelstrom" trailData="Data/LadyElyssa/Gathering/Plants/Herbs - Mount Maelstrom.trl"/>
<POI MapID="39" xpos="51.71" ypos="4.01897" zpos="254.358" type="legs.gathering.general.herbs.wp" GUID="92Jffpi+1EC+k8zCrFPSEg==" copy="[&BNgCAAA=]" copy-message="Plinth Timberland Waypoint
Straits of Devastation"/>
<POI MapID="39" xpos="188.833" ypos="5.79926" zpos="-154.779" type="legs.gathering.general.herbs.node" GUID="IB8o2oW3h0KSr1HpURqGcQ=="/>
<POI MapID="39" xpos="209.081" ypos="3.07234" zpos="-110.457" type="legs.gathering.general.herbs.node" GUID="2KBCphEEYkugnRktFJN+WA=="/>
<POI MapID="39" xpos="15.3043" ypos="0.420919" zpos="240.819" type="legs.gathering.general.herbs.node" GUID="7cV+dj+gSUWvx/iL3aD7Pg=="/>
<POI MapID="39" xpos="51.1409" ypos="3.96115" zpos="254.349" type="legs.gathering.general.herbs.node" GUID="w17E5ujACUCSeZRcRp3/DQ=="/>
<POI MapID="39" xpos="72.3448" ypos="3.96733" zpos="-168.071" type="legs.gathering.general.herbs.node" GUID="10c8xbOhJk6dQWoCBt+ifg=="/>
<POI MapID="39" xpos="78.5534" ypos="2.90506" zpos="-98.4175" type="legs.gathering.general.herbs.node" GUID="KIVf3Si/J0yLv7WJSr2FMw=="/>
<POI MapID="39" xpos="26.6622" ypos="1.57836" zpos="216.675" type="legs.gathering.general.herbs.node" GUID="rslzDH+SQEadz2IpVI/Zlg=="/>
<POI MapID="39" xpos="102.904" ypos="4.06804" zpos="-51.344" type="legs.gathering.general.herbs.node" GUID="77Mc7Uy4x02bLMfkXzKJMA=="/>
<POI MapID="39" xpos="75.724" ypos="1.21227" zpos="-140.727" type="legs.gathering.general.herbs.node" GUID="d4Y0Z3o0n0CSvnuUqefdrA=="/>
<POI MapID="39" xpos="102.43" ypos="3.78338" zpos="136.198" type="legs.gathering.general.herbs.node" GUID="sRGHI0dICEiX4SEZl2HBsQ=="/>
<POI MapID="39" xpos="97.4275" ypos="5.58496" zpos="-178.303" type="legs.gathering.general.herbs.node" GUID="Bveib5bTh0uzqxpIe40ejg=="/>
<POI MapID="39" xpos="81.6904" ypos="2.44779" zpos="-153.313" type="legs.gathering.general.herbs.node" GUID="p5YmWm10nEyEjEbRwOBQUQ=="/>
<POI MapID="39" xpos="122.767" ypos="2.22459" zpos="-5.28903" type="legs.gathering.general.herbs.node" GUID="JhZA1PtflUe+7AO9QronLw=="/>
<POI MapID="39" xpos="125.292" ypos="0.50052" zpos="96.6628" type="legs.gathering.general.herbs.node" GUID="TcyRylKkaUCxCByn3/UcaQ=="/>
<!-- Straits Of Devastation -->
<Trail type="legs.gathering.general.herbs.straits" trailData="Data/LadyElyssa/Gathering/Plants/Herbs - Straits of Devastation.trl"/>
<POI MapID="51" xpos="399.289" ypos="4.27938" zpos="714.794" type="legs.gathering.general.herbs.node" GUID="hotmY4o2sESPxvFHiJiTcw=="/>
<POI MapID="51" xpos="766.523" ypos="14.5386" zpos="512.337" type="legs.gathering.general.herbs.node" GUID="zPvu2QI/oEedY2o5dcCmxw=="/>
<POI MapID="51" xpos="631.398" ypos="18.3195" zpos="381.57" type="legs.gathering.general.herbs.node" GUID="WjvWM+XDoU6QIu8nTv5ukA=="/>
<POI MapID="51" xpos="910.405" ypos="47.8884" zpos="20.0361" type="legs.gathering.general.herbs.node" GUID="0O3m/TpUZ02Zl2VzN7RZrg=="/>
<POI MapID="51" xpos="840.173" ypos="41.5679" zpos="-56.1353" type="legs.gathering.general.herbs.node" GUID="7iHUQye+1Ui1D8ZDR5HJNQ=="/>
<POI MapID="51" xpos="823.542" ypos="15.6202" zpos="325.058" type="legs.gathering.general.herbs.node" GUID="Y3VwoQOfg0SHEzjoTzms0g=="/>
<POI MapID="51" xpos="584.147" ypos="13.0379" zpos="406.403" type="legs.gathering.general.herbs.node" GUID="zSrCSj8HpkKOhdeV4qg6JQ=="/>
<POI MapID="51" xpos="861.273" ypos="19.8306" zpos="272.685" type="legs.gathering.general.herbs.node" GUID="t6BU6qhqrkCSKQgvA1U1sA=="/>
<POI MapID="51" xpos="747.133" ypos="15.7357" zpos="411.747" type="legs.gathering.general.herbs.node" GUID="aPM+LG7zE0SMxHmQlitVJA=="/>
<POI MapID="51" xpos="840.074" ypos="41.7654" zpos="-56.6728" type="legs.gathering.general.herbs.wp" GUID="FN2gC80ucEmwPkM40tEJOg==" copy="[&BJ4MAAA=]" copy-message="Village Waypoint
Seitung Province"/>
<!-- End of Dragons - Seitung Province -->
<Trail type="legs.gathering.general.herbs.seitung" trailData="Data/LadyElyssa/Gathering/Plants/Herbs - Seitung Province.trl"/>
<POI MapID="1442" xpos="-167.909" ypos="39.0675" zpos="-424.91" type="legs.gathering.general.herbs.node" GUID="GvVKijOZxEi3C2/v9nd75w=="/>
<POI MapID="1442" xpos="-163.633" ypos="40.1348" zpos="-424.108" type="legs.gathering.general.herbs.node" GUID="kcGfQXkEYUSxgpx75N1fJw=="/>
<POI MapID="1442" xpos="-170.0774" ypos="38.15194" zpos="-422.9327" type="legs.gathering.general.herbs.end" GUID="sTYU+CVvmE29Nq8XgtdUiQ=="/>
<!-- Maguuma Lily -->
<Trail type="legs.gathering.general.lily.bloodstone" trailData="Data/LadyElyssa/Gathering/Plants/Jungle Plants - Bloodstone Fen.trl"/>
<POI MapID="1165" xpos="-230.595" ypos="762.322" zpos="72.7512" type="legs.gathering.general.lily.start" GUID="jhm4bTNEQEWIV5JMVY2JuQ=="/>
<POI MapID="1165" xpos="-224.485" ypos="760.666" zpos="87.0552" type="legs.gathering.general.lily.number.1" GUID="e3nVgI/aiES1jg/BQOtTqQ=="/>
<POI MapID="1165" xpos="-155.174" ypos="767.216" zpos="143.245" type="legs.gathering.general.lily.glider" GUID="ykq+wZwxOkK5aSE/zECchg=="/>
<POI MapID="1165" xpos="-244.985" ypos="692.665" zpos="118.792" type="legs.gathering.general.lily.mount.springer" GUID="eV4QznTtfEeC5k39Hf4Ngg=="/>
<POI MapID="1165" xpos="-84.0764" ypos="695.543" zpos="-84.5001" type="legs.gathering.general.lily.mount.springer" GUID="Zm8HlozuR02DPsRQ5ff63g=="/>
<POI MapID="1165" xpos="-361.789" ypos="541.488" zpos="-109.623" type="legs.gathering.general.lily.wp" GUID="qZCcDRs9jEGeFBWFW3zY+Q==" copy="[&BEsJAAA=]" copy-message="Soulkeeper's Airship Waypoint"/>
<POI MapID="1165" xpos="-223.557" ypos="760.669" zpos="85.925" type="legs.gathering.general.lily.number.2" GUID="+jNP77ns40u/Fn8W5tc/Mw=="/>
<POI MapID="1165" xpos="-213.21" ypos="515.661" zpos="75.3506" type="legs.gathering.general.lily.mount.springer" GUID="tllVADaFB0iwZOFv4tv1uQ=="/>
<POI MapID="1165" xpos="-264.906" ypos="515.509" zpos="-11.1193" type="legs.gathering.general.lily.mount.springer" GUID="hx1aYFwdykO4BHGl77k/Cg=="/>
<POI MapID="1165" xpos="-257.94" ypos="549.066" zpos="-19.027" type="legs.gathering.general.lily.wp" GUID="eZd1OMdMUEqwTGf4udJwhA==" copy="[&BNUJAAA=]" copy-message="Ancient Hollow Waypoint
Draconis Mons"/>
<POI MapID="1165" xpos="-231.397" ypos="695.602" zpos="153.433" type="legs.gathering.general.lily.lily" GUID="XwP08evDNE209uxtAqM/KA=="/>
<POI MapID="1165" xpos="-243.506" ypos="692.706" zpos="118.629" type="legs.gathering.general.lily.lily" GUID="pvE2WNj4VUy0Hebp5f6gfA=="/>
<POI MapID="1165" xpos="-266.533" ypos="704.523" zpos="133.486" type="legs.gathering.general.lily.lily" GUID="hw3e2aEByUO7KfrLmcm0Ig=="/>
<POI MapID="1165" xpos="-40.092" ypos="704.492" zpos="-89.9026" type="legs.gathering.general.lily.lily" GUID="ipafhgUm/0iyrPtgad8eeg=="/>
<POI MapID="1165" xpos="-51.1478" ypos="692.45" zpos="-85.6651" type="legs.gathering.general.lily.lily" GUID="LQsHSGkcAUSjgc+uo+yzhw=="/>
<POI MapID="1165" xpos="-107.673" ypos="693.704" zpos="-70.2148" type="legs.gathering.general.lily.lily" GUID="olp8qR799Uq1IjOm8/zKPw=="/>
<POI MapID="1165" xpos="-106.142" ypos="685.743" zpos="-39.3022" type="legs.gathering.general.lily.lily" GUID="1M7i8dSTT021cYzHwo/JIQ=="/>
<POI MapID="1165" xpos="122.513" ypos="741.798" zpos="145.274" type="legs.gathering.general.lily.lily" GUID="MEuWzJYNTkGHBM5fUyRZLQ=="/>
<POI MapID="1165" xpos="175.498" ypos="762.287" zpos="-21.9718" type="legs.gathering.general.lily.lily" GUID="WytabgLpOkyN6CJ29H1ilA=="/>
<POI MapID="1165" xpos="245.917" ypos="704.074" zpos="-94.9884" type="legs.gathering.general.lily.lily" GUID="N9wzwZd2xkamSRHkUSTnsA=="/>
<POI MapID="1165" xpos="184" ypos="692.126" zpos="-139.186" type="legs.gathering.general.lily.lily" GUID="oSP7qUHZjUSRQD+FKwgoAw=="/>
<POI MapID="1165" xpos="158.162" ypos="695.395" zpos="-107.524" type="legs.gathering.general.lily.lily" GUID="pFLAWR9C5UCDzIj8/Rk9qQ=="/>
<POI MapID="1165" xpos="70.9987" ypos="653.036" zpos="-81.0524" type="legs.gathering.general.lily.lily" GUID="WNSpxz6UxEu3xBqrsjOYnQ=="/>
<POI MapID="1165" xpos="36.2579" ypos="646.816" zpos="-71.4667" type="legs.gathering.general.lily.lily" GUID="Qy5775MnFEKxbHAEy+WykQ=="/>
<POI MapID="1165" xpos="-29.0499" ypos="542.956" zpos="-112.663" type="legs.gathering.general.lily.lily" GUID="/GFPmFR+LUSKukWC+j0BPw=="/>
<POI MapID="1165" xpos="-92.7448" ypos="534.431" zpos="-48.1303" type="legs.gathering.general.lily.lily" GUID="oQAh86PdrkCHA0vpym7MBA=="/>
<POI MapID="1165" xpos="-146.725" ypos="534.731" zpos="36.1316" type="legs.gathering.general.lily.lily" GUID="v5VrPBiT6kGez606shD2sQ=="/>
<POI MapID="1165" xpos="-157.285" ypos="530.35" zpos="-14.2181" type="legs.gathering.general.lily.lily" GUID="aeryHZTsAkqSKb4EfoptDA=="/>
<POI MapID="1165" xpos="-176.738" ypos="537.596" zpos="-57.8966" type="legs.gathering.general.lily.lily" GUID="99hkVH8pg0SITlagF44r4g=="/>
<POI MapID="1165" xpos="-190.071" ypos="508.1" zpos="-66.6059" type="legs.gathering.general.lily.lily" GUID="jTfuYfmwdEuQhn62iYNQ7w=="/>
<POI MapID="1165" xpos="-256.194" ypos="507.069" zpos="-57.9404" type="legs.gathering.general.lily.lily" GUID="VIpEm6HD9k6qWQvC527/Aw=="/>
<POI MapID="1165" xpos="-285.288" ypos="506.48" zpos="-88.5259" type="legs.gathering.general.lily.lily" GUID="HKfjfX3MGk+51W4MGgufHA=="/>
<POI MapID="1165" xpos="-361.187" ypos="541.326" zpos="-109.535" type="legs.gathering.general.lily.lily" GUID="0e87OXLOuESjaHLf/9SZhw=="/>
<POI MapID="1165" xpos="-109.351" ypos="753.679" zpos="183.439" type="legs.gathering.general.lily.lily" GUID="pOi20l1vdkaFsmAaA6Zaow=="/>
<POI MapID="1165" xpos="-34.8693" ypos="672.557" zpos="140.889" type="legs.gathering.general.lily.lily" GUID="3K8rVYABWUiamhoyf+xBGA=="/>
<POI MapID="1165" xpos="-81.3519" ypos="545.621" zpos="121.997" type="legs.gathering.general.lily.lily" GUID="81cl8msaykGQnfRdPVwYRg=="/>
<POI MapID="1165" xpos="-178.871" ypos="534.06" zpos="123.568" type="legs.gathering.general.lily.lily" GUID="knVIUscrh0Sw+JKXO0Ux7A=="/>
<POI MapID="1165" xpos="-221.565" ypos="542.029" zpos="59.0165" type="legs.gathering.general.lily.lily" GUID="Chue0B5Kh0S6ZKUj46WxpQ=="/>
<POI MapID="1165" xpos="-231.414" ypos="507.523" zpos="98.5228" type="legs.gathering.general.lily.lily" GUID="5+nTeYR2rUGco4UORp9lfw=="/>
<POI MapID="1165" xpos="-254.193" ypos="506.332" zpos="154.651" type="legs.gathering.general.lily.lily" GUID="AGB+qRvGNUaDeSh6DLoDSg=="/>
<POI MapID="1165" xpos="-286.87" ypos="505.024" zpos="107.179" type="legs.gathering.general.lily.lily" GUID="fA7bJz2NRU2l1KxWk/2CUw=="/>
<POI MapID="1165" xpos="-315.896" ypos="497.155" zpos="23.0246" type="legs.gathering.general.lily.lily" GUID="cxb8Go2o3UGvxIYDdAe1yw=="/>
<POI MapID="1165" xpos="-252.512" ypos="514.15" zpos="-4.4564" type="legs.gathering.general.lily.lily" GUID="3dVimChUl0S5JF6miLwO5A=="/>
<POI MapID="1165" xpos="-257.928" ypos="549.093" zpos="-19.3301" type="legs.gathering.general.lily.lily" GUID="K6iydf9qeUSvdmjkKX2aMw=="/>
<!-- Maguuma Lily -->
<Trail type="legs.gathering.general.lily.draconis" trailData="Data/LadyElyssa/Gathering/Plants/Jungle Plants - Draconis Mons.trl"/>
<POI MapID="1195" xpos="-38.0641" ypos="253.209" zpos="100.429" type="legs.gathering.general.lily.start" GUID="YwWI2GHz90CTIv+/BeLjwg=="/>
<POI MapID="1195" xpos="-32.4176" ypos="253.365" zpos="111.178" type="legs.gathering.general.lily.number.1" GUID="tltonhZ+Y0e2dRHIN185ng=="/>
<POI MapID="1195" xpos="-194.179" ypos="5.92121" zpos="-719.702" type="legs.gathering.general.lily.wp" GUID="OGwhQFf87EyhP67by20G/A==" copy="[&BBAIAAA=]" copy-message="Pact Base Camp Waypoint
Dragon's Stand"/>
<POI MapID="1195" xpos="-62.108" ypos="277.93" zpos="137.92" type="legs.gathering.general.lily.glider" GUID="3JlRakGwHUWHUFU5E/ZnHg=="/>
<POI MapID="1195" xpos="-135.556" ypos="262.821" zpos="177.347" type="legs.gathering.general.lily.glider" GUID="yVfSAaCU8kCcSU2r6ABnUg=="/>
<POI MapID="1195" xpos="-27.4513" ypos="253.304" zpos="109.749" type="legs.gathering.general.lily.number.2" GUID="SWqlo1l6LUSqNMl50SBX2w=="/>
<POI MapID="1195" xpos="-158.072" ypos="252.074" zpos="146.984" type="legs.gathering.general.lily.wp" GUID="EyXk6XUQk0uc2g6L8BVpDQ==" copy="[&BNUJAAA=]" copy-message="Ancient Hollow Waypoint"/>
<POI MapID="1195" xpos="-92.4467" ypos="235.479" zpos="-135.712" type="legs.gathering.general.lily.wp" GUID="qhuzjzCePUS2GpVfi5LBQg==" copy="[&BNUJAAA=]" copy-message="Ancient Hollow Waypoint"/>
<POI MapID="1195" xpos="-26.0736" ypos="253.099" zpos="115.141" type="legs.gathering.general.lily.number.3" GUID="e0mBPP+xAUSRYwdWln0FzQ=="/>
<POI MapID="1195" xpos="445.235" ypos="97.024" zpos="-205.898" type="legs.gathering.general.lily.mount.skyscale" GUID="AweSb9w8s0OCZf0hVC0E2g=="/>
<POI MapID="1195" xpos="359.999" ypos="266.556" zpos="-788.006" type="legs.gathering.general.lily.mount.springer" GUID="24j++Jiof0SgimAewFuh/Q=="/>
<POI MapID="1195" xpos="128.891" ypos="180.933" zpos="-660.943" type="legs.gathering.general.lily.mount.springer" GUID="TyW8asm1LU+bPlBWX6ulwQ=="/>
<POI MapID="1195" xpos="116.17" ypos="187.074" zpos="-646.579" type="legs.gathering.general.lily.mount.skyscale" GUID="F8Uh/c3xTUq740ItGr80aQ=="/>
<POI MapID="1195" xpos="172.705" ypos="200.593" zpos="-616.06" type="legs.gathering.general.lily.glider" GUID="3VS1gYyTsEW873+hNESqsQ=="/>
<POI MapID="1195" xpos="296.264" ypos="180.845" zpos="-419.07" type="legs.gathering.general.lily.mount.springer" GUID="iaezqITIB0OWXbd0uYIh3w=="/>
<POI MapID="1195" xpos="301.513" ypos="214.139" zpos="-504.756" type="legs.gathering.general.lily.glider" GUID="HpI4+5WZuECujdthRYfqdg=="/>
<POI MapID="1195" xpos="-358.001" ypos="126.379" zpos="-411.452" type="legs.gathering.general.lily.mount.springer" GUID="SHoa6wBBDkiL8mr0Vy1h/g=="/>
<POI MapID="1195" xpos="-381.396" ypos="111.214" zpos="-361.244" type="legs.gathering.general.lily.mount.springer" GUID="zHASUuAyB0WGF9cn7zXkRw=="/>
<POI MapID="1195" xpos="-392.175" ypos="96.6773" zpos="-252.845" type="legs.gathering.general.lily.glider" GUID="AACmJnfJmU+CBuyB68pY2Q=="/>
<POI MapID="1195" xpos="-279.431" ypos="5.81044" zpos="-480.226" type="legs.gathering.general.lily.glider" GUID="esD3JJPQq0WDeqQ/1wojFg=="/>