-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathBNpcName.csv
We can't make this file beautiful and searchable because it's too large.
14104 lines (14104 loc) · 720 KB
/
BNpcName.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
key,0,1,2,3,4,5,6,7
#,Singular,Adjective,Plural,PossessivePronoun,StartsWithVowel,,Pronoun,Article
int32,str,sbyte,str,sbyte,sbyte,sbyte,sbyte,sbyte
0,"",0,"",0,0,1,0,0
1,"",0,"",0,0,0,0,0
2,"ruins runner",0,"ruins runners",0,0,1,0,0
3,"antelope doe",0,"antelope does",0,1,1,0,0
4,"antelope stag",0,"antelope stags",0,1,1,0,0
5,"opo-opo",0,"opo-opos",0,1,1,0,0
6,"lemur",0,"lemurs",0,0,1,0,0
7,"giant gnat",0,"giant gnats",0,0,1,0,0
8,"ked",0,"keds",0,0,1,0,0
9,"miteling",0,"mitelings",0,0,1,0,0
10,"diremite",0,"diremites",0,0,1,0,0
11,"banemite",0,"banemites",0,0,1,0,0
12,"northern vulture",0,"northern vultures",0,0,1,0,0
13,"arbor buzzard",0,"arbor buzzards",0,1,1,0,0
14,"wild hoglet",0,"wild hoglets",0,0,1,0,0
15,"wild hog",0,"wild hogs",0,0,1,0,0
16,"wild boar",0,"wild boars",0,0,1,0,0
17,"balloon",0,"balloons",0,0,1,0,0
18,"zombie",0,"zombies",0,0,1,0,0
19,"zombie mage",0,"zombie mages",0,0,1,0,0
20,"magicked bones",0,"magicked bones",0,0,1,0,0
21,"trickster imp",0,"trickster imps",0,0,1,0,0
22,"roselet",0,"roselets",0,0,1,0,0
23,"kedtrap",0,"kedtraps",0,0,1,0,0
24,"treant",0,"treants",0,0,1,0,0
25,"dryad",0,"dryads",0,0,1,0,0
26,"gigantoad",0,"gigantoads",0,0,1,0,0
27,"nix",0,"nixes",0,0,1,0,0
28,"coeurl pup",0,"coeurl pups",0,0,1,0,0
29,"dullahan",0,"dullahans",0,0,1,0,0
30,"clay golem",0,"clay golems",0,0,1,0,0
31,"mindflayer",0,"mindflayers",0,0,1,0,0
32,"microchu",0,"microchus",0,0,1,0,0
33,"ochu",0,"ochus",0,1,1,0,0
34,"adamantoise",0,"adamantoises",0,1,1,0,0
35,"tonberry",0,"tonberries",0,0,1,0,0
36,"boring weevil",0,"boring weevils",0,0,1,0,0
37,"ground squirrel",0,"ground squirrels",0,0,1,0,0
38,"black bat",0,"black bats",0,0,1,0,0
39,"tree slug",0,"tree slugs",0,0,1,0,0
40,"Shroud hare",0,"Shroud hares",0,0,1,0,0
41,"syrphid swarm",0,"syrphid swarms",0,0,1,0,0
42,"yarzon",0,"yarzons",0,0,1,0,0
43,"chigoe",0,"chigoes",0,0,1,0,0
44,"jumping djigga",0,"jumping djiggas",0,0,1,0,0
45,"will-o'-the-wisp",0,"will-o'-the-wisps",0,0,1,0,0
46,"plasmoid",0,"plasmoids",0,0,1,0,0
47,"forest funguar",0,"forest funguars",0,0,1,0,0
48,"toadstool",0,"toadstools",0,0,1,0,0
49,"little ladybug",0,"little ladybugs",0,0,1,0,0
50,"goblin thug",0,"goblin thugs",0,0,1,0,0
51,"alpha anole",0,"alpha anoles",0,1,1,0,0
52,"Redbelly lookout",0,"Redbelly lookouts",0,0,1,0,0
53,"3rd Cohort hoplomachus",0,"3rd Cohort hoplomachi",0,0,1,0,0
54,"hornet swarm",0,"hornet swarms",0,0,1,0,0
55,"deathgaze",0,"deathgazes",0,0,1,0,0
56,"water sprite",0,"water sprites",0,0,1,0,0
57,"3rd Cohort decurion",0,"3rd Cohort decurions",0,0,1,0,0
58,"3rd Cohort laquearius",0,"3rd Cohort laquearii",0,0,1,0,0
59,"3rd Cohort eques",0,"3rd Cohort equites",0,0,1,0,0
60,"3rd Cohort secutor",0,"3rd Cohort secutores",0,0,1,0,0
61,"3rd Cohort signifer",0,"3rd Cohort signiferi",0,0,1,0,0
62,"pteroc",0,"pterocs",0,0,1,0,0
63,"pudding",0,"puddings",0,0,1,0,0
64,"sylvan screech",0,"sylvan screeches",0,0,1,0,0
65,"sylvan sigh",0,"sylvan sighs",0,0,1,0,0
66,"sylvan snarl",0,"sylvan snarls",0,0,1,0,0
67,"sylpheed screech",0,"sylpheed screeches",0,0,1,0,0
68,"sylpheed sigh",0,"sylpheed sighs",0,0,1,0,0
69,"sylpheed snarl",0,"sylpheed snarls",0,0,1,0,0
70,"sylpheed song",0,"sylpheed songs",0,0,1,0,0
71,"Silbexio of the Dusken Knot",0,"Silbexio of the Dusken Knot",0,0,1,0,1
72,"Bockman",0,"Bockman",0,0,1,0,1
73,"Galvanth the Dominator",0,"Galvanth the Dominator",0,0,1,0,1
74,"Shredder",0,"Shredder",0,0,1,0,1
75,"Aerico",0,"Aerico",0,0,1,0,1
76,"Gelmorran strutfinder",0,"Gelmorran strutfinders",0,0,1,0,0
77,"Gelmorran cogfinder",0,"Gelmorran cogfinders",0,0,1,0,0
78,"Gelmorran nailfinder",0,"Gelmorran nailfinders",0,0,1,0,0
79,"Dalamud priest",0,"Dalamud priests",0,0,1,0,0
80,"Redbelly gutter",0,"Redbelly gutters",0,0,1,0,0
81,"Severaint Seven Splinter",0,"Severaint Seven Splinter",0,0,1,0,1
82,"Redbelly hivekeep",0,"Redbelly hivekeeps",0,0,1,0,0
83,"Redbelly sharpeye",0,"Redbelly sharpeyes",0,0,1,0,0
84,"Redbelly chanter",0,"Redbelly chanters",0,0,1,0,0
85,"Dofagan the Penitent",0,"Dofagan the Penitent",0,0,1,0,1
86,"Hollow Baron lodesman",0,"Hollow Baron lodesmen",0,0,1,0,0
87,"Hollow Baron waister",0,"Hollow Baron waisters",0,0,1,0,0
88,"Hollow Baron engineer",0,"Hollow Baron engineers",0,0,1,0,0
89,"Hollow Baron gunner",0,"Hollow Baron gunners",0,0,1,0,0
90,"spriggan collector",0,"spriggan collectors",0,0,1,0,0
91,"spriggan",0,"spriggans",0,0,1,0,0
92,"Antares",0,"Antares",0,0,1,0,1
93,"Sargas",0,"Sargas",0,0,1,0,1
94,"Shaula",0,"Shaula",0,0,1,0,1
95,"flux flan",0,"flux flans",0,0,1,0,0
96,"hecatoncheir overseer",0,"hecatoncheir overseers",0,0,1,0,0
97,"hecatoncheir stonehauler",0,"hecatoncheir stonehaulers",0,0,1,0,0
98,"hecatoncheir shockblocker",0,"hecatoncheir shockblockers",0,0,1,0,0
99,"hecatoncheir piledriver",0,"hecatoncheir piledrivers",0,0,1,0,0
100,"hecatoncheir blastmaster",0,"hecatoncheir blastmasters",0,0,1,0,0
101,"Gyges the Great",0,"Gyges the Great",0,0,1,0,1
102,"Ixali swordfighter",0,"Ixali swordfighters",0,1,1,0,0
103,"Ixali boldwing",0,"Ixali boldwings",0,1,1,0,0
104,"Ixali swiftbeak",0,"Ixali swiftbeaks",0,1,1,0,0
105,"Ixali fogcaller",0,"Ixali fogcallers",0,1,1,0,0
106,"coeurl",0,"coeurls",0,0,1,0,0
107,"mandragora",0,"mandragoras",0,0,1,0,0
108,"",0,"",0,0,0,0,0
109,"gravedigger",0,"gravediggers",0,0,1,0,0
110,"skeleton soldier",0,"skeleton soldiers",0,0,1,0,0
111,"Deepcroft miteling",0,"Deepcroft mitelings",0,0,1,0,0
112,"lesser kalong",0,"lesser kalongs",0,0,1,0,0
113,"earth sprite",0,"earth sprites",0,1,1,0,0
114,"ice sprite",0,"ice sprites",0,1,1,0,0
115,"wind sprite",0,"wind sprites",0,0,1,0,0
116,"fire sprite",0,"fire sprites",0,0,1,0,0
117,"lightning sprite",0,"lightning sprites",0,0,1,0,0
118,"midge swarm",0,"midge swarms",0,0,1,0,0
119,"Octavel the Unforgiving",0,"Octavel the Unforgiving",0,0,1,0,1
120,"anole",0,"anoles",0,1,1,0,0
121,"Redbelly swarmpoint",0,"Redbelly swarmpoints",0,0,1,0,0
122,"Redbelly stinger",0,"Redbelly stingers",0,0,1,0,0
123,"toxic battrap",0,"toxic battraps",0,0,1,0,0
124,"toxic flytrap",0,"toxic flytraps",0,0,1,0,0
125,"pus gnat",0,"pus gnats",0,0,1,0,0
126,"giant slug",0,"giant slugs",0,0,1,0,0
127,"enormous slug",0,"enormous slugs",0,1,1,0,0
128,"treant sapling",0,"treant saplings",0,0,1,0,0
129,"firefly",0,"fireflies",0,0,1,0,0
130,"lindwurm",0,"lindwurms",0,0,1,0,0
131,"crater golem",0,"crater golems",0,0,1,0,0
132,"smoke bomb",0,"smoke bombs",0,0,1,0,0
133,"giant bat",0,"giant bats",0,0,1,0,0
134,"tainted earth sprite",0,"tainted earth sprites",0,0,1,0,0
135,"tainted wind sprite",0,"tainted wind sprites",0,0,1,0,0
136,"tainted water sprite",0,"tainted water sprites",0,0,1,0,0
137,"wandering bones",0,"wandering bones",0,0,1,0,0
138,"Redbelly jack",0,"Redbelly jacks",0,0,1,0,0
139,"Coeurlclaw hunter",0,"Coeurlclaw hunters",0,0,1,0,0
140,"Coeurlclaw poacher",0,"Coeurlclaw poachers",0,0,1,0,0
141,"parasite funguar",0,"parasite funguars",0,0,1,0,0
142,"young antelope stag",0,"young antelope stags",0,0,1,0,0
143,"Ak-Inik varlet",0,"Ak-Inik varlets",0,1,1,0,0
144,"Ak-Mena varlet",0,"Ak-Mena varlets",0,1,1,0,0
145,"carrion beetle",0,"carrion beetles",0,0,1,0,0
146,"fleshfly swarm",0,"fleshfly swarms",0,0,1,0,0
147,"croftlight",0,"croftlights",0,0,1,0,0
148,"void lamp",0,"void lamp",0,0,1,0,0
149,"horde mite",0,"horde mites",0,0,1,0,0
150,"bastard mite",0,"bastard mites",0,0,1,0,0
151,"tainted louse",0,"tainted lice",0,0,1,0,0
152,"void flame",0,"void flames",0,0,1,0,0
153,"prison pteroc",0,"prison pterocs",0,0,1,0,0
154,"Mun-Tuy sapling",0,"Mun-Tuy saplings",0,0,1,0,0
155,"mitetrap",0,"mitetraps",0,0,1,0,0
156,"gaoler's lantern",0,"gaoler's lanterns",0,0,1,0,0
157,"cell mite",0,"cell mites",0,0,1,0,0
158,"prison pudding",0,"prison puddings",0,0,1,0,0
159,"widow's suitor",0,"widow's suitors",0,0,1,0,0
160,"Sylphlands buzzard",0,"Sylphlands buzzards",0,0,1,0,0
161,"pit boar",0,"pit boars",0,0,1,0,0
162,"milkroot sapling",0,"milkroot saplings",0,0,1,0,0
163,"Sylphlands sentinel",0,"Sylphlands sentinels",0,0,1,0,0
164,"dreamtoad",0,"dreamtoads",0,0,1,0,0
165,"milkroot cluster",0,"milkroot clusters",0,0,1,0,0
166,"sylph bonnet",0,"sylph bonnets",0,0,1,0,0
167,"sylpheed dream",0,"sylpheed dreams",0,0,1,0,0
168,"hoverfly swarm",0,"hoverfly swarms",0,0,1,0,0
169,"Coeurlclaw cutter",0,"Coeurlclaw cutters",0,0,1,0,0
170,"deepvoid deathmouse",0,"deepvoid deathmice",0,0,1,0,0
171,"lesser kalong",0,"lesser kalongs",0,0,1,0,0
172,"Redbelly larcener",0,"Redbelly larceners",0,0,1,0,0
173,"anole familiar",0,"anole familiars",0,1,1,0,0
174,"watchwolf",0,"watchwolves",0,0,1,0,0
175,"poisonous flytrap",0,"poisonous flytraps",0,0,1,0,0
176,"foraging doe",0,"foraging does",0,0,1,0,0
177,"leafbleed slug",0,"leafbleed slugs",0,0,1,0,0
178,"leafbleed mite",0,"leafbleed mites",0,0,1,0,0
179,"Shroudbee swarm",0,"Shroudbee swarms",0,0,1,0,0
180,"leafbleed roseling",0,"leafbleed roselings",0,0,1,0,0
181,"carrion chigoe",0,"carrion chigoes",0,0,1,0,0
182,"zombie pikeman",0,"zombie pikemen",0,0,1,0,0
183,"North Shroud lemur",0,"North Shroud lemurs",0,0,1,0,0
184,"South Shroud opo-opo",0,"South Shroud opo-opos",0,0,1,0,0
185,"Janremi Blackheart",0,"Janremi Blackheart",0,0,1,0,1
186,"hedge knight",0,"hedge knights",0,0,1,0,0
187,"marshlight",0,"marshlights",0,0,1,0,0
188,"saprophagous slug",0,"saprophagous slugs",0,0,1,0,0
189,"Ailbert the Lost",0,"Ailbert the Lost",0,0,1,0,1
190,"Ixali scout",0,"Ixali scouts",0,1,1,0,0
191,"dewdrinker ladybug",0,"dewdrinker ladybugs",0,0,1,0,0
192,"Ixali dulltalon",0,"Ixali dulltalons",0,1,1,0,0
193,"Ixali lostwing",0,"Ixali lostwings",0,1,1,0,0
194,"Ixali slowbeak",0,"Ixali slowbeaks",0,1,1,0,0
195,"hoglet",0,"hoglets",0,0,1,0,0
196,"black eft",0,"black efts",0,0,1,0,0
197,"bog yarzon",0,"bog yarzons",0,0,1,0,0
198,"nutbreaker squirrel",0,"nutbreaker squirrels",0,0,1,0,0
199,"stumbling funguar",0,"stumbling funguars",0,0,1,0,0
200,"carrier ladybug",0,"carrier ladybugs",0,0,1,0,0
201,"syrphid cloud",0,"syrphid clouds",0,0,1,0,0
202,"greedy hoglet",0,"greedy hoglets",0,0,1,0,0
203,"leathervine microchu",0,"leathervine microchus",0,0,1,0,0
204,"russet yarzon",0,"russet yarzons",0,0,1,0,0
205,"mottled eft",0,"mottled efts",0,0,1,0,0
206,"anole stalker",0,"anole stalkers",0,1,1,0,0
207,"floating eye",0,"floating eyes",0,0,1,0,0
208,"Ixali lightwing",0,"Ixali lightwings",0,1,1,0,0
209,"Ixali deftalon",0,"Ixali deftalons",0,1,1,0,0
210,"Ixali straightbeak",0,"Ixali straightbeaks",0,1,1,0,0
211,"glowfly",0,"glowflies",0,0,1,0,0
212,"pack wolf",0,"pack wolves",0,0,1,0,0
213,"strangling ivy",0,"strangling ivies",0,0,1,0,0
214,"overgrown ivy",0,"overgrown ivies",0,1,1,0,0
215,"overgrown offering",0,"overgrown offerings",0,1,1,0,0
216,"toxic toad",0,"toxic toads",0,0,1,0,0
217,"laughing toad",0,"laughing toads",0,0,1,0,0
218,"Qiqirn scrambler",0,"Qiqirn scramblers",0,0,1,0,0
219,"Qiqirn beater",0,"Qiqirn beaters",0,0,1,0,0
220,"faerie funguar",0,"faerie funguars",0,0,1,0,0
221,"brood ziz",0,"brood ziz",0,0,1,0,0
222,"molted ziz",0,"molted ziz",0,0,1,0,0
223,"ziz gorlin",0,"ziz gorlins",0,0,1,0,0
224,"ziz",0,"ziz",0,0,1,0,0
225,"goblin hunter",0,"goblin hunters",0,0,1,0,0
226,"river yarzon",0,"river yarzons",0,0,1,0,0
227,"yarzon scavenger",0,"yarzon scavengers",0,0,1,0,0
228,"bark eft",0,"bark efts",0,0,1,0,0
229,"sylvan scream",0,"sylvan screams",0,0,1,0,0
230,"sylvan sough",0,"sylvan soughs",0,0,1,0,0
231,"sylvan groan",0,"sylvan groans",0,0,1,0,0
232,"diseased treant",0,"diseased treants",0,0,1,0,0
233,"old-growth treant",0,"old-growth treants",0,1,1,0,0
234,"smallmouth orobon",0,"smallmouth orobon",0,0,1,0,0
235,"bigmouth orobon",0,"bigmouth orobon",0,0,1,0,0
236,"revenant",0,"revenants",0,0,1,0,0
237,"morbol",0,"morbols",0,0,1,0,0
238,"stroper",0,"stropers",0,0,1,0,0
239,"raptor poacher",0,"raptor poachers",0,0,1,0,0
240,"boar poacher",0,"boar poachers",0,0,1,0,0
241,"wolf poacher",0,"wolf poachers",0,0,1,0,0
242,"ahriman",0,"ahrimans",0,1,1,0,0
243,"iron tortoise",0,"iron tortoises",0,1,1,0,0
244,"giant tortoise",0,"giant tortoises",0,0,1,0,0
245,"Amalj'aa lancer",0,"Amalj'aa lancers",0,1,1,0,0
246,"Amalj'aa impaler",0,"Amalj'aa impalers",0,1,1,0,0
247,"Amalj'aa javelinier",0,"Amalj'aa javeliniers",0,1,1,0,0
248,"Amalj'aa halberdier",0,"Amalj'aa halberdiers",0,1,1,0,0
249,"Amalj'aa archer",0,"Amalj'aa archers",0,1,1,0,0
250,"Amalj'aa hunter",0,"Amalj'aa hunters",0,1,1,0,0
251,"Amalj'aa ranger",0,"Amalj'aa rangers",0,1,1,0,0
252,"Amalj'aa sniper",0,"Amalj'aa snipers",0,1,1,0,0
253,"Amalj'aa pugilist",0,"Amalj'aa pugilists",0,1,1,0,0
254,"Amalj'aa striker",0,"Amalj'aa strikers",0,1,1,0,0
255,"Glassjaw Nazagg Gah",0,"Glassjaw Nazagg Gah",0,0,1,0,1
256,"Amalj'aa bruiser",0,"Amalj'aa bruisers",0,1,1,0,0
257,"Diamondjaw Nezedd Gah",0,"Diamondjaw Nezedd Gah",0,0,1,0,1
258,"Amalj'aa thaumaturge",0,"Amalj'aa thaumaturges",0,1,1,0,0
259,"Amalj'aa seer",0,"Amalj'aa seers",0,1,1,0,0
260,"Amalj'aa divinator",0,"Amalj'aa divinators",0,1,1,0,0
261,"clockwork spider",0,"clockwork spider",0,0,1,0,0
262,"star marmot",0,"star marmots",0,0,1,0,0
263,"dreadwolf",0,"dreadwolves",0,0,1,0,0
264,"sundrake",0,"sundrakes",0,0,1,0,0
265,"sandtoad",0,"sandtoads",0,0,1,0,0
266,"Qiqirn shellsweeper",0,"Qiqirn shellsweepers",0,0,1,0,0
267,"Allagan naga",0,"Allagan naga",0,0,1,0,0
268,"Qiqirn roerunner",0,"Qiqirn roerunners",0,0,1,0,0
269,"magitek vanguard",0,"magitek vanguards",0,0,1,0,0
270,"grenade",0,"grenades",0,0,1,0,0
271,"golden fleece",0,"golden fleeces",0,0,1,0,0
272,"phurble",0,"phurbles",0,0,1,0,0
273,"myotragus billy",0,"myotragus billies",0,0,1,0,0
274,"myotragus nanny",0,"myotragus nannies",0,0,1,1,0
275,"quartz doblyn",0,"quartz doblyns",0,0,1,0,0
276,"rusty coblyn",0,"rusty coblyns",0,0,1,0,0
277,"copper coblyn",0,"copper coblyns",0,0,1,0,0
278,"lead coblyn",0,"lead coblyns",0,0,1,0,0
279,"sun bat",0,"sun bats",0,0,1,0,0
280,"sandstone golem",0,"sandstone golems",0,0,1,0,0
281,"axe beak",0,"axe beaks",0,1,1,0,0
282,"hammer beak",0,"hammer beaks",0,0,1,0,0
283,"goblin mugger",0,"goblin muggers",0,0,1,0,0
284,"yarzon feeder",0,"yarzon feeders",0,0,1,0,0
285,"russet yarzon",0,"russet yarzons",0,0,1,0,0
286,"sabotender",0,"sabotenders",0,0,1,0,0
287,"cactuar",0,"cactuars",0,0,1,0,0
288,"cochineal cactuar",0,"cochineal cactuars",0,0,1,0,0
289,"eft",0,"efts",0,1,1,0,0
290,"sandworm",0,"sandworms",0,0,1,0,0
291,"ouroboros",0,"ouroboros",0,1,1,0,0
292,"antling soldier",0,"antling soldiers",0,1,1,0,0
293,"antling sentry",0,"antling sentries",0,1,1,0,0
294,"antling worker",0,"antling workers",0,1,1,0,0
295,"simurgh",0,"simurghs",0,0,1,0,0
296,"bumble beetle",0,"bumble beetles",0,0,1,0,0
297,"magitek colossus",0,"magitek colossi",0,0,1,0,0
298,"sun midge swarm",0,"sun midge swarms",0,0,1,0,0
299,"nesting buzzard",0,"nesting buzzards",0,0,1,0,0
300,"cove buzzard",0,"cove buzzards",0,0,1,0,0
301,"chasm buzzard",0,"chasm buzzards",0,0,1,0,0
302,"dusty mongrel",0,"dusty mongrels",0,0,1,0,0
303,"sandskin peiste",0,"sandskin peistes",0,0,1,0,0
304,"basilisk",0,"basilisks",0,0,1,0,0
305,"desert peiste",0,"desert peistes",0,0,1,0,0
306,"tuco-tuco",0,"tuco-tucos",0,0,1,0,0
307,"angler",0,"anglers",0,1,1,0,0
308,"orobon",0,"orobon",0,1,1,0,0
309,"bloated bogy",0,"bloated bogies",0,0,1,0,0
310,"Moondrip stonehauler",0,"Moondrip stonehaulers",0,0,1,0,0
311,"Amajina stonehauler",0,"Amajina stonehaulers",0,1,1,0,0
312,"Moondrip blastmaster",0,"Moondrip blastmasters",0,0,1,0,0
313,"Amajina blastmaster",0,"Amajina blastmasters",0,1,1,0,0
314,"Moondrip piledriver",0,"Moondrip piledrivers",0,0,1,0,0
315,"Amajina piledriver",0,"Amajina piledrivers",0,1,1,0,0
316,"bomb",0,"bombs",0,0,1,0,0
317,"spriggan graverobber",0,"spriggan graverobbers",0,0,1,0,0
318,"snapping shrew",0,"snapping shrews",0,0,1,0,0
319,"rotting corpse",0,"rotting corpses",0,0,1,0,0
320,"fallen soldier",0,"fallen soldiers",0,0,1,0,0
321,"fallen pikeman",0,"fallen pikemen",0,0,1,0,0
322,"rotting noble",0,"rotting nobles",0,0,1,0,0
323,"fallen mage",0,"fallen mages",0,0,1,0,0
324,"fallen wizard",0,"fallen wizards",0,0,1,0,0
325,"Deathstroke assassin",0,"Deathstroke assassins",0,0,1,0,0
326,"Quiveron guard",0,"Quiveron guards",0,0,1,0,0
327,"Venomtongue assassin",0,"Venomtongue assassins",0,0,1,0,0
328,"Baron von Quiveron III Esquire",0,"Baron von Quiveron III Esquire",0,0,1,0,1
329,"Straightshot assassin",0,"Straightshot assassins",0,0,1,0,0
330,"Quiveron attendant",0,"Quiveron attendants",0,0,1,0,0
331,"Corpse Brigade knuckledancer",0,"Corpse Brigade knuckledancers",0,0,1,0,0
332,"Corpse Brigade firedancer",0,"Corpse Brigade firedancers",0,0,1,1,0
333,"Corpse Brigade pikedancer",0,"Corpse Brigade pikedancers",0,0,1,0,0
334,"Noble Whoresons smuggler",0,"Noble Whoresons smugglers",0,0,1,0,0
335,"Noble Whoresons ringleader",0,"Noble Whoresons ringleaders",0,0,1,0,0
336,"Noble Whoresons penman",0,"Noble Whoresons penmen",0,0,1,0,0
337,"tempered gladiator",0,"tempered gladiators",0,0,1,0,0
338,"tempered champion",0,"tempered champions",0,0,1,0,0
339,"tempered orator",0,"tempered orators",0,0,1,0,0
340,"archelon",0,"archelons",0,1,1,0,0
341,"apkallu",0,"apkallus",0,1,1,0,0
342,"shallowtail Reaver",0,"shallowtail Reavers",0,0,1,0,0
343,"Aermswys the Stained",0,"Aermswys the Stained",0,0,1,1,1
344,"shallowclaw Reaver",0,"shallowclaw Reavers",0,0,1,0,0
345,"shelfclaw Reaver",0,"shelfclaw Reavers",0,0,1,0,0
346,"shallowscale Reaver",0,"shallowscale Reavers",0,0,1,0,0
347,"shelfscale Reaver",0,"shelfscale Reavers",0,0,1,0,0
348,"shalloweye Reaver",0,"shalloweye Reavers",0,0,1,0,0
349,"rivertoad",0,"rivertoads",0,0,1,0,0
350,"Qiqirn eggdigger",0,"Qiqirn eggdiggers",0,0,1,0,0
351,"Qiqirn gullroaster",0,"Qiqirn gullroasters",0,0,1,0,0
352,"jungle coeurl",0,"jungle coeurls",0,0,1,0,0
353,"goobbue",0,"goobbues",0,0,1,0,0
354,"mossless goobbue",0,"mossless goobbues",0,0,1,0,0
355,"mildewed goobbue",0,"mildewed goobbues",0,0,1,0,0
356,"mossy goobbue",0,"mossy goobbues",0,0,1,0,0
357,"aurochs",0,"aurochs",0,1,1,0,0
358,"wounded aurochs",0,"wounded aurochs",0,0,1,0,0
359,"great buffalo",0,"great buffaloes",0,0,1,0,0
360,"sea wasp",0,"sea wasps",0,0,1,0,0
361,"Bloodshore bell",0,"Bloodshore bells",0,0,1,0,0
362,"drifting aurelia",0,"drifting aureliae",0,0,1,0,0
363,"dusk bat",0,"dusk bats",0,0,1,0,0
364,"cave bat",0,"cave bats",0,0,1,0,0
365,"basalt golem",0,"basalt golems",0,0,1,0,0
366,"giant pelican",0,"giant pelicans",0,0,1,0,0
367,"goblin fisher",0,"goblin fishers",0,0,1,0,0
368,"kobold dustman",0,"kobold dustmen",0,0,1,0,0
369,"kobold pitman",0,"kobold pitmen",0,0,1,0,0
370,"kobold pickman",0,"kobold pickmen",0,0,1,0,0
371,"kobold priest",0,"kobold priests",0,0,1,0,0
372,"kobold supplicant",0,"kobold supplicants",0,0,1,0,0
373,"kobold missionary",0,"kobold missionaries",0,0,1,0,0
374,"kobold deacon",0,"kobold deacons",0,0,1,0,0
375,"kobold bedesman",0,"kobold bedesmen",0,0,1,0,0
376,"kobold sidesman",0,"kobold sidesmen",0,0,1,0,0
377,"kobold roundsman",0,"kobold roundsmen",0,0,1,0,0
378,"kobold potman",0,"kobold potmen",0,0,1,0,0
379,"kobold patrolman",0,"kobold patrolmen",0,0,1,0,0
380,"kobold footman",0,"kobold footmen",0,0,1,0,0
381,"forest yarzon",0,"forest yarzons",0,0,1,0,0
382,"waterskipper",0,"waterskippers",0,0,1,0,0
383,"yarzon bleeder",0,"yarzon bleeders",0,0,1,0,0
384,"shelfclaw Sahagin",0,"shelfclaw Sahagin",0,0,1,0,0
385,"trenchclaw Sahagin",0,"trenchclaw Sahagin",0,0,1,0,0
386,"shelfscale Sahagin",0,"shelfscale Sahagin",0,0,1,0,0
387,"North Tidegate grieve",0,"North Tidegate grieves",0,0,1,0,0
388,"trenchfang Sahagin",0,"trenchfang Sahagin",0,0,1,0,0
389,"shelfspine Sahagin",0,"shelfspine Sahagin",0,0,1,0,0
390,"South Tidegate grieve",0,"South Tidegate grieves",0,0,1,0,0
391,"salamander",0,"salamanders",0,0,1,0,0
392,"lost lamb",0,"lost lambs",0,0,1,0,0
393,"wild dodo",0,"wild dodos",0,0,1,0,0
394,"fat dodo",0,"fat dodos",0,0,1,0,0
395,"bee cloud",0,"bee clouds",0,0,1,0,0
396,"dung midge swarm",0,"dung midge swarms",0,0,1,0,0
397,"condor",0,"condors",0,0,1,0,0
398,"highland condor",0,"highland condors",0,0,1,0,0
399,"wild jackal",0,"wild jackals",0,0,1,0,0
400,"roseling",0,"roselings",0,0,1,0,0
401,"puk hatchling",0,"puk hatchlings",0,0,1,0,0
402,"puk hatchling",0,"puk hatchlings",0,0,1,0,0
403,"hedgemole",0,"hedgemoles",0,0,1,0,0
404,"bogy",0,"bogies",0,0,1,0,0
405,"tiny mandragora",0,"tiny mandragoras",0,0,1,0,0
406,"raincatcher mandragora",0,"raincatcher mandragoras",0,0,1,0,0
407,"ringtail",0,"ringtails",0,0,1,0,0
408,"galago",0,"galagos",0,0,1,0,0
409,"Moraby mole",0,"Moraby moles",0,0,1,0,0
410,"sewer mole",0,"sewer moles",0,0,1,0,0
411,"grass raptor",0,"grass raptors",0,0,1,0,0
412,"velociraptor",0,"velociraptors",0,0,1,0,0
413,"Mamool Ja executioner",0,"Mamool Ja executioners",0,0,1,0,0
414,"Mamool Ja breeder",0,"Mamool Ja breeders",0,0,1,0,0
415,"Mamool Ja sophist",0,"Mamool Ja sophists",0,0,1,0,0
416,"Mamool Ja infiltrator",0,"Mamool Ja infiltrators",0,0,1,0,0
417,"wharf rat",0,"wharf rats",0,0,1,0,0
418,"grounded raider",0,"grounded raiders",0,0,1,0,0
419,"Captain Petyr Pigeontoe",0,"Captain Petyr Pigeontoe",0,0,1,0,1
420,"Rhotano buccaneer",0,"Rhotano buccaneers",0,0,1,0,0
421,"grounded pirate",0,"grounded pirates",0,0,1,0,0
422,"Lady Amandine",0,"Lady Amandine",0,0,1,1,1
423,"manor claviger",0,"manor clavigers",0,0,1,1,0
424,"lady's handmaiden",0,"lady's handmaidens",0,0,1,1,0
425,"lady's candle",0,"lady's candles",0,0,1,0,0
426,"manor jester",0,"manor jesters",0,0,1,0,0
427,"manor steward",0,"manor stewards",0,0,1,0,0
428,"manor sentry",0,"manor sentries",0,0,1,0,0
429,"manor chef",0,"manor chefs",0,0,1,1,0
430,"attic bat",0,"attic bats",0,1,1,0,0
431,"attack hound",0,"attack hounds",0,1,1,0,0
432,"carpet stain",0,"carpet stains",0,0,1,0,0
433,"divan mold",0,"divan molds",0,0,1,0,0
434,"manor servitor",0,"manor servitors",0,0,1,0,0
435,"corpsefly",0,"corpseflies",0,0,1,0,0
436,"Ixali windtalon",0,"Ixali windtalons",0,1,1,0,0
437,"fleshy pod",0,"fleshy pods",0,0,1,0,0
438,"prisoner's delight",0,"prisoner's delights",0,0,1,0,0
439,"sticky web",0,"sticky web",0,0,1,0,0
440,"Graffias's tail",0,"Graffias's tail",0,0,1,0,0
441,"warden's whip",0,"warden's whips",0,0,1,0,0
442,"Coeurl o' Nine Tails",0,"Coeurl o' Nine Tails",0,0,1,0,0
443,"comesmite",0,"comesmites",0,0,1,0,0
444,"Graffias",0,"Graffias",0,0,1,1,1
445,"stagnant water sprite",0,"stagnant water sprites",0,0,1,1,0
446,"Asipatra",0,"Asipatra",0,0,1,0,1
447,"Matagaigai",0,"Matagaigai",0,0,1,0,1
448,"Lou Carcolh",0,"Lou Carcolh",0,0,1,0,1
449,"Jackanapes",0,"Jackanapes",0,0,1,0,0
450,"Spenser of the Bottomless Cup",0,"Spenser of the Bottomless Cup",0,0,1,0,1
451,"Yabi Two-tails",0,"Yabi Two-tails",0,0,1,1,1
452,"Curupira",0,"Curupira",0,0,1,0,1
453,"Wood Wailer sentry",0,"Wood Wailer sentries",0,0,1,0,0
454,"disorderly adventurer",0,"disorderly adventurers",0,0,1,0,0
455,"void soulcounter",0,"void soulcounters",0,0,1,0,0
456,"inconspicuous imp",0,"inconspicuous imps",0,1,1,0,0
457,"unbalanced bandit",0,"unbalanced bandits",0,1,1,0,0
458,"foraging doe",0,"foraging does",0,0,1,1,0
459,"vile gnat",0,"vile gnats",0,0,1,0,0
460,"foraging stag",0,"foraging stags",0,0,1,0,0
461,"banemite",0,"banemites",0,0,1,0,0
462,"snapscales",0,"snapscales",0,0,1,0,0
463,"slithertwine",0,"slithertwines",0,0,1,0,0
464,"goblin outlaw",0,"goblin outlaws",0,0,1,0,0
465,"Stikflix Grumblytoss",0,"Stikflix Grumblytoss",0,0,1,0,1
466,"domesticated banemite",0,"domesticated banemites",0,0,1,0,0
467,"fachan",0,"fachans",0,0,1,0,0
468,"pack ziz",0,"pack ziz",0,0,1,0,0
469,"milkroot mandragora",0,"milkroot mandragoras",0,0,1,0,0
470,"Briaxio of the Well",0,"Briaxio of the Well",0,0,1,0,1
471,"angry sow",0,"angry sows",0,1,1,1,0
472,"rotting sentinel",0,"rotting sentinels",0,0,1,0,0
473,"mischief-maker imp",0,"mischief-maker imps",0,0,1,0,0
474,"seven-year gnat",0,"seven-year gnats",0,0,1,0,0
475,"alpha stag",0,"alpha stags",0,1,1,0,0
476,"wanted goblin",0,"wanted goblins",0,0,1,0,0
477,"lush morbol",0,"lush morbols",0,0,1,0,0
478,"Kupni Kapp",0,"Kupni Kapp",0,0,1,1,1
479,"Guttrix Sliverpicks",0,"Guttrix Sliverpicks",0,0,1,0,1
480,"figgy pudding",0,"figgy puddings",0,0,1,0,0
481,"greatwing ked",0,"greatwing keds",0,0,1,0,0
482,"nutcracker squirrel",0,"nutcracker squirrels",0,0,1,0,0
483,"lordless cutpurse",0,"lordless cutpurses",0,0,1,0,0
484,"redcap",0,"redcaps",0,0,1,0,0
485,"bark weevil",0,"bark weevils",0,0,1,0,0
486,"stinging syrphid cloud",0,"stinging syrphid clouds",0,0,1,0,0
487,"suckling hoglet",0,"suckling hoglets",0,0,1,0,0
488,"lordless footpad",0,"lordless footpads",0,0,1,0,0
489,"yarzon invader",0,"yarzon invaders",0,0,1,0,0
490,"midge cloud",0,"midge clouds",0,0,1,0,0
491,"wandering wisp",0,"wandering wisps",0,0,1,0,0
492,"trickster imp",0,"trickster imps",0,0,1,0,0
493,"zombie Wailer",0,"zombie Wailers",0,0,1,0,0
494,"wight Wailer",0,"wight Wailers",0,0,1,0,0
495,"leafbleed diremite",0,"leafbleed diremites",0,0,1,0,0
496,"leafbleed banemite",0,"leafbleed banemites",0,0,1,0,0
497,"leafbleed ochu",0,"leafbleed ochus",0,0,1,0,0
498,"Zezeroon Stickyfingers",0,"Zezeroon Stickyfingers",0,0,1,0,1
499,"lunging lemur",0,"lunging lemurs",0,0,1,0,0
500,"trancetoad",0,"trancetoads",0,0,1,0,0
501,"despicable devilet",0,"despicable devilets",0,0,1,0,0
502,"greedy hog",0,"greedy hogs",0,0,1,0,0
503,"plump orobon",0,"plump orobon",0,0,1,0,0
504,"loam bogy",0,"loam bogies",0,0,1,0,0
505,"leafbleed morbol",0,"leafbleed morbols",0,0,1,0,0
506,"spawning adamantoise",0,"spawning adamantoises",0,0,1,1,0
507,"orphaned sylph",0,"orphaned sylphs",0,1,1,0,0
508,"angered elm",0,"angered elms",0,1,1,0,0
509,"thickfur doe",0,"thickfur does",0,0,1,0,0
510,"imperial assault craft",0,"imperial assault crafts",0,1,1,0,0
511,"barricade",0,"barricades",0,0,1,0,0
512,"Alux",0,"Alux",0,0,1,0,1
513,"Prince of Pestilence",0,"Prince of Pestilence",0,0,1,1,0
514,"Sirocco",0,"Sirocco",0,0,1,0,1
515,"Coeurlclaw King",0,"Coeurlclaw King",0,0,1,1,0
516,"Dschubba",0,"Dschubba",0,0,1,0,1
517,"Miraudont the Madder",0,"Miraudont the Madder",0,0,1,1,1
518,"serpent recruit",0,"serpent recruits",0,0,1,0,0
519,"Greatloam farmer",0,"Greatloam farmers",0,0,1,0,0
520,"crestfallen merchant",0,"crestfallen merchants",0,0,1,0,0
521,"guild-issue supplies",0,"bundles of guild-issue supplies",0,0,1,0,0
522,"Mun-Tuy sack",0,"Mun-Tuy sacks",0,0,1,0,0
523,"hive gate",0,"hive gates",0,0,1,0,0
524,"bothered beekeeper",0,"bothered beekeepers",0,0,1,0,0
525,"befuddled beekeeper",0,"befuddled beekeepers",0,0,1,0,0
526,"Wood Wailer lance",0,"Wood Wailer lances",0,0,1,0,0
527,"local hunter",0,"local hunters",0,0,1,0,0
528,"North Shroud opo-opo",0,"North Shroud opo-opos",0,0,1,0,0
529,"abused adventurer",0,"abused adventurers",0,1,1,0,0
530,"au courant adventurer",0,"au courant adventurers",0,1,1,0,0
531,"Little Solace sylph",0,"Little Solace sylphs",0,0,1,0,0
532,"Coeurlclaw concubine",0,"Coeurlclaw concubines",0,0,1,0,0
533,"shifty-eyed prospector",0,"shifty-eyed prospectors",0,0,1,0,0
534,"frightened stag",0,"frightened stags",0,0,1,0,0
535,"Jackanapes's bean-bearer",0,"Jackanapes's bean-bearers",0,0,1,0,1
536,"sylph pillow",0,"sylph pillows",0,0,1,0,0
537,"首",0,"",0,0,1,0,0
538,"tempered sylph",0,"tempered sylphs",0,0,1,0,0
539,"lunar golem",0,"lunar golems",0,0,1,0,0
540,"Redbelly conspirator",0,"Redbelly conspirators",0,0,1,0,0
541,"striking dummy",0,"striking dummies",0,0,1,0,0
542,"charging hog",0,"charging hogs",0,0,1,0,0
543,"enchanted funguar",0,"enchanted funguars",0,1,1,0,0
544,"longclaw galago",0,"longclaw galagos",0,0,1,0,0
545,"honeydipper imp",0,"honeydipper imps",0,0,1,0,0
546,"3rd Cohort bestiarius",0,"3rd Cohort bestiarii",0,0,1,0,0
547,"Redbelly gatewatch",0,"Redbelly gatewatches",0,0,1,0,0
548,"Kottos",0,"Kottos",0,0,1,0,1
549,"Redbelly navvy",0,"Redbelly navvies",0,0,1,0,0
550,"Coeurlclaw trapper",0,"Coeurlclaw trappers",0,0,1,0,0
551,"goblin robber",0,"goblin robbers",0,0,1,0,0
552,"stone golem",0,"stone golems",0,0,1,0,0
553,"honeybee swarm",0,"honeybee swarms",0,0,1,0,0
554,"Ichorous Ire",0,"Ichorous Ire",0,0,1,0,1
555,"blasting cap",0,"blasting caps",0,0,1,0,0
556,"Wood Wailer captain",0,"Wood Wailer captains",0,0,1,0,0
557,"the Black Eft",0,"the Black Efts",0,0,1,0,1
558,"Nunyunuwi",0,"Nunyunuwi",0,0,1,0,1
559,"shelfeye Reaver",0,"shelfeye Reavers",0,0,1,0,0
560,"snipper",0,"snippers",0,0,1,0,0
561,"megalocrab",0,"megalocrabs",0,0,1,0,0
562,"kobold quarryman",0,"kobold quarrymen",0,0,1,0,0
563,"aurelia",0,"aureliae",0,1,1,0,0
564,"potter wasp swarm",0,"potter wasp swarms",0,0,1,0,0
565,"trenchtooth Sahagin",0,"trenchtooth Sahagin",0,0,1,0,0
566,"midland condor",0,"midland condors",0,0,1,0,0
567,"Sylphlands condor",0,"Sylphlands condors",0,0,1,0,0
568,"Maisenta Hawke",0,"Maisenta Hawke",0,0,1,0,1
569,"Hastridie Hawke",0,"Hastridie Hawke",0,0,1,0,1
570,"Qiqirn beachcomber",0,"Qiqirn beachcombers",0,0,1,0,0
571,"Thavnairian miteling",0,"Thavnairian mitelings",0,0,1,0,0
572,"Thavnairian mite",0,"Thavnairian mites",0,0,1,0,0
573,"sweet trap",0,"sweet traps",0,0,1,0,0
574,"snipping shrew",0,"snipping shrews",0,0,1,0,0
575,"silver coblyn",0,"silver coblyns",0,0,1,0,0
576,"spriggan chumbler",0,"spriggan chumblers",0,0,1,0,0
577,"untamed shrew",0,"untamed shrews",0,1,1,0,0
578,"",0,"",0,0,0,0,0
579,"Redbelly lookout",0,"Redbelly lookouts",0,0,1,0,0
580,"Redbelly sharpeye",0,"Redbelly sharpeyes",0,0,1,0,0
581,"Keroucene the Betrayer",0,"Keroucene the Betrayer",0,0,1,0,1
582,"Keroucene's lackey",0,"Keroucene's lackeys",0,0,1,0,0
583,"sylvan budnapper",0,"sylvan budnappers",0,0,1,0,0
584,"3rd Cohort bestiarius",0,"3rd Cohort bestiarii",0,0,1,0,0
585,"Coeurlclaw catspaw",0,"Coeurlclaw catspaws",0,0,1,0,0
586,"3rd Cohort bestiarius",0,"3rd Cohort bestiarii",0,0,1,0,0
587,"buzzing djigga",0,"buzzing djiggas",0,0,1,0,0
588,"Mun-Tuy lemur",0,"Mun-Tuy lemurs",0,0,1,0,0
589,"dwarf diremite",0,"dwarf diremites",0,0,1,0,0
590,"northern vulture",0,"northern vultures",0,0,1,0,0
591,"glowering glowfly",0,"glowering glowflies",0,0,1,0,0
592,"lumber toad",0,"lumber toads",0,0,1,0,0
593,"honeybee swarm",0,"honeybee swarms",0,0,1,0,0
594,"tainted wind sprite",0,"tainted wind sprites",0,0,1,0,0
595,"ocher jelly",0,"ocher jellies",0,1,1,0,0
596,"Akoman",0,"Akoman",0,1,1,0,1
597,"Nezul Cattlan the Violator",0,"Nezul Cattlan the Violator",0,0,1,0,1
598,"Leih Aliapoh",0,"Leih Aliapoh",0,0,1,1,1
599,"Silvairre the Virtuous",0,"Silvairre the Virtuous",0,0,1,0,1
600,"Pawah Mujuuk the Ghost",0,"Pawah Mujuuk the Ghost",0,0,1,1,1
601,"Coeurlclaw falconer",0,"Coeurlclaw falconers",0,0,1,0,0
602,"hunting falcon",0,"hunting falcons",0,0,1,0,0
603,"riverbank yarzon",0,"riverbank yarzons",0,0,1,0,0
604,"Spirithold glowfly",0,"Spirithold glowflies",0,0,1,0,0
605,"young anole",0,"young anoles",0,0,1,0,0
606,"lockbreaker imp",0,"lockbreaker imps",0,0,1,0,0
607,"angered elm",0,"angered elms",0,1,1,0,0
608,"alpha wolf",0,"alpha wolves",0,1,1,0,0
609,"soft-spoken lancer",0,"soft-spoken lancers",0,0,1,0,0
610,"grizzled lancer",0,"grizzled lancers",0,0,1,0,0
611,"sharp-eyed lancer",0,"sharp-eyed lancers",0,0,1,0,0
612,"blood bat",0,"blood bats",0,0,1,0,0
613,"red balloon",0,"red balloons",0,0,1,0,0
614,"Foulques of the Mist",0,"Foulques of the Mist",0,0,1,0,1
615,"wild-eyed treant",0,"wild-eyed treants",0,0,1,0,0
616,"clay golem",0,"clay golems",0,0,1,0,0
617,"masked mage",0,"masked mages",0,0,1,0,0
618,"Drooling Daisy",0,"Drooling Daisy",0,0,1,1,1
619,"Yda",0,"Yda",0,0,1,1,1
620,"Papalymo",0,"Papalymo",0,0,1,0,1
621,"Gods' Quiver bow",0,"Gods' Quiver bows",0,0,1,0,0
622,"Wood Wailer lance",0,"Wood Wailer lances",0,0,1,0,0
623,"lumber toad",0,"lumber toads",0,0,1,0,0
624,"",0,"",0,0,0,0,0
625,"servitor's lantern",0,"servitor's lanterns",0,0,1,0,0
626,"Foulques",0,"Foulques",0,0,1,0,1
627,"Thibain the Blunt",0,"Thibain the Blunt",0,0,1,0,1
628,"Sylphie Sweetwind",0,"Sylphie Sweetwind",0,0,1,1,1
629,"Copperbell coblyn",0,"Copperbell coblyns",0,0,1,0,0
630,"Mark XLIII anti-aircraft cannon",0,"Mark XLIII anti-aircraft cannons",0,0,1,0,0
631,"spriggan copper copper",0,"spriggan copper coppers",0,0,1,0,0
632,"huge hornet",0,"huge hornets",0,0,1,0,0
633,"manor maidservant",0,"manor maidservants",0,0,1,1,0
634,"mirrorknight",0,"mirrorknights",0,0,1,0,0
635,"scaphite",0,"scaphites",0,0,1,0,0
636,"thickshell",0,"thickshells",0,0,1,0,0
637,"dragonfly",0,"dragonflies",0,0,1,0,0
638,"stoneshell",0,"stoneshells",0,0,1,0,0
639,"colibri",0,"colibri",0,0,1,0,0
640,"pugil",0,"pugils",0,0,1,0,0
641,"wespe",0,"wespes",0,0,1,0,0
642,"mud pugil",0,"mud pugils",0,0,1,0,0
643,"uragnite",0,"uragnites",0,1,1,0,0
644,"killer mantis",0,"killer mantises",0,0,1,0,0
645,"mudpuppy",0,"mudpuppies",0,0,1,0,0
646,"gigas bonze",0,"gigas bonzes",0,0,1,0,0
647,"gigas shramana",0,"gigas shramanas",0,0,1,0,0
648,"gigas sozu",0,"gigas sozu",0,0,1,0,0
649,"gigas bhikkhu",0,"gigas bhikkhus",0,0,1,0,0
650,"daring harrier",0,"daring harriers",0,0,1,0,0
651,"raging harrier",0,"raging harriers",0,0,1,0,0
652,"hexing harrier",0,"hexing harriers",0,0,1,0,0
653,"snow wolf",0,"snow wolves",0,0,1,0,0
654,"bull behemoth",0,"bull behemoths",0,0,1,0,0
655,"behemoth",0,"behemoths",0,0,1,0,0
656,"wyvern",0,"wyverns",0,0,1,0,0
657,"thrustaevis",0,"thrustaevis",0,0,1,0,0
658,"vodoriga",0,"vodorigas",0,0,1,0,0
659,"snow wolf pup",0,"snow wolf pups",0,0,1,0,0
660,"Ixali wildtalon",0,"Ixali wildtalons",0,1,1,0,0
661,"Ixali stillbeak",0,"Ixali stillbeaks",0,1,1,0,0
662,"Ixali boundwing",0,"Ixali boundwings",0,1,1,0,0
663,"Ixali fearcaller",0,"Ixali fearcallers",0,1,1,0,0
664,"",0,"",0,0,0,0,0
665,"",0,"",0,0,0,0,0
666,"",0,"",0,0,0,0,0
667,"",0,"",0,0,0,0,0
668,"Aldis",0,"Aldis",0,0,1,0,1
669,"",0,"",0,0,0,0,0
670,"",0,"",0,0,0,0,0
671,"",0,"",0,0,0,0,0
672,"",0,"",0,0,0,0,0
673,"",0,"",0,0,0,0,0
674,"menacing mercenary",0,"menacing mercenaries",0,0,1,0,0
675,"mindful mercenary",0,"mindful mercenaries",0,0,1,0,0
676,"Mamool Ja mercenary",0,"Mamool Ja mercenaries",0,0,1,0,0
677,"Mamool Ja mercenary",0,"Mamool Ja mercenaries",0,0,1,0,0
678,"rat king",0,"rat kings",0,0,1,0,0
679,"ラベル削除予定",0,"",0,0,1,0,0
680,"bigger chigoe",0,"bigger chigoes",0,0,1,0,0
681,"even bigger chigoe",0,"even bigger chigoes",0,1,1,0,0
682,"muttonmaw ogre",0,"muttonmaw ogres",0,0,1,0,0
683,"ラベル削除予定",0,"",0,0,1,0,0
684,"cork bulb",0,"cork bulbs",0,0,1,0,0
685,"Dravanian outwatch",0,"Dravanian outwatches",0,0,1,0,0
686,"drive cylinder",0,"drive cylinders",0,0,1,0,0
687,"hoary goobbue",0,"hoary goobbues",0,0,1,0,0
688,"gurangatch",0,"gurangatch",0,0,1,0,0
689,"Mylla Swordsong",0,"Mylla Swordsong",0,0,1,1,1
690,"Aldis, Sword of Nald",0,"Aldis, Sword of Nald",0,0,1,0,1
691,"rimy biast",0,"rimy biasts",0,0,1,0,0
692,"brutish imp",0,"brutish imps",0,0,1,0,0
693,"gruesome gargoyle",0,"gruesome gargoyles",0,0,1,0,0
694,"gnarled gargoyle",0,"gnarled gargoyles",0,0,1,0,0
695,"Ascian conjurer",0,"Ascian conjurers",0,1,1,0,0
696,"hornet cloud",0,"hornet clouds",0,0,1,0,0
697,"Ascian thaumaturge",0,"Ascian thaumaturges",0,1,1,0,0
698,"Zana Lyehga",0,"Zana Lyehga",0,0,1,1,1
699,"malevolent fungus",0,"malevolent fungi",0,0,1,0,0
700,"malevolent squirrel",0,"malevolent squirrels",0,0,1,0,0
701,"malevolent galago",0,"malevolent galagos",0,0,1,0,0
702,"malevolent ked",0,"malevolent keds",0,0,1,0,0
703,"malevolent ochu",0,"malevolent ochus",0,0,1,0,0
704,"malevolent seedling",0,"malevolent seedlings",0,0,1,0,0
705,"malevolent stroper",0,"malevolent stropers",0,0,1,0,0
706,"bone dragon",0,"bone dragons",0,0,1,0,0
707,"platinal",0,"platinals",0,0,1,0,0
708,"Gotwin Halehex",0,"Gotwin Halehex",0,0,1,0,1
709,"void slave",0,"void slaves",0,0,1,0,0
710,"Thanatos",0,"Thanatos",0,0,1,0,1
711,"nemesis",0,"nemeses",0,0,1,0,0
712,"magic pot",0,"magic pots",0,0,1,0,0
713,"Thancred",0,"Thancred",0,0,1,0,1
714,"Owyne",0,"Owyne",0,0,1,0,1
715,"Papashan",0,"Papashan",0,0,1,0,1
716,"spriggan sifter",0,"spriggan sifters",0,0,1,0,0
717,"Garibald",0,"Garibald",0,0,1,0,1
718,"Whiskerwall Kupdi Koop",0,"Whiskerwall Kupdi Koop",0,0,1,0,1
719,"Ruffletuft Kupta Kapa",0,"Ruffletuft Kupta Kapa",0,0,1,0,1
720,"Furryfoot Kupli Kipp",0,"Furryfoot Kupli Kipp",0,0,1,0,1
721,"Woolywart Kupqu Kogi",0,"Woolywart Kupqu Kogi",0,0,1,0,1
722,"Pukla Puki the Pomburner",0,"Pukla Puki the Pomburner",0,0,1,0,1
723,"Puksi Piko the Shaggysong",0,"Puksi Piko the Shaggysong",0,0,1,0,1
724,"Pukna Pako the Tailturner",0,"Pukna Pako the Tailturner",0,0,1,0,1
725,"Good King Moggle Mog XII",0,"Good King Moggle Mog XII",0,0,1,0,1
726,"masked mage",0,"masked mages",0,0,1,0,0
727,"king behemoth",0,"king behemoths",0,0,1,0,0
728,"puroboros",0,"puroboros",0,0,1,0,0
729,"Y'shtola",0,"Y'shtola",0,0,1,1,1
730,"iron giant",0,"iron giants",0,1,1,0,0
731,"comet",0,"comets",0,0,1,0,0
732,"Phlegethon",0,"Phlegethon",0,0,1,0,1
733,"iron claws",0,"iron claws",0,1,1,0,0
734,"Eugennoix",0,"Eugennoix",0,0,1,0,1
735,"Ryssfloh",0,"Ryssfloh",0,0,1,0,1
736,"fire homunculus",0,"fire homunculi",0,0,1,0,0
737,"ice homunculus",0,"ice homunculi",0,1,1,0,0
738,"wind homunculus",0,"wind homunculi",0,0,1,0,0
739,"earth homunculus",0,"earth homunculi",0,1,1,0,0
740,"lightning homunculus",0,"lightning homunculi",0,0,1,0,0
741,"water homunculus",0,"water homunculi",0,0,1,0,0
742,"Lewein",0,"Lewein",0,0,1,0,1
743,"Miraudont",0,"Miraudont",0,0,1,1,1
744,"Ixali chieftain",0,"Ixali chieftains",0,1,1,0,0
745,"",0,"",0,0,0,0,0
746,"",0,"",0,0,0,0,0
747,"",0,"",0,0,0,0,0
748,"",0,"",0,0,0,0,0
749,"",0,"",0,0,0,0,0
750,"???",0,"???",0,0,1,0,1
751,"Hamon Holyfist",0,"Hamon Holyfist",0,0,1,0,1
752,"Kuplu Kopo",0,"Kuplu Kopo",0,0,1,1,1
753,"",0,"",0,0,0,0,0
754,"",0,"",0,0,0,0,0
755,"",0,"",0,0,0,0,0
756,"Temperance of the Alacran",0,"Temperance of the Alacran",0,0,1,0,0
757,"Kindness of the Alacran",0,"Kindness of the Alacran",0,0,1,0,0
758,"Cocobusi the Cross",0,"Cocobusi the Cross",0,0,1,0,1
759,"",0,"",0,0,0,0,0
760,"",0,"",0,0,0,0,0
761,"Fufulupa",0,"Fufulupa",0,0,1,0,1
762,"Baldewyn",0,"Baldewyn",0,0,1,0,1
763,"Ser Eolande Quiveron",0,"Ser Eolande Quiveron",0,0,1,0,1
764,"",0,"",0,0,0,0,0
765,"soulsucker imp",0,"soulsucker imps",0,0,1,0,0
766,"seemingly ordinary imp",0,"seemingly ordinary imps",0,0,1,0,0
767,"stalwart swordsman",0,"stalwart swordsmen",0,0,1,0,0
768,"Galfrid the Gallant",0,"Galfrid the Gallant",0,1,1,0,1
769,"",0,"",0,0,0,0,0
770,"",0,"",0,0,0,0,0
771,"",0,"",0,0,0,0,0
772,"",0,"",0,0,0,0,0
773,"",0,"",0,0,0,0,0
774,"",0,"",0,0,0,0,0
775,"",0,"",0,0,0,0,0
776,"軍曹",0,"",0,0,1,0,0
777,"二等兵A",0,"",0,0,1,0,0
778,"二等兵B",0,"",0,0,1,0,0
779,"二等兵C",0,"",0,0,1,0,0
780,"chocobo",0,"chocobos",0,0,1,0,0
781,"void jumper",0,"void jumpers",0,0,1,0,0
782,"void herald",0,"void heralds",0,0,1,0,0
783,"void dross",0,"void dross",0,0,1,0,0
784,"feral croc",0,"feral crocs",0,0,1,0,0
785,"giant logger",0,"giant loggers",0,0,1,0,0
786,"giant lugger",0,"giant luggers",0,0,1,0,0
787,"giant reader",0,"giant readers",0,0,1,0,0
788,"biast",0,"biasts",0,0,1,0,0
789,"hippogryph",0,"hippogryphs",0,0,1,0,0
790,"hippocerf",0,"hippocerfs",0,0,1,0,0
791,"snowstorm yeti",0,"snowstorm yetis",0,0,1,0,0
792,"yeti",0,"yetis",0,0,1,0,0
793,"hapalit",0,"hapalits",0,0,1,0,0
794,"redhorn ogre",0,"redhorn ogres",0,0,1,0,0
795,"ornery karakul",0,"ornery karakuls",0,1,1,0,0
796,"wold wolf",0,"wold wolves",0,0,1,0,0
797,"キラーマシン",0,"",0,0,1,0,0
798,"",0,"",0,0,0,0,0
799,"",0,"",0,0,0,0,0
800,"",0,"",0,0,0,0,0
801,"帝国兵隊長",0,"",0,0,1,0,0
802,"",0,"",0,0,0,0,0
803,"",0,"",0,0,0,0,0
804,"",0,"",0,0,0,0,0
805,"",0,"",0,0,0,0,0
806,"",0,"",0,0,0,0,0
807,"",0,"",0,0,0,0,0
808,"",0,"",0,0,0,0,0
809,"",0,"",0,0,0,0,0
810,"",0,"",0,0,0,0,0
811,"Ahtzapfyn the Absorbed",0,"Ahtzapfyn the Absorbed",0,0,1,0,1
812,"silent lackey",0,"silent lackeys",0,0,1,0,0
813,"Mamool Ja mercenary",0,"Mamool Ja mercenaries",0,0,1,0,0
814,"Mamool Ja mercenary head",0,"Mamool Ja mercenary heads",0,0,1,0,0
815,"Storm Captain Ghimthota Sthalmoenwyn",0,"Storm Captain Ghimthota Sthalmoenwyn",0,0,1,0,1
816,"Storm Private C'nangho Enah",0,"Storm Private C'nangho Enah",0,0,1,1,1
817,"silent lackey",0,"silent lackeys",0,0,1,0,0
818,"Mamool Ja mercenary",0,"Mamool Ja mercenaries",0,0,1,0,0
819,"",0,"",0,0,0,0,0
820,"valefor",0,"valefors",0,0,1,0,0
821,"valar",0,"valars",0,0,1,0,0
822,"greater demon",0,"greater demons",0,0,1,0,0
823,"Chuchuto Brightstar",0,"Chuchuto Brightstar",0,0,1,1,1
824,"Solkwyb the Enlightened",0,"Solkwyb the Enlightened",0,0,1,1,1
825,"molting megalocrab",0,"molting megalocrabs",0,0,1,0,0
826,"Broenbhar Rocksplitter",0,"Broenbhar Rocksplitter",0,0,1,0,1
827,"island megalocrab",0,"island megalocrabs",0,1,1,0,0
828,"Rurukuta Tornstar",0,"Rurukuta Tornstar",0,0,1,0,1
829,"Alacran bloodhound",0,"Alacran bloodhounds",0,1,1,0,0
830,"Alacran war hound",0,"Alacran war hounds",0,1,1,0,0
831,"bastet",0,"bastets",0,0,1,0,0
832,"",0,"",0,0,0,0,0
833,"pack jackal",0,"pack jackals",0,0,1,0,0
834,"scarred jackal",0,"scarred jackals",0,0,1,0,0
835,"pack jackal",0,"pack jackals",0,0,1,0,0
836,"Glazrael Saltwind",0,"Glazrael Saltwind",0,0,1,0,1
837,"familiar marauder",0,"familiar marauders",0,0,1,0,0
838,"able-bodied ambusher",0,"able-bodied ambushers",0,1,1,0,0
839,"nameless attacker",0,"nameless attackers",0,0,1,0,0
840,"Baron von Quiveron III Esquire",0,"Baron von Quiveron III Esquire",0,0,1,0,1
841,"Mormo",0,"Mormo",0,0,1,1,1
842,"Cocobygo the Craven",0,"Cocobygo the Craven",0,0,1,0,1
843,"Cocobani the Cold",0,"Cocobani the Cold",0,0,1,0,1
844,"Cocobezi the Contemplative",0,"Cocobezi the Contemplative",0,0,1,0,1
845,"Cocoboha the Curt",0,"Cocoboha the Curt",0,0,1,0,1
846,"",0,"",0,0,0,0,0
847,"",0,"",0,0,0,0,0
848,"",0,"",0,0,0,0,0
849,"Menuis",0,"Menuis",0,0,1,0,1
850,"Shearing Sheridan",0,"Shearing Sheridan",0,0,1,0,1
851,"Chupacabra",0,"Chupacabras",0,0,1,0,0
852,"Cuachac",0,"Cuachac",0,0,1,0,1
853,"Ahctstymm Shadowlurker",0,"Ahctstymm Shadowlurker",0,0,1,0,1
854,"Anselm Larkscall",0,"Anselm Larkscall",0,0,1,0,1
855,"Fiebras the Dull",0,"Fiebras the Dull",0,0,1,0,1
856,"426th Order Pickman Bu Ga",0,"426th Order Pickman Bu Ga",0,0,1,0,1
857,"Padfoot",0,"Padfoot",0,0,1,0,1
858,"Kokoroon Quickfingers",0,"Kokoroon Quickfingers",0,0,1,0,1
859,"Gluttonous Gertrude",0,"Gluttonous Gertrude",0,0,1,1,1
860,"Old Six-arms",0,"Old Six-arms",0,0,1,0,1
861,"Barometz",0,"Barometz",0,0,1,0,1
862,"Tryptix Stumblemox",0,"Tryptix Stumblemox",0,0,1,0,1
863,"Brollachan",0,"Brollachan",0,0,1,0,1
864,"Aipaloovik",0,"Aipaloovik",0,0,1,0,1
865,"doomed gigantoad",0,"doomed gigantoads",0,0,1,0,0
866,"Cactuar Jack",0,"Cactuar Jack",0,0,1,0,1
867,"Bubbly Bernie",0,"Bubbly Bernie",0,0,1,0,1
868,"Crier Briareos",0,"Crier Briareos",0,0,1,0,1
869,"Daddy Longlegs",0,"Daddy Longlegs",0,0,1,0,1
870,"Grishild the Ungood",0,"Grishild the Ungood",0,0,1,0,1
871,"Guguroon Wetnose",0,"Guguroon Wetnose",0,0,1,0,1
872,"Babaroon Halfshell",0,"Babaroon Halfshell",0,0,1,0,1
873,"Vodyanoi",0,"Vodyanoi",0,0,1,0,1
874,"Spitfire",0,"Spitfire",0,0,1,0,1
875,"nest commander",0,"nest commanders",0,0,1,0,0
876,"Glassjaw Nazagg Gah",0,"Glassjaw Nazagg Gah",0,0,1,0,1
877,"Undertaker",0,"Undertaker",0,0,1,0,0
878,"Gossamer",0,"Gossamer",0,0,1,0,1
879,"elder longhorn",0,"elder longhorns",0,1,1,0,0
880,"longhorn billygoat",0,"longhorn billygoats",0,0,1,0,0
881,"longhorn nannygoat",0,"longhorn nannygoats",0,0,1,0,0
882,"Gisfrid the Grinder",0,"Gisfrid the Grinder",0,0,1,0,1
883,"Milleuda the Slitter",0,"Milleuda the Slitter",0,0,1,1,1
884,"Blackbile Maladd Chah",0,"Blackbile Maladd Chah",0,0,1,0,1
885,"Ulhuadshi",0,"Ulhuadshi",0,0,1,0,1
886,"Simurgh",0,"Simurgh",0,0,1,0,1
887,"Odin",0,"Odin",0,0,1,0,1
888,"U'lamana",0,"U'lamana",0,0,1,1,1
889,"ranger of the Drake",0,"rangers of the Drake",0,0,1,1,0
890,"healer of the Drake",0,"healers of the Drake",0,0,1,1,0
891,"cute courtesan",0,"cute courtesans",0,0,1,1,0
892,"Maelstrom recruit",0,"Maelstrom recruits",0,0,1,0,0
893,"king wespe",0,"king wespes",0,0,1,0,0
894,"rutting buffalo",0,"rutting buffaloes",0,0,1,0,0
895,"cane toad",0,"cane toads",0,0,1,0,0
896,"dune bogy",0,"dune bogies",0,0,1,0,0
897,"spawning orobon",0,"spawning orobon",0,0,1,0,0
898,"sledgehammer beak",0,"sledgehammer beaks",0,0,1,0,0
899,"marble guardian",0,"marble guardians",0,0,1,0,0
900,"Amalj'aa supply crate",0,"Amalj'aa supply crates",0,1,1,0,0
901,"prism coblyn",0,"prism coblyns",0,0,1,0,0
902,"shipment of brass cogs",0,"shipments of brass cogs",0,0,1,0,0
903,"Storm Sergeant Doenfarr",0,"Storm Sergeant Doenfarr",0,0,1,0,1
904,"Yellowjacket drill sergeant",0,"Yellowjacket drill sergeants",0,0,1,0,0
905,"crate of oranges",0,"crates of oranges",0,0,1,0,0
906,"Kujata",0,"Kujata",0,0,1,0,1
907,"Weggfarr Wideaxe",0,"Weggfarr Wideaxe",0,0,1,0,1
908,"thuggish sellsword",0,"thuggish sellswords",0,0,1,0,0
909,"Ixali limbcutter",0,"Ixali limbcutters",0,1,1,0,0
910,"Ixali soilseer",0,"Ixali soilseers",0,1,1,0,0
911,"Ixali bolecleaver",0,"Ixali bolecleavers",0,1,1,0,0
912,"wildfire sprite",0,"wildfire sprites",0,0,1,0,0
913,"rotting eye",0,"rotting eyes",0,0,1,0,0
914,"hired hand",0,"hired hands",0,0,1,0,0
915,"hired hand",0,"hired hands",0,0,1,0,0
916,"hired hand",0,"hired hands",0,0,1,0,0
917,"",0,"",0,0,0,0,0
918,"U'kahmuli",0,"U'kahmuli",0,0,1,1,1
919,"U'ralka",0,"U'ralka",0,0,1,1,1
920,"U'konelua",0,"U'konelua",0,0,1,1,1
921,"U'ndomii",0,"U'ndomii",0,0,1,1,1
922,"U'lolamo",0,"U'lolamo",0,0,1,1,1
923,"Duskwight freelancer",0,"Duskwight freelancers",0,0,1,0,0
924,"Bruce the Big",0,"Bruce the Big",0,0,1,0,1
925,"nameless attacker",0,"nameless attackers",0,0,1,0,0
926,"",0,"",0,0,0,0,0
927,"",0,"",0,0,0,0,0
928,"Kindness of the Alacran",0,"Kindness of the Alacran",0,0,1,0,0
929,"Temperance of the Alacran",0,"Temperance of the Alacran",0,0,1,0,0
930,"",0,"",0,0,0,0,0
931,"",0,"",0,0,0,0,0
932,"Patience of the Alacran",0,"Patience of the Alacran",0,0,1,0,0
933,"novice gladiator",0,"novice gladiators",0,0,1,0,0
934,"veteran gladiator",0,"veteran gladiators",0,0,1,0,0
935,"Papashan",0,"Papashan",0,0,1,0,1
936,"Owyne",0,"Owyne",0,0,1,0,1
937,"frenzied bulb",0,"frenzied bulbs",0,0,1,0,0
938,"frenzied oak",0,"frenzied oaks",0,0,1,0,0
939,"frenzied elm",0,"frenzied elms",0,0,1,0,0
940,"frenzied goobbue",0,"frenzied goobbues",0,0,1,0,0
941,"frenzied mossback",0,"frenzied mossbacks",0,0,1,0,0
942,"lesser blanga",0,"lesser blangas",0,0,1,0,0
943,"stout ambusher",0,"stout ambushers",0,0,1,0,0
944,"Duskwight freelancer captain",0,"Duskwight freelancer captains",0,0,1,0,0
945,"blanga",0,"blangas",0,0,1,0,0
946,"Quzal Huatotl the Shrieker",0,"Quzal Huatotl the Shrieker",0,0,1,0,1
947,"Ixali sincaller",0,"Ixali sincallers",0,1,1,0,0
948,"Galfrid the Gallant",0,"Galfrid the Gallant",0,0,1,0,1
949,"Garibald the Fargone",0,"Garibald the Fargone",0,0,1,0,1
950,"gila monster",0,"gila monsters",0,0,1,0,0
951,"",0,"",0,0,0,0,0
952,"",0,"",0,0,0,0,0
953,"flower wespe",0,"flower wespes",0,0,1,0,0
954,"",0,"",0,0,0,0,0
955,"",0,"",0,0,0,0,0
956,"",0,"",0,0,0,0,0
957,"",0,"",0,0,0,0,0
958,"clever hedgemole",0,"clever hedgemoles",0,0,1,0,0
959,"",0,"",0,0,0,0,0
960,"",0,"",0,0,0,0,0
961,"",0,"",0,0,0,0,0
962,"shore slug",0,"shore slugs",0,0,1,0,0
963,"torchlight",0,"torchlights",0,0,1,0,0
964,"",0,"",0,0,0,0,0
965,"plainstrider",0,"plainstriders",0,0,1,0,0
966,"Patripatan",0,"Patripatan",0,0,1,0,1
967,"Moraby hedgemole",0,"Moraby hedgemoles",0,0,1,0,0
968,"red jackal",0,"red jackals",0,0,1,0,0
969,"Leavold, Sword of Thal",0,"Leavold, Sword of Thal",0,0,1,0,1
970,"Sultansworn elite",0,"Sultansworn elites",0,0,1,0,0
971,"lawless cursedealer",0,"lawless cursedealers",0,0,1,0,0
972,"lawless spellweaver",0,"lawless spellweavers",0,0,1,0,0
973,"lawless fistfighter",0,"lawless fistfighters",0,0,1,0,0
974,"lawless bowman",0,"lawless bowmen",0,0,1,0,0
975,"drowned diviner",0,"drowned diviners",0,0,1,0,0
976,"drowned saltmage",0,"drowned saltmages",0,0,1,0,0
977,"drowned brawler",0,"drowned brawlers",0,0,1,0,0
978,"drowned outranger",0,"drowned outrangers",0,0,1,0,0
979,"drowned butcher",0,"drowned butchers",0,0,1,0,0
980,"lesser gargoyle",0,"lesser gargoyles",0,0,1,0,0
981,"Yellowjacket",0,"Yellowjackets",0,0,1,0,0
982,"Ryssfloh",0,"Ryssfloh",0,0,1,0,1
983,"flambeau",0,"flambeaus",0,0,1,0,0
984,"errant soul",0,"errant souls",0,1,1,0,0
985,"spriggan quencher",0,"spriggan quenchers",0,0,1,0,0
986,"living fossil",0,"living fossils",0,0,1,0,0
987,"pit hippocerf",0,"pit hippocerfs",0,0,1,0,0
988,"stone servant",0,"stone servants",0,0,1,0,0
989,"boastful bodyguard",0,"boastful bodyguards",0,0,1,0,0
990,"raucous bodyguard",0,"raucous bodyguards",0,0,1,0,0
991,"filthy bodyguard",0,"filthy bodyguards",0,0,1,0,0
992,"Highcant Hatsugg Chah",0,"Highcant Hatsugg Chah",0,0,1,0,1
993,"flame sergeant",0,"flame sergeants",0,0,1,0,0
994,"flame gladiator",0,"flame gladiators",0,0,1,0,0
995,"imperial funditor",0,"imperial funditores",0,1,1,0,0
996,"imperial decurion",0,"imperial decurions",0,1,1,0,0