summaryrefslogtreecommitdiff
path: root/Legacy/Legacy_Monsters.html
blob: 04deb24e31c5507ff4234d80b173e1ebbb33559d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
<!DOCTYPE html>
<html dir="ltr" class="client-js js no-touch svg inlinesvg svgclippaths no-ie8compat" lang="en"><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"><script src="LegacyMonsters/shares.json" type="text/javascript"></script><script src="LegacyMonsters/a.json" type="text/javascript"></script><script src="LegacyMonsters/300lo.js" type="text/javascript"></script><script src="LegacyMonsters/_ate.js" type="text/javascript"></script>
<meta charset="UTF-8">
<title>Legacy Monsters - TMW: rEvolt</title>
<script src="LegacyMonsters/linkid.js" async="" type="text/javascript"></script><script src="LegacyMonsters/conversion_async.js" async="" type="text/javascript"></script><script src="LegacyMonsters/analytics.js" async="" type="text/javascript"></script><script src="LegacyMonsters/gtm.js" async=""></script><script>document.documentElement.className = document.documentElement.className.replace( /(^|\s)client-nojs(\s|$)/, "$1client-js$2" );</script>
<script>window.RLQ = window.RLQ || []; window.RLQ.push( function () {
mw.config.set({"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"Legacy_Monsters","wgTitle":"Legacy Monsters","wgCurRevisionId":43470,"wgRevisionId":43470,"wgArticleId":10260,"wgIsArticle":!0,"wgIsRedirect":!1,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":[],"wgBreakFrames":!1,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],"wgRelevantPageName":"Legacy_Monsters","wgRelevantArticleId":10260,"wgIsProbablyEditable":!1,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgWikiEditorEnabledModules":{"toolbar":!0,"dialogs":!0,"preview":!0,"publish":!0}});mw.loader.implement("user.options",function($,jQuery){mw.user.options.set({"variant":"en"});});mw.loader.implement("user.tokens",function($,jQuery){mw.user.tokens.set({"editToken":"+\\","patrolToken":"+\\","watchToken":"+\\"});});mw.loader.load(["mediawiki.page.startup","mediawiki.legacy.wikibits","skins.foreground.js"]);
} );</script>
<link rel="stylesheet" href="LegacyMonsters/load.css">
<style>
.mw-collapsible-toggle{float:right;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}  .mw-content-ltr .mw-collapsible-toggle,.mw-content-rtl .mw-content-ltr .mw-collapsible-toggle{float:right} .mw-content-rtl .mw-collapsible-toggle,.mw-content-ltr .mw-content-rtl .mw-collapsible-toggle{float:left}.mw-customtoggle,.mw-collapsible-toggle{cursor:pointer} caption .mw-collapsible-toggle,.mw-content-ltr caption .mw-collapsible-toggle,.mw-content-rtl caption .mw-collapsible-toggle,.mw-content-rtl .mw-content-ltr caption .mw-collapsible-toggle,.mw-content-ltr .mw-content-rtl caption .mw-collapsible-toggle{float:none} li .mw-collapsible-toggle,.mw-content-ltr li .mw-collapsible-toggle,.mw-content-rtl li .mw-collapsible-toggle,.mw-content-rtl .mw-content-ltr li .mw-collapsible-toggle,.mw-content-ltr .mw-content-rtl li .mw-collapsible-toggle{float:none} .mw-collapsible-toggle-li{list-style:none}
h1,h2,h3,h4,h5,h6{color:#332100} .fancy-border{border-image-slice:20;border-image-width:20px;border-image-repeat:round;border-image-outset:15px;border-image-source:url(https://www.themanaworld.org/images/4/46/Border.png)} .grid-2-columns{display:grid;grid-template-columns:1fr}@media only screen and (min-width:900px){.grid-2-columns{grid-template-columns:1fr 1fr}}
.suggestions{overflow:hidden;position:absolute;top:0;left:0;width:0;border:none;z-index:1099;padding:0;margin:-1px 0 0 0}.suggestions-special{position:relative;background-color:white;cursor:pointer;border:solid 1px #aaaaaa;padding:0;margin:0;margin-top:-2px;display:none;padding:0.25em 0.25em;line-height:1.25em}.suggestions-results{background-color:white;cursor:pointer;border:solid 1px #aaaaaa;padding:0;margin:0}.suggestions-result{color:black;margin:0;line-height:1.5em;padding:0.01em 0.25em;text-align:left; overflow:hidden;-o-text-overflow:ellipsis; text-overflow:ellipsis;white-space:nowrap}.suggestions-result-current{background-color:#4C59A6;color:white}.suggestions-special .special-label{color:gray;text-align:left}.suggestions-special .special-query{color:black;font-style:italic;text-align:left}.suggestions-special .special-hover{background-color:silver}.suggestions-result-current .special-label,.suggestions-result-current .special-query{color:white}.highlight{font-weight:bold}
.postedit-container{margin:0 auto;position:fixed;top:0;height:0;left:50%;z-index:1000;font-size:13px}.postedit-container:hover{cursor:pointer}.postedit{position:relative;top:0.6em;left:-50%;padding:.6em 3.6em .6em 1.1em;line-height:1.5625em;color:#626465;background-color:#f4f4f4;border:1px solid #dcd9d9;text-shadow:0 0.0625em 0 rgba(255,255,255,0.5);border-radius:5px;box-shadow:0 2px 5px 0 #ccc;-webkit-transition:all 0.25s ease-in-out;-moz-transition:all 0.25s ease-in-out;-ms-transition:all 0.25s ease-in-out;-o-transition:all 0.25s ease-in-out;transition:all 0.25s ease-in-out}.skin-monobook .postedit{top:6em !important}.postedit-faded{opacity:0}.postedit-icon{padding-left:41px;  line-height:25px;background-repeat:no-repeat;background-position:8px 50%}.postedit-icon-checkmark{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABblBMVEUAAAD///////9PfTf///80aRdTgjn///9Feij///////////9Rfzf///////////9PfjZRgDh1o1xOfTb///////+bwYqLtnj///////9PfTa82K////9WhT6YxIL///9QgDdTgzr////////j7uDl7eLq8efi693k7OH///////9UhjuBr2rp9uRUhjr///9YljVKgir///9WiTlYjT3////9/v57vFlbkT5PjC9dlD/5/fhuq09stUTs9uhxuElctCpfnT1huDFloEZloUZmpENmvDZpvDxpvTxqvjxrvT5rvT9rwTxsqktswD5uwkBvuUdxw0NztFBztU9ztVBzwkp0tlJ1xkd2t1R3uVR4w1F4xk54x014yE15uVZ5v1R5xVB6v1R7yFJ8wVh9xVl9yFR9yVd9ylN+xVh+yFd/x1l/yFeAylmEx1+Ny2uY0Hqe04Wj1Ymv3Ze33qLD47TJ5L3O6cPU7Mrq9eb2+/Q4j37OAAAAQHRSTlMAAQIEBAUFBQwPFB4fJCUoKiosQEhJS01RUlZZXmdydXaChYuSlJSWmJmoq6uur8LExcvM19fg5ejt8fX2+Pr7SljgewAAAKpJREFUGBkFwQNCAwAAAMDLtl3LtrG4rWXbtvX77gAgZ6grFwC0bhwNVgKgdPZx8b0dgLi+s7Wn0VoAqpfOI9+BNADZI7fLrz2pSEwGHZuH+78lSK8ZLkLezF3ooyUG3VPXq2USei9WngeyoG195yBYWDF3E/2pAhl1e9Gr8bGT+bfOFCC2fnvh4X7rcqIAQNNu+HT6sxkAjceTL/2ZAIhv+PorBwBJxfkA//dFHSCBy/UTAAAAAElFTkSuQmCC);background-image:url(/resources/src/mediawiki.action/images/green-checkmark.png?9048a)!ie;background-position:left}.postedit-close{position:absolute;padding:0 .8em;right:0;top:0;font-size:1.25em;font-weight:bold;line-height:2.3em;color:black;text-shadow:0 0.0625em 0 white;text-decoration:none;opacity:0.2;filter:alpha(opacity=20)}.postedit-close:hover{color:black;text-decoration:none;opacity:0.4;filter:alpha(opacity=40)}</style><style>
.suggestions a.mw-searchSuggest-link,.suggestions a.mw-searchSuggest-link:hover,.suggestions a.mw-searchSuggest-link:active,.suggestions a.mw-searchSuggest-link:focus{color:black;text-decoration:none}.suggestions-result-current a.mw-searchSuggest-link,.suggestions-result-current a.mw-searchSuggest-link:hover,.suggestions-result-current a.mw-searchSuggest-link:active,.suggestions-result-current a.mw-searchSuggest-link:focus{color:white}.suggestions a.mw-searchSuggest-link .special-query{ overflow:hidden;-o-text-overflow:ellipsis; text-overflow:ellipsis;white-space:nowrap}</style><meta name="ResourceLoaderDynamicStyles" content="">
<link rel="stylesheet" href="LegacyMonsters/load_002.css">
<style>a:lang(ar),a:lang(kk-arab),a:lang(mzn),a:lang(ps),a:lang(ur){text-decoration:none}</style>
<script async="" src="LegacyMonsters/load_002.php"></script>
<meta name="generator" content="MediaWiki 1.26.2">
<meta name="keywords" content="The Mana World, Mana, World, MMORPG, RPG, free, GPL, Open Source, Pixel Art, 2D, Software Development, MacOSX, Windows, Linux, desktop, tablet, Game, 16-bit, Retro, Fantasy, 8-bit, Indie, Game Development, Game Engine, linux game, linux game engine, linux mmorpg, linux rpg, linux mmorpg game, linux rpg game, Open Source MMORPG,mmorpg,mmorpg games,mmorpg free to play,mmorpg online games,mmorpg list,mmorpg for mac,mmorpg free to play,mmorpg games online,mmorpg news,mmorpg browser games,mmorpg free,mmorpg mac,mmorpg maker,mmorpg online,mmorpg like sword art online,mmorpg servers,mmorpg games for mac,mmorpg mac compatible,mmorpg like wow,rpg,rpg games,rpg maker,rpg games online,rpg games for pc,rpg maker games,rpg group,free games,gpl license,gpl v3,gpl v2,open source software,open source software for windows,open source games,open source music,open source game engine,pixel art games,pixel art online,2d games,game,game 24h,game games,game theory,16-bit gems,16-bit sprites,16-bit zombies,16 bit games,retro games,8-bit art,8-bit characters,8-bit sprites,8-bit world,8-bit pixel art,8-bit rpg creator,8-bit mmo,8-bit rpg maker,indie games,game development software,game development tools,game development patterns,game development tutorials,game development basics,game development forum,game development forums,game development wiki,game development tutorial,game engine,game engine design,game engine architecture,game engine download,game engine wiki,game engine architecture,game engine free,game engine structure,game engine with scripting,game engine c,game engine programming,game engine c++,game engine android,game engine free download,game engine online,open source mmorpg engine,open source mmorpg maker,the mana world,the mana world wiki,the mana world review,the mana world hacks,the mana world download,the mana world quests,the mana world server,the mana world portable,the mana world sprite sheet,open source mmorpg,open source mmorpg games,www themanaworld org.themanaworld org, role-playing game, role-playing game online">
<meta name="viewport" content="width=device-width, user-scalable=yes, initial-scale=1.0">
<link rel="shortcut icon" href="https://www.themanaworld.org/favicon.ico">
<link rel="search" type="application/opensearchdescription+xml" href="https://www.themanaworld.org/opensearch_desc.php" title="TMW: rEvolt (en)">
<link rel="EditURI" type="application/rsd+xml" href="https://www.themanaworld.org/api.php?action=rsd">
<link rel="copyright" href="https://www.themanaworld.org/index.php/TheManaWorld:Copyrights">
<link rel="alternate" type="application/atom+xml" title="TMW: rEvolt Atom feed" href="https://www.themanaworld.org/index.php?title=Special:RecentChanges&amp;feed=atom">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="LegacyMonsters/load.php"></script><script src="LegacyMonsters/a"></script><style type="text/css">.at-icon{fill:#fff;border:0}.at-icon-wrapper{display:inline-block;overflow:hidden}a .at-icon-wrapper{cursor:pointer}.at-rounded,.at-rounded-element .at-icon-wrapper{border-radius:12%}.at-circular,.at-circular-element .at-icon-wrapper{border-radius:50%}.addthis_32x32_style .at-icon{width:2pc;height:2pc}.addthis_24x24_style .at-icon{width:24px;height:24px}.addthis_20x20_style .at-icon{width:20px;height:20px}.addthis_16x16_style .at-icon{width:1pc;height:1pc}#at16lb{display:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:1001;background-color:#000;opacity:.001}#at_complete,#at_error,#at_share,#at_success{position:static!important}.at15dn{display:none}#at15s,#at16p,#at16p form input,#at16p label,#at16p textarea,#at_share .at_item{font-family:arial,helvetica,tahoma,verdana,sans-serif!important;font-size:9pt!important;outline-style:none;outline-width:0;line-height:1em}* html #at15s.mmborder{position:absolute!important}#at15s.mmborder{position:fixed!important;width:250px!important}#at15s{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);float:none;line-height:1em;margin:0;overflow:visible;padding:5px;text-align:left;position:absolute}#at15s a,#at15s span{outline:0;direction:ltr;text-transform:none}#at15s .at-label{margin-left:5px}#at15s .at-icon-wrapper{width:1pc;height:1pc;vertical-align:middle}#at15s .at-icon{width:1pc;height:1pc}.at4-icon{display:inline-block;background-repeat:no-repeat;background-position:top left;margin:0;overflow:hidden;cursor:pointer}.addthis_16x16_style .at4-icon,.addthis_default_style .at4-icon,.at4-icon,.at-16x16{width:1pc;height:1pc;line-height:1pc;background-size:1pc!important}.addthis_32x32_style .at4-icon,.at-32x32{width:2pc;height:2pc;line-height:2pc;background-size:2pc!important}.addthis_24x24_style .at4-icon,.at-24x24{width:24px;height:24px;line-height:24px;background-size:24px!important}.addthis_20x20_style .at4-icon,.at-20x20{width:20px;height:20px;line-height:20px;background-size:20px!important}.at4-icon.circular,.circular .at4-icon,.circular.aticon{border-radius:50%}.at4-icon.rounded,.rounded .at4-icon{border-radius:4px}.at4-icon-left{float:left}#at15s .at4-icon{text-indent:20px;padding:0;overflow:visible;white-space:nowrap;background-size:1pc;width:1pc;height:1pc;background-position:top left;display:inline-block;line-height:1pc}.addthis_vertical_style .at4-icon,.at4-follow-container .at4-icon{margin-right:5px}html>body #at15s{width:250px!important}#at15s.atm{background:none!important;padding:0!important;width:10pc!important}#at15s_inner{background:#fff;border:1px solid #fff;margin:0}#at15s_head{position:relative;background:#f2f2f2;padding:4px;cursor:default;border-bottom:1px solid #e5e5e5}.at15s_head_success{background:#cafd99!important;border-bottom:1px solid #a9d582!important}.at15s_head_success a,.at15s_head_success span{color:#000!important;text-decoration:none}#at15s_brand,#at15sptx,#at16_brand{position:absolute}#at15s_brand{top:4px;right:4px}.at15s_brandx{right:20px!important}a#at15sptx{top:4px;right:4px;text-decoration:none;color:#4c4c4c;font-weight:700}#at15sptx:hover{text-decoration:underline}#at16_brand{top:5px;right:30px;cursor:default}#at_hover{padding:4px}#at_hover .at_item,#at_share .at_item{background:#fff!important;float:left!important;color:#4c4c4c!important}#at_share .at_item .at-icon-wrapper{margin-right:5px}#at_hover .at_bold{font-weight:700;color:#000!important}#at_hover .at_item{width:7pc!important;padding:2px 3px!important;margin:1px;text-decoration:none!important}#at_hover .at_item.athov,#at_hover .at_item:focus,#at_hover .at_item:hover{margin:0!important}#at_hover .at_item.athov,#at_hover .at_item:focus,#at_hover .at_item:hover,#at_share .at_item.athov,#at_share .at_item:hover{background:#f2f2f2!important;border:1px solid #e5e5e5;color:#000!important;text-decoration:none}.ipad #at_hover .at_item:focus{background:#fff!important;border:1px solid #fff}.at15t{display:block!important;height:1pc!important;line-height:1pc!important;padding-left:20px!important;background-position:0 0;text-align:left}.addthis_button,.at15t{cursor:pointer}.addthis_toolbox a.at300b,.addthis_toolbox a.at300m{width:auto}.addthis_toolbox a{margin-bottom:5px;line-height:initial}.addthis_toolbox.addthis_vertical_style{width:200px}.addthis_button_facebook_like .fb_iframe_widget{line-height:100%}.addthis_button_facebook_like iframe.fb_iframe_widget_lift{max-width:none}.addthis_toolbox a.addthis_button_counter,.addthis_toolbox a.addthis_button_facebook_like,.addthis_toolbox a.addthis_button_facebook_send,.addthis_toolbox a.addthis_button_facebook_share,.addthis_toolbox a.addthis_button_foursquare,.addthis_toolbox a.addthis_button_google_plusone,.addthis_toolbox a.addthis_button_linkedin_counter,.addthis_toolbox a.addthis_button_pinterest_pinit,.addthis_toolbox a.addthis_button_stumbleupon_badge,.addthis_toolbox a.addthis_button_tweet{display:inline-block}.at-share-tbx-element .google_plusone_iframe_widget>span>div{vertical-align:top!important}.addthis_toolbox span.addthis_follow_label{display:none}.addthis_toolbox.addthis_vertical_style span.addthis_follow_label{display:block;white-space:nowrap}.addthis_toolbox.addthis_vertical_style a{display:block}.addthis_toolbox.addthis_vertical_style.addthis_32x32_style a{line-height:2pc;height:2pc}.addthis_toolbox.addthis_vertical_style .at300bs{margin-right:4px;float:left}.addthis_toolbox.addthis_20x20_style span{line-height:20px}.addthis_toolbox.addthis_32x32_style span{line-height:2pc}.addthis_toolbox.addthis_pill_combo_style .addthis_button_compact .at15t_compact,.addthis_toolbox.addthis_pill_combo_style a{float:left}.addthis_toolbox.addthis_pill_combo_style a.addthis_button_tweet{margin-top:-2px}.addthis_toolbox.addthis_pill_combo_style .addthis_button_compact .at15t_compact{margin-right:4px}.addthis_default_style .addthis_separator{margin:0 5px;display:inline}div.atclear{clear:both}.addthis_default_style .addthis_separator,.addthis_default_style .at4-icon,.addthis_default_style .at300b,.addthis_default_style .at300bo,.addthis_default_style .at300bs,.addthis_default_style .at300m{float:left}.at300b img,.at300bo img{border:0}a.at300b .at4-icon,a.at300m .at4-icon{display:block}.addthis_default_style .at300b,.addthis_default_style .at300bo,.addthis_default_style .at300m{padding:0 2px}.at300b,.at300bo,.at300bs,.at300m{cursor:pointer}.addthis_button_facebook_like.at300b:hover,.addthis_button_facebook_like.at300bs:hover,.addthis_button_facebook_send.at300b:hover,.addthis_button_facebook_send.at300bs:hover{opacity:1}.addthis_20x20_style .at15t,.addthis_20x20_style .at300bs{overflow:hidden;display:block;height:20px!important;width:20px!important;line-height:20px!important}.addthis_32x32_style .at15t,.addthis_32x32_style .at300bs{overflow:hidden;display:block;height:2pc!important;width:2pc!important;line-height:2pc!important}.at300bs{overflow:hidden;display:block;background-position:0 0;height:1pc;width:1pc;line-height:1pc!important}.addthis_default_style .at15t_compact,.addthis_default_style .at15t_expanded{margin-right:4px}#at_share .at_item{width:123px!important;padding:4px;margin-right:2px;border:1px solid #fff}#at16p{background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);z-index:10000001;position:absolute;top:50%;left:50%;width:300px;padding:10px;margin:0 auto;margin-top:-185px;margin-left:-155px;font-family:arial,helvetica,tahoma,verdana,sans-serif;font-size:9pt;color:#5e5e5e}#at_share{margin:0;padding:0}#at16pt{position:relative;background:#f2f2f2;height:13px;padding:5px 10px}#at16pt a,#at16pt h4{font-weight:700}#at16pt h4{display:inline;margin:0;padding:0;font-size:9pt;color:#4c4c4c;cursor:default}#at16pt a{position:absolute;top:5px;right:10px;color:#4c4c4c;text-decoration:none;padding:2px}#at15sptx:focus,#at16pt a:focus{outline:thin dotted}#at15s #at16pf a{top:1px}#_atssh{width:1px!important;height:1px!important;border:0!important}.atm{width:10pc!important;padding:0;margin:0;line-height:9pt;letter-spacing:normal;font-family:arial,helvetica,tahoma,verdana,sans-serif;font-size:9pt;color:#444;background:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgaGAgAjAxEAlGFVJHIUCAAQDcngCUgqGMqwAAAABJRU5ErkJggg==);padding:4px}.atm-f{text-align:right;border-top:1px solid #ddd;padding:5px 8px}.atm-i{background:#fff;border:1px solid #d5d6d6;padding:0;margin:0;box-shadow:1px 1px 5px rgba(0,0,0,.15)}.atm-s{margin:0!important;padding:0!important}.atm-s a:focus{border:transparent;outline:0;transition:none}#at_hover.atm-s a,.atm-s a{display:block;text-decoration:none;padding:4px 10px;color:#235dab!important;font-weight:400;font-style:normal;transition:none}#at_hover.atm-s .at_bold{color:#235dab!important}#at_hover.atm-s a:hover,.atm-s a:hover{background:#2095f0;text-decoration:none;color:#fff!important}#at_hover.atm-s .at_bold{font-weight:700}#at_hover.atm-s a:hover .at_bold{color:#fff!important}.atm-s a .at-label{vertical-align:middle;margin-left:5px;direction:ltr}.at_PinItButton{display:block;width:40px;height:20px;padding:0;margin:0;background-image:url(//s7.addthis.com/static/t00/pinit00.png);background-repeat:no-repeat}.at_PinItButton:hover{background-position:0 -20px}.addthis_toolbox .addthis_button_pinterest_pinit{position:relative}.at-share-tbx-element .fb_iframe_widget span{vertical-align:baseline!important}#at16pf{height:auto;text-align:right;padding:4px 8px}.at-privacy-info{position:absolute;left:7px;bottom:7px;cursor:pointer;text-decoration:none;font-family:helvetica,arial,sans-serif;font-size:10px;line-height:9pt;letter-spacing:.2px;color:#666}.at-privacy-info:hover{color:#000}.body .wsb-social-share .wsb-social-share-button-vert{padding-top:0;padding-bottom:0}.body .wsb-social-share.addthis_counter_style .addthis_button_tweet.wsb-social-share-button{padding-top:40px}.body .wsb-social-share.addthis_counter_style .addthis_button_google_plusone.wsb-social-share-button{padding-top:0}.body .wsb-social-share.addthis_counter_style .addthis_button_facebook_like.wsb-social-share-button{padding-top:21px}@media print{#at4-follow,#at4-share,#at4-thankyou,#at4-whatsnext,#at4m-mobile,#at15s,.at4,.at4-recommended{display:none!important}}@media screen and (max-width:400px){.at4win{width:100%}}@media screen and (max-height:700px) and (max-width:400px){.at4-thankyou-inner .at4-recommended-container{height:122px;overflow:hidden}.at4-thankyou-inner .at4-recommended .at4-recommended-item:first-child{border-bottom:1px solid #c5c5c5}}</style><style type="text/css">.at-branding-logo{font-family:helvetica,arial,sans-serif;text-decoration:none;font-size:10px;display:inline-block;margin:2px 0;letter-spacing:.2px}.at-branding-logo .at-branding-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAMAAAC67D+PAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAZQTFRF////+GlNUkcc1QAAAB1JREFUeNpiYIQDBjQmAwMmkwEM0JnY1WIxFyDAABGeAFEudiZsAAAAAElFTkSuQmCC")}.at-branding-logo .at-branding-icon,.at-branding-logo .at-privacy-icon{display:inline-block;height:10px;width:10px;margin-left:4px;margin-right:3px;margin-bottom:-1px;background-repeat:no-repeat}.at-branding-logo .at-privacy-icon{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAKCAMAAABR24SMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABhQTFRF8fr9ot/xXcfn2/P5AKva////////AKTWodjhjAAAAAd0Uk5T////////ABpLA0YAAAA6SURBVHjaJMzBDQAwCAJAQaj7b9xifV0kUKJ9ciWxlzWEWI5gMF65KUTv0VKkjVeTerqE/x7+9BVgAEXbAWI8QDcfAAAAAElFTkSuQmCC")}.at-branding-logo span{text-decoration:none}.at-branding-logo .at-branding-addthis,.at-branding-logo .at-branding-powered-by{color:#666}.at-branding-logo .at-branding-addthis:hover{color:#333}.at-cv-with-image .at-branding-addthis,.at-cv-with-image .at-branding-addthis:hover{color:#fff}a.at-branding-logo:visited{color:initial}.at-branding-info{display:inline-block;padding:0 5px;color:#666;border:1px solid #666;border-radius:50%;font-size:10px;line-height:9pt;opacity:.7;transition:all .3s ease;text-decoration:none}.at-branding-info span{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.at-branding-info:before{content:'i';font-family:Times New Roman}.at-branding-info:hover{color:#0780df;border-color:#0780df}</style><script src="LegacyMonsters/layers.js" async="" charset="utf-8" type="text/javascript"></script><style type="text/css">.at-share-dock.atss{top:auto;left:0;right:0;bottom:0;width:100%;max-width:100%;z-index:1000200;box-shadow:0 0 1px 1px #e2dfe2}.at-share-dock.at-share-dock-zindex-hide{z-index:-1!important}.at-share-dock.atss-top{bottom:auto;top:0}.at-share-dock a{width:auto;transition:none;color:#fff;text-decoration:none;box-sizing:content-box;-webkit-box-sizing:content-box;-moz-box-sizing:content-box}.at-share-dock a:hover{width:auto}.at-share-dock .at4-count{height:43px;padding:5px 0 0;line-height:20px;background:#fff;font-family:Helvetica neue,arial}.at-share-dock .at4-count span{width:100%}.at-share-dock .at4-count .at4-share-label{color:#848484;font-size:10px;letter-spacing:1px}.at-share-dock .at4-count .at4-counter{top:2px;position:relative;display:block;color:#222;font-size:22px}.at-share-dock.at-shfs-medium .at4-count{height:36px;line-height:1pc;padding-top:4px}.at-share-dock.at-shfs-medium .at4-count .at4-counter{font-size:18px}.at-share-dock.at-shfs-medium .at-share-btn .at-icon-wrapper,.at-share-dock.at-shfs-medium a .at-icon-wrapper{padding:6px 0}.at-share-dock.at-shfs-small .at4-count{height:26px;line-height:1;padding-top:3px}.at-share-dock.at-shfs-small .at4-count .at4-share-label{font-size:8px}.at-share-dock.at-shfs-small .at4-count .at4-counter{font-size:14px}.at-share-dock.at-shfs-small .at-share-btn .at-icon-wrapper,.at-share-dock.at-shfs-small a .at-icon-wrapper{padding:4px 0}</style><style type="text/css">div.at-share-close-control.ats-dark,div.at-share-open-control-left.ats-dark,div.at-share-open-control-right.ats-dark{background:#262b30}div.at-share-close-control.ats-light,div.at-share-open-control-left.ats-light,div.at-share-open-control-right.ats-light{background:#fff}div.at-share-close-control.ats-gray,div.at-share-open-control-left.ats-gray,div.at-share-open-control-right.ats-gray{background:#f2f2f2}.atss{position:fixed;top:20%;width:3pc;z-index:100020;background:none}.at-share-close-control{position:relative;width:3pc;overflow:auto}.at-share-open-control-left{position:fixed;top:20%;z-index:100020;left:0;width:22px}.at-share-close-control .at4-arrow.at-left{float:right}.atss-left{left:0;float:left;right:auto}.atss-right{left:auto;float:right;right:0}.atss-right.at-share-close-control .at4-arrow.at-right{position:relative;right:0;overflow:auto}.atss-right.at-share-close-control .at4-arrow{float:left}.at-share-open-control-right{position:fixed;top:20%;z-index:100020;right:0;width:22px;float:right}.atss-right .at-share-close-control .at4-arrow{float:left}.atss.atss-right a{float:right}.atss.atss-right .at4-share-title{float:right;overflow:hidden}.atss .at-share-btn,.atss a{position:relative;display:block;width:3pc;margin:0;outline-offset:-1px;text-align:center;float:left;transition:width .15s ease-in-out;overflow:hidden;background:#e8e8e8;z-index:100030;cursor:pointer}.at-share-btn::-moz-focus-inner{border:0;padding:0}.atss-right .at-share-btn{float:right}.atss .at-share-btn{border:0;padding:0}.atss .at-share-btn:focus,.atss .at-share-btn:hover,.atss a:focus,.atss a:hover{width:4pc}.atss .at-share-btn .at-icon-wrapper,.atss a .at-icon-wrapper{display:block;padding:8px 0}.atss .at-share-btn:last-child,.atss a:last-child{border:none}.atss .at-share-btn span .at-icon,.atss a span .at-icon{position:relative;top:0;left:0;display:block;background-repeat:no-repeat;background-position:50% 50%;width:2pc;height:2pc;line-height:2pc;border:none;padding:0;margin:0 auto;overflow:hidden;cursor:pointer;cursor:hand}.at4-share .at-custom-sidebar-counter{font-family:Helvetica neue,arial;vertical-align:top;margin-right:4px;display:inline-block;text-align:center}.at4-share .at-custom-sidebar-count{font-size:17px;line-height:1.25em;color:#222}.at4-share .at-custom-sidebar-text{font-size:9px;line-height:1.25em;color:#888;letter-spacing:1px}.at4-share .at4-share-count-container{position:absolute;left:0;right:auto;top:auto;bottom:0;width:100%;color:#fff;background:inherit}.at4-share .at4-share-count,.at4-share .at4-share-count-container{line-height:1pc;font-size:10px}.at4-share .at4-share-count{text-indent:0;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-weight:200;width:100%;height:1pc}.at4-share .at4-share-count-anchor{padding-bottom:8px;text-decoration:none;transition:padding .15s ease-in-out .15s,width .15s ease-in-out}</style><style type="text/css">#at4-drawer-outer-container{top:0;width:20pc;position:fixed}#at4-drawer-outer-container.at4-drawer-inline{position:relative}#at4-drawer-outer-container.at4-drawer-inline.at4-drawer-right{float:right;right:0;left:auto}#at4-drawer-outer-container.at4-drawer-inline.at4-drawer-left{float:left;left:0;right:auto}#at4-drawer-outer-container.at4-drawer-shown,#at4-drawer-outer-container.at4-drawer-shown *{z-index:999999}#at4-drawer-outer-container,#at4-drawer-outer-container .at4-drawer-outer,#at-drawer{height:100%;overflow-y:auto;overflow-x:hidden}.at4-drawer-push-content-right-back{position:relative;right:0}.at4-drawer-push-content-right{position:relative;left:20pc!important}.at4-drawer-push-content-left-back{position:relative;left:0}.at4-drawer-push-content-left{position:relative;right:20pc!important}#at4-drawer-outer-container.at4-drawer-right{left:auto;right:-20pc}#at4-drawer-outer-container.at4-drawer-left{right:auto;left:-20pc}#at4-drawer-outer-container.at4-drawer-shown.at4-drawer-right{left:auto;right:0}#at4-drawer-outer-container.at4-drawer-shown.at4-drawer-left{right:auto;left:0}#at-drawer{top:0;z-index:9999999;height:100%;-webkit-animation-duration:.4s;animation-duration:.4s}#at-drawer.drawer-push.at-right{right:-20pc}#at-drawer.drawer-push.at-left{left:-20pc}#at-drawer .at-recommended-label{padding:0 0 0 20px;color:#999;line-height:3pc;font-size:18px;font-weight:300;cursor:default}#at-drawer-arrow{width:30px;height:5pc}#at-drawer-arrow.ats-dark{background:#262b30}#at-drawer-arrow.ats-gray{background:#f2f2f2}#at-drawer-open-arrow{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAABcCAYAAAC1OT8uAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjk3ODNCQjdERUQ3QjExRTM5NjFGRUZBODc3MTIwMTNCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk3ODNCQjdFRUQ3QjExRTM5NjFGRUZBODc3MTIwMTNCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTc4M0JCN0JFRDdCMTFFMzk2MUZFRkE4NzcxMjAxM0IiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTc4M0JCN0NFRDdCMTFFMzk2MUZFRkE4NzcxMjAxM0IiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz7kstzCAAAB4ElEQVR42uyWv0oDQRDGb9dYimgVjliID2Ca9AGfwtZob2Grja1PIFj7EhGCYK99VPBPOkVMp8X5rc6FeN7dfjOksMjAxwXZ3667OzvfLKRr682l5ZV9aDh+fxsnRHhoDzqGLjFBi4XOoFtoAxowoB893o/w7WpAl/+QgQMBwwRdTPhUC2lAV/wDA7qy5WOgq9psHejqTqkKdLE7KYCv0JZjMgBgB58raBG6mP1K6j2pT099T+qMUOeeOss1wDcEIA1PnQXy576rAUI0oFMoC7VCnn40Gs8Pd4lAiXNUKmJ0lh1mPzGEWiyUCqAGW3Pwv4IvUJsFO9CHgP3Zr6Te0xwgAf3LxaAjS241pbikCRkOg+nSJdV4p8HOPl3vvRYI5dtrgVDvvcWovcWovcWovcWovcWovcWovQChWNywNpqvdAKtQp/QNmPUIQ6kwwqt2Xmsxf6GMPM1Pptsbz45CPmXqKb+15Gz4J/LZcDSNIqBlQlbB0afe1mmUDWiCNKFZRq0VKMeXY1CTDq2sJLWsCmoaBBRqNRR6qBKC6qCaj2rDIqaXBGiXHEaom00h1S+K3fVlr6HNuqgvgCh0+owt21bybQn8+mZ78mcEebcM2e5+T2ZX24ZqCph0qn1vgQYAJ/KDpLQr2tPAAAAAElFTkSuQmCC);background-repeat:no-repeat;width:13px;height:23px;margin:28px 0 0 8px}.at-left #at-drawer-open-arrow{background-position:0 -46px}.ats-dark #at-drawer-open-arrow{background-position:0 -23px}.ats-dark.at-left #at-drawer-open-arrow{background-position:0 -69px}#at-drawer-arrow.at4-drawer-modern-browsers{position:fixed;top:40%;background-repeat:no-repeat;background-position:0 0!important;z-index:9999999}.at4-drawer-inline #at-drawer-arrow{position:absolute}#at-drawer-arrow.at4-drawer-modern-browsers.at-right{right:0}#at-drawer-arrow.at4-drawer-modern-browsers.at-left{left:0}.at4-drawer-push-animation-left{transition:left .4s ease-in-out .15s}.at4-drawer-push-animation-right{transition:right .4s ease-in-out .15s}#at-drawer.drawer-push.at4-drawer-push-animation-right{right:0}#at-drawer.drawer-push.at4-drawer-push-animation-right-back{right:-20pc!important}#at-drawer.drawer-push.at4-drawer-push-animation-left{left:0}#at-drawer.drawer-push.at4-drawer-push-animation-left-back{left:-20pc!important}#at-drawer .at4-closebutton.drawer-close{content:'X';color:#999;display:block;position:absolute;margin:0;top:0;right:0;width:3pc;height:45px;line-height:45px;overflow:hidden;opacity:.5}#at-drawer.ats-dark .at4-closebutton.drawer-close{color:#fff}#at-drawer .at4-closebutton.drawer-close:hover{opacity:1}#at-drawer.ats-dark.at4-recommended .at4-logo-container a{color:#666}#at-drawer.at4-recommended .at4-recommended-vertical{padding:0}#at-drawer.at4-recommended .at4-recommended-item .sponsored-label{margin:2px 0 0 21px;color:#ddd}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item{position:relative;padding:0;width:20pc;height:180px;margin:0}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img a:after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.65);z-index:1000000;transition:all .2s ease-in-out}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item.at-hover .at4-recommended-item-img a:after{background:rgba(0,0,0,.8)}#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img,#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img a,#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img img{width:20pc;height:180px;float:none}#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption{width:100%;position:absolute;bottom:0;left:0;height:70px}#at-drawer .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4{color:#fff;position:absolute;height:52px;top:0;left:20px;right:20px;margin:0;padding:0;line-height:25px;font-size:20px;font-weight:600;z-index:1000001;text-decoration:none;text-transform:none}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 a:hover{text-decoration:none}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4 a:link{color:#fff}#at-drawer.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption small{position:absolute;top:auto;bottom:10px;left:20px;width:auto;color:#ccc}#at-drawer.at4-recommended .at4-logo-container{margin-left:20px}#at-drawer.ats-dark.at4-recommended .at4-logo-container a:hover{color:#fff}#at-drawer.at4-recommended .at-logo{margin:0}</style><style type="text/css">.at4-follow.at-mobile{display:none!important}.at4-follow{position:fixed;top:0;right:0;font-weight:400;color:#666;cursor:default;z-index:10001}.at4-follow .at4-follow-inner{position:relative;padding:10px 24px 10px 15px}.at4-follow-inner,.at-follow-open-control{border:0 solid #c5c5c5;border-width:1px 0 1px 1px;margin-top:-1px}.at4-follow .at4-follow-container{margin-left:9pt}.at4-follow.at4-follow-24 .at4-follow-container{height:24px;line-height:23px;font-size:13px}.at4-follow.at4-follow-32 .at4-follow-container{width:15pc;height:2pc;line-height:2pc;font-size:14px}.at4-follow .at4-follow-container .at-follow-label{display:inline-block;height:24px;line-height:24px;margin-right:10px;padding:0;cursor:default;float:left}.at4-follow .at4-follow-container .at-icon-wrapper{height:24px;width:24px}.at4-follow.ats-transparent .at4-follow-inner,.at-follow-open-control.ats-transparent{border-color:transparent}.at4-follow.ats-dark .at4-follow-inner,.at-follow-open-control.ats-dark{background:#262b30;border-color:#000;color:#fff}.at4-follow.ats-dark .at-follow-close-control{background-color:#262b30}.at4-follow.ats-light .at4-follow-inner{background:#fff;border-color:#c5c5c5}.at4-follow.ats-gray .at4-follow-inner,.at-follow-open-control.ats-gray{background:#f2f2f2;border-color:#c5c5c5}.at4-follow.ats-light .at4-follow-close-control,.at-follow-open-control.ats-light{background:#e5e5e5}.at4-follow .at4-follow-inner .at4-follow-close-control{position:absolute;top:0;bottom:0;left:0;width:20px;cursor:pointer;display:none}.at4-follow .at4-follow-inner .at4-follow-close-control div{display:block;line-height:20px;text-indent:-9999em;margin-top:calc(50% + 1px);overflow:hidden}.at-follow-open-control div.at4-arrow.at-left{background-position:0 -2px}.at-follow-open-control{position:fixed;height:35px;top:0;right:0;padding-top:10px;z-index:10002}.at-follow-btn{margin:0 5px 5px 0;padding:0;outline-offset:-1px;display:inline-block;box-sizing:content-box;transition:all .2s ease-in-out}.at-follow-btn:focus,.at-follow-btn:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px)}.at4-follow-24 .at-follow-btn{height:25px;line-height:0;width:25px}</style><style type="text/css">.at-follow-tbx-element .at300b,.at-follow-tbx-element .at300m{display:inline-block;width:auto;padding:0;margin:0 2px 5px;outline-offset:-1px;transition:all .2s ease-in-out}.at-follow-tbx-element .at300b:focus,.at-follow-tbx-element .at300b:hover,.at-follow-tbx-element .at300m:focus,.at-follow-tbx-element .at300m:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px)}.at-follow-tbx-element .addthis_vertical_style .at300b,.at-follow-tbx-element .addthis_vertical_style .at300m{display:block}.at-follow-tbx-element .addthis_vertical_style .at300b .addthis_follow_label,.at-follow-tbx-element .addthis_vertical_style .at300b .at-icon-wrapper,.at-follow-tbx-element .addthis_vertical_style .at300m .addthis_follow_label,.at-follow-tbx-element .addthis_vertical_style .at300m .at-icon-wrapper{display:inline-block;vertical-align:middle;margin-right:5px}.at-follow-tbx-element .addthis_vertical_style .at300b:focus,.at-follow-tbx-element .addthis_vertical_style .at300b:hover,.at-follow-tbx-element .addthis_vertical_style .at300m:focus,.at-follow-tbx-element .addthis_vertical_style .at300m:hover{-webkit-transform:none;transform:none}</style><style type="text/css">.at4-jumboshare .at-share-btn{display:inline-block;margin-right:13px;margin-top:13px}.at4-jumboshare .at-share-btn .at-icon{float:left}.at4-jumboshare .at-share-btn .at300bs{display:inline-block;float:left;cursor:pointer}.at4-jumboshare .at4-mobile .at-share-btn .at-icon,.at4-jumboshare .at4-mobile .at-share-btn .at-icon-wrapper{margin:0;padding:0}.at4-jumboshare .at4-mobile .at-share-btn{padding:0}.at4-jumboshare .at4-mobile .at-share-btn .at-label{display:none}.at4-jumboshare .at4-count{font-size:60px;line-height:60px;font-family:Helvetica neue,arial;font-weight:700}.at4-jumboshare .at4-count-container{display:table-cell;text-align:center;min-width:200px;vertical-align:middle;border-right:1px solid #ccc;padding-right:20px}.at4-jumboshare .at4-share-container{display:table-cell;vertical-align:middle;padding-left:20px}.at4-jumboshare .at4-share-container.at-share-tbx-element{padding-top:0}.at4-jumboshare .at4-title{position:relative;font-size:18px;line-height:18px;bottom:2px}.at4-jumboshare .at4-spacer{height:1px;display:block;visibility:hidden;opacity:0}.at4-jumboshare .at-share-btn{display:inline-block;margin:0 2px;line-height:0;padding:0;overflow:hidden;text-decoration:none;text-transform:none;color:#fff;cursor:pointer;transition:all .2s ease-in-out;border:0;background-color:transparent}.at4-jumboshare .at-share-btn:focus,.at4-jumboshare .at-share-btn:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);color:#fff;text-decoration:none}.at4-jumboshare .at-label{font-family:helvetica neue,helvetica,arial,sans-serif;font-size:9pt;padding:0 15px 0 0;margin:0;height:2pc;line-height:2pc;background:none}.at4-jumboshare .at-share-btn:hover,.at4-jumboshare .at-share-btn:link{text-decoration:none}.at4-jumboshare .at-share-btn::-moz-focus-inner{border:0;padding:0}.at4-jumboshare.at-mobile .at-label{display:none}</style><style type="text/css">.at4-recommendedbox-outer-container{display:inline}.at4-recommended-outer{position:static}.at4-recommended{top:20%;margin:0;text-align:center;font-weight:400;font-size:13px;line-height:17px;color:#666}.at4-recommended.at-inline .at4-recommended-horizontal{text-align:left}.at4-recommended-recommendedbox{padding:0;z-index:inherit}.at4-recommended-recommended{padding:40px 0}.at4-recommended-horizontal{max-height:340px}.at4-recommended.at-medium .at4-recommended-horizontal{max-height:15pc}.at4-recommended.at4-minimal.at-medium .at4-recommended-horizontal{padding-top:10px;max-height:230px}.at4-recommended-text-only .at4-recommended-horizontal{max-height:130px}.at4-recommended-horizontal{padding-top:5px;overflow-y:hidden}.at4-minimal{background:none;color:#000;border:none!important;box-shadow:none!important}@media screen and (max-width:900px){.at4-recommended-horizontal .at4-recommended-item,.at4-recommended-horizontal .at4-recommended-item .at4-recommended-item-img{width:15pc}}.at4-recommended.at4-minimal .at4-recommended-horizontal .at4-recommended-item .at4-recommended-item-caption{padding:0 0 10px}.at4-recommended.at4-minimal .at4-recommended-horizontal .at4-recommended-item-caption{padding:20px 0 0!important}.addthis-smartlayers .at4-recommended .at-h3.at-recommended-label{margin:0;padding:0;font-weight:300;font-size:18px;line-height:24px;color:#464646;width:100%;display:inline-block;zoom:1}.addthis-smartlayers .at4-recommended.at-inline .at-h3.at-recommended-label{text-align:left}#at4-thankyou .addthis-smartlayers .at4-recommended.at-inline .at-h3.at-recommended-label{text-align:center}.at4-recommended .at4-recommended-item{display:inline-block;zoom:1;position:relative;background:#fff;border:1px solid #c5c5c5;width:200px;margin:10px}.addthis_recommended_horizontal .at4-recommended-item{border:none}.at4-recommended .at4-recommended-item .sponsored-label{color:#666;font-size:9px;position:absolute;top:-20px}.at4-recommended .at4-recommended-item-img .at-tli,.at4-recommended .at4-recommended-item-img a{position:absolute;left:0}.at4-recommended.at-inline .at4-recommended-horizontal .at4-recommended-item{margin:10px 20px 0 0}.at4-recommended.at-medium .at4-recommended-horizontal .at4-recommended-item{margin:10px 10px 0 0}.at4-recommended.at-medium .at4-recommended-item{width:140px;overflow:hidden}.at4-recommended .at4-recommended-item .at4-recommended-item-img{position:relative;text-align:center;width:100%;height:200px;line-height:0;overflow:hidden}.at4-recommended .at4-recommended-item .at4-recommended-item-img a{display:block;width:100%;height:200px}.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-img,.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-img a{height:140px}.at4-recommended .at4-recommended-item .at4-recommended-item-img img{position:absolute;top:0;left:0;min-height:0;min-width:0;max-height:none;max-width:none;margin:0;padding:0}.at4-recommended .at4-recommended-item .at4-recommended-item-caption{height:74px;overflow:hidden;padding:20px;text-align:left;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box}.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption{height:50px;padding:15px}.at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4{height:54px;margin:0 0 5px;padding:0;overflow:hidden;word-wrap:break-word;font-size:14px;font-weight:400;line-height:18px;text-align:left}.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption .at-h4{font-size:9pt;line-height:1pc;height:33px}.at4-recommended .at4-recommended-item:hover .at4-recommended-item-caption .at-h4{text-decoration:underline}.at4-recommended a:link,.at4-recommended a:visited{text-decoration:none;color:#464646}.at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4 a:hover{text-decoration:underline;color:#000}.at4-recommended .at4-recommended-item .at4-recommended-item-caption small{display:block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;font-size:11px;color:#666}.at4-recommended.at-medium .at4-recommended-item .at4-recommended-item-caption small{font-size:9px}.at4-recommended .at4-recommended-vertical{padding:15px 0 0}.at4-recommended .at4-recommended-vertical .at4-recommended-item{display:block;width:auto;max-width:100%;height:60px;border:none;margin:0 0 15px;box-shadow:none;background:none}.at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img,.at4-recommended-vertical .at4-recommended-item .at4-recommended-item-img img{width:60px;height:60px;float:left}.at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption{border-top:none;margin:0;height:60px;padding:3px 5px}.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption .at-h4{height:38px;margin:0}.at4-recommended .at4-recommended-vertical .at4-recommended-item .at4-recommended-item-caption small{position:absolute;bottom:0}.at4-recommended .at-recommended-label.at-vertical{text-align:left}.at4-no-image-light-recommended,.at4-no-image-minimal-recommended{background-color:#f2f2f2!important}.at4-no-image-gray-recommended{background-color:#e6e6e5!important}.at4-no-image-dark-recommended{background-color:#4e555e!important}.at4-recommended .at4-recommended-item-placeholder-img{background-repeat:no-repeat!important;background-position:center!important;width:100%!important;height:100%!important}.at4-recommended-horizontal .at4-no-image-dark-recommended .at4-recommended-item-placeholder-img{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAfCAYAAACCox+xAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjlFNUUyQTg3MTI0RDExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjlFNUUyQTg4MTI0RDExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUU1RTJBODUxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUU1RTJBODYxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6oCfPiAAABfUlEQVR42uyWTU/DMAyGm3bdBxp062hHe+PC//9HCIkDYpNAO7CPAuWN5Eohyhpno2GHWqq8pO78xHHsiLquH4L/l6cwuBAZaOPKs//YBFIJIR59UiAt7huYi90aE/UQakTDLaL26RUEAAJqiefm93T9Bpj1X4O0bY0OIUXCpYBJvYDAUWyAUCWliHGTcnpqRMaM72ImRAJVknYG+eb4YEDIBeU0zGnsBLK1ODogYSsLhDwIJeVVk18lzfNA4ERGZNXi59UCIQhiYDilpSm/jp4awLxDvWhlf4/nGe8+LLuSt+SZul28ggaHG6gNVhDR+IuRFzOoxGKWwG7vVFm5AAQxgcqYpzrjFjR9zwPH5LSuT7XlNr2MQm5LzqjLpncNNaM+s8M27Y60g3FwhoSMzrtUQllgLtRs5pZ2cB4IhbvQbGRZv1NsrhyS8+SI5Mo9RJWpjAI1xqKL+0iEP180vy214JbeR12AyOgsHI7e0NfFyKv0ID1ID+IqPwIMAOeljGQOryBmAAAAAElFTkSuQmCC)!important}.at4-recommended-vertical .at4-no-image-dark-recommended .at4-recommended-item-placeholder-img{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAYAAADwikbvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTM2MTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTM3MTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDNEQzI1MzQxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDNEQzI1MzUxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5GfbtkAAAAxklEQVR42qRSTQvCMAxduk53mEOHKFPP/v8/5cGTiIibivVFUomlG7gFHvloXpKmJefcPhkmNyvGEWj+IOZA6ckPImoxxVwOLvCvXUzkpayNCpRQK64IbOBnAYGAXMeMslNlU+CzrIEdCkxi5DPAoz6BE8ZuVNdKJuL8rS9sv62IXlCHyP0KqKUKZXK9uwkSLVArfwpVR3b225kXwovibcP+jC4jUtfWPZmfqJJnYlkAM128j1z0nHWKSUbIKDL/msHktwADAPptQo+vkZNLAAAAAElFTkSuQmCC)!important}.at4-recommended-horizontal .at4-no-image-gray-recommended .at4-recommended-item-placeholder-img,.at4-recommended-horizontal .at4-no-image-light-recommended .at4-recommended-item-placeholder-img,.at4-recommended-horizontal .at4-no-image-minimal-recommended .at4-recommended-item-placeholder-img{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAfCAYAAACCox+xAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTMyMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTMzMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUU1RTJBODkxMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUU1RTJBOEExMjREMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6dfDQvAAABg0lEQVR42uyWS0vDQBDH82jaKNW0qUltbl68e/Di98eLBz+CCB5EBaWIpUat/4UJLMuame1j7SEDYbqbKfPLvHbDi8ur8+D/5T4K9kR6xrr27D+xgdS3N9d3PilQFmcNzN6mxkbdhxrQcoGofXkFAUAINcVzrG2vsP8KmJdtg7SlxoRQouBywOReQOAosUDoklPEpEU5XDciqeB/iRAig6pIO4P8CHysBBDqg0palrR2Alkwjj5RsDUDoRqhorpq6quifRkInKiIPLf4eWIgQoLoWbq0stXXn10DmDeoR2PsL/E84N0Hk5Wypc70dMkGGhzOoeb4gpjW34K6GEFljFkGu6XTZJUCEMQBVCHs6kI60MycB47FyUmo20oPvYJCzhVnvIsR3zg5ghoRTNpyHKTBBhIJTt6pFsoZ9iLDZswcB5uBULhnho0a66eazaFDca59Hym1e4guQ4rCO4Fu/T4Sw8Gk+c3MghN6H+8CRKVg4tB6fV8XI6/SgXQgHYir/AowAMU5TskhKVUNAAAAAElFTkSuQmCC)!important}.at4-recommended-vertical .at4-no-image-gray-recommended .at4-recommended-item-placeholder-img,.at4-recommended-vertical .at4-no-image-light-recommended .at4-recommended-item-placeholder-img,.at4-recommended-vertical .at4-no-image-minimal-recommended .at4-recommended-item-placeholder-img{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAOCAYAAADwikbvAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjAzREMyNTNBMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjAzREMyNTNCMTI0RjExRTM4NzAwREJDRjlCQzAyMUVFIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6MDNEQzI1MzgxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6MDNEQzI1MzkxMjRGMTFFMzg3MDBEQkNGOUJDMDIxRUUiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz65Fr9cAAAA0ElEQVR42qRRuQrCQBDd3SSaIgYNosSrtLew8f+xsfAnYmEVRMR4YHwjExjCbsBk4DHHzptjR2+2u7VqJ3efjTNQ/EEMgbgiv46H/QNTDPnhCv/mYiLPI21EIIaaUEVgBj+oETQQypgRtidsXfNJpsACBXo28gWgUd9AjrEL0TXhiSh/XhWudlZI/kCdLPtFUGMRCni9p6kl+kAq/D5UavmzX2fNd87obsCSfztnrOR0rjvTiRImkoyAQQNRyZ2jhjenGNVBOpF1WZatyV8BBgBJ+irgS/KHdAAAAABJRU5ErkJggg==)!important}#at-drawer.ats-dark,.at4-recommended.ats-dark .at4-recommended-horizontal .at4-recommended-item-caption,.at4-recommended.ats-dark .at4-recommended-vertical .at4-recommended-item-caption{background:#262b30}#at-drawer.ats-gray,.at4-recommended.ats-gray .at4-recommended-horizontal .at4-recommended-item-caption{background:#f2f2f2}#at-drawer.ats-light,.at4-recommended.ats-light .at4-recommended-horizontal .at4-recommended-item-caption{background:#fff}.at4-recommended.ats-dark .at4-recommended-vertical .at4-recommended-item{background:none}.at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:hover,.at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:link,.at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption a:visited,.at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption small,.at4-recommended.ats-dark .at4-recommended-item-caption,.at4-recommended.ats-dark .at-logo a:hover,.at4-recommended.ats-dark .at-recommended-label.at-vertical{color:#fff}.at4-recommended-vertical-logo{padding-top:0;text-align:left}.at4-recommended-vertical-logo .at4-logo-container{line-height:10px}.at4-recommended-horizontal-logo{text-align:center}.at4-recommended.at-inline .at4-recommended-horizontal-logo{text-align:left}#at4-thankyou .at4-recommended.at-inline .at4-recommended-horizontal{text-align:center}.at4-recommended .at-logo{margin:10px 0 0;padding:0;height:25px;overflow:auto;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box}.at4-recommended.at-inline .at4-recommended-horizontal .at-logo{text-align:left}.at4-recommended .at4-logo-container a.at-sponsored-link{color:#666}.at4-recommended-class .at4-logo-container a:hover,.at4-recommendedbox-outer-container .at4-recommended-recommendedbox .at4-logo-container a:hover{color:#000}</style><style type="text/css">.at-recommendedjumbo-outer-container{margin:0;padding:0;border:0;background:none;color:#000}.at-recommendedjumbo-footer{position:relative;width:100%;height:510px;overflow:hidden;transition:all .3s ease-in-out}.at-mobile .at-recommendedjumbo-footer{height:250px}.at-recommendedjumbo-footer #bg-link:after{content:'';position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,.75)}.at-recommendedjumbo-footer:hover #bg-link:after{background:rgba(0,0,0,.85)}.at-recommendedjumbo-footer *,.at-recommendedjumbo-footer :after,.at-recommendedjumbo-footer :before{box-sizing:border-box}.at-recommendedjumbo-footer:hover #at-recommendedjumbo-footer-bg{-webkit-animation:atRecommendedJumboAnimatedBackground 1s ease-in-out 1;animation:atRecommendedJumboAnimatedBackground 1s ease-in-out 1;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards}.at-recommendedjumbo-footer #at-recommendedjumbo-top-holder{position:absolute;top:0;padding:0 40px;width:100%}.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-top-holder{padding:0 20px}.at-recommendedjumbo-footer .at-recommendedjumbo-footer-inner{position:relative;text-align:center;font-family:helvetica,arial,sans-serif;z-index:2;width:100%}.at-recommendedjumbo-footer #at-recommendedjumbo-label-holder{margin:40px 0 0;max-height:30px}.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-label-holder{margin:20px 0 0;max-height:20px}.at-recommendedjumbo-footer #at-recommendedjumbo-label{font-weight:300;font-size:24px;line-height:24px;color:#fff;margin:0}.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-label{font-weight:150;font-size:14px;line-height:14px}.at-recommendedjumbo-footer #at-recommendedjumbo-title-holder{margin:20px 0 0;min-height:3pc;max-height:78pt}.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-title-holder{margin:10px 0 0;min-height:24px;max-height:54px}.at-recommendedjumbo-footer #at-recommendedjumbo-content-title{font-size:3pc;line-height:52px;font-weight:700;margin:0}.at-mobile .at-recommendedjumbo-footer #at-recommendedjumbo-content-title{font-size:24px;line-height:27px}.at-recommendedjumbo-footer a{text-decoration:none;color:#fff}.at-recommendedjumbo-footer a:visited{color:#fff}.at-recommendedjumbo-footer small{margin:20px 0 0;display:inline-block;height:2pc;line-height:2pc;font-size:14px;color:#ccc;cursor:default}.at-mobile .at-recommendedjumbo-footer small{margin:10px 0 0;height:14px;line-height:14px;font-size:9pt}.at-recommendedjumbo-footer .at-logo-container{position:absolute;bottom:20px;margin:auto;left:0;right:0}.at-mobile .at-recommendedjumbo-footer .at-logo-container{bottom:10px}.at-recommendedjumbo-footer a.at-sponsored-link{color:#ccc}.at-recommendedjumbo-footer div #at-recommendedjumbo-logo-link{padding:2px 0 0 11px;text-decoration:none;line-height:20px;font-family:helvetica,arial,sans-serif;font-size:9px;color:#ccc}@-webkit-keyframes atRecommendedJumboAnimatedBackground{0%{-webkit-transform:scale(1,1);transform:scale(1,1)}to{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}}@keyframes atRecommendedJumboAnimatedBackground{0%{-webkit-transform:scale(1,1);transform:scale(1,1)}to{-webkit-transform:scale(1.1,1.1);transform:scale(1.1,1.1)}}</style><style type="text/css">.at-resp-share-element{position:relative;padding:0;margin:0;font-size:0;line-height:0}.at-resp-share-element:after,.at-resp-share-element:before{content:" ";display:table}.at-resp-share-element.at-mobile .at4-share-count-container,.at-resp-share-element.at-mobile .at-label{display:none}.at-resp-share-element .at-share-btn{display:inline-block;*display:inline;*zoom:1;margin:0 2px 5px;padding:0;overflow:hidden;line-height:0;text-decoration:none;text-transform:none;color:#fff;cursor:pointer;transition:all .2s ease-in-out;border:0;font-family:helvetica neue,helvetica,arial,sans-serif;background-color:transparent}.at-resp-share-element .at-share-btn::-moz-focus-inner{border:0;padding:0}.at-resp-share-element .at-share-btn:focus,.at-resp-share-element .at-share-btn:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);color:#fff;text-decoration:none}.at-resp-share-element .at-share-btn .at-icon-wrapper{float:left}.at-resp-share-element .at-share-btn.at-share-btn.at-svc-compact:hover{-webkit-transform:none;transform:none}.at-resp-share-element .at-share-btn .at-label{font-family:helvetica neue,helvetica,arial,sans-serif;font-size:9pt;padding:0 15px 0 0;margin:0 0 0 5px;height:2pc;line-height:2pc;background:none}.at-resp-share-element .at-icon,.at-resp-share-element .at-label{cursor:pointer}.at-resp-share-element .at4-share-count-container{text-decoration:none;float:right;padding-right:15px;font-size:9pt}.at-mobile .at-resp-share-element .at-label{display:none}.at-resp-share-element.at-mobile .at-share-btn{margin-right:5px}.at-mobile .at-resp-share-element .at-share-btn{padding:5px;margin-right:5px}</style><style type="text/css">.at-share-tbx-element{position:relative;margin:0;color:#fff;font-size:0}.at-share-tbx-element,.at-share-tbx-element .at-share-btn{font-family:helvetica neue,helvetica,arial,sans-serif;padding:0;line-height:0}.at-share-tbx-element .at-share-btn{cursor:pointer;margin:0 5px 5px 0;display:inline-block;overflow:hidden;border:0;text-decoration:none;text-transform:none;background-color:transparent;color:inherit;transition:all .2s ease-in-out}.at-share-tbx-element .at-share-btn:focus,.at-share-tbx-element .at-share-btn:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px);outline-offset:-1px;color:inherit}.at-share-tbx-element .at-share-btn::-moz-focus-inner{border:0;padding:0}.at-share-tbx-element .at-share-btn.at-share-btn.at-svc-compact:hover{-webkit-transform:none;transform:none}.at-share-tbx-element .at-icon-wrapper{vertical-align:middle}.at-share-tbx-element .at4-share-count,.at-share-tbx-element .at-label{margin:0 7.5px 0 2.5px;text-decoration:none;vertical-align:middle;display:inline-block;background:none;height:0;font-size:inherit;line-height:inherit;color:inherit}.at-share-tbx-element.at-mobile .at4-share-count,.at-share-tbx-element.at-mobile .at-label{display:none}.at-share-tbx-element .at_native_button{vertical-align:middle}.at-share-tbx-element .addthis_counter.addthis_bubble_style{margin:0 2px;vertical-align:middle;display:inline-block}.at-share-tbx-element .fb_iframe_widget{display:block}.at-share-tbx-element.at-share-tbx-native .at300b{vertical-align:middle}.at-style-responsive .at-share-btn{padding:5px}.at-style-jumbo{display:table}.at-style-jumbo .at4-spacer{height:1px;display:block;visibility:hidden;opacity:0}.at-style-jumbo .at4-count-container{display:table-cell;text-align:center;min-width:200px;vertical-align:middle;border-right:1px solid #ccc;padding-right:20px}.at-style-jumbo .at4-count{font-size:60px;line-height:60px;font-weight:700}.at-style-jumbo .at4-count-title{position:relative;font-size:18px;line-height:18px;bottom:2px}.at-style-jumbo .at-share-btn-elements{display:table-cell;vertical-align:middle;padding-left:20px}.at_flat_counter{cursor:pointer;font-family:helvetica,arial,sans-serif;font-weight:700;text-transform:uppercase;display:inline-block;position:relative;vertical-align:top;height:auto;margin:0 5px;padding:0 6px;left:-1px;background:#ebebeb;color:#32363b;transition:all .2s ease}.at_flat_counter:after{top:30%;left:-4px;content:"";position:absolute;border-width:5px 8px 5px 0;border-style:solid;border-color:transparent #ebebeb transparent transparent;display:block;width:0;height:0;-webkit-transform:translateY(360deg);transform:translateY(360deg)}.at_flat_counter:hover{background:#e1e2e2}</style><style type="text/css">.at4-thankyou-background{top:0;right:0;left:0;bottom:0;-webkit-overflow-scrolling:touch;z-index:9999999;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpizCuu/sRABGBiIBKMKqSOQoAAAwC8KgJipENhxwAAAABJRU5ErkJggg==);background:hsla(217,6%,46%,.95)}.at4-thankyou-background.at-thankyou-shown{position:fixed}.at4-thankyou-inner{position:absolute;width:100%;top:10%;left:50%;margin-left:-50%;text-align:center}.at4-thankyou-mobile .at4-thankyou-inner{top:5%}.thankyou-description{font-weight:400}.at4-thankyou-background .at4lb-inner{position:relative;width:100%;height:100%}.at4-thankyou-background .at4lb-inner .at4x{position:absolute;top:15px;right:15px;display:block;width:20px;height:20px;padding:20px;margin:0;cursor:pointer;transition:opacity .25s ease-in;opacity:.4;background:url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTEvMTMvMTKswDp5AAAAd0lEQVQ4jb2VQRLAIAgDE///Z3qqY1FAhalHMCsCIkVEAIAkkVgvp2lDBgYAnAyHkWotLccNrEd4A7X2TqIdqLfnWBAdaF5rJdyJfjtPH5GT37CaGhoVq3nOm/XflUuLUto2pY1d+vRKh0Pp+MrAVtDe2JkvYNQ+jVSEEFmOkggAAAAASUVORK5CYII=") no-repeat center center;overflow:hidden;text-indent:-99999em;border:1px solid transparent}.at4-thankyou-background .at4lb-inner .at4x:focus,.at4-thankyou-background .at4lb-inner .at4x:hover{border:1px solid #fff;border-radius:50%;outline:0}.at4-thankyou-background .at4lb-inner #at4-palogo{position:absolute;bottom:10px;display:inline-block;text-decoration:none;font-family:helvetica,arial,sans-serif;font-size:11px;cursor:pointer;-webkit-transition:opacity .25s ease-in;moz-transition:opacity .25s ease-in;transition:opacity .25s ease-in;opacity:.5;z-index:100020;color:#fff;padding:2px 0 0 13px}.at4-thankyou-background .at4lb-inner #at4-palogo .at-branding-addthis,.at4-thankyou-background .at4lb-inner #at4-palogo .at-branding-info{color:#fff}.at4-thankyou-background .at4lb-inner #at4-palogo:hover,.at4-thankyou-background.ats-dark .at4lb-inner a#at4-palogo:hover{text-decoration:none;color:#fff;opacity:1}.at4-thankyou-background.ats-dark{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABtJREFUeNpiZGBgeMZABGBiIBKMKqSOQoAAAwB+cQD6hqlbCwAAAABJRU5ErkJggg==");background:rgba(0,0,0,.85)}.at4-thankyou-background .thankyou-title{color:#fff;font-size:38.5px;margin:10px 20px;line-height:38.5px;font-family:helvetica neue,helvetica,arial,sans-serif;font-weight:300}.at4-thankyou-background.ats-dark .thankyou-description,.at4-thankyou-background.ats-dark .thankyou-title{color:#fff}.at4-thankyou-background .thankyou-description{color:#fff;font-size:18px;margin:10px 0;line-height:24px;padding:0;font-family:helvetica neue,helvetica,arial,sans-serif;font-weight:300}.at4-thankyou-background .at4-thanks-icons{padding-top:10px}.at4-thankyou-mobile *{-webkit-overflow-scrolling:touch}#at4-thankyou .at4-recommended-recommendedbox .at-logo{display:none}.at4-thankyou .at-h3{height:49px;line-height:49px;margin:0 50px 0 20px;padding:1px 0 0;font-family:helvetica neue,helvetica,arial,sans-serif;font-size:1pc;font-weight:700;color:#fff;text-shadow:0 1px #000}.at4-thanks{padding-top:50px;text-align:center}.at4-thanks label{display:block;margin:0 0 15px;font-size:1pc;line-height:1pc}.at4-thanks .at4-h2{background:none;border:none;margin:0 0 10px;padding:0;font-family:helvetica neue,helvetica,arial,sans-serif;font-size:28px;font-weight:300;color:#000}.at4-thanks .at4-thanks-icons{position:relative;height:2pc}.at4-thanks .at4-thanks-icons .at-thankyou-label{display:block;padding-bottom:10px;font-size:14px;color:#666}.at4-thankyou-layer .at-follow .at-icon-wrapper{width:2pc;height:2pc}</style><style type="text/css">.at4-recommended-toaster{position:fixed;top:auto;bottom:0;right:0;z-index:100021}.at4-recommended-toaster.ats-light{border:1px solid #c5c5c5;background:#fff}.at4-recommended-toaster.ats-gray{border:1px solid #c5c5c5;background:#f2f2f2}.at4-recommended-toaster.ats-dark{background:#262b30;color:#fff}.at4-recommended-toaster .at4-recommended-container{padding-top:0;margin:0}.at4-recommended.at4-recommended-toaster div.at-recommended-label{line-height:1pc;font-size:1pc;text-align:left;padding:20px 0 0 20px}.at4-toaster-outer .at4-recommended .at4-recommended-item .at4-recommended-item-caption .at-h4{font-size:11px;line-height:11px;margin:10px 0 6px;height:30px}.at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-gray,.at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-light{color:#464646}.at4-recommended.at4-recommended-toaster div.at-recommended-label.ats-dark{color:#fff}.at4-toaster-close-control{position:absolute;top:0;right:0;display:block;width:20px;height:20px;line-height:20px;margin:5px 5px 0 0;padding:0;text-indent:-9999em}.at4-toaster-open-control{position:fixed;right:0;bottom:0;z-index:100020}.at4-toaster-outer .at4-recommended-item{width:90pt;border:0;margin:9px 10px 0}.at4-toaster-outer .at4-recommended-item:first-child{margin-left:20px}.at4-toaster-outer .at4-recommended-item:last-child{margin-right:20px}.at4-toaster-outer .at4-recommended-item .at4-recommended-item-img{max-height:90pt;max-width:90pt}.at4-toaster-outer .at4-recommended-item .at4-recommended-item-img img{height:90pt;width:90pt}.at4-toaster-outer .at4-recommended-item .at4-recommended-item-caption{height:30px;padding:0;margin:0;height:initial}.at4-toaster-outer .ats-dark .at4-recommended-item .at4-recommended-item-caption{background:#262b30}.at4-toaster-outer .at4-recommended .at4-recommended-item .at4-recommended-item-caption small{width:auto;line-height:14px;margin:0}.at4-toaster-outer .at4-recommended.ats-dark .at4-recommended-item .at4-recommended-item-caption small{color:#fff}.at4-recommended-toaster .at-logo{margin:0 0 3px 20px;text-align:left}.at4-recommended-toaster .at-logo .at4-logo-container.at-sponsored-logo{position:relative}.at4-toaster-outer .at4-recommended-item .sponsored-label{text-align:right;font-size:10px;color:#666;float:right;position:fixed;bottom:6px;right:20px;top:initial;z-index:99999}</style><style type="text/css">.at4-whatsnext{position:fixed;bottom:0!important;right:0;background:#fff;border:1px solid #c5c5c5;margin:-1px;width:390px;height:90pt;overflow:hidden;font-size:9pt;font-weight:400;color:#000;z-index:1800000000}.at4-whatsnext a{color:#666}.at4-whatsnext .at-whatsnext-content{height:90pt;position:relative}.at4-whatsnext .at-whatsnext-content .at-branding{position:absolute;bottom:15px;right:10px;padding-left:9px;text-decoration:none;line-height:10px;font-family:helvetica,arial,sans-serif;font-size:10px;color:#666}.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-inner{position:absolute;top:15px;right:20px;bottom:15px;left:140px;text-align:left;height:105px}.at4-whatsnext .at-whatsnext-content-inner a{display:inline-block}.at4-whatsnext .at-whatsnext-content-inner div.at-h6{text-align:left;margin:0;padding:0 0 3px;font-size:11px;color:#666;cursor:default}.at4-whatsnext .at-whatsnext-content .at-h3{text-align:left;margin:5px 0;padding:0;line-height:1.2em;font-weight:400;font-size:14px;height:3pc}.at4-whatsnext .at-whatsnext-content-inner a:link,.at4-whatsnext .at-whatsnext-content-inner a:visited{text-decoration:none;font-weight:400;color:#464646}.at4-whatsnext .at-whatsnext-content-inner a:hover{color:#000}.at4-whatsnext .at-whatsnext-content-inner small{position:absolute;bottom:15px;line-height:10px;font-size:11px;color:#666;cursor:default;text-align:left}.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-img{position:absolute;top:0;left:0;width:90pt;height:90pt;overflow:hidden}.at4-whatsnext .at-whatsnext-content .at-whatsnext-content-img img{position:absolute;top:0;left:0;max-height:none;max-width:none}.at4-whatsnext .at-whatsnext-close-control{position:absolute;top:0;right:0;display:block;width:20px;height:20px;line-height:20px;margin:0 5px 0 0;padding:0;text-indent:-9999em}.at-whatsnext-open-control{position:fixed;right:0;bottom:0;z-index:100020}.at4-whatsnext.ats-dark{background:#262b30}.at4-whatsnext.ats-dark .at-whatsnext-content .at-h3,.at4-whatsnext.ats-dark .at-whatsnext-content a.at4-logo:hover,.at4-whatsnext.ats-dark .at-whatsnext-content-inner a:link,.at4-whatsnext.ats-dark .at-whatsnext-content-inner a:visited{color:#fff}.at4-whatsnext.ats-light{background:#fff}.at4-whatsnext.ats-gray{background:#f2f2f2}.at4-whatsnext.at-whatsnext-nophoto{width:270px}.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content-img{display:none}.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner{top:15px;right:0;left:20px}.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner.addthis_32x32_style{top:0;right:0;left:0;padding:45px 20px 0;font-size:20px}.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .at4-icon,.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .at4-icon-fw,.at4-whatsnext.at-whatsnext-nophoto .at-whatsnext-content .at-whatsnext-content-inner .whatsnext-msg{vertical-align:middle}.at-whatsnext-img,.at-whatsnext-img-lnk{position:absolute;left:0}</style><style type="text/css">.at4-whatsnextmobile{position:fixed;bottom:0;right:0;left:0;background:#fff;z-index:9999998;height:170px;font-size:28px}.at4-whatsnextmobile .col-2{height:100%;font-size:1em}.at4-whatsnextmobile .col-2:first-child{max-width:200px;display:inline-block;float:left}.at4-whatsnextmobile .col-2:last-child{position:absolute;left:200px;right:50px;top:0;bottom:0;display:inline-block}.at4-whatsnextmobile .at-whatsnext-content-inner{font-size:1em}.at4-whatsnextmobile .at-whatsnext-content-img img{height:100%;width:100%}.at4-whatsnextmobile .at-close-control{font-size:1em;position:absolute;top:0;right:0;width:50px;height:50px}.at4-whatsnextmobile .at-close-control button{width:100%;height:100%;font-size:1em;font-weight:400;text-decoration:none;opacity:.5;padding:0;cursor:pointer;background:0 0;border:0;-webkit-appearance:none}.at4-whatsnextmobile .at-h3,.at4-whatsnextmobile .at-h6{font-size:1em;margin:0;color:#a1a1a1;margin-left:2.5%;margin-top:25px}.at4-whatsnextmobile .at-h3{font-size:1em;line-height:1em;font-weight:500;height:50%}.at4-whatsnextmobile .at-h3 a{font-size:1em;text-decoration:none}.at4-whatsnextmobile .at-h6{font-size:.8em;line-height:.8em;font-weight:500}.at4-whatsnextmobile .footer{position:absolute;bottom:2px;left:200px;right:0;padding-left:2.5%;font-size:1em;line-height:.6em}.at4-whatsnextmobile .footer small{font-size:.6em;color:#a1a1a1}.at4-whatsnextmobile .footer small:first-child{margin-right:5%;float:left}.at4-whatsnextmobile .footer small:last-child{margin-right:2.5%;float:right}.at4-whatsnextmobile .at-whatsnext-content{height:100%}.at4-whatsnextmobile.ats-dark{background:#262b30;color:#fff}.at4-whatsnextmobile .at-close-control button{color:#bfbfbf}.at4-whatsnextmobile.ats-dark a:link,.at4-whatsnextmobile.ats-dark a:visited{color:#fff}.at4-whatsnextmobile.ats-gray{background:#f2f2f2;color:#262b30}.at4-whatsnextmobile.ats-light{background:#fff;color:#262b30}.at4-whatsnextmobile.ats-dark .footer a:link,.at4-whatsnextmobile.ats-dark .footer a:visited,.at4-whatsnextmobile.ats-gray .footer a:link,.at4-whatsnextmobile.ats-gray .footer a:visited,.at4-whatsnextmobile.ats-light .footer a:link,.at4-whatsnextmobile.ats-light .footer a:visited{color:#a1a1a1}.at4-whatsnextmobile.ats-gray a:link,.at4-whatsnextmobile.ats-gray a:visited,.at4-whatsnextmobile.ats-light a:link,.at4-whatsnextmobile.ats-light a:visited{color:#262b30}@media only screen and (min-device-width:320px) and (max-device-width:480px){.at4-whatsnextmobile{height:85px;font-size:14px}.at4-whatsnextmobile .col-2:first-child{width:75pt}.at4-whatsnextmobile .col-2:last-child{right:25px;left:75pt}.at4-whatsnextmobile .footer{left:75pt}.at4-whatsnextmobile .at-close-control{width:25px;height:25px}.at4-whatsnextmobile .at-h3,.at4-whatsnextmobile .at-h6{margin-top:12.5px}}</style><style type="text/css">.at-custom-mobile-bar{left:0;right:0;width:100%;height:56px;position:fixed;text-align:center;z-index:100020;background:#fff;overflow:hidden;box-shadow:0 0 10px 0 rgba(0,0,0,.2);font:initial;line-height:normal;top:auto;bottom:0}.at-custom-mobile-bar.at-custom-mobile-bar-zindex-hide{z-index:-1!important}.at-custom-mobile-bar.atss-top{top:0;bottom:auto}.at-custom-mobile-bar.atss-bottom{top:auto;bottom:0}.at-custom-mobile-bar .at-custom-mobile-bar-btns{display:inline-block;text-align:center}.at-custom-mobile-bar .at-custom-mobile-bar-counter,.at-custom-mobile-bar .at-share-btn{margin-top:4px}.at-custom-mobile-bar .at-share-btn{display:inline-block;text-decoration:none;transition:none;box-sizing:content-box}.at-custom-mobile-bar .at-custom-mobile-bar-counter{font-family:Helvetica neue,arial;vertical-align:top;margin-left:4px;margin-right:4px;display:inline-block}.at-custom-mobile-bar .at-custom-mobile-bar-count{font-size:26px;line-height:1.25em;color:#222}.at-custom-mobile-bar .at-custom-mobile-bar-text{font-size:9pt;line-height:1.25em;color:#888;letter-spacing:1px}.at-custom-mobile-bar .at-icon-wrapper{text-align:center;height:3pc;width:3pc;margin:0 4px}.at-custom-mobile-bar .at-icon{vertical-align:top;margin:8px;width:2pc;height:2pc}.at-custom-mobile-bar.at-shfs-medium{height:3pc}.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-counter{margin-top:6px}.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-count{font-size:18px}.at-custom-mobile-bar.at-shfs-medium .at-custom-mobile-bar-text{font-size:10px}.at-custom-mobile-bar.at-shfs-medium .at-icon-wrapper{height:40px;width:40px}.at-custom-mobile-bar.at-shfs-medium .at-icon{margin:6px;width:28px;height:28px}.at-custom-mobile-bar.at-shfs-small{height:40px}.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-counter{margin-top:3px}.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-count{font-size:1pc}.at-custom-mobile-bar.at-shfs-small .at-custom-mobile-bar-text{font-size:10px}.at-custom-mobile-bar.at-shfs-small .at-icon-wrapper{height:2pc;width:2pc}.at-custom-mobile-bar.at-shfs-small .at-icon{margin:4px;width:24px;height:24px}</style><style type="text/css">.at-custom-sidebar{top:20%;width:58px;position:fixed;text-align:center;z-index:100020;background:#fff;overflow:hidden;box-shadow:0 0 10px 0 rgba(0,0,0,.2);font:initial;line-height:normal;top:auto;bottom:0}.at-custom-sidebar.at-custom-sidebar-zindex-hide{z-index:-1!important}.at-custom-sidebar.atss-left{left:0;right:auto;float:left;border-radius:0 4px 4px 0}.at-custom-sidebar.atss-right{left:auto;right:0;float:right;border-radius:4px 0 0 4px}.at-custom-sidebar .at-custom-sidebar-btns{display:inline-block;text-align:center;padding-top:4px}.at-custom-sidebar .at-custom-sidebar-counter{margin-bottom:8px}.at-custom-sidebar .at-share-btn{display:inline-block;text-decoration:none;transition:none;box-sizing:content-box}.at-custom-sidebar .at-custom-sidebar-counter{font-family:Helvetica neue,arial;vertical-align:top;margin-left:4px;margin-right:4px;display:inline-block}.at-custom-sidebar .at-custom-sidebar-count{font-size:21px;line-height:1.25em;color:#222}.at-custom-sidebar .at-custom-sidebar-text{font-size:10px;line-height:1.25em;color:#888;letter-spacing:1px}.at-custom-sidebar .at-icon-wrapper{text-align:center;margin:0 4px}.at-custom-sidebar .at-icon{vertical-align:top;margin:9px;width:2pc;height:2pc}.at-custom-sidebar .at-icon-wrapper{position:relative}.at-custom-sidebar .at4-share-count,.at-custom-sidebar .at4-share-count-container{line-height:1pc;font-size:10px}.at-custom-sidebar .at4-share-count{text-indent:0;font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-weight:200;width:100%;height:1pc}.at-custom-sidebar .at4-share-count-anchor .at-icon{margin-top:3px}.at-custom-sidebar .at4-share-count-container{position:absolute;left:0;right:auto;top:auto;bottom:0;width:100%;color:#fff;background:inherit}</style><style type="text/css">.at-image-sharing-mobile-icon{position:absolute;background:#000 url(//s7.addthis.com/static/44a36d35bafef33aa9455b7d3039a771.png) no-repeat top center;background-color:rgba(0,0,0,.9);background-image:url(//s7.addthis.com/static/10db525181ee0bbe1a515001be1c7818.svg),none;border-radius:3px;width:50px;height:40px;top:-9999px;left:-9999px}.at-image-sharing-tool{display:block;position:absolute;text-align:center;z-index:9001;background:none;overflow:hidden;top:-9999px;left:-9999px;font:initial;line-height:0}.at-image-sharing-tool.addthis-animated{-webkit-animation-duration:.15s;animation-duration:.15s}.at-image-sharing-tool.at-orientation-vertical .at-share-btn{display:block}.at-image-sharing-tool.at-orientation-horizontal .at-share-btn{display:inline-block}.at-image-sharing-tool.at-image-sharing-tool-size-big .at-icon{width:43px;height:43px}.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-share-btn{margin:0!important}.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-icon-wrapper{height:60px;width:100%;border-radius:0!important}.at-image-sharing-tool.at-image-sharing-tool-size-mobile .at-icon{max-width:100%;height:54px!important;width:54px!important}.at-image-sharing-tool .at-custom-shape.at-image-sharing-tool-btns{margin-right:8px;margin-bottom:8px}.at-image-sharing-tool .at-custom-shape .at-share-btn{margin-top:8px;margin-left:8px}.at-image-sharing-tool .at-share-btn{line-height:0;text-decoration:none;transition:none;box-sizing:content-box}.at-image-sharing-tool .at-icon-wrapper{text-align:center;height:100%;width:100%}.at-image-sharing-tool .at-icon{vertical-align:top;width:2pc;height:2pc;margin:3px}</style><style type="text/css">.at-expanding-share-button{box-sizing:border-box;position:fixed;z-index:9999}.at-expanding-share-button[data-position=bottom-right]{bottom:10px;right:10px}.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-bg,.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after,.at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper,.at-expanding-share-button[data-position=bottom-right] [data-name]:after{float:right}.at-expanding-share-button[data-position=bottom-right] [data-name]:after{margin-right:10px}.at-expanding-share-button[data-position=bottom-right] .at-expanding-share-button-toggle-btn[data-name]:after{margin-right:5px}.at-expanding-share-button[data-position=bottom-right] .at-icon-wrapper{margin-right:-3px}.at-expanding-share-button[data-position=bottom-left]{bottom:10px;left:10px}.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-bg,.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after,.at-expanding-share-button[data-position=bottom-left] .at-icon-wrapper,.at-expanding-share-button[data-position=bottom-left] [data-name]:after{float:left}.at-expanding-share-button[data-position=bottom-left] [data-name]:after{margin-left:10px}.at-expanding-share-button[data-position=bottom-left] .at-expanding-share-button-toggle-btn[data-name]:after{margin-left:5px}.at-expanding-share-button *,.at-expanding-share-button :after,.at-expanding-share-button :before{box-sizing:border-box}.at-expanding-share-button .at-expanding-share-button-services-list{display:none;list-style:none;margin:0 5px;overflow:visible;padding:0}.at-expanding-share-button .at-expanding-share-button-services-list>li{display:block;height:45px;position:relative;overflow:visible}.at-expanding-share-button .at-expanding-share-button-toggle-btn,.at-expanding-share-button .at-share-btn{transition:.1s;text-decoration:none}.at-expanding-share-button .at-share-btn{display:block;height:40px;padding:0 3px 0 0}.at-expanding-share-button .at-expanding-share-button-toggle-btn{position:relative;overflow:auto}.at-expanding-share-button .at-expanding-share-button-toggle-btn.at-expanding-share-button-hidden[data-name]:after{display:none}.at-expanding-share-button .at-expanding-share-button-toggle-bg{box-shadow:0 2px 4px 0 rgba(0,0,0,.3);border-radius:50%;position:relative}.at-expanding-share-button .at-expanding-share-button-toggle-bg>span{background-image:url("data:image/svg+xml,%3Csvg%20width%3D%2232px%22%20height%3D%2232px%22%20viewBox%3D%220%200%2032%2032%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Ctitle%3Eshare%3C%2Ftitle%3E%3Cg%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cg%20fill%3D%22%23FFFFFF%22%3E%3Cpath%20d%3D%22M26%2C13.4285714%20C26%2C13.6220248%2025.9293162%2C13.7894338%2025.7879464%2C13.9308036%20L20.0736607%2C19.6450893%20C19.932291%2C19.786459%2019.7648819%2C19.8571429%2019.5714286%2C19.8571429%20C19.3779752%2C19.8571429%2019.2105662%2C19.786459%2019.0691964%2C19.6450893%20C18.9278267%2C19.5037195%2018.8571429%2C19.3363105%2018.8571429%2C19.1428571%20L18.8571429%2C16.2857143%20L16.3571429%2C16.2857143%20C15.6279725%2C16.2857143%2014.9750773%2C16.3080355%2014.3984375%2C16.3526786%20C13.8217977%2C16.3973217%2013.2488868%2C16.477306%2012.6796875%2C16.5926339%20C12.1104882%2C16.7079619%2011.6157015%2C16.8660704%2011.1953125%2C17.0669643%20C10.7749235%2C17.2678581%2010.3824423%2C17.5264121%2010.0178571%2C17.8426339%20C9.65327199%2C18.1588557%209.35565592%2C18.534596%209.125%2C18.9698661%20C8.89434408%2C19.4051361%208.71391434%2C19.9203839%208.58370536%2C20.515625%20C8.45349637%2C21.1108661%208.38839286%2C21.7842224%208.38839286%2C22.5357143%20C8.38839286%2C22.9449425%208.40699386%2C23.4025272%208.44419643%2C23.9084821%20C8.44419643%2C23.9531252%208.45349693%2C24.0405499%208.47209821%2C24.1707589%20C8.4906995%2C24.3009679%208.5%2C24.3995532%208.5%2C24.4665179%20C8.5%2C24.5781256%208.46837829%2C24.6711306%208.40513393%2C24.7455357%20C8.34188956%2C24.8199408%208.25446484%2C24.8571429%208.14285714%2C24.8571429%20C8.02380893%2C24.8571429%207.9196433%2C24.7938994%207.83035714%2C24.6674107%20C7.77827355%2C24.6004461%207.72991094%2C24.5186017%207.68526786%2C24.421875%20C7.64062478%2C24.3251483%207.59040206%2C24.2135423%207.53459821%2C24.0870536%20C7.47879436%2C23.9605648%207.43973225%2C23.87128%207.41741071%2C23.8191964%20C6.47246551%2C21.6986501%206%2C20.0208395%206%2C18.7857143%20C6%2C17.3050521%206.19717065%2C16.0662252%206.59151786%2C15.0691964%20C7.79688103%2C12.0706695%2011.0520568%2C10.5714286%2016.3571429%2C10.5714286%20L18.8571429%2C10.5714286%20L18.8571429%2C7.71428571%20C18.8571429%2C7.52083237%2018.9278267%2C7.35342333%2019.0691964%2C7.21205357%20C19.2105662%2C7.07068382%2019.3779752%2C7%2019.5714286%2C7%20C19.7648819%2C7%2019.932291%2C7.07068382%2020.0736607%2C7.21205357%20L25.7879464%2C12.9263393%20C25.9293162%2C13.067709%2026%2C13.2351181%2026%2C13.4285714%20L26%2C13.4285714%20Z%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:center center;background-repeat:no-repeat;transition:transform .4s ease;border-radius:50%;display:block}.at-expanding-share-button .at-icon-wrapper{box-shadow:0 2px 4px 0 rgba(0,0,0,.3);border-radius:50%;display:inline-block;height:40px;line-height:40px;text-align:center;width:40px}.at-expanding-share-button .at-icon{display:inline-block;height:34px;margin:3px 0;vertical-align:top;width:34px}.at-expanding-share-button [data-name]:after{box-shadow:0 2px 4px 0 rgba(0,0,0,.3);-webkit-transform:translate(0, -50%);transform:translate(0, -50%);transition:.4s;background-color:#fff;border-radius:3px;color:#666;content:attr(data-name);font-family:Helvetica Neue,Helvetica,Arial,sans-serif;font-size:9pt;line-height:9pt;font-weight:500;opacity:0;padding:3px 5px;position:relative;top:20px;white-space:nowrap}.at-expanding-share-button.at-expanding-share-button-show-icons .at-expanding-share-button-services-list{display:block}.at-expanding-share-button.at-expanding-share-button-animate-in .at-expanding-share-button-toggle-bg>span{-webkit-transform:rotate(270deg);transform:rotate(270deg);background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%2032%2032%22%3E%3Cg%3E%3Cpath%20d%3D%22M18%2014V8h-4v6H8v4h6v6h4v-6h6v-4h-6z%22%20fill-rule%3D%22evenodd%22%20fill%3D%22white%22%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:center center;background-repeat:no-repeat}.at-expanding-share-button.at-expanding-share-button-animate-in [data-name]:after{opacity:1}.at-expanding-share-button.at-hide-label [data-name]:after{display:none}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle{height:50px}.at-expanding-share-button.at-expanding-share-button-desktop .at-icon-wrapper:hover{box-shadow:0 2px 5px 0 rgba(0,0,0,.5)}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg{height:50px;line-height:50px;width:50px}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg>span{height:50px;width:50px}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:after{box-shadow:0 2px 5px 0 rgba(0,0,0,.2);transition:opacity .2s ease;border-radius:50%;content:'';height:100%;opacity:0;position:absolute;top:0;left:0;width:100%}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-bg:hover:after{opacity:1}.at-expanding-share-button.at-expanding-share-button-desktop .at-expanding-share-button-toggle-btn[data-name]:after{top:25px}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-services-list{margin:0}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-btn,.at-expanding-share-button.at-expanding-share-button-mobile .at-share-btn{outline:0}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle{height:40px;-webkit-tap-highlight-color:transparent}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg,.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-toggle-bg span{height:40px;line-height:40px;width:40px}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash{-webkit-transform:scale(0);transform:scale(0);transition:transform ease,opacity ease-in;background-color:hsla(0,0%,100%,.3);border-radius:50%;height:40px;opacity:1;position:absolute;width:40px;z-index:10000}.at-expanding-share-button.at-expanding-share-button-mobile .at-expanding-share-button-click-flash.at-expanding-share-button-click-flash-animate{-webkit-transform:scale(1);transform:scale(1);opacity:0}.at-expanding-share-button.at-expanding-share-button-mobile+.at-expanding-share-button-mobile-overlay{transition:opacity ease;bottom:0;background-color:hsla(0,0%,87%,.7);display:block;height:auto;left:0;opacity:0;position:fixed;right:0;top:0;width:auto;z-index:9998}.at-expanding-share-button.at-expanding-share-button-mobile+.at-expanding-share-button-mobile-overlay.at-expanding-share-button-hidden{height:0;width:0;z-index:-10000}.at-expanding-share-button.at-expanding-share-button-mobile.at-expanding-share-button-animate-in+.at-expanding-share-button-mobile-overlay{transition:opacity ease;opacity:1}</style><style type="text/css">.at-tjin-element .at300b,.at-tjin-element .at300m{display:inline-block;width:auto;padding:0;margin:0 2px 5px;outline-offset:-1px;transition:all .2s ease-in-out}.at-tjin-element .at300b:focus,.at-tjin-element .at300b:hover,.at-tjin-element .at300m:focus,.at-tjin-element .at300m:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px)}.at-tjin-element .addthis_tjin_label{display:none}.at-tjin-element .addthis_vertical_style .at300b,.at-tjin-element .addthis_vertical_style .at300m{display:block}.at-tjin-element .addthis_vertical_style .at300b .addthis_tjin_label,.at-tjin-element .addthis_vertical_style .at300b .at-icon-wrapper,.at-tjin-element .addthis_vertical_style .at300m .addthis_tjin_label,.at-tjin-element .addthis_vertical_style .at300m .at-icon-wrapper{display:inline-block;vertical-align:middle;margin-right:5px}.at-tjin-element .addthis_vertical_style .at300b:focus,.at-tjin-element .addthis_vertical_style .at300b:hover,.at-tjin-element .addthis_vertical_style .at300m:focus,.at-tjin-element .addthis_vertical_style .at300m:hover{-webkit-transform:none;transform:none}.at-tjin-element .at-tjin-btn{margin:0 5px 5px 0;padding:0;outline-offset:-1px;display:inline-block;box-sizing:content-box;transition:all .2s ease-in-out}.at-tjin-element .at-tjin-btn:focus,.at-tjin-element .at-tjin-btn:hover{-webkit-transform:translateY(-4px);transform:translateY(-4px)}.at-tjin-element .at-tjin-title{margin:0 0 15px}</style><style type="text/css">#addthissmartlayerscssready{color:#bada55!important}.addthis-smartlayers,div#at4-follow,div#at4-share,div#at4-thankyou,div#at4-whatsnext{padding:0;margin:0}#at4-follow-label,#at4-share-label,#at4-whatsnext-label,.at4-recommended-label.hidden{padding:0;border:none;background:none;position:absolute;top:0;left:0;height:0;width:0;overflow:hidden;text-indent:-9999em}.addthis-smartlayers .at4-arrow:hover{cursor:pointer}.addthis-smartlayers .at4-arrow:after,.addthis-smartlayers .at4-arrow:before{content:none}a.at4-logo{background:url(data:image/gif;base64,R0lGODlhBwAHAJEAAP9uQf///wAAAAAAACH5BAkKAAIALAAAAAAHAAcAAAILFH6Ge8EBH2MKiQIAOw==) no-repeat left center}.at4-minimal a.at4-logo{background:url(data:image/gif;base64,R0lGODlhBwAHAJEAAP9uQf///wAAAAAAACH5BAkKAAIALAAAAAAHAAcAAAILFH6Ge8EBH2MKiQIAOw==) no-repeat left center!important}button.at4-closebutton{position:absolute;top:0;right:0;padding:0;margin-right:10px;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;font-size:19px;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}button.at4-closebutton:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}div.at4-arrow{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAAoCAYAAABpYH0BAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAV1JREFUeNrsmesOgyAMhQfxwfrofTM3E10ME2i5Oeppwr9a5OMUCrh1XV+wcvNAAIAA+BiAzrmtUWln27dbjEcC3AdODfo0BdEPhmcO4nIDvDNELi2jggk4/k8dT7skfeKzWIEd4VUpMQKvNB7X+OZSmAZkATWC1xvipbpnLmOosbJZC08CkAeA4E6qFUEMwLAGnlSBPCE8lW8CYnZTcimH2HoT7kSFOx5HBmCnDhTIu1p5s98G+QZrxGPhZVMY1vgyAQaAAAiAAAgDQACcBOD+BvJtBWfRy7NpJK5tBe4FNzXokywV734wPHMQlxvgnSGyNoUP/2ACjv/7iSeYKO3YWKzAjvCqlBiBVxqPa3ynexNJwOsN8TJbzL6JNIYYXWpMv4lIIAZgWANPqkCeEJ7KNwExu8lpLlSpAVQarO77TyKdBsyRPuwV0h0gmoGnTWFYzVkYBoAA+I/2FmAAt6+b5XM9mFkAAAAASUVORK5CYII=);background-repeat:no-repeat;width:20px;height:20px;margin:0;padding:0;overflow:hidden;text-indent:-9999em;text-align:left;cursor:pointer}#at4-recommendedpanel-outer-container .at4-arrow.at-right,div.at4-arrow.at-right{background-position:-20px 0}#at4-recommendedpanel-outer-container .at4-arrow.at-left,div.at4-arrow.at-left{background-position:0 0}div.at4-arrow.at-down{background-position:-60px 0}div.at4-arrow.at-up{background-position:-40px 0}.ats-dark div.at4-arrow.at-right{background-position:-20px -20px}.ats-dark div.at4-arrow.at-left{background-position:0 -20px}.ats-dark div.at4-arrow.at-down{background-position:-60px -20px}.ats-dark div.at4-arrow.at-up{background-position:-40px -20}.at4-opacity-hidden{opacity:0!important}.at4-opacity-visible{opacity:1!important}.at4-visually-hidden{position:absolute;clip:rect(1px,1px,1px,1px);padding:0;border:0;overflow:hidden}.at4-hidden-off-screen,.at4-hidden-off-screen *{position:absolute!important;top:-9999px!important;left:-9999px!important}.at4-show{display:block!important;opacity:1!important}.at4-show-content{opacity:1!important;visibility:visible}.at4-hide{display:none!important;opacity:0!important}.at4-hide-content{opacity:0!important;visibility:hidden}.at4-visible{display:block!important;opacity:0!important}.at-wordpress-hide{display:none!important;opacity:0!important}.addthis-animated{-webkit-animation-fill-mode:both;animation-fill-mode:both;animation-timing-function:ease-out;-webkit-animation-duration:.3s;animation-duration:.3s}.slideInDown.addthis-animated,.slideInLeft.addthis-animated,.slideInRight.addthis-animated,.slideInUp.addthis-animated,.slideOutDown.addthis-animated,.slideOutLeft.addthis-animated,.slideOutRight.addthis-animated,.slideOutUp.addthis-animated{-webkit-animation-duration:.4s;animation-duration:.4s}@-webkit-keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInUp{0%{opacity:0;-webkit-transform:translateY(20px)}to{opacity:1;-webkit-transform:translateY(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInDown{0%{opacity:0;-webkit-transform:translateY(-20px)}to{opacity:1;-webkit-transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInLeft{0%{opacity:0;-webkit-transform:translateX(-20px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-20px)}to{opacity:1;transform:translateX(0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInRight{0%{opacity:0;-webkit-transform:translateX(20px)}to{opacity:1;-webkit-transform:translateX(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translateX(20px)}to{opacity:1;transform:translateX(0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeOut{0%{opacity:1}to{opacity:0}}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutUp{0%{opacity:1;-webkit-transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(-20px)}}@keyframes fadeOutUp{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(-20px)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutDown{0%{opacity:1;-webkit-transform:translateY(0)}to{opacity:0;-webkit-transform:translateY(20px)}}@keyframes fadeOutDown{0%{opacity:1;transform:translateY(0)}to{opacity:0;transform:translateY(20px)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutLeft{0%{opacity:1;-webkit-transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-20px)}}@keyframes fadeOutLeft{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(-20px)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutRight{0%{opacity:1;-webkit-transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(20px)}}@keyframes fadeOutRight{0%{opacity:1;transform:translateX(0)}to{opacity:0;transform:translateX(20px)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes slideInUp{0%{-webkit-transform:translateY(1500px)}0%,to{opacity:1}to{-webkit-transform:translateY(0)}}@keyframes slideInUp{0%{transform:translateY(1500px)}0%,to{opacity:1}to{transform:translateY(0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}.slideInUp.addthis-animated{-webkit-animation-duration:.4s;animation-duration:.4s}@-webkit-keyframes slideInDown{0%{-webkit-transform:translateY(-850px)}0%,to{opacity:1}to{-webkit-transform:translateY(0)}}@keyframes slideInDown{0%{transform:translateY(-850px)}0%,to{opacity:1}to{transform:translateY(0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideOutUp{0%{-webkit-transform:translateY(0)}0%,to{opacity:1}to{-webkit-transform:translateY(-250px)}}@keyframes slideOutUp{0%{transform:translateY(0)}0%,to{opacity:1}to{transform:translateY(-250px)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}@-webkit-keyframes slideOutUpFast{0%{-webkit-transform:translateY(0)}0%,to{opacity:1}to{-webkit-transform:translateY(-1250px)}}@keyframes slideOutUpFast{0%{transform:translateY(0)}0%,to{opacity:1}to{transform:translateY(-1250px)}}#at4m-menu.slideOutUp{-webkit-animation-name:slideOutUpFast;animation-name:slideOutUpFast}@-webkit-keyframes slideOutDown{0%{-webkit-transform:translateY(0)}0%,to{opacity:1}to{-webkit-transform:translateY(350px)}}@keyframes slideOutDown{0%{transform:translateY(0)}0%,to{opacity:1}to{transform:translateY(350px)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutDownFast{0%{-webkit-transform:translateY(0)}0%,to{opacity:1}to{-webkit-transform:translateY(1250px)}}@keyframes slideOutDownFast{0%{transform:translateY(0)}0%,to{opacity:1}to{transform:translateY(1250px)}}#at4m-menu.slideOutDown{-webkit-animation-name:slideOutDownFast;animation-name:slideOutDownFast}@-webkit-keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-850px);transform:translateX(-850px)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInLeft{0%{opacity:0;-webkit-transform:translateX(-850px);transform:translateX(-850px)}to{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(1250px);transform:translateX(1250px)}to{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes slideInRight{0%{opacity:0;-webkit-transform:translateX(1250px);transform:translateX(1250px)}to{-webkit-transform:translateX(0);transform:translateX(0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-250px);transform:translateX(-250px)}}@keyframes slideOutLeft{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(-350px);transform:translateX(-350px)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(350px);transform:translateX(350px)}}@keyframes slideOutRight{0%{-webkit-transform:translateX(0);transform:translateX(0)}to{opacity:0;-webkit-transform:translateX(350px);transform:translateX(350px)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}.at4win{margin:0 auto;background:#fff;border:1px solid #ebeced;width:25pc;box-shadow:0 0 10px rgba(0,0,0,.3);border-radius:8px;font-family:helvetica neue,helvetica,arial,sans-serif;text-align:left;z-index:9999}.at4win .at4win-header{position:relative;border-bottom:1px solid #f2f2f2;background:#fff;height:49px;-webkit-border-top-left-radius:8px;-webkit-border-top-right-radius:8px;-moz-border-radius-topleft:8px;-moz-border-radius-topright:8px;border-top-left-radius:8px;border-top-right-radius:8px;cursor:default}.at4win .at4win-header .at-h3,.at4win .at4win-header h3{height:49px;line-height:49px;margin:0 50px 0 0;padding:1px 0 0;margin-left:20px;font-family:helvetica neue,helvetica,arial,sans-serif;font-size:1pc;font-weight:700;text-shadow:0 1px #fff;color:#333}.at4win .at4win-header .at-h3 img,.at4win .at4win-header h3 img{display:inline-block;margin-right:4px}.at4win .at4win-header .at4-close{display:block;position:absolute;top:0;right:0;background:url("data:image/gif;base64,R0lGODlhFAAUAIABAAAAAP///yH5BAEAAAEALAAAAAAUABQAAAIzBIKpG+YMm5Enpodw1HlCfnkKOIqU1VXk55goVb2hi7Y0q95lfG70uurNaqLgTviyyUoFADs=") no-repeat center center;background-repeat:no-repeat;background-position:center center;border-left:1px solid #d2d2d1;width:49px;height:49px;line-height:49px;overflow:hidden;text-indent:-9999px;text-shadow:none;cursor:pointer;opacity:.5;border:0;transition:opacity .15s ease-in}.at4win .at4win-header .at4-close::-moz-focus-inner{border:0;padding:0}.at4win .at4win-header .at4-close:hover{opacity:1;background-color:#ebeced;border-top-right-radius:7px}.at4win .at4win-content{position:relative;background:#fff;min-height:220px}#at4win-footer{position:relative;background:#fff;border-top:1px solid #d2d2d1;-webkit-border-bottom-right-radius:8px;-webkit-border-bottom-left-radius:8px;-moz-border-radius-bottomright:8px;-moz-border-radius-bottomleft:8px;border-bottom-right-radius:8px;border-bottom-left-radius:8px;height:11px;line-height:11px;padding:5px 20px;font-size:11px;color:#666;-ms-box-sizing:content-box;-o-box-sizing:content-box;box-sizing:content-box}#at4win-footer a{margin-right:10px;text-decoration:none;color:#666}#at4win-footer a:hover{text-decoration:none;color:#000}#at4win-footer a.at4-logo{top:5px;padding-left:10px}#at4win-footer a.at4-privacy{position:absolute;top:5px;right:10px;padding-right:14px}.at4win.ats-dark{border-color:#555;box-shadow:none}.at4win.ats-dark .at4win-header{background:#1b1b1b;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-left-radius:6px;border-top-right-radius:6px}.at4win.ats-dark .at4win-header .at4-close{background:url("data:image/gif;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAAWdEVYdENyZWF0aW9uIFRpbWUAMTEvMTMvMTKswDp5AAAAd0lEQVQ4jb2VQRLAIAgDE///Z3qqY1FAhalHMCsCIkVEAIAkkVgvp2lDBgYAnAyHkWotLccNrEd4A7X2TqIdqLfnWBAdaF5rJdyJfjtPH5GT37CaGhoVq3nOm/XflUuLUto2pY1d+vRKh0Pp+MrAVtDe2JkvYNQ+jVSEEFmOkggAAAAASUVORK5CYII=") no-repeat center center;background-image:url(//s7.addthis.com/static/fb08f6d50887bd0caacc86a62bcdcf68.svg),none;border-color:#333}.at4win.ats-dark .at4win-header .at4-close:hover{background-color:#000}.at4win.ats-dark .at4win-header .at-h3,.at4win.ats-dark .at4win-header h3{color:#fff;text-shadow:0 1px #000}.at4win.ats-gray .at4win-header{background:#fff;border-color:#d2d2d1;-webkit-border-top-left-radius:6px;-webkit-border-top-right-radius:6px;-moz-border-radius-topleft:6px;-moz-border-radius-topright:6px;border-top-left-radius:6px;border-top-right-radius:6px}.at4win.ats-gray .at4win-header a.at4-close{border-color:#d2d2d1}.at4win.ats-gray .at4win-header a.at4-close:hover{background-color:#ebeced}.at4win.ats-gray #at4win-footer{border-color:#ebeced}.at4win .clear{clear:both}.at4win ::selection{background:#fe6d4c;color:#fff}.at4win ::-moz-selection{background:#fe6d4c;color:#fff}.at4-icon-fw{display:inline-block;background-repeat:no-repeat;background-position:0 0;margin:0 5px 0 0;overflow:hidden;text-indent:-9999em;cursor:pointer;padding:0;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.at44-follow-container a.aticon{height:2pc;margin:0 5px 5px 0}.at44-follow-container .at4-icon-fw{margin:0}</style><style media="screen" type="text/css" id="at4-share-offset">#at4-share,#at4-soc {top:20% !important;bottom:auto}</style></head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-Legacy_Monsters skin-foreground action-view">
<div id="navwrapper"><!-- START FOREGROUNDTEMPLATE -->
		<nav class="top-bar">
			<ul class="title-area">
				<li class="name">
					<h1 class="title-name">
					<a href="https://www.themanaworld.org/index.php/Main_Page">
											<img alt="TMW: rEvolt" src="LegacyMonsters/wiki_logo.png" style="max-width: 64px;height:auto; max-height:36px; display: inline-block; vertical-align:middle;">
										
					<div class="title-name" style="display: inline-block;">TMW: rEvolt</div>
					</a>
					</h1>
				</li>
				<li class="toggle-topbar menu-icon">
					<a href="#"><span>Menu</span></a>
				</li>
			</ul>

		
		<section class="top-bar-section">

			<ul id="top-bar-left" class="left">
				<li class="divider"></li>
									<li class="has-dropdown active" id="p-Project">
					<a href="#">Project</a>
													<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
								<li id="n-Home"><a href="https://www.themanaworld.org/index.php/Main_Page">Home</a></li><li id="n-Downloads"><a href="https://www.themanaworld.org/index.php/Downloads">Downloads</a></li><li id="n-FAQ"><a href="https://www.themanaworld.org/index.php/FAQ">FAQ</a></li><li id="n-Game-News"><a href="https://www.themanaworld.org/index.php/Special:GameNews">Game News</a></li><li id="n-Screenshots"><a href="https://www.themanaworld.org/index.php/Screenshots">Screenshots</a></li><li id="n-Forums"><a href="https://forums.themanaworld.org/" rel="nofollow">Forums</a></li><li id="n-Support-.28IRC.29"><a href="https://webchat.freenode.net/?channels=#themanaworld" rel="nofollow">Support (IRC)</a></li><li id="n-Bug-Reports"><a href="https://forums.themanaworld.org/viewforum.php?f=19" rel="nofollow">Bug Reports</a></li><li id="n-ManaPlus-Client"><a href="http://manaplus.evolonline.org/" rel="nofollow">ManaPlus Client</a></li><li id="n-Donate-to-TMW"><a href="https://www.themanaworld.org/index.php/Donations" rel="nofollow">Donate to TMW</a></li>							</ul>
																		</li><li class="has-dropdown active" id="p-Game">
					<a href="#">Game</a>
													<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
								<li id="n-Game-Rules"><a href="https://www.themanaworld.org/index.php/Game_Rules">Game Rules</a></li><li id="n-Create-Game-Account"><a href="https://www.themanaworld.org/index.php/Special:GameAccount">Create Game Account</a></li><li id="n-Getting-Started-.26-Walkthrough"><a href="https://www.themanaworld.org/index.php/Walkthrough">Getting Started &amp; Walkthrough</a></li><li id="n-Player-stats"><a href="https://www.themanaworld.org/index.php/Stats">Player stats</a></li><li id="n-Magic"><a href="https://www.themanaworld.org/index.php/Magic">Magic</a></li><li id="n-Quests"><a href="https://www.themanaworld.org/index.php/Quests">Quests</a></li><li id="n-Items"><a href="https://www.themanaworld.org/index.php/Items">Items</a></li><li id="n-Monsters"><a href="https://www.themanaworld.org/index.php/Monster_Reference">Monsters</a></li><li id="n-Skills"><a href="https://www.themanaworld.org/index.php/Skills">Skills</a></li><li id="n-Guilds"><a href="https://www.themanaworld.org/index.php/Guilds">Guilds</a></li>							</ul>
																		</li><li class="has-dropdown active" id="p-Development">
					<a href="#">Development</a>
													<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
								<li id="n-Development"><a href="https://www.themanaworld.org/index.php/Dev:Main">Development</a></li><li id="n-TMW-GitHub"><a href="https://github.com/themanaworld" rel="nofollow">TMW GitHub</a></li>							</ul>
																		</li><li class="has-dropdown active" id="p-Wiki">
					<a href="#">Wiki</a>
													<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
								<li id="n-Wiki-Home"><a href="https://www.themanaworld.org/index.php/Help:Wiki_Home">Wiki Home</a></li><li id="n-To-Do"><a href="https://www.themanaworld.org/index.php/Things_to_do">To-Do</a></li><li id="n-Recent-changes"><a href="https://www.themanaworld.org/index.php/Special:RecentChanges">Recent changes</a></li><li id="n-randompage"><a href="https://www.themanaworld.org/index.php/Special:Random" title="Load a random page [Alt+Maj+x]" accesskey="x">Random page</a></li>							</ul>
																								</li><li class="has-dropdown active" id="p-server_status"><div class="body"><iframe src="LegacyMonsters/status.html" scrolling="no" frameborder="0" height="30" width="160"></iframe></div></li><li class="has-dropdown active" id="p-Action">
						<a href="#">&nbsp;Actions</a>
						<!--RTL -->
						<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
							<li id="ca-nstab-main" class="selected"><a href="https://www.themanaworld.org/index.php/Legacy_Monsters" title="View the content page [Alt+Maj+c]" accesskey="c">Page</a></li><li id="ca-talk" class="new"><a href="https://www.themanaworld.org/index.php?title=Talk:Legacy_Monsters&amp;action=edit&amp;redlink=1" rel="discussion" title="Discussion about the content page [Alt+Maj+t]" accesskey="t">Discussion</a></li><li id="ca-viewsource"><a href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;action=edit" title="This page is protected.
You can view its source [Alt+Maj+e]" accesskey="e">View source</a></li><li id="ca-history"><a href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;action=history" title="Past revisions of this page [Alt+Maj+h]" accesskey="h">History</a></li>													</ul>
									</li>
			</ul>

			<ul id="top-bar-right" class="right">
				<li class="divider show-for-small"></li>
				<li class="has-form">

				</li><li class="has-dropdown active"><a href="#">Toolbox<i class="fa fa-cogs"></i></a>
					<ul id="toolbox-dropdown" class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
						<li id="t-whatlinkshere"><a href="https://www.themanaworld.org/index.php/Special:WhatLinksHere/Legacy_Monsters" title="A list of all wiki pages that link here [Alt+Maj+j]" accesskey="j">What links here</a></li><li id="t-recentchangeslinked"><a href="https://www.themanaworld.org/index.php/Special:RecentChangesLinked/Legacy_Monsters" title="Recent changes in pages linked from this page [Alt+Maj+k]" accesskey="k">Related changes</a></li><li id="t-specialpages"><a href="https://www.themanaworld.org/index.php/Special:SpecialPages" title="A list of all special pages [Alt+Maj+q]" accesskey="q">Special pages</a></li><li id="t-print"><a href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;printable=yes" rel="alternate" title="Printable version of this page [Alt+Maj+p]" accesskey="p">Printable version</a></li><li id="t-permalink"><a href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;oldid=43470" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;action=info" title="More information about this page">Page information</a></li>						<li id="n-recentchanges"><a href="https://www.themanaworld.org/index.php/Special:RecentChanges" title="Special:RecentChanges">Recent changes</a></li>						<li id="n-help"><a href="https://www.themanaworld.org/wiki/Help:Contents">Help</a></li>					</ul>
				</li>

											<li>
																	<a href="https://www.themanaworld.org/index.php?title=Special:UserLogin&amp;returnto=Legacy+Monsters">Log in</a>
																</li>

				
				<li class="has-form">
					<form action="/index.php" id="searchform" class="mw-search">
						<div class="row">
						<div class="small-12 columns">
							<input autocomplete="off" name="search" placeholder="Search" title="Search TMW: rEvolt [Alt+Maj+f]" accesskey="f" id="searchInput" type="search">							<button type="submit" class="button search">Search</button>
						</div>
						</div>
					</form>
				</li>
			</ul>
		</section></nav>
		</div>		
		<div id="page-content">
		<div class="row">
				<div class="large-12 columns">
				<!--[if lt IE 9]>
				<div id="siteNotice" class="sitenotice panel radius">TMW: rEvolt may not look as expected in this version of Internet Explorer. We recommend you upgrade to a newer version of Internet Explorer or switch to a browser like Firefox or Chrome.</div>
				<![endif]-->

												</div>
		</div>

		<div id="mw-js-message" style="display:none;"></div>

		<div class="row">
				<div id="p-cactions" class="large-12 columns">
										<div id="content">
					<h2 id="firstHeading" class="title">Legacy Monsters</h2>
					<h3 id="tagline">From TMW: rEvolt</h3>					<h5 id="siteSub" class="subtitle"></h5>
					<div id="contentSub" class="clear_both"></div>
					<div id="bodyContent" class="mw-bodytext">
						<div id="mw-content-text" dir="ltr" class="mw-content-ltr" lang="en"><p><!-- META_KEYWORDS VGhlIE1hbmEgV29ybGQsIE1hbmEsIFdvcmxkLCBNTU9SUEcsIFJQRywgZnJlZSwgR1BMLCBPcGVuIFNvdXJjZSwgUGl4ZWwgQXJ0LCAyRCwgU29mdHdhcmUgRGV2ZWxvcG1lbnQsIE1hY09TWCwgV2luZG93cywgTGludXgsIGRlc2t0b3AsIHRhYmxldCwgR2FtZSwgMTYtYml0LCBSZXRybywgRmFudGFzeSwgOC1iaXQsIEluZGllLCBHYW1lIERldmVsb3BtZW50LCBHYW1lIEVuZ2luZSwgbGludXggZ2FtZSwgbGludXggZ2FtZSBlbmdpbmUsIGxpbnV4IG1tb3JwZywgbGludXggcnBnLCBsaW51eCBtbW9ycGcgZ2FtZSwgbGludXggcnBnIGdhbWUsIE9wZW4gU291cmNlIE1NT1JQRyxtbW9ycGcsbW1vcnBnIGdhbWVzLG1tb3JwZyBmcmVlIHRvIHBsYXksbW1vcnBnIG9ubGluZSBnYW1lcyxtbW9ycGcgbGlzdCxtbW9ycGcgZm9yIG1hYyxtbW9ycGcgZnJlZSB0byBwbGF5LG1tb3JwZyBnYW1lcyBvbmxpbmUsbW1vcnBnIG5ld3MsbW1vcnBnIGJyb3dzZXIgZ2FtZXMsbW1vcnBnIGZyZWUsbW1vcnBnIG1hYyxtbW9ycGcgbWFrZXIsbW1vcnBnIG9ubGluZSxtbW9ycGcgbGlrZSBzd29yZCBhcnQgb25saW5lLG1tb3JwZyBzZXJ2ZXJzLG1tb3JwZyBnYW1lcyBmb3IgbWFjLG1tb3JwZyBtYWMgY29tcGF0aWJsZSxtbW9ycGcgbGlrZSB3b3cscnBnLHJwZyBnYW1lcyxycGcgbWFrZXIscnBnIGdhbWVzIG9ubGluZSxycGcgZ2FtZXMgZm9yIHBjLHJwZyBtYWtlciBnYW1lcyxycGcgZ3JvdXAsZnJlZSBnYW1lcyxncGwgbGljZW5zZSxncGwgdjMsZ3BsIHYyLG9wZW4gc291cmNlIHNvZnR3YXJlLG9wZW4gc291cmNlIHNvZnR3YXJlIGZvciB3aW5kb3dzLG9wZW4gc291cmNlIGdhbWVzLG9wZW4gc291cmNlIG11c2ljLG9wZW4gc291cmNlIGdhbWUgZW5naW5lLHBpeGVsIGFydCBnYW1lcyxwaXhlbCBhcnQgb25saW5lLDJkIGdhbWVzLGdhbWUsZ2FtZSAyNGgsZ2FtZSBnYW1lcyxnYW1lIHRoZW9yeSwxNi1iaXQgZ2VtcywxNi1iaXQgc3ByaXRlcywxNi1iaXQgem9tYmllcywxNiBiaXQgZ2FtZXMscmV0cm8gZ2FtZXMsOC1iaXQgYXJ0LDgtYml0IGNoYXJhY3RlcnMsOC1iaXQgc3ByaXRlcyw4LWJpdCB3b3JsZCw4LWJpdCBwaXhlbCBhcnQsOC1iaXQgcnBnIGNyZWF0b3IsOC1iaXQgbW1vLDgtYml0IHJwZyBtYWtlcixpbmRpZSBnYW1lcyxnYW1lIGRldmVsb3BtZW50IHNvZnR3YXJlLGdhbWUgZGV2ZWxvcG1lbnQgdG9vbHMsZ2FtZSBkZXZlbG9wbWVudCBwYXR0ZXJucyxnYW1lIGRldmVsb3BtZW50IHR1dG9yaWFscyxnYW1lIGRldmVsb3BtZW50IGJhc2ljcyxnYW1lIGRldmVsb3BtZW50IGZvcnVtLGdhbWUgZGV2ZWxvcG1lbnQgZm9ydW1zLGdhbWUgZGV2ZWxvcG1lbnQgd2lraSxnYW1lIGRldmVsb3BtZW50IHR1dG9yaWFsLGdhbWUgZW5naW5lLGdhbWUgZW5naW5lIGRlc2lnbixnYW1lIGVuZ2luZSBhcmNoaXRlY3R1cmUsZ2FtZSBlbmdpbmUgZG93bmxvYWQsZ2FtZSBlbmdpbmUgd2lraSxnYW1lIGVuZ2luZSBhcmNoaXRlY3R1cmUsZ2FtZSBlbmdpbmUgZnJlZSxnYW1lIGVuZ2luZSBzdHJ1Y3R1cmUsZ2FtZSBlbmdpbmUgd2l0aCBzY3JpcHRpbmcsZ2FtZSBlbmdpbmUgYyxnYW1lIGVuZ2luZSBwcm9ncmFtbWluZyxnYW1lIGVuZ2luZSBjKyssZ2FtZSBlbmdpbmUgYW5kcm9pZCxnYW1lIGVuZ2luZSBmcmVlIGRvd25sb2FkLGdhbWUgZW5naW5lIG9ubGluZSxvcGVuIHNvdXJjZSBtbW9ycGcgZW5naW5lLG9wZW4gc291cmNlIG1tb3JwZyBtYWtlcix0aGUgbWFuYSB3b3JsZCx0aGUgbWFuYSB3b3JsZCB3aWtpLHRoZSBtYW5hIHdvcmxkIHJldmlldyx0aGUgbWFuYSB3b3JsZCBoYWNrcyx0aGUgbWFuYSB3b3JsZCBkb3dubG9hZCx0aGUgbWFuYSB3b3JsZCBxdWVzdHMsdGhlIG1hbmEgd29ybGQgc2VydmVyLHRoZSBtYW5hIHdvcmxkIHBvcnRhYmxlLHRoZSBtYW5hIHdvcmxkIHNwcml0ZSBzaGVldCxvcGVuIHNvdXJjZSBtbW9ycGcsb3BlbiBzb3VyY2UgbW1vcnBnIGdhbWVzLHd3dyB0aGVtYW5hd29ybGQgb3JnLnRoZW1hbmF3b3JsZCBvcmcsIHJvbGUtcGxheWluZyBnYW1lLCByb2xlLXBsYXlpbmcgZ2FtZSBvbmxpbmU= -->
</p>
<div class="toc noprint" style="border: 1px solid #da72ff; color: #000; background-color: #eebeff; text-align: center; margin-bottom: 1em; border-radius: 15px;">
<p><a href="https://www.themanaworld.org/index.php?title=Ar:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Ar:Legacy Monsters (page does not exist)">العربية</a>
- <a href="https://www.themanaworld.org/index.php?title=Cz:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Cz:Legacy Monsters (page does not exist)">Česky</a>
- <a href="https://www.themanaworld.org/index.php?title=De:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="De:Legacy Monsters (page does not exist)">Deutsch</a>
- <a href="https://www.themanaworld.org/index.php?title=Dk:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Dk:Legacy Monsters (page does not exist)">Dansk</a>
- <strong class="selflink">English</strong>
- <a href="https://www.themanaworld.org/index.php?title=Es:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Es:Legacy Monsters (page does not exist)">Español</a>
- <a href="https://www.themanaworld.org/index.php?title=Fa:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Fa:Legacy Monsters (page does not exist)">پارسی</a>
- <a href="https://www.themanaworld.org/index.php?title=Fr:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Fr:Legacy Monsters (page does not exist)">Français</a>
- <a href="https://www.themanaworld.org/index.php?title=Id:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Id:Legacy Monsters (page does not exist)">Bahasa Indonesia</a>
- <a href="https://www.themanaworld.org/index.php?title=It:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="It:Legacy Monsters (page does not exist)">Italiano</a>
- <a href="https://www.themanaworld.org/index.php?title=Kr:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Kr:Legacy Monsters (page does not exist)">한국어</a>
- <a href="https://www.themanaworld.org/index.php?title=Pl:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Pl:Legacy Monsters (page does not exist)">Polski</a>
- <a href="https://www.themanaworld.org/index.php?title=Pt:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Pt:Legacy Monsters (page does not exist)">Português</a>
- <a href="https://www.themanaworld.org/index.php?title=Ru:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Ru:Legacy Monsters (page does not exist)">Русский</a>
- <a href="https://www.themanaworld.org/index.php?title=Sq:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Sq:Legacy Monsters (page does not exist)">Shqip</a>
- <a href="https://www.themanaworld.org/index.php?title=Sv:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Sv:Legacy Monsters (page does not exist)">Svenska</a>
- <a href="https://www.themanaworld.org/index.php?title=Tr:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Tr:Legacy Monsters (page does not exist)">Türkçe</a>
- <a href="https://www.themanaworld.org/index.php?title=Zh:Legacy_Monsters&amp;action=edit&amp;redlink=1" class="new" title="Zh:Legacy Monsters (page does not exist)">繁體中文</a>
</p>
</div>
<div style="text-align: center; border: 1px; border-style: solid; border-color:#000000; margin-bottom: 10px;">
<p>This article contains information for <b>players</b> or people interested in playing on the "old" <b>Legacy</b> server. see <a href="https://www.themanaworld.org/index.php/The_Mana_World_Legacy" title="The Mana World Legacy">The Mana World Legacy</a>.<br> <span style="color:red;border: 1px; border-style: dotted; border-color:#f1c40f;"><b>Warning</b></span>: The information provided may be different to the normal server.
</p>
</div>
<p><br>
</p>
<div style="background-color: #EEFFEE; text-align: center; border: 1px solid #99EE99; margin-bottom: 1em;">
<p><b>This article is for reference purpose</b>
</p><p>The features described in this article are already implemented in
 the game. The article should describe how a certain aspect of the game 
currently works. You may of course edit this article to improve the 
description of the circumstances. Your opinions or improvement 
suggestions about the described aspects themself are of course 
appreciated, too. But please put these on the discussion page of this 
article to keep facts and fiction separated.
</p>
</div>
<p><br>
The monsters are sorted roughly by their fighting strength, calculated as <code>health_points * (attack_min + attack_max)</code>. For more information on the drops please see the <a href="https://www.themanaworld.org/index.php?title=Legacy_item_reference&amp;action=edit&amp;redlink=1" class="new" title="Legacy item reference (page does not exist)">Legacy item reference</a>.
</p><p><b>Key:</b> HP is health points, DEF is defense, ATT is attack, 
EXP is the calculated base experience, JEXP is the job experience. The 
others are self-explanatory. Traits (such as aggressive) are written in <i><span style="color:#ad1818">italics</span></i>.
</p>
<table class="responsive" align="center" border="1" cellpadding="5" cellspacing="0">
<tbody><tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:MauvePlant.png" class="image"><img alt="MauvePlant.png" src="LegacyMonsters/MauvePlant.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Plant" title="Legacy Mauve Plant">Mauve Plant</a> <i><span style="color:#969696;"> (1029) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 60%</span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 1% / 0%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (30%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CobaltPlant.png" class="image"><img alt="CobaltPlant.png" src="LegacyMonsters/CobaltPlant.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Plant" title="Legacy Cobalt Plant">Cobalt Plant</a> <i><span style="color:#969696;"> (1030) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 1% / 0%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (30%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GambogePlant.png" class="image"><img alt="GambogePlant.png" src="LegacyMonsters/GambogePlant.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Plant" title="Legacy Gamboge Plant">Gamboge Plant</a> <i><span style="color:#969696;"> (1031) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 1% / 0%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (30%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AlizarinPlant.png" class="image"><img alt="AlizarinPlant.png" src="LegacyMonsters/AlizarinPlant.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Plant" title="Legacy Alizarin Plant">Alizarin Plant</a> <i><span style="color:#969696;"> (1032) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 1% / 0%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (30%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CloverPatch.png" class="image"><img alt="CloverPatch.png" src="LegacyMonsters/CloverPatch.png" height="30" width="30"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Clover_Patch" title="Legacy Clover Patch">Clover Patch</a> <i><span style="color:#969696;"> (1037) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Four-Leaf_Clover" title="Legacy Four-Leaf Clover">Four-Leaf Clover</a> (0.05%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Pumpkin.png" class="image"><img alt="Pumpkin.png" src="LegacyMonsters/Pumpkin.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Pumpkin" title="Legacy Pumpkin">Pumpkin</a> <i><span style="color:#969696;"> (1063) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 1 -  0/0/0/0/0/0 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i>
</td>
<td align="center"> 200
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 17 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Candy_Pumpkin" title="Legacy Candy Pumpkin">Candy Pumpkin</a> (25%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Marshmallow" title="Legacy Marshmallow">Marshmallow</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Tonori_Delight" title="Legacy Tonori Delight">Tonori Delight</a> (15%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pumpkin_Seeds" title="Legacy Pumpkin Seeds">Pumpkin Seeds</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jack_O_Lantern" title="Legacy Jack O Lantern">Jack O Lantern</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Rubber_Bat" title="Legacy Rubber Bat">Rubber Bat</a> (0.20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jar_of_Blood" title="Legacy Jar of Blood">Jar of Blood</a> (0.15%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Realistic_Brain" title="Legacy Realistic Brain">Realistic Brain</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Silkworm.png" class="image"><img alt="Silkworm.png" src="LegacyMonsters/Silkworm.png" height="10" width="19"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Silkworm" title="Legacy Silkworm">Silkworm</a> <i><span style="color:#969696;"> (1035) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  20/11/10/10/40/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 1
</td>
<td align="center"> 2% / 10%
</td>
<td align="center"> 0 (1)
</td>
<td align="center"> 1 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Silk_Cocoon" title="Legacy Silk Cocoon">Silk Cocoon</a> (50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SleepingBandit.png" class="image"><img alt="SleepingBandit.png" src="LegacyMonsters/SleepingBandit.png" height="64" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Sleeping_Bandit" title="Legacy Sleeping Bandit">Sleeping Bandit</a> <i><span style="color:#969696;"> (1099) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  10/10/10/10/10/10 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 25
</td>
<td align="center"> 0% / 0%
</td>
<td align="center"> <i><span style="color:#ad1818"> N/A </span></i> (1)
</td>
<td align="center"> 3 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bandit_Hood" title="Legacy Bandit Hood">Bandit Hood</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:HouseMaggot.png" class="image"><img alt="HouseMaggot.png" src="LegacyMonsters/HouseMaggot.png" height="20" width="20"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_House_Maggot" title="Legacy House Maggot">House Maggot</a> <i><span style="color:#969696;"> (1050) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 5 -  5/5/1/0/6/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 50
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 7 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 6 (3)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Maggot.png" class="image"><img alt="Maggot.png" src="LegacyMonsters/Maggot.png" height="26" width="30"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot" title="Legacy Maggot">Maggot</a> <i><span style="color:#969696;"> (1002) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 5 -  1/1/1/0/6/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 50
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 5 / 10 (1)
</td>
<td align="center"> 6 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:TameScorpion.png" class="image"><img alt="TameScorpion.png" src="LegacyMonsters/TameScorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Tame_Scorpion" title="Legacy Tame Scorpion">Tame Scorpion</a> <i><span style="color:#969696;"> (1046) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 5 -  1/1/1/0/15/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 50
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 7 / 10 (1)
</td>
<td align="center"> 5 (2)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Scorpion_Stinger" title="Legacy Scorpion Stinger">Scorpion Stinger</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CaveMaggot.png" class="image"><img alt="CaveMaggot.png" src="LegacyMonsters/CaveMaggot.png" height="20" width="20"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Cave_Maggot" title="Legacy Cave Maggot">Cave Maggot</a> <i><span style="color:#969696;"> (1056) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 10 -  5/5/1/0/6/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 100
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 10 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 13 (3)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SlimeBlast.png" class="image"><img alt="SlimeBlast.png" src="LegacyMonsters/SlimeBlast.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Slime_Blast" title="Legacy Slime Blast">Slime Blast</a> <i><span style="color:#969696;"> (1092) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 10 -  10/10/10/10/10/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 100
</td>
<td align="center"> 10% / 10%
</td>
<td align="center"> 10 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 15 (8)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Scorpion.png" class="image"><img alt="Scorpion.png" src="LegacyMonsters/Scorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Scorpion" title="Legacy Scorpion">Scorpion</a> <i><span style="color:#969696;"> (1003) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 10 -  1/1/1/0/15/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 100
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 10 / 15 (1)
</td>
<td align="center"> 12 (2)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Scorpion_Stinger" title="Legacy Scorpion Stinger">Scorpion Stinger</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Serqet.png" class="image"><img alt="Serqet.png" src="LegacyMonsters/Serqet.png" height="19" width="59"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Serqet" title="Legacy Serqet">Serqet</a> <i><span style="color:#969696;"> (1082) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 10 -  1/1/1/0/15/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 100
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 10 / 15 (1)
</td>
<td align="center"> 12 (2)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> Unknown drops.</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Bat.png" class="image"><img alt="Bat.png" src="LegacyMonsters/Bat.png" height="28" width="35"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Bat" title="Legacy Bat">Bat</a> <i><span style="color:#969696;"> (1017) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  1/1/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 150
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 5 / 25 (1)
</td>
<td align="center"> 22 (3)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bat_Wing" title="Legacy Bat Wing">Bat Wing</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bat_Teeth" title="Legacy Bat Teeth">Bat Teeth</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.01%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:BallLightning.png" class="image"><img alt="BallLightning.png" src="LegacyMonsters/BallLightning.png" height="57" width="35"></a>
</td>
<td height="75px"> <a href="https://www.themanaworld.org/index.php/Legacy_Ball_Lightning" title="Legacy Ball Lightning">Ball Lightning</a> <i><span style="color:#969696;"> (1070) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  1/200/1/1/1/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 300
</td>
<td align="center"> 40% / 65%
</td>
<td align="center"> 5 / 10 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 77 (1)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;">No drops.</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AngryScorpion.png" class="image"><img alt="AngryScorpion.png" src="LegacyMonsters/AngryScorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Angry_Scorpion" title="Legacy Angry Scorpion">Angry Scorpion</a> <i><span style="color:#969696;"> (1057) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  5/5/1/0/15/5 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 200
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 15 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 27 (5)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Angry_Scorpion_Stinger" title="Legacy Angry Scorpion Stinger">Angry Scorpion Stinger</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:ViciousSquirrel.png" class="image"><img alt="ViciousSquirrel.png" src="LegacyMonsters/ViciousSquirrel.png" height="25" width="28"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Vicious_Squirrel" title="Legacy Vicious Squirrel">Vicious Squirrel</a> <i><span style="color:#969696;"> (1105) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 15 -  3/3/1/0/15/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 15%</span></i>
</td>
<td align="center"> 140
</td>
<td align="center"> 1% / 6%
</td>
<td align="center"> 20 / 25 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 24 (7)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Powder" title="Legacy Iron Powder">Iron Powder</a> (70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Seeds" title="Legacy Grass Seeds">Grass Seeds</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sapphire" title="Legacy Sapphire">Sapphire</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Squirrel.png" class="image"><img alt="Squirrel.png" src="LegacyMonsters/Squirrel.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Squirrel" title="Legacy Squirrel">Squirrel</a> <i><span style="color:#969696;"> (1038) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 15 -  1/3/1/0/15/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 15%</span></i>
</td>
<td align="center"> 160
</td>
<td align="center"> 1% / 6%
</td>
<td align="center"> 15 / 25 (1)
</td>
<td align="center"> 27 (5)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Acorn" title="Legacy Acorn">Acorn</a> (70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Seeds" title="Legacy Grass Seeds">Grass Seeds</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Squirrel_Pelt" title="Legacy Squirrel Pelt">Squirrel Pelt</a> (5.5%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Pinkie.png" class="image"><img alt="Pinkie.png" src="LegacyMonsters/Pinkie.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Pinkie" title="Legacy Pinkie">Pinkie</a> <i><span style="color:#969696;"> (1018) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/1/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 50%</span></i>
</td>
<td align="center"> 300
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 7 / 15 (2)
</td>
<td align="center"> 46 (7)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Pink_Antenna" title="Legacy Pink Antenna">Pink Antenna</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pinkie_Hat" title="Legacy Pinkie Hat">Pinkie Hat</a> (0.40%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:ManaBug.png" class="image"><img alt="ManaBug.png" src="LegacyMonsters/ManaBug.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Mana_Bug" title="Legacy Mana Bug">Mana Bug</a> <i><span style="color:#969696;"> (1131) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 25 -  1/4/1/4/5/4 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 300
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 8 / 15 (2)
</td>
<td align="center"> 42 (5)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (4%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SpikyMushroom.png" class="image"><img alt="SpikyMushroom.png" src="LegacyMonsters/SpikyMushroom.png" height="42" width="42"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Spiky_Mushroom" title="Legacy Spiky Mushroom">Spiky Mushroom</a> <i><span style="color:#969696;"> (1019) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/1/1/0/10/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 300
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 10 / 13 (1)
</td>
<td align="center"> 43 (5)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Potion" title="Legacy Iron Potion">Iron Potion</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Hard_Spike" title="Legacy Hard Spike">Hard Spike</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:FireGoblin.png" class="image"><img alt="FireGoblin.png" src="LegacyMonsters/FireGoblin.png" height="20" width="24"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Fire_Goblin" title="Legacy Fire Goblin">Fire Goblin</a> <i><span style="color:#969696;"> (1011) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  1/1/1/0/6/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 220
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 15 / 20 (1)
</td>
<td align="center"> 33 (4)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Bluepar.png" class="image"><img alt="Bluepar.png" src="LegacyMonsters/Bluepar.png" height="17" width="15"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Bluepar" title="Legacy Bluepar">Bluepar</a> <i><span style="color:#969696;"> (1107) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/1/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 50%</span></i>
</td>
<td align="center"> 350
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 7 / 15 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 54 (8)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Potion" title="Legacy Iron Potion">Iron Potion</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Concentration_Potion" title="Legacy Concentration Potion">Concentration Potion</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diamond" title="Legacy Diamond">Diamond</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Fluffy.png" class="image"><img alt="Fluffy.png" src="LegacyMonsters/Fluffy.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Fluffy" title="Legacy Fluffy">Fluffy</a> <i><span style="color:#969696;"> (1020) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/2/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 1% / 5%
</td>
<td align="center"> 6 / 10 (1)
</td>
<td align="center"> 76 (7)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_White_Fur" title="Legacy White Fur">White Fur</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Milk" title="Legacy Milk">Milk</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Fluffy_Hat" title="Legacy Fluffy Hat">Fluffy Hat</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:HungryFluffy.png" class="image"><img alt="HungryFluffy.png" src="LegacyMonsters/HungryFluffy.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Hungry_Fluffy" title="Legacy Hungry Fluffy">Hungry Fluffy</a> <i><span style="color:#969696;"> (1089) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/2/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 1% / 5%
</td>
<td align="center"> 6 / 10 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 76 (10)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_White_Fur" title="Legacy White Fur">White Fur</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Milk" title="Legacy Milk">Milk</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Fluffy_Hat" title="Legacy Fluffy Hat">Fluffy Hat</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Pollett.png" class="image"><img alt="Pollett.png" src="LegacyMonsters/Pollett.png" height="26" width="23"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Pollett" title="Legacy Pollett">Pollett</a> <i><span style="color:#969696;"> (1113) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/2/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 1% / 5%
</td>
<td align="center"> 6 / 10 (1)
</td>
<td align="center"> 76 (7)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Animal_Bones" title="Legacy Animal Bones">Animal Bones</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_White_Fur" title="Legacy White Fur">White Fur</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pollett_Egg" title="Legacy Pollett Egg">Pollett Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pollett_Egg" title="Legacy Pollett Egg">Pollett Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pollett_Egg" title="Legacy Pollett Egg">Pollett Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iced_Water" title="Legacy Iced Water">Iced Water</a> (1%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:EasterFluffy.png" class="image"><img alt="EasterFluffy.png" src="LegacyMonsters/EasterFluffy.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Easter_Fluffy" title="Legacy Easter Fluffy">Easter Fluffy</a> <i><span style="color:#969696;"> (1027) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/1/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 40%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 10 / 12 (1)
</td>
<td align="center"> 77 (7)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Red Easter Egg</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Green Easter Egg</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Blue Easter Egg</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Yellow Easter Egg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Pink Easter Egg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Easter_Egg" title="Legacy Easter Egg">Teal Easter Egg</a> (2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:LogHead.png" class="image"><img alt="LogHead.png" src="LegacyMonsters/LogHead.png" height="43" width="45"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Log_Head" title="Legacy Log Head">Log Head</a> <i><span style="color:#969696;"> (1025) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  1/1/1/0/20/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 50%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 50% / 5%
</td>
<td align="center"> 7 / 20 (1)
</td>
<td align="center"> 116 (5)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Acorn" title="Legacy Acorn">Acorn</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Root" title="Legacy Root">Root</a> (25%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Raw_Log" title="Legacy Raw Log">Raw Log</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Raw_Log" title="Legacy Raw Log">Raw Log</a> (20%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:WhiteBell.png" class="image"><img alt="WhiteBell.png" src="LegacyMonsters/WhiteBell.png" height="27" width="29"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_White_Bell" title="Legacy White Bell">White Bell</a> <i><span style="color:#969696;"> (1095) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 10 -  16/12/20/20/20/50 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 50%</span></i>
</td>
<td align="center"> 100
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 70 / 75 (2)
</td>
<td align="center"> 18 (40)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_White_Bell_Tuber" title="Legacy White Bell Tuber">White Bell Tuber</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Empty_Bottle" title="Legacy Empty Bottle">Empty Bottle</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:IceGoblin.png" class="image"><img alt="IceGoblin.png" src="LegacyMonsters/IceGoblin.png" height="33" width="33"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Goblin" title="Legacy Ice Goblin">Ice Goblin</a> <i><span style="color:#969696;"> (1058) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 25 -  5/5/1/0/6/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 330
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 20 / 25 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 52 (10)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Butterfly.png" class="image"><img alt="Butterfly.png" src="LegacyMonsters/Butterfly.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Butterfly" title="Legacy Butterfly">Butterfly</a> <i><span style="color:#969696;"> (1055) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 25 -  10/45/10/15/35/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 60%</span></i>
</td>
<td align="center"> 250
</td>
<td align="center"> 3% / 5%
</td>
<td align="center"> 10 / 50 (2)
</td>
<td align="center"> 56 (11)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Silk_Cocoon" title="Legacy Silk Cocoon">Silk Cocoon</a> (10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Archant.png" class="image"><img alt="Archant.png" src="LegacyMonsters/Archant.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Archant" title="Legacy Archant">Archant</a> <i><span style="color:#969696;"> (1060) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  10/5/1/0/12/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 400
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 20 / 30 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 61 (14)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Treasure_Key" title="Legacy Treasure Key">Treasure Key</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (0.40%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AngryFireGoblin.png" class="image"><img alt="AngryFireGoblin.png" src="LegacyMonsters/AngryFireGoblin.png" height="20" width="24"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Angry_Fire_Goblin" title="Legacy Angry Fire Goblin">Angry Fire Goblin</a> <i><span style="color:#969696;"> (1108) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  3/3/3/2/10/50 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 320
</td>
<td align="center"> 0% / 10%
</td>
<td align="center"> 25 / 40 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 55 (12)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Maggot_Slime" title="Legacy Maggot Slime">Maggot Slime</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:RudolphSlime.png" class="image"><img alt="RudolphSlime.png" src="LegacyMonsters/RudolphSlime.png" height="21" width="26"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Rudolph_Slime" title="Legacy Rudolph Slime">Rudolph Slime</a> <i><span style="color:#969696;"> (1016) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 50 -  1/20/1/0/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 350
</td>
<td align="center"> 10% / 7%
</td>
<td align="center"> 30 / 35 (1)
</td>
<td align="center"> 67 (8)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Decor_Candy" title="Legacy Decor Candy">Decor Candy</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Purple_Present_Box" title="Legacy Purple Present Box">Purple Present Box</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy_Cane" title="Legacy Candy Cane">Candy Cane</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Blue_Present_Box" title="Legacy Blue Present Box">Blue Present Box</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Xmas_Cake" title="Legacy Xmas Cake">Xmas Cake</a> (2%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CaveSnake.png" class="image"><img alt="CaveSnake.png" src="LegacyMonsters/CaveSnake.png" height="23" width="36"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Cave_Snake" title="Legacy Cave Snake">Cave Snake</a> <i><span style="color:#969696;"> (1021) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  10/1/1/0/5/20 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 50%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 1% / 5%
</td>
<td align="center"> 20 (1)
</td>
<td align="center"> 123 (13)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cave_Snake_Lamp" title="Legacy Cave Snake Lamp">Cave Snake Lamp</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cave_Snake_Tongue" title="Legacy Cave Snake Tongue">Cave Snake Tongue</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cave_Snake_Egg" title="Legacy Cave Snake Egg">Cave Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cave_Snake_Egg" title="Legacy Cave Snake Egg">Cave Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jeans_Shorts" title="Legacy Jeans Shorts">Jeans Shorts</a> (0.40%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Skin" title="Legacy Snake Skin">Snake Skin</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:YellowSlime.png" class="image"><img alt="YellowSlime.png" src="LegacyMonsters/YellowSlime.png" height="11" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Yellow_Slime" title="Legacy Yellow Slime">Yellow Slime</a> <i><span style="color:#969696;"> (1007) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 60 -  9/6/2/1/34/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 400
</td>
<td align="center"> 2% / 7%
</td>
<td align="center"> 35 / 40 (1)
</td>
<td align="center"> 66 (9)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (4.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (4.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (3.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange_Cupcake" title="Legacy Orange Cupcake">Orange Cupcake</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cherry_Cake" title="Legacy Cherry Cake">Cherry Cake</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Topaz" title="Legacy Topaz">Topaz</a> (0.20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.10%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Bandit.png" class="image"><img alt="Bandit.png" src="LegacyMonsters/Bandit.png" height="64" width="64"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Bandit" title="Legacy Bandit">Bandit</a> <i><span style="color:#969696;"> (1064) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  10/10/10/10/10/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 400
</td>
<td align="center"> 5% / 0%
</td>
<td align="center"> 40 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 65 (21)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Bandit_Hood" title="Legacy Bandit Hood">Bandit Hood</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (2%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:RedSlime.png" class="image"><img alt="RedSlime.png" src="LegacyMonsters/RedSlime.png" height="11" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Slime" title="Legacy Red Slime">Red Slime</a> <i><span style="color:#969696;"> (1008) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 70 -  12/8/2/1/25/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 20%</span></i>
</td>
<td align="center"> 450
</td>
<td align="center"> 2% / 7%
</td>
<td align="center"> 40 / 45 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 79 (17)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Knife" title="Legacy Knife">Knife</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Boots" title="Legacy Boots">Boots</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Miner_Gloves" title="Legacy Miner Gloves">Miner Gloves</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (1.1%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Miner%27s_Hat&amp;action=edit&amp;redlink=1" class="new" title="Legacy Miner's Hat (page does not exist)">Miner's Hat</a> (0.80%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ruby" title="Legacy Ruby">Ruby</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:WhiteSlime.png" class="image"><img alt="WhiteSlime.png" src="LegacyMonsters/WhiteSlime.png" height="8" width="12"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_White_Slime" title="Legacy White Slime">White Slime</a> <i><span style="color:#969696;"> (1093) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  20/30/10/10/30/20 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 200
</td>
<td align="center"> 10% / 10%
</td>
<td align="center"> 80 / 120 (1)
</td>
<td align="center"> 40 (15)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bottle_of_Water" title="Legacy Bottle of Water">Bottle of Water</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Book_Page" title="Legacy Book Page">Book Page</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Silver_Mirror" title="Legacy Silver Mirror">Silver Mirror</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diamond" title="Legacy Diamond">Diamond</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AzulSlime.png" class="image"><img alt="AzulSlime.png" src="LegacyMonsters/AzulSlime.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Azul_Slime" title="Legacy Azul Slime">Azul Slime</a> <i><span style="color:#969696;"> (1100) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  20/30/10/10/30/20 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 200
</td>
<td align="center"> 10% / 10%
</td>
<td align="center"> 80 / 120 (1)
</td>
<td align="center"> 40 (10)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SeaSlime.png" class="image"><img alt="SeaSlime.png" src="LegacyMonsters/SeaSlime.png" height="16" width="24"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Sea_Slime" title="Legacy Sea Slime">Sea Slime</a> <i><span style="color:#969696;"> (1033) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 70 -  1/25/1/0/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 600
</td>
<td align="center"> 3% / 7%
</td>
<td align="center"> 30 / 50 (1)
</td>
<td align="center"> 116 (13)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Concentration_Potion" title="Legacy Concentration Potion">Concentration Potion</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bottle_of_Water" title="Legacy Bottle of Water">Bottle of Water</a> (0.50%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Bee.png" class="image"><img alt="Bee.png" src="LegacyMonsters/Bee.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Bee" title="Legacy Bee">Bee</a> <i><span style="color:#969696;"> (1049) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  15/25/20/3/40/30 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 600
</td>
<td align="center"> 12% / 4%
</td>
<td align="center"> 5 / 90 (1)
</td>
<td align="center"> 124 (32)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:RedScorpion.png" class="image"><img alt="RedScorpion.png" src="LegacyMonsters/RedScorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Scorpion" title="Legacy Red Scorpion">Red Scorpion</a> <i><span style="color:#969696;"> (1004) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  8/8/10/10/30/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 50%</span></i>
</td>
<td align="center"> 550
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 50 / 55 (1)
</td>
<td align="center"> 107 (16)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Scorpion_Stinger" title="Legacy Red Scorpion Stinger">Red Scorpion Stinger</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (7.6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Knife" title="Legacy Knife">Knife</a> (5.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Fancy_Hat" title="Legacy Fancy Hat">Fancy Hat</a> (0.25%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Bow&amp;action=edit&amp;redlink=1" class="new" title="Legacy Bow (page does not exist)">Bow</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GiantMaggot.png" class="image"><img alt="GiantMaggot.png" src="LegacyMonsters/GiantMaggot.png" height="29" width="57"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Giant_Maggot" title="Legacy Giant Maggot">Giant Maggot</a> <i><span style="color:#969696;"> (1006) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  8/6/2/1/22/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 25%</span></i>
</td>
<td align="center"> 500
</td>
<td align="center"> 2% / 7%
</td>
<td align="center"> 45 / 75 (2)
</td>
<td align="center"> 91 (14)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (9%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cherry_Cake" title="Legacy Cherry Cake">Cherry Cake</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Casino_Coins" title="Legacy Casino Coins">Casino Coins</a> (0.11%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CandiedSlime.png" class="image"><img alt="CandiedSlime.png" src="LegacyMonsters/CandiedSlime.png" height="24" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Candied_Slime" title="Legacy Candied Slime">Candied Slime</a> <i><span style="color:#969696;"> (1111) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 50 -  20/30/10/10/30/30 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 20% / 30%
</td>
<td align="center"> 50 (3)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 800 (66)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Xmas_Candy_Cane" title="Legacy Xmas Candy Cane">Xmas Candy Cane</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Xmas_Cake" title="Legacy Xmas Cake">Xmas Cake</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Purple_Present_Box" title="Legacy Purple Present Box">Purple Present Box</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Blue_Present_Box" title="Legacy Blue Present Box">Blue Present Box</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Green_Present_Box" title="Legacy Green Present Box">Green Present Box</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Ginger Bread Man</a> (2%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:WickedMushroom.png" class="image"><img alt="WickedMushroom.png" src="LegacyMonsters/WickedMushroom.png" height="28" width="26"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Wicked_Mushroom" title="Legacy Wicked Mushroom">Wicked Mushroom</a> <i><span style="color:#969696;"> (1106) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  16/12/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 60%</span></i>
</td>
<td align="center"> 550
</td>
<td align="center"> 4% / 4%
</td>
<td align="center"> 70 / 80 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 117 (30)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Small_Mushroom" title="Legacy Small Mushroom">Small Mushroom</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Hard_Spike" title="Legacy Hard Spike">Hard Spike</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Potion" title="Legacy Iron Potion">Iron Potion</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Amethyst" title="Legacy Amethyst">Amethyst</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Moonshroom.png" class="image"><img alt="Moonshroom.png" src="LegacyMonsters/Moonshroom.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Moonshroom" title="Legacy Moonshroom">Moonshroom</a> <i><span style="color:#969696;"> (1130) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  16/12/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 60%</span></i>
</td>
<td align="center"> 550
</td>
<td align="center"> 4% / 4%
</td>
<td align="center"> 70 / 80 (4)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 120 (35)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Small_Mushroom" title="Legacy Small Mushroom">Small Mushroom</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Lifestone" title="Legacy Lifestone">Lifestone</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Empty_Bottle" title="Legacy Empty Bottle">Empty Bottle</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DemonicMouboo.png" class="image"><img alt="DemonicMouboo.png" src="LegacyMonsters/DemonicMouboo.png" height="71" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Demonic_Mouboo" title="Legacy Demonic Mouboo">Demonic Mouboo</a> <i><span style="color:#969696;"> (1104) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 85 -  15/5/15/0/40/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 30%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 35% / 15%
</td>
<td align="center"> 40 / 70 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 176 (32)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Reed_Bundle" title="Legacy Reed Bundle">Reed Bundle</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (0.50%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CopperSlime.png" class="image"><img alt="CopperSlime.png" src="LegacyMonsters/CopperSlime.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Copper_Slime" title="Legacy Copper Slime">Copper Slime</a> <i><span style="color:#969696;"> (1098) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  20/30/10/10/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 600
</td>
<td align="center"> 20% / 30%
</td>
<td align="center"> 60 / 90 (1)
</td>
<td align="center"> 134 (18)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (15%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Treasure_Key" title="Legacy Treasure Key">Treasure Key</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (3%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:EvilMushroom.png" class="image"><img alt="EvilMushroom.png" src="LegacyMonsters/EvilMushroom.png" height="42" width="42"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Evil_Mushroom" title="Legacy Evil Mushroom">Evil Mushroom</a> <i><span style="color:#969696;"> (1013) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  16/12/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 60%</span></i>
</td>
<td align="center"> 650
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 65 / 80 (1)
</td>
<td align="center"> 138 (35)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Small_Mushroom" title="Legacy Small Mushroom">Small Mushroom</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange_Cupcake" title="Legacy Orange Cupcake">Orange Cupcake</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Empty_Bottle" title="Legacy Empty Bottle">Empty Bottle</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:BlackScorpion.png" class="image"><img alt="BlackScorpion.png" src="LegacyMonsters/BlackScorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Black_Scorpion" title="Legacy Black Scorpion">Black Scorpion</a> <i><span style="color:#969696;"> (1009) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 100 -  16/30/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 50%</span></i>
</td>
<td align="center"> 600
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 60 / 100 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 130 (37)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Black_Scorpion_Stinger" title="Legacy Black Scorpion Stinger">Black Scorpion Stinger</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Shirt" title="Legacy Leather Shirt">Leather Shirt</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (1%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:PinkFlower.png" class="image"><img alt="PinkFlower.png" src="LegacyMonsters/PinkFlower.png" height="27" width="17"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Pink_Flower" title="Legacy Pink Flower">Pink Flower</a> <i><span style="color:#969696;"> (1014) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 115 -  16/12/20/20/20/50 </span></i> - <i><span style="color:#ad1818"> Stationary </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 50%</span></i>
</td>
<td align="center"> 700
</td>
<td align="center"> 0% / 5%
</td>
<td align="center"> 70 / 75 (2)
</td>
<td align="center"> 163 (40)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Pink_Petal" title="Legacy Pink Petal">Pink Petal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pink_Petal" title="Legacy Pink Petal">Pink Petal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Empty_Bottle" title="Legacy Empty Bottle">Empty Bottle</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Snail.png" class="image"><img alt="Snail.png" src="LegacyMonsters/Snail.png" height="40" width="40"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Snail" title="Legacy Snail">Snail</a> <i><span style="color:#969696;"> (1041) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  10/1/25/0/20/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 900
</td>
<td align="center"> 20% / 15%
</td>
<td align="center"> 60 / 65 (1)
</td>
<td align="center"> 114 (18)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cherry" title="Legacy Cherry">Cherry</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Plum" title="Legacy Plum">Plum</a> (15%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pear" title="Legacy Pear">Pear</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Green_Apple" title="Legacy Green Apple">Green Apple</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Blueberries" title="Legacy Blueberries">Blueberries</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Reed_Bundle" title="Legacy Reed Bundle">Reed Bundle</a> (4%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SantaSlime.png" class="image"><img alt="SantaSlime.png" src="LegacyMonsters/SantaSlime.png" height="17" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Santa_Slime" title="Legacy Santa Slime">Santa Slime</a> <i><span style="color:#969696;"> (1015) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 120 -  1/20/1/0/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 10%</span></i>
</td>
<td align="center"> 750
</td>
<td align="center"> 2% / 7%
</td>
<td align="center"> 75 / 80 (1)
</td>
<td align="center"> 166 (58)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Ginger Bread Man</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cake" title="Legacy Cake">Cake</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Xmas_Candy_Cane" title="Legacy Xmas Candy Cane">Xmas Candy Cane</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cherry_Cake" title="Legacy Cherry Cake">Cherry Cake</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Green_Present_Box" title="Legacy Green Present Box">Green Present Box</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Milk" title="Legacy Milk">Milk</a> (4%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Wolvern.png" class="image"><img alt="Wolvern.png" src="LegacyMonsters/Wolvern.png" height="50" width="26"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Wolvern" title="Legacy Wolvern">Wolvern</a> <i><span style="color:#969696;"> (1090) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  15/10/5/0/20/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 900
</td>
<td align="center"> 5% / 5%
</td>
<td align="center"> 50 / 80 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 185 (86)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Steak" title="Legacy Steak">Steak</a> (13%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Wolvern_Tooth" title="Legacy Wolvern Tooth">Wolvern Tooth</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Wolvern_Pelt" title="Legacy Wolvern Pelt">Wolvern Pelt</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Animal_Bones" title="Legacy Animal Bones">Animal Bones</a> (2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Spider.png" class="image"><img alt="Spider.png" src="LegacyMonsters/Spider.png" height="33" width="35"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Spider" title="Legacy Spider">Spider</a> <i><span style="color:#969696;"> (1012) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 125 -  14/13/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 70 / 85 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 175 (115)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Treasure_Key" title="Legacy Treasure Key">Treasure Key</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Infantry_Helmet" title="Legacy Infantry Helmet">Infantry Helmet</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Mouboo.png" class="image"><img alt="Mouboo.png" src="LegacyMonsters/Mouboo.png" height="70" width="76"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Mouboo" title="Legacy Mouboo">Mouboo</a> <i><span style="color:#969696;"> (1028) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 85 -  15/5/15/0/40/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 30%</span></i>
</td>
<td align="center"> 1200
</td>
<td align="center"> 65% / 5%
</td>
<td align="center"> 30 / 75 (2)
</td>
<td align="center"> 326 (16)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bottle_of_Water" title="Legacy Bottle of Water">Bottle of Water</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Reed_Bundle" title="Legacy Reed Bundle">Reed Bundle</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Reinboo.png" class="image"><img alt="Reinboo.png" src="LegacyMonsters/Reinboo.png" height="61" width="28"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Reinboo" title="Legacy Reinboo">Reinboo</a> <i><span style="color:#969696;"> (1094) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 35 -  15/5/15/0/40/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 30%</span></i>
</td>
<td align="center"> 1100
</td>
<td align="center"> 35% / 5%
</td>
<td align="center"> 40 / 75 (2)
</td>
<td align="center"> 214 (29)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_White_Cake" title="Legacy White Cake">White Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Cake" title="Legacy Chocolate Cake">Chocolate Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange_Cake" title="Legacy Orange Cake">Orange Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Apple_Cake" title="Legacy Apple Cake">Apple Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Ginger Bread Man</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Antlers" title="Legacy Antlers">Antlers</a> (0.50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Rednose" title="Legacy Rednose">Red Nose</a> (0.10%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Moggun.png" class="image"><img alt="Moggun.png" src="LegacyMonsters/Moggun.png" height="64" width="64"></a>
</td>
<td height="82px"> <a href="https://www.themanaworld.org/index.php/Legacy_Moggun" title="Legacy Moggun">Moggun</a> <i><span style="color:#969696;"> (1061) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 60 -  50/40/10/10/10/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 20% / 10%
</td>
<td align="center"> 70 / 90 (1)
</td>
<td align="center"> 174 (52)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_White_Fur" title="Legacy White Fur">White Fur</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diamond" title="Legacy Diamond">Diamond</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AngrySeaSlime.png" class="image"><img alt="AngrySeaSlime.png" src="LegacyMonsters/AngrySeaSlime.png" height="16" width="24"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Angry_Sea_Slime" title="Legacy Angry Sea Slime">Angry Sea Slime</a> <i><span style="color:#969696;"> (1109) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  3/30/3/0/35/35 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 1200
</td>
<td align="center"> 13% / 17%
</td>
<td align="center"> 40 / 70 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 268 (42)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Concentration_Potion" title="Legacy Concentration Potion">Concentration Potion</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bottle_of_Water" title="Legacy Bottle of Water">Bottle of Water</a> (0.50%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Larvern.png" class="image"><img alt="Larvern.png" src="LegacyMonsters/Larvern.png" height="30" width="19"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Larvern" title="Legacy Larvern">Larvern</a> <i><span style="color:#969696;"> (1087) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 20 -  35/20/50/0/70/20 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 550
</td>
<td align="center"> 30% / 65%
</td>
<td align="center"> 50 / 200 (1)
</td>
<td align="center"> 122 (26)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Grub_Slime" title="Legacy Grub Slime">Grub Slime</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Seeds" title="Legacy Grass Seeds">Grass Seeds</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Reed_Bundle" title="Legacy Reed Bundle">Reed Bundle</a> (3%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Snake.png" class="image"><img alt="Snake.png" src="LegacyMonsters/Snake.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Snake" title="Legacy Snake">Snake</a> <i><span style="color:#969696;"> (1010) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 115 -  20/11/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 850
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 75 / 90 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 184 (56)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Snake_Tongue" title="Legacy Snake Tongue">Snake Tongue</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Egg" title="Legacy Snake Egg">Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Egg" title="Legacy Snake Egg">Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Skin" title="Legacy Snake Skin">Snake Skin</a> (1.5%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SoulSnake.png" class="image"><img alt="SoulSnake.png" src="LegacyMonsters/SoulSnake.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Soul_Snake" title="Legacy Soul Snake">Soul Snake</a> <i><span style="color:#969696;"> (1096) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 115 -  20/11/10/10/35/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 850
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 75 / 90 (1)
</td>
<td align="center"> 184 (56)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GreenSlime.png" class="image"><img alt="GreenSlime.png" src="LegacyMonsters/GreenSlime.png" height="11" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Green_Slime" title="Legacy Green Slime">Green Slime</a> <i><span style="color:#969696;"> (1005) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  20/30/10/10/30/30 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 20% / 30%
</td>
<td align="center"> 80 / 120 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 185 (96)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Green_Apple" title="Legacy Green Apple">Green Apple</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Casino_Coins" title="Legacy Casino Coins">Casino Coins</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:VampireBat.png" class="image"><img alt="VampireBat.png" src="LegacyMonsters/VampireBat.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Vampire_Bat" title="Legacy Vampire Bat">Vampire Bat</a> <i><span style="color:#969696;"> (1066) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  8/8/1/4/20/4 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 800
</td>
<td align="center"> 10% / 8%
</td>
<td align="center"> 55 / 150 (1)
</td>
<td align="center"> 164 (9)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Vampire_Bat_Wing" title="Legacy Vampire Bat Wing">Vampire Bat Wing</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bat_Teeth" title="Legacy Bat Teeth">Bat Teeth</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Roasted_Maggot" title="Legacy Roasted Maggot">Roasted Maggot</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (0.70%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (0.01%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:MountainSnake.png" class="image"><img alt="MountainSnake.png" src="LegacyMonsters/MountainSnake.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Mountain_Snake" title="Legacy Mountain Snake">Mountain Snake</a> <i><span style="color:#969696;"> (1026) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 130 -  20/40/10/10/35/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 30%</span></i>
</td>
<td align="center"> 900
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 80 / 125 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 230 (63)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Mountain_Snake_Tongue" title="Legacy Mountain Snake Tongue">Mountain Snake Tongue</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mountain_Snake_Egg" title="Legacy Mountain Snake Egg">Mountain Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mountain_Snake_Egg" title="Legacy Mountain Snake Egg">Mountain Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Skin" title="Legacy Snake Skin">Snake Skin</a> (3.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Gloves" title="Legacy Leather Gloves">Leather Gloves</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:BanditLord.png" class="image"><img alt="BanditLord.png" src="LegacyMonsters/BanditLord.png" height="64" width="64"></a>
</td>
<td height="110px"> <a href="https://www.themanaworld.org/index.php/Bandit_Lord" title="Bandit Lord" class="mw-redirect">Bandit Lord</a> <i><span style="color:#969696;"> (1065) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  15/15/15/15/15/15 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 2000
</td>
<td align="center"> 15% / 15%
</td>
<td align="center"> 50 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 407 (103)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GrassSnake.png" class="image"><img alt="GrassSnake.png" src="LegacyMonsters/GrassSnake.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Grass_Snake" title="Legacy Grass Snake">Grass Snake</a> <i><span style="color:#969696;"> (1034) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  20/40/10/10/40/50 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 40%</span></i>
</td>
<td align="center"> 1000
</td>
<td align="center"> 2% / 10%
</td>
<td align="center"> 80 / 120 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 265 (103)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (16%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Snake_Tongue" title="Legacy Grass Snake Tongue">Grass Snake Tongue</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Steak" title="Legacy Steak">Steak</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snake_Skin" title="Legacy Snake Skin">Snake Skin</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Snake_Egg" title="Legacy Grass Snake Egg">Grass Snake Egg</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Grass_Snake_Egg" title="Legacy Grass Snake Egg">Grass Snake Egg</a> (4%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:AngryGreenSlime.png" class="image"><img alt="AngryGreenSlime.png" src="LegacyMonsters/AngryGreenSlime.png" height="11" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Angry_Green_Slime" title="Legacy Angry Green Slime">Angry Green Slime</a> <i><span style="color:#969696;"> (1110) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 60 -  20/30/10/10/30/30 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 1000
</td>
<td align="center"> 20% / 30%
</td>
<td align="center"> 100 / 160 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 249 (135)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Casino_Coins" title="Legacy Casino Coins">Casino Coins</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GCMaggot.png" class="image"><img alt="GCMaggot.png" src="LegacyMonsters/GCMaggot.png" height="31" width="59"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Giant_Cave_Maggot" title="Legacy Giant Cave Maggot">Giant Cave Maggot</a> <i><span style="color:#969696;"> (1059) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  10/10/2/1/22/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 25%</span></i>
</td>
<td align="center"> 2000
</td>
<td align="center"> 2% / 7%
</td>
<td align="center"> 60 / 80 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 395 (102)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Iten" title="Legacy Iten">Iten</a> (100%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:CrotcherScorpion.png" class="image"><img alt="CrotcherScorpion.png" src="LegacyMonsters/CrotcherScorpion.png" height="34" width="34"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Crotcher_Scorpion" title="Legacy Crotcher Scorpion">Crotcher Scorpion</a> <i><span style="color:#969696;"> (1084) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 25 -  15/30/10/10/25/25 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 1200
</td>
<td align="center"> 15% / 45%
</td>
<td align="center"> 75 / 175 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 264 (86)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Shirt" title="Legacy Leather Shirt">Leather Shirt</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Bar" title="Legacy Chocolate Bar">Chocolate Bar</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Gingerbread Man</a> (3%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Troll.png" class="image"><img alt="Troll.png" src="LegacyMonsters/Troll.png" height="67" width="50"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Troll" title="Legacy Troll">Troll</a> <i><span style="color:#969696;"> (1054) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 65 -  50/40/10/10/30/30 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 2000
</td>
<td align="center"> 20% / 10%
</td>
<td align="center"> 70 / 100 (1)
</td>
<td align="center"> 503 (129)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Arrow" title="Legacy Iron Arrow">Iron Arrow</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Gingerbread Man</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Kid_Book" title="Legacy Kid Book">Kid Book</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Hyvern.png" class="image"><img alt="Hyvern.png" src="LegacyMonsters/Hyvern.png" height="52" width="60"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Hyvern" title="Legacy Hyvern">Hyvern</a> <i><span style="color:#969696;"> (1088) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  10/45/5/0/35/35 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 2250
</td>
<td align="center"> 0% / 10%
</td>
<td align="center"> 50 / 125 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 572 (346)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Iron_Arrow" title="Legacy Iron Arrow">Iron Arrow</a> (30%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Hyvern_Stinger" title="Legacy Hyvern Stinger">Hyvern Stinger</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (6%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:HuntsmanSpider.png" class="image"><img alt="HuntsmanSpider.png" src="LegacyMonsters/HuntsmanSpider.png" height="33" width="35"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Huntsman_Spider" title="Legacy Huntsman Spider">Huntsman Spider</a> <i><span style="color:#969696;"> (1083) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 30 -  20/15/10/10/45/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 1500
</td>
<td align="center"> 10% / 45%
</td>
<td align="center"> 125 / 150 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 302 (363)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Green_Apple" title="Legacy Green Apple">Green Apple</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Infantry_Helmet" title="Legacy Infantry Helmet">Infantry Helmet</a> (1%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Santaboo.png" class="image"><img alt="Santaboo.png" src="LegacyMonsters/Santaboo.png" height="58" width="24"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Santaboo" title="Legacy Santaboo">Santaboo</a> <i><span style="color:#969696;"> (1112) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 50 -  25/10/25/0/60/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 30%</span></i>
</td>
<td align="center"> 2200
</td>
<td align="center"> 50% / 10%
</td>
<td align="center"> 80 / 125 (2)
</td>
<td align="center"> 734 (59)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_White_Cake" title="Legacy White Cake">White Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Chocolate_Cake" title="Legacy Chocolate Cake">Chocolate Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange_Cake" title="Legacy Orange Cake">Orange Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Apple_Cake" title="Legacy Apple Cake">Apple Cake</a> (12%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ginger_Bread_Man" title="Legacy Ginger Bread Man">Gingerbread Man</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Santa_Hat" title="Legacy Santa Hat">Santa Hat</a> (0.50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Nose" title="Legacy Red Nose" class="mw-redirect">Red Nose</a> (0.10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DemonicSpirit.png" class="image"><img alt="DemonicSpirit.png" src="LegacyMonsters/DemonicSpirit.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Demonic_Spirit" title="Legacy Demonic Spirit">Demonic Spirit</a> <i><span style="color:#969696;"> (1101) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 72 -  20/40/10/10/110/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 1505
</td>
<td align="center"> 4% / 6%
</td>
<td align="center"> 125 / 175 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 478 (270)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:BlueSlime.png" class="image"><img alt="BlueSlime.png" src="LegacyMonsters/BlueSlime.png" height="31" width="16"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Blue_Slime" title="Legacy Blue Slime">Blue Slime</a> <i><span style="color:#969696;"> (1091) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  40/30/50/10/50/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 20%</span></i>
</td>
<td align="center"> 2000
</td>
<td align="center"> 20% / 40%
</td>
<td align="center"> 100 / 150 (1)
</td>
<td align="center"> 511 (77)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Iced_Water" title="Legacy Iced Water">Iced Water</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Book_Page" title="Legacy Book Page">Book Page</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Silver_Mirror" title="Legacy Silver Mirror">Silver Mirror</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sapphire" title="Legacy Sapphire">Sapphire</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:UndeadTroll.png" class="image"><img alt="UndeadTroll.png" src="LegacyMonsters/UndeadTroll.png" height="47" width="40"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Undead_Troll" title="Legacy Undead Troll">Undead Troll</a> <i><span style="color:#969696;"> (1117) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 75 -  50/40/20/10/40/49 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 3100
</td>
<td align="center"> 20% / 10%
</td>
<td align="center"> 60 / 140 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 910 (179)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Arrow" title="Legacy Iron Arrow">Iron Arrow</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Animal_Bones" title="Legacy Animal Bones">Animal Bones</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Kid_Book" title="Legacy Kid Book">Kid Book</a> (0.20%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:UndeadWitch.png" class="image"><img alt="UndeadWitch.png" src="LegacyMonsters/UndeadWitch.png" height="65" width="65"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Undead_Witch" title="Legacy Undead Witch">Undead Witch</a> <i><span style="color:#969696;"> (1116) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  15/20/10/25/50/40 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 4200
</td>
<td align="center"> 8% / 31%
</td>
<td align="center"> 50 / 110 (3)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 1012 (722)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Powder" title="Legacy Iron Powder">Iron Powder</a> (1%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:BlueSpark.png" class="image"><img alt="BlueSpark.png" src="LegacyMonsters/BlueSpark.png" height="58" width="37"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Blue_Spark" title="Legacy Blue Spark">Blue Spark</a> <i><span style="color:#969696;"> (1080) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  30/30/30/30/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 20% / 40%
</td>
<td align="center"> 40 (2)
</td>
<td align="center"> 2431 (392)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:RedSpark.png" class="image"><img alt="RedSpark.png" src="LegacyMonsters/RedSpark.png" height="57" width="33"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Spark" title="Legacy Red Spark">Red Spark</a> <i><span style="color:#969696;"> (1081) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 40 -  30/30/30/30/30/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 20% / 40%
</td>
<td align="center"> 40 (2)
</td>
<td align="center"> 2431 (392)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DreadPirateMarleyClone.png" class="image"><img alt="DreadPirateMarleyClone.png" src="LegacyMonsters/DreadPirateMarleyClone.png" height="65" width="52"></a>
</td>
<td height="83px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dread_Pirate_Marley_Clone" title="Legacy Dread Pirate Marley Clone">Dread Pirate Marley Clone</a> <i><span style="color:#969696;"> (1123) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 150 -  10/40/30/20/80/40 </span></i> - <i><span style="color:#ad1818"> Assists </span></i>
</td>
<td align="center"> 2000
</td>
<td align="center"> 18% / 22%
</td>
<td align="center"> 175 / 250 (4)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 709 (0)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:FeyElement.png" class="image"><img alt="FeyElement.png" src="LegacyMonsters/FeyElement.png" height="65" width="65"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Fey_Element" title="Legacy Fey Element">Fey Element</a> <i><span style="color:#969696;"> (1086) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 50 -  20/70/10/20/80/1 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 50%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 25% / 50%
</td>
<td align="center"> 50 / 125 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 12500 (901)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Broken_Doll" title="Legacy Broken Doll">Broken Doll</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Mauve_Herb" title="Legacy Mauve Herb">Mauve Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cobalt_Herb" title="Legacy Cobalt Herb">Cobalt Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gamboge_Herb" title="Legacy Gamboge Herb">Gamboge Herb</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Alizarin_Herb" title="Legacy Alizarin Herb">Alizarin Herb</a> (10%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:LadySkeleton.png" class="image"><img alt="LadySkeleton.png" src="LegacyMonsters/LadySkeleton.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Lady_Skeleton" title="Legacy Lady Skeleton">Lady Skeleton</a> <i><span style="color:#969696;"> (1044) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  20/25/15/8/43/48 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 5500
</td>
<td align="center"> 31% / 8%
</td>
<td align="center"> 73 / 146 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2135 (957)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:FireSkull.png" class="image"><img alt="FireSkull.png" src="LegacyMonsters/FireSkull.png" height="56" width="33"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Fire_Skull" title="Legacy Fire Skull">Fire Skull</a> <i><span style="color:#969696;"> (1023) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  30/30/20/20/25/60 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 35% / 15%
</td>
<td align="center"> 75 / 175 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2304 (721)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:PoisonSkull.png" class="image"><img alt="PoisonSkull.png" src="LegacyMonsters/PoisonSkull.png" height="57" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Poison_Skull" title="Legacy Poison Skull">Poison Skull</a> <i><span style="color:#969696;"> (1024) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  30/30/20/20/25/60 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 35% / 15%
</td>
<td align="center"> 75 / 175 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2304 (721)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:IceElement.png" class="image"><img alt="IceElement.png" src="LegacyMonsters/IceElement.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Element" title="Legacy Ice Element">Ice Element</a> <i><span style="color:#969696;"> (1071) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 100 -  15/25/40/15/45/30 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 20%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 5% / 20%
</td>
<td align="center"> 60 / 200 (3)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 1508 (689)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (9%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Standard_Headband" title="Legacy Standard Headband">Standard Headband</a> (9%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Treasure_Key" title="Legacy Treasure Key">Treasure Key</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Concentration_Potion" title="Legacy Concentration Potion">Concentration Potion</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Silk_Headband" title="Legacy Silk Headband">Silk Headband</a> (2.5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DrunkenLadySkeleton.png" class="image"><img alt="DrunkenLadySkeleton.png" src="LegacyMonsters/DrunkenLadySkeleton.png" height="58" width="23"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Drunken_Lady_Skeleton" title="Legacy Drunken Lady Skeleton">Drunken Lady Skeleton</a> <i><span style="color:#969696;"> (1079) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  20/20/15/8/51/48 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 6000
</td>
<td align="center"> 40% / 8%
</td>
<td align="center"> 75 / 146 (2)
</td>
<td align="center"> 2660 (389)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Lady_Fingers" title="Legacy Lady Fingers">Lady Fingers</a> (3%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Jell-Ahh&amp;action=edit&amp;redlink=1" class="new" title="Legacy Jell-Ahh (page does not exist)">Jell-Ahh</a> (2.8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy_Pumpkin" title="Legacy Candy Pumpkin">Candy Pumpkin</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jelly_Skull" title="Legacy Jelly Skull">Jelly Skull</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Rubber_Bat" title="Legacy Rubber Bat">Rubber Bat</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jack_O_Lantern" title="Legacy Jack O Lantern">Jack O Lantern</a> (0.50%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:TheLost.png" class="image"><img alt="TheLost.png" src="LegacyMonsters/TheLost.png" height="54" width="22"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_The_Lost" title="Legacy The Lost">The Lost</a> <i><span style="color:#969696;"> (1073) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 83 -  5/40/10/70/70/40 </span></i> - <i><span style="color:#ad1818"> Assists </span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 10% / 70%
</td>
<td align="center"> 125 / 150 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 8750 (2840)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bloodstone" title="Legacy Bloodstone" class="mw-redirect">Bloodstone</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bloodstone" title="Legacy Bloodstone" class="mw-redirect">Bloodstone</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Small_Mushroom" title="Legacy Small Mushroom">Small Mushroom</a> (5%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:LavaSlime.png" class="image"><img alt="LavaSlime.png" src="LegacyMonsters/LavaSlime.png" height="32" width="32"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Lava_Slime" title="Legacy Lava Slime">Lava Slime</a> <i><span style="color:#969696;"> (1132) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 135 -  30/15/35/10/70/250 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 3 attributes up to 40%</span></i>
</td>
<td align="center"> 4144
</td>
<td align="center"> 75% / 80%
</td>
<td align="center"> 105 / 260 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 6000 (1111)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Sling_Bullet" title="Legacy Sling Bullet">Sling Bullet</a> (100%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (25%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Tiny_Mana_Elixir" title="Legacy Tiny Mana Elixir">Tiny Mana Elixir</a> (5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Swashbuckler.png" class="image"><img alt="Swashbuckler.png" src="LegacyMonsters/Swashbuckler.png" height="67" width="38"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Swashbuckler" title="Legacy Swashbuckler">Swashbuckler</a> <i><span style="color:#969696;"> (1120) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  10/20/30/20/80/60 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 23% / 27%
</td>
<td align="center"> 75 / 250 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2310 (999)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (2.5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Scythe.png" class="image"><img alt="Scythe.png" src="LegacyMonsters/Scythe.png" height="46" width="82"></a>
</td>
<td height="64px"> <a href="https://www.themanaworld.org/index.php/Legacy_Scythe_%28Monster%29" title="Legacy Scythe (Monster)">Scythe</a> <i><span style="color:#969696;"> (1069) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 80 -  100/250/1/1/150/90 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 3000
</td>
<td align="center"> 30% / 10%
</td>
<td align="center"> 200 / 350 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2496 (617)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Grenadier.png" class="image"><img alt="Grenadier.png" src="LegacyMonsters/Grenadier.png" height="73" width="40"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Grenadier" title="Legacy Grenadier">Grenadier</a> <i><span style="color:#969696;"> (1121) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  2/10/40/50/80/60 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 6000
</td>
<td align="center"> 8% / 60%
</td>
<td align="center"> 100 / 200 (6)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 1346 (999)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Powder" title="Legacy Iron Powder">Iron Powder</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (2.5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Thug.png" class="image"><img alt="Thug.png" src="LegacyMonsters/Thug.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Thug" title="Legacy Thug">Thug</a> <i><span style="color:#969696;"> (1119) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  0/10/50/0/40/60 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 40%</span></i>
</td>
<td align="center"> 5000
</td>
<td align="center"> 30% / 6%
</td>
<td align="center"> 125 / 250 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2187 (999)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pile_of_Ash" title="Legacy Pile of Ash">Pile of Ash</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (2.5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SeaSlimeMother.png" class="image"><img alt="SeaSlimeMother.png" src="LegacyMonsters/SeaSlimeMother.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Sea_Slime_Mother" title="Legacy Sea Slime Mother">Sea Slime Mother</a> <i><span style="color:#969696;"> (1115) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  1/15/10/10/10/10 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 8000
</td>
<td align="center"> 10% / 20%
</td>
<td align="center"> 100 / 150 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 1784 (900)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Arrow" title="Legacy Arrow">Arrow</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy" title="Legacy Candy">Candy</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Orange" title="Legacy Orange">Orange</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bug_Leg" title="Legacy Bug Leg">Bug Leg</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Pearl" title="Legacy Pearl">Pearl</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Concentration_Potion" title="Legacy Concentration Potion">Concentration Potion</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bottle_of_Water" title="Legacy Bottle of Water">Bottle of Water</a> (0.50%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GreenSlimeMother.png" class="image"><img alt="GreenSlimeMother.png" src="LegacyMonsters/GreenSlimeMother.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Green_Slime_Mother" title="Legacy Green Slime Mother">Green Slime Mother</a> <i><span style="color:#969696;"> (1118) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  20/25/20/30/20/20 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 8000
</td>
<td align="center"> 15% / 20%
</td>
<td align="center"> 100 / 150 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 1942 (900)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Apple" title="Legacy Red Apple">Red Apple</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coin_Bag" title="Legacy Coin Bag">Coin Bag</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Casino_Coins" title="Legacy Casino Coins">Casino Coins</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dagger" title="Legacy Dagger">Dagger</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Potion" title="Legacy Cactus Potion">Cactus Potion</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sharp_Knife" title="Legacy Sharp Knife">Sharp Knife</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cactus_Drink" title="Legacy Cactus Drink">Cactus Drink</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (0.20%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Nutcracker.png" class="image"><img alt="Nutcracker.png" src="LegacyMonsters/Nutcracker.png" height="75" width="23"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Nutcracker" title="Legacy Nutcracker">Nutcracker</a> <i><span style="color:#969696;"> (1114) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  40/20/10/5/60/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 6000
</td>
<td align="center"> 20% / 42%
</td>
<td align="center"> 81 / 281 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2235 (769)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Raw_Log" title="Legacy Raw Log">Raw Log</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Cotton_Cloth" title="Legacy Cotton Cloth">Cotton Cloth</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Beer" title="Legacy Beer">Beer</a> (7.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Casino_Coins" title="Legacy Casino Coins">Casino Coins</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Skeleton.png" class="image"><img alt="Skeleton.png" src="LegacyMonsters/Skeleton.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Skeleton" title="Legacy Skeleton">Skeleton</a> <i><span style="color:#969696;"> (1043) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/18/3/8/71/65 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 6800
</td>
<td align="center"> 12% / 10%
</td>
<td align="center"> 51 / 284 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2102 (1467)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Poltergeist.png" class="image"><img alt="Poltergeist.png" src="LegacyMonsters/Poltergeist.png" height="62" width="60"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Poltergeist" title="Legacy Poltergeist">Poltergeist</a> <i><span style="color:#969696;"> (1047) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/0/15/15/75/50 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 20%</span></i>
</td>
<td align="center"> 9000
</td>
<td align="center"> 0% / 20%
</td>
<td align="center"> 110 / 150 (3)
</td>
<td align="center"> 2605 (1306)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Poltergeist_Powder" title="Legacy Poltergeist Powder">Poltergeist Powder</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:TipsySkeleton.png" class="image"><img alt="TipsySkeleton.png" src="LegacyMonsters/TipsySkeleton.png" height="63" width="25"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Tipsy_Skeleton" title="Legacy Tipsy Skeleton">Tipsy Skeleton</a> <i><span style="color:#969696;"> (1078) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/10/3/8/71/65 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 7000
</td>
<td align="center"> 33% / 10%
</td>
<td align="center"> 60 / 284 (1)
</td>
<td align="center"> 2987 (493)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Marshmallow" title="Legacy Marshmallow">Marshmallow</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Snapple" title="Legacy Snapple">Snapple</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Beetle_Juice" title="Legacy Beetle Juice">Beetle Juice</a> (2.8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Candy_Pumpkin" title="Legacy Candy Pumpkin">Candy Pumpkin</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Realistic_Brain" title="Legacy Realistic Brain">Realistic Brain</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jack_O_Lantern" title="Legacy Jack O Lantern">Jack O Lantern</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DrunkenSkeleton.png" class="image"><img alt="DrunkenSkeleton.png" src="LegacyMonsters/DrunkenSkeleton.png" height="66" width="23"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Drunken_Skeleton" title="Legacy Drunken Skeleton">Drunken Skeleton</a> <i><span style="color:#969696;"> (1077) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/10/3/8/71/65 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 7200
</td>
<td align="center"> 30% / 10%
</td>
<td align="center"> 55 / 284 (1)
</td>
<td align="center"> 2912 (530)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Tonori_Delight" title="Legacy Tonori Delight">Tonori Delight</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Blood_Wine" title="Legacy Blood Wine">Blood Wine</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Gut_Buster_Ale" title="Legacy Gut Buster Ale">Gut Buster Ale</a> (2.8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jelly_Skull" title="Legacy Jelly Skull">Jelly Skull</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jar_of_Blood" title="Legacy Jar of Blood">Jar of Blood</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Jack_O_Lantern" title="Legacy Jack O Lantern">Jack O Lantern</a> (0.50%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Spectre.png" class="image"><img alt="Spectre.png" src="LegacyMonsters/Spectre.png" height="62" width="60"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Spectre" title="Legacy Spectre">Spectre</a> <i><span style="color:#969696;"> (1042) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  35/70/22/15/20/70 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 20%</span></i>
</td>
<td align="center"> 6500
</td>
<td align="center"> 40% / 0%
</td>
<td align="center"> 160 / 220 (3)
</td>
<td align="center"> 3978 (359)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Spectre_Powder" title="Legacy Spectre Powder">Spectre Powder</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Wight.png" class="image"><img alt="Wight.png" src="LegacyMonsters/Wight.png" height="66" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Wight" title="Legacy Wight">Wight</a> <i><span style="color:#969696;"> (1124) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  28/25/15/15/50/65 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 8000
</td>
<td align="center"> 32% / 15%
</td>
<td align="center"> 56 / 294 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 9000 (1900)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (0.50%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Terranite.png" class="image"><img alt="Terranite.png" src="LegacyMonsters/Terranite.png" height="64" width="64"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Terranite" title="Legacy Terranite">Terranite</a> <i><span style="color:#969696;"> (1062) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  60/40/40/30/60/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 6000
</td>
<td align="center"> 20% / 40%
</td>
<td align="center"> 200 / 300 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2484 (889)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Coal" title="Legacy Coal">Coal</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Terranite_Ore" title="Legacy Terranite Ore">Terranite Ore</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iron_Ore" title="Legacy Iron Ore">Iron Ore</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Emerald" title="Legacy Emerald">Emerald</a> (0.20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sapphire" title="Legacy Sapphire">Sapphire</a> (0.20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Amethyst" title="Legacy Amethyst">Amethyst</a> (0.20%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:SoulEater.png" class="image"><img alt="SoulEater.png" src="LegacyMonsters/SoulEater.png" height="66" width="52"></a>
</td>
<td height="84px"> <a href="https://www.themanaworld.org/index.php/Legacy_Soul_Eater" title="Legacy Soul Eater">Soul Eater</a> <i><span style="color:#969696;"> (1097) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/18/3/8/71/65 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 6800
</td>
<td align="center"> 12% / 10%
</td>
<td align="center"> 129 / 354 (1)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 2232 (1746)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:IceSkull.png" class="image"><img alt="IceSkull.png" src="LegacyMonsters/IceSkull.png" height="61" width="27"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Skull" title="Legacy Ice Skull">Ice Skull</a> <i><span style="color:#969696;"> (1085) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  30/30/20/20/25/34 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 7000
</td>
<td align="center"> 40% / 15%
</td>
<td align="center"> 75 / 400 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 3056 (757)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Ice_Cube" title="Legacy Ice Cube">Ice Cube</a> (50%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Iced_Water" title="Legacy Iced Water">Iced Water</a> (8%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:RedBone.png" class="image"><img alt="RedBone.png" src="LegacyMonsters/RedBone.png" height="70" width="39"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Red_Bone" title="Legacy Red Bone">Red Bone</a> <i><span style="color:#969696;"> (1074) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 90 -  35/25/3/50/80/75 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 8000
</td>
<td align="center"> 24% / 30%
</td>
<td align="center"> 100 / 330 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 9750 (3434)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (0.75%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (0.04%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:ManaGhost.png" class="image"><img alt="ManaGhost.png" src="LegacyMonsters/ManaGhost.png" height="60" width="41"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Mana_Ghost" title="Legacy Mana Ghost">Mana Ghost</a> <i><span style="color:#969696;"> (1125) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 82 -  35/15/3/50/50/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 8000
</td>
<td align="center"> 23% / 30%
</td>
<td align="center"> 150 / 300 (3)
</td>
<td align="center"> 7500 (2400)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bloodstone" title="Legacy Bloodstone" class="mw-redirect">Bloodstone</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (0.75%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (0.40%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:WitchGuard.png" class="image"><img alt="WitchGuard.png" src="LegacyMonsters/WitchGuard.png" height="64" width="48"></a>
</td>
<td height="82px"> <a href="https://www.themanaworld.org/index.php/Legacy_Witch_Guard" title="Legacy Witch Guard">Witch Guard</a> <i><span style="color:#969696;"> (1103) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 84 -  90/65/45/5/120/69 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 1 attribute up to 40%</span></i>
</td>
<td align="center"> 9742
</td>
<td align="center"> 25% / 50%
</td>
<td align="center"> 200 / 220 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 4313 (1060)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (20%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (2.5%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Yeti.png" class="image"><img alt="Yeti.png" src="LegacyMonsters/Yeti.png" height="75" width="75"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Yeti" title="Legacy Yeti">Yeti</a> <i><span style="color:#969696;"> (1072) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 100 -  60/5/45/15/60/32 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 8500
</td>
<td align="center"> 60% / 15%
</td>
<td align="center"> 100 / 400 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 4716 (726)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Yellow_Present_Box" title="Legacy Yellow Present Box">Yellow Present Box</a> (8%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Animal_Bones" title="Legacy Animal Bones">Animal Bones</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_White_Present_Box" title="Legacy White Present Box">White Present Box</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Yeti_Claw" title="Legacy Yeti Claw">Yeti Claw</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Frozen_Yeti_Tear" title="Legacy Frozen Yeti Tear">Frozen Yeti Tear</a> (3%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Yeti_Mask&amp;action=edit&amp;redlink=1" class="new" title="Legacy Yeti Mask (page does not exist)">Yeti Mask</a> (1.4%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:DreadPirateMarley.png" class="image"><img alt="DreadPirateMarley.png" src="LegacyMonsters/DreadPirateMarley.png" height="65" width="52"></a>
</td>
<td height="83px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dread_Pirate_Marley" title="Legacy Dread Pirate Marley">Dread Pirate Marley</a> <i><span style="color:#969696;"> (1122) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 180 -  10/20/40/20/90/80 </span></i> - <i><span style="color:#ad1818"> Assists </span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 38% / 32%
</td>
<td align="center"> 175 / 250 (4)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 7518 (20000)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Wisp.png" class="image"><img alt="Wisp.png" src="LegacyMonsters/Wisp.png" height="62" width="60"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Wisp" title="Legacy Wisp">Wisp</a> <i><span style="color:#969696;"> (1040) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 70 -  45/12/13/15/0/45 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 20%</span></i>
</td>
<td align="center"> 9300
</td>
<td align="center"> 0% / 20%
</td>
<td align="center"> 215 / 350 (2)
</td>
<td align="center"> 1514 (1210)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Wisp_Powder" title="Legacy Wisp Powder">Wisp Powder</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Sulphur_Powder" title="Legacy Sulphur Powder">Sulphur Powder</a> (1.2%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:JackO.png" class="image"><img alt="JackO.png" src="LegacyMonsters/JackO.png" height="60" width="62"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Jack_O" title="Legacy Jack O">Jack O</a> <i><span style="color:#969696;"> (1022) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 250 -  35/40/25/25/35/50 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 40% / 20%
</td>
<td align="center"> 100 / 500 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 6119 (1241)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Soul" title="Legacy Soul">Soul</a> (100%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Axe_Hat&amp;action=edit&amp;redlink=1" class="new" title="Legacy Axe Hat (page does not exist)">Axe Hat</a> (6%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bandana" title="Legacy Bandana">Bandana</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_V-Neck_Sweater" title="Legacy V-Neck Sweater">V-Neck Sweater</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Circlet" title="Legacy Circlet">Circlet</a> (4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Ranger_Hat" title="Legacy Ranger Hat">Ranger Hat</a> (4%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Pirate_Hat&amp;action=edit&amp;redlink=1" class="new" title="Legacy Pirate Hat (page does not exist)">Pirate Hat</a> (3%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Pumpkin_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Pumpkin Helmet (page does not exist)">Pumpkin Helmet</a> (3%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Fallen.png" class="image"><img alt="Fallen.png" src="LegacyMonsters/Fallen.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Fallen" title="Legacy Fallen">Fallen</a> <i><span style="color:#969696;"> (1045) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 120 -  40/3/25/5/80/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 50%</span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 5% / 20%
</td>
<td align="center"> 180 / 430 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 7812 (1663)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Gloves" title="Legacy Leather Gloves">Leather Gloves</a> (0.35%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Warlord_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Warlord Helmet (page does not exist)">Warlord Helmet</a> (0.03%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Warlord_Plate" title="Legacy Warlord Plate">Warlord Plate</a> (0.02%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:PsiBrain.png" class="image"><img alt="PsiBrain.png" src="LegacyMonsters/PsiBrain.png" height="55" width="54"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Psi_Brain" title="Legacy Psi Brain">Psi Brain</a> <i><span style="color:#969696;"> (1126) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 100 -  35/15/3/50/50/50 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 10000
</td>
<td align="center"> 23% / 30%
</td>
<td align="center"> 220 / 500 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 3952 (4000)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Brain_Stem" title="Legacy Brain Stem">Brain Stem</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (0.75%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (0.40%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Zombie.png" class="image"><img alt="Zombie.png" src="LegacyMonsters/Zombie.png" height="67" width="56"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Zombie" title="Legacy Zombie">Zombie</a> <i><span style="color:#969696;"> (1036) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 110 -  30/15/30/3/60/40 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 2 attributes up to 30%</span></i>
</td>
<td align="center"> 12000
</td>
<td align="center"> 20% / 15%
</td>
<td align="center"> 275 / 355 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 4192 (1393)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Rotten_Rags" title="Legacy Rotten Rags">Rotten Rags</a> (7%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Soul" title="Legacy Soul">Soul</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Undead_Ear" title="Legacy Undead Ear">Undead Ear</a> (2%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Undead_Eye" title="Legacy Undead Eye">Undead Eye</a> (1.5%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Stalker.png" class="image"><img alt="Stalker.png" src="LegacyMonsters/Stalker.png" height="84" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_Stalker" title="Legacy Stalker">Stalker</a> <i><span style="color:#969696;"> (1075) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 120 -  35/15/3/50/50/50 </span></i> - <i><span style="color:#ad1818"> Assists </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 20%</span></i>
</td>
<td align="center"> 20000
</td>
<td align="center"> 23% / 30%
</td>
<td align="center"> 220 / 500 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 8136 (4000)
</td>
<td> <i></i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"><i> <a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Soul" title="Legacy Soul">Soul</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1.4%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (1.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (0.75%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (0.40%)<br></i><span style="color:#ad1818">Picks up loot</span><i></i></div>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Reaper.png" class="image"><img alt="Reaper.png" src="LegacyMonsters/Reaper.png" height="81" width="46"></a>
</td>
<td height="99px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Reaper" title="Legacy Reaper">Reaper</a> <i><span style="color:#969696;"> (1068) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  100/120/70/120/100/75 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 40000
</td>
<td align="center"> 30% / 80%
</td>
<td align="center"> 200 / 350 (7)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 23960 (156)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Rotten_Rags" title="Legacy Rotten Rags">Rotten Rags</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull_Mask" title="Legacy Skull Mask">Skull Mask</a> (0.10%)</div></i>
</td></tr>
<tr>
<th style="background:#efdead;"> Image
</th>
<th style="background:#efdead;"> Name (ID)
</th>
<th style="background:#efdead;"> HP
</th>
<th style="background:#efdead;"> DEF/MDEF
</th>
<th style="background:#efdead;"> ATK<br>MIN/MAX (RANGE)
</th>
<th style="background:#efdead;"> EXP/(JEXP)
</th>
<th style="background:#efdead;"> Drops (Rate&nbsp;%)
</th></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GeneralKrukan.png" class="image"><img alt="GeneralKrukan.png" src="LegacyMonsters/GeneralKrukan.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_General_Krukan" title="Legacy General Krukan">General Krukan</a> <i><span style="color:#969696;"> (1127) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  40/3/25/5/80/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 6 attributes up to 50%</span></i>
</td>
<td align="center"> 40000
</td>
<td align="center"> 5% / 20%
</td>
<td align="center"> 180 / 430 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 12932 (1663)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Infantry_Helmet" title="Legacy Infantry Helmet">Infantry Helmet</a> (0.50%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Knight%27s_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Knight's Helmet (page does not exist)">Knight's Helmet</a> (0.25%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Crusade_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Crusade Helmet (page does not exist)">Crusade Helmet</a> (0.08%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Warlord_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Warlord Helmet (page does not exist)">Warlord Helmet</a> (0.06%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_DarkHelm&amp;action=edit&amp;redlink=1" class="new" title="Legacy DarkHelm (page does not exist)">DarkHelm</a> (0.02%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GeneralRazha.png" class="image"><img alt="GeneralRazha.png" src="LegacyMonsters/GeneralRazha.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_General_Razha" title="Legacy General Razha">General Razha</a> <i><span style="color:#969696;"> (1128) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  40/3/25/5/80/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 50%</span></i>
</td>
<td align="center"> 40000
</td>
<td align="center"> 5% / 20%
</td>
<td align="center"> 180 / 430 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 12932 (1663)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Gloves" title="Legacy Leather Gloves">Leather Gloves</a> (0.35%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Warlord_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Warlord Helmet (page does not exist)">Warlord Helmet</a> (0.03%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Warlord_Plate" title="Legacy Warlord Plate">Warlord Plate</a> (0.02%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:GeneralTerogan.png" class="image"><img alt="GeneralTerogan.png" src="LegacyMonsters/GeneralTerogan.png" height="65" width="52"></a>
</td>
<td> <a href="https://www.themanaworld.org/index.php/Legacy_General_Terogan" title="Legacy General Terogan">General Terogan</a> <i><span style="color:#969696;"> (1129) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 140 -  40/3/25/5/80/45 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i><br><i><span style="color:#4a4a4a">May mutate 4 attributes up to 50%</span></i>
</td>
<td align="center"> 40000
</td>
<td align="center"> 5% / 20%
</td>
<td align="center"> 180 / 430 (2)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 12932 (1663)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Dark_Crystal" title="Legacy Dark Crystal">Dark Crystal</a> (10%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Diseased_Heart" title="Legacy Diseased Heart">Diseased Heart</a> (5%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Skull" title="Legacy Skull">Skull</a> (3%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Bone" title="Legacy Bone">Bone</a> (2.1%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Leather_Gloves" title="Legacy Leather Gloves">Leather Gloves</a> (0.35%)<br><a href="https://www.themanaworld.org/index.php?title=Legacy_Warlord_Helmet&amp;action=edit&amp;redlink=1" class="new" title="Legacy Warlord Helmet (page does not exist)">Warlord Helmet</a> (0.03%)<br><a href="https://www.themanaworld.org/index.php/Legacy_Warlord_Plate" title="Legacy Warlord Plate">Warlord Plate</a> (0.02%)</div></i>
</td></tr>
<tr>
<td align="center"> <a href="https://www.themanaworld.org/index.php/File:Luvia.png" class="image"><img alt="Luvia.png" src="LegacyMonsters/Luvia.png" height="64" width="64"></a>
</td>
<td height="82px;"> <a href="https://www.themanaworld.org/index.php/Legacy_Luvia" title="Legacy Luvia">Luvia</a> <i><span style="color:#969696;"> (1102) </span></i><br><i><span style="color:#007700;font-size:12px;"> Level: 127 -  1/29/55/255/255/255 </span></i> - <i><span style="color:#ad1818"> Mobile </span></i>
</td>
<td align="center"> 48044
</td>
<td align="center"> 50% / 92%
</td>
<td align="center"> 339 / 364 (5)<br><i><span style="color:#ad1818">Aggro</span></i>
</td>
<td align="center"> 122817 (12172)
</td>
<td> <i><div style="-moz-column-count: 2;-moz-column-gap: 3px;column-count: 2;column-gap: 3px;font-size:12px;"> </div></i>
</td></tr>
</tbody></table>

<!-- 
NewPP limit report
Cached time: 20170910070740
Cache expiry: 86400
Dynamic content: false
CPU time usage: 0.884 seconds
Real time usage: 0.892 seconds
Preprocessor visited node count: 1106/1000000
Preprocessor generated node count: 2376/1000000
Post‐expand include size: 3010/2097152 bytes
Template argument size: 0/2097152 bytes
Highest expansion depth: 4/40
Expensive parser function count: 0/100
-->

<!-- 
Transclusion expansion time report (%,ms,calls,template)
100.00%   11.783      1 - -total
 34.24%    4.034      1 - Template:Meta
 26.10%    3.075      1 - Template:I18n
 20.94%    2.467      1 - Template:Metakey
 18.84%    2.220      1 - Template:Status_green
 15.05%    1.773      1 - Template:Category_Legacyplayerinfo
-->

<!-- Saved in parser cache with key wiki-wm_:pcache:idhash:10260-0!*!0!*!*!5!* and timestamp 20170910070740 and revision id 43470
 -->
</div><div class="printfooter">
Retrieved from "<a dir="ltr" href="https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;oldid=43470">https://www.themanaworld.org/index.php?title=Legacy_Monsters&amp;oldid=43470</a>"</div>
						<div class="clear_both"></div>
					</div>
		    	<div class="group"><div id="catlinks" class="catlinks catlinks-allhidden"></div></div>
		    					</div>
		    </div>
		</div>

			<footer class="row">
				<div id="footer">
										<div id="footer-left" class="large-8 small-12 columns">
					<ul id="footer-left">
													<li id="footer-lastmod"> This page was last modified on 10 September 2017, at 03:07.</li>
													<li id="footer-copyright">Content is available under <a href="https://www.themanaworld.org/index.php/TheManaWorld:Copyrights" title="TheManaWorld:Copyrights">GNU Free Documentation License</a> unless otherwise noted.</li>
													<li id="footer-privacy"><a href="https://www.themanaworld.org/index.php/TMW:_rEvolt:Privacy_policy" title="TMW: rEvolt:Privacy policy">Privacy policy</a></li>
													<li id="footer-about"><a href="https://www.themanaworld.org/index.php/TMW:_rEvolt:About" title="TMW: rEvolt:About">About TMW: rEvolt</a></li>
													<li id="footer-disclaimer"><a href="https://www.themanaworld.org/index.php/TMW:_rEvolt:General_disclaimer" title="TMW: rEvolt:General disclaimer">Disclaimers</a></li>
															
					</ul>
					</div>	
					<div id="footer-right-icons" class="large-4 small-12 columns">
					<ul id="poweredby">
													<li class="copyright">								<a href="http://www.gnu.org/licenses/fdl.html"><img src="LegacyMonsters/Gnufdl.png" alt="GNU Free Documentation License" height="31" width="88"></a>															</li>
													<li class="poweredby">								<a href="https://www.mediawiki.org/"><img src="LegacyMonsters/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/resources/assets/poweredby_mediawiki_132x47.png 1.5x, /resources/assets/poweredby_mediawiki_176x62.png 2x" height="31" width="88"></a>															</li>
											</ul>
					</div>								
				</div>
			</footer>

		</div>
		
		<script>window.RLQ = window.RLQ || []; window.RLQ.push( function () {
mw.loader.state({"user":"ready","user.groups":"ready"});mw.loader.load(["mediawiki.action.view.postEdit","site","mediawiki.user","mediawiki.hidpi","mediawiki.page.ready","mediawiki.searchSuggest"]);
} );</script><noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-5KTWGJ"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>

<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5KTWGJ');
</script>
<script>window.RLQ = window.RLQ || []; window.RLQ.push( function () {
mw.config.set({"wgBackendResponseTime":108});
} );</script>
		
		


<div style="display: none; visibility: hidden;"><script src="LegacyMonsters/addthis_widget.js" type="text/javascript"></script></div><meta name="google-site-verification" content="foeKfcXcmziCVGJnv_qEykEzKqI4-PGnkX4bcGR8H6U"><div id="_atssh" style="visibility: hidden; height: 1px; width: 1px; position: absolute; top: -9999px; z-index: 100000;"><iframe src="LegacyMonsters/sh.html" style="height: 1px; width: 1px; position: absolute; top: 0px; z-index: 100000; border: 0px none; left: 0px;" title="AddThis utility frame" id="_atssh567"></iframe></div><style id="service-icons-0"></style><div class="suggestions" style="display: none; font-size: 14px;"><div class="suggestions-results"></div><div class="suggestions-special"></div></div><div role="region" aria-labelledby="at4-share-label" class="addthis-smartlayers addthis-smartlayers-desktop"><div id="at4-share-label">AddThis Sharing Sidebar</div><div class="at4-share addthis_32x32_style atss atss-right addthis-animated slideInRight" id="at4-share"><a class="at-share-btn at-svc-google" tabindex="1" role="button"><span class="at4-visually-hidden">Share to Google Bookmark</span><span style="background-color: rgb(66, 133, 244);" class="at-icon-wrapper"><svg class="at-icon at-icon-google" aria-labelledby="at-svg-google-1" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-google-1">Google Bookmark</title><g><path fill-rule="evenodd" d="M16.213 13.998H26.72c.157.693.28 1.342.28 2.255C27 22.533 22.7 27 16.224 27 10.03 27 5 22.072 5 16S10.03 5 16.224 5c3.03 0 5.568 1.09 7.51 2.87l-3.188 3.037c-.808-.748-2.223-1.628-4.322-1.628-3.715 0-6.745 3.024-6.745 6.73 0 3.708 3.03 6.733 6.744 6.733 4.3 0 5.882-2.915 6.174-4.642h-6.185V14z"></path></g></svg></span></a><a class="at-share-btn at-svc-facebook" tabindex="1" role="button"><span class="at4-visually-hidden">Share to Facebook</span><span style="background-color: rgb(59, 89, 152);" class="at-icon-wrapper"><svg class="at-icon at-icon-facebook" aria-labelledby="at-svg-facebook-2" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-facebook-2">Facebook</title><g><path fill-rule="evenodd" d="M22 5.16c-.406-.054-1.806-.16-3.43-.16-3.4 0-5.733 1.825-5.733 5.17v2.882H9v3.913h3.837V27h4.604V16.965h3.823l.587-3.913h-4.41v-2.5c0-1.123.347-1.903 2.198-1.903H22V5.16z"></path></g></svg><div class="at4-share-count-container"><span class="at4-share-count"><span class="at4-visually-hidden">, Number of shares</span></span></div></span></a><a class="at-share-btn at-svc-twitter" tabindex="1" role="button"><span class="at4-visually-hidden">Share to Twitter</span><span style="background-color: rgb(29, 161, 242);" class="at-icon-wrapper"><svg class="at-icon at-icon-twitter" aria-labelledby="at-svg-twitter-3" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-twitter-3">Twitter</title><g><path fill-rule="evenodd" d="M27.996 10.116c-.81.36-1.68.602-2.592.71a4.526 4.526 0 0 0 1.984-2.496 9.037 9.037 0 0 1-2.866 1.095 4.513 4.513 0 0 0-7.69 4.116 12.81 12.81 0 0 1-9.3-4.715 4.49 4.49 0 0 0-.612 2.27 4.51 4.51 0 0 0 2.008 3.755 4.495 4.495 0 0 1-2.044-.564v.057a4.515 4.515 0 0 0 3.62 4.425 4.52 4.52 0 0 1-2.04.077 4.517 4.517 0 0 0 4.217 3.134 9.055 9.055 0 0 1-5.604 1.93A9.18 9.18 0 0 1 6 23.85a12.773 12.773 0 0 0 6.918 2.027c8.3 0 12.84-6.876 12.84-12.84 0-.195-.005-.39-.014-.583a9.172 9.172 0 0 0 2.252-2.336"></path></g></svg></span></a><a class="at-share-btn at-svc-print" tabindex="1" role="button"><span class="at4-visually-hidden">Share to Print</span><span style="background-color: rgb(115, 138, 141);" class="at-icon-wrapper"><svg class="at-icon at-icon-print" aria-labelledby="at-svg-print-4" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-print-4">Print</title><g><path d="M24.67 10.62h-2.86V7.49H10.82v3.12H7.95c-.5 0-.9.4-.9.9v7.66h3.77v1.31L15 24.66h6.81v-5.44h3.77v-7.7c-.01-.5-.41-.9-.91-.9zM11.88 8.56h8.86v2.06h-8.86V8.56zm10.98 9.18h-1.05v-2.1h-1.06v7.96H16.4c-1.58 0-.82-3.74-.82-3.74s-3.65.89-3.69-.78v-3.43h-1.06v2.06H9.77v-3.58h13.09v3.61zm.75-4.91c-.4 0-.72-.32-.72-.72s.32-.72.72-.72c.4 0 .72.32.72.72s-.32.72-.72.72zm-4.12 2.96h-6.1v1.06h6.1v-1.06zm-6.11 3.15h6.1v-1.06h-6.1v1.06z"></path></g></svg></span></a><a class="at-share-btn at-svc-compact" tabindex="1" role="button"><span class="at4-visually-hidden">More AddThis Share options</span><span style="background-color: rgb(255, 101, 80);" class="at-icon-wrapper"><svg class="at-icon at-icon-addthis" aria-labelledby="at-svg-addthis-5" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-addthis-5">Addthis</title><g><path fill-rule="evenodd" d="M18 14V8h-4v6H8v4h6v6h4v-6h6v-4h-6z"></path></g></svg><div class="at4-share-count-container"><span class="at4-share-count"><span class="at4-visually-hidden">, Number of shares</span></span></div></span></a><div title="Hide" class="at-share-close-control ats-transparent at4-hide-content at4-show" id="at4-scc"><div class="at4-arrow at-right">Hide</div></div></div><div style="padding-right: 10px;" title="Show" class="at-share-open-control at-share-open-control-right ats-transparent at4-hide" id="at4-soc"><div class="at4-arrow at-left">Show</div></div></div><div aria-labelledby="at-thankyou-label" role="dialog" class="at4-thankyou at4-thankyou-background at4-hide ats-transparent at4-thankyou-desktop addthis-smartlayers addthis-animated fadeIn at4-show" id="at4-thankyou"><div class="at4lb-inner"><button title="Close" class="at4x">Close</button><a id="at4-palogo"><div><a target="_blank" title="Powered by AddThis" href="https://www.addthis.com/website-tools/overview?utm_source=AddThis%20Tools&amp;utm_medium=image" class="at-branding-logo"><div class="at-branding-icon"></div><span class="at-branding-addthis">AddThis</span></a></div></a><div class="at4-thankyou-inner"><div class="thankyou-title" id="at-thankyou-label"></div><div class="thankyou-description"></div><div class="at4-thankyou-layer"></div></div></div></div><div role="region" aria-labelledby="at-share-dock-label" class="at-share-dock-outer  addthis-smartlayers at4-visually-hidden addthis-smartlayers-mobile"><div class="at4-hide" id="at-share-dock-label">AddThis Sharing</div><div class="at-share-dock atss atss-bottom at-shfs-large addthis-animated slideInUp" id="at-share-dock"><a class="at-share-btn at-svc-google" title="Google Bookmark" tabindex="1" role="button" style="width: 25%;"><span style="background-color: rgb(66, 133, 244);" class="at-icon-wrapper"><svg alt="Google Bookmark" title="Google Bookmark" style="fill: rgb(255, 255, 255); width: 32px; height: 32px;" class="at-icon at-icon-google" aria-labelledby="at-svg-google-6" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-google-6">Google Bookmark</title><g><path fill-rule="evenodd" d="M16.213 13.998H26.72c.157.693.28 1.342.28 2.255C27 22.533 22.7 27 16.224 27 10.03 27 5 22.072 5 16S10.03 5 16.224 5c3.03 0 5.568 1.09 7.51 2.87l-3.188 3.037c-.808-.748-2.223-1.628-4.322-1.628-3.715 0-6.745 3.024-6.745 6.73 0 3.708 3.03 6.733 6.744 6.733 4.3 0 5.882-2.915 6.174-4.642h-6.185V14z"></path></g></svg></span></a><a class="at-share-btn at-svc-facebook" title="Facebook" tabindex="1" role="button" style="width: 25%;"><span style="background-color: rgb(59, 89, 152);" class="at-icon-wrapper"><svg alt="Facebook" title="Facebook" style="fill: rgb(255, 255, 255); width: 32px; height: 32px;" class="at-icon at-icon-facebook" aria-labelledby="at-svg-facebook-7" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-facebook-7">Facebook</title><g><path fill-rule="evenodd" d="M22 5.16c-.406-.054-1.806-.16-3.43-.16-3.4 0-5.733 1.825-5.733 5.17v2.882H9v3.913h3.837V27h4.604V16.965h3.823l.587-3.913h-4.41v-2.5c0-1.123.347-1.903 2.198-1.903H22V5.16z"></path></g></svg></span></a><a class="at-share-btn at-svc-twitter" title="Twitter" tabindex="1" role="button" style="width: 25%;"><span style="background-color: rgb(29, 161, 242);" class="at-icon-wrapper"><svg alt="Twitter" title="Twitter" style="fill: rgb(255, 255, 255); width: 32px; height: 32px;" class="at-icon at-icon-twitter" aria-labelledby="at-svg-twitter-8" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-twitter-8">Twitter</title><g><path fill-rule="evenodd" d="M27.996 10.116c-.81.36-1.68.602-2.592.71a4.526 4.526 0 0 0 1.984-2.496 9.037 9.037 0 0 1-2.866 1.095 4.513 4.513 0 0 0-7.69 4.116 12.81 12.81 0 0 1-9.3-4.715 4.49 4.49 0 0 0-.612 2.27 4.51 4.51 0 0 0 2.008 3.755 4.495 4.495 0 0 1-2.044-.564v.057a4.515 4.515 0 0 0 3.62 4.425 4.52 4.52 0 0 1-2.04.077 4.517 4.517 0 0 0 4.217 3.134 9.055 9.055 0 0 1-5.604 1.93A9.18 9.18 0 0 1 6 23.85a12.773 12.773 0 0 0 6.918 2.027c8.3 0 12.84-6.876 12.84-12.84 0-.195-.005-.39-.014-.583a9.172 9.172 0 0 0 2.252-2.336"></path></g></svg></span></a><a class="at-share-btn at-svc-compact" title="More" tabindex="1" role="button" style="width: 25%;"><span style="background-color: rgb(255, 101, 80);" class="at-icon-wrapper"><svg alt="More" title="More" style="fill: rgb(255, 255, 255); width: 32px; height: 32px;" class="at-icon at-icon-addthis" aria-labelledby="at-svg-addthis-9" role="img" version="1.1" viewBox="0 0 32 32" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><title id="at-svg-addthis-9">Addthis</title><g><path fill-rule="evenodd" d="M18 14V8h-4v6H8v4h6v6h4v-6h6v-4h-6z"></path></g></svg></span></a></div></div></body><!-- Cached 20170910161220 --></html>