Paste #108734: Latest LOG

Date: 2023/04/12 10:20:27 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569


[14:08:38] [ServerMain/INFO]: Building unoptimized datafixer
[14:08:43] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[14:08:48] [ServerMain/INFO]: Loaded 7 recipes
[14:08:50] [Server thread/INFO]: Starting minecraft server version 1.19.3
[14:08:50] [Server thread/INFO]: Loading properties
[14:08:50] [Server thread/INFO]: This server is running Paper version git-Paper-448 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 155aa36)
[14:08:51] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:08:51] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:08:51] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[14:08:52] [Server thread/INFO]: Default game type: SURVIVAL
[14:08:52] [Server thread/INFO]: Generating keypair
[14:08:52] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:16584
[14:08:52] [Server thread/INFO]: Using epoll channel type
[14:08:52] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:08:52] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[14:08:58] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loading 1 libraries... please wait
[14:08:59] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[14:08:59] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 4 libraries... please wait
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/dev/jorel/commandapi-shade/8.8.0/commandapi-shade-8.8.0.jar
[14:09:00] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /home/container/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[14:09:01] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[14:09:13] [Server thread/WARN]: Legacy plugin LunarClient-API v${git.commit.id.abbrev} does not specify an api-version.
[14:09:13] [Server thread/WARN]: Legacy plugin STN-Studios-API v5.0.0-beta.3 does not specify an api-version.
[14:09:16] [Server thread/WARN]: Legacy plugin AdvancedLogin v3.25 does not specify an api-version.
[14:09:17] [Server thread/WARN]: Legacy plugin BannerBoard v1.11.18 does not specify an api-version.
[14:09:17] [Server thread/INFO]: Successfully registered BannerBoard placeholder %name% for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered BannerBoard placeholder %BannerBoard:name% for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered BannerBoard placeholder %uuid% for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered BannerBoard placeholder %BannerBoard:uuid% for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer COLOR for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:COLOR for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer IMAGE for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:IMAGE for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer TEXT for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:TEXT for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer SKIN for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:SKIN for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer LIVEIMG for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:LIVEIMG for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer URLIMG for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:URLIMG for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom renderer INTERACT for plugin BannerBoard...
[14:09:17] [Server thread/INFO]: Successfully registered custom rendererBannerBoard:INTERACT for plugin BannerBoard...
[14:09:18] [Server thread/WARN]: Legacy plugin CMIEInjector v1.0.2.3 does not specify an api-version.
[14:09:21] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[14:09:22] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[14:09:22] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[14:09:22] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[14:09:22] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.8-beta-01+cbb2ba7
[14:09:23] [Server thread/INFO]: [Core] Loading server plugin Core v0.5.9
[14:09:23] [Server thread/INFO]: [Core] Checking update for Core v0.5.9
[14:09:23] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.0
[14:09:23] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.0 is now loaded. Registering protocol transformers and injecting...
[14:09:24] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:09:24] [Server thread/INFO]: [ViaBackwards] Loading translations...
[14:09:24] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[14:09:25] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:09:26] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.58
[14:09:27] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[14:09:27] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05
[14:09:32] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@43a60c9d]
[14:09:32] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[14:09:32] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b614
[14:09:34] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[14:09:35] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-beta-01+cbb2ba7
[14:09:35] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.0
[14:09:35] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.32
[14:09:35] [Server thread/INFO]: [AdvancedChests] Loading server plugin AdvancedChests v27.4
[14:09:35] [Server thread/INFO]: [ProtectionStones] Loading server plugin ProtectionStones v2.10.3
[14:09:35] [Server thread/INFO]: [DisplayShops] Loading server plugin DisplayShops v1.7.0
[14:09:35] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[14:09:35] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[14:09:35] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.5.2
[14:09:35] [Server thread/INFO]: [GadgetsMenu] Loading server plugin GadgetsMenu v5.6.0
[14:09:35] [Server thread/INFO]: [JetsMinions] Loading server plugin JetsMinions v7.7.8
[14:09:35] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[14:09:35] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.5.0.6
[14:09:35] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.2.1-fd1d0777
[14:09:35] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:09:35] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.30-SNAPSHOT (build 2972)
[14:09:35] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR3.1.6
[14:09:35] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.6.0
[14:09:35] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.8.5
[14:09:35] [Server thread/INFO]: [KingdomsX] Loading server plugin Kingdoms v1.16.4
[14:09:35] [Server thread/INFO]: [KingdomsX] Checking libraries...
[14:09:36] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.1
[14:09:36] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.1
[14:09:36] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.23
[14:09:36] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v14.2.10
[14:09:36] [Server thread/INFO]: [InteractiveBoard] Loading server plugin InteractiveBoard v19.6
[14:09:36] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.6.0
[14:09:36] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.1.3.3
[14:09:36] [Server thread/INFO]: [LunarClient-API] Loading server plugin LunarClient-API v${git.commit.id.abbrev}
[14:09:36] [Server thread/INFO]: [STN-Studios-API] Loading server plugin STN-Studios-API v5.0.0-beta.3
[14:09:36] [Server thread/INFO]: [BountyHunters] Loading server plugin BountyHunters v2.5.1
[14:09:36] [Server thread/INFO]: [BountyHunters] Hooked onto WorldGuard
[14:09:36] [Server thread/INFO]: [RealisticSeasons] Loading server plugin RealisticSeasons v10.4.3
[14:09:36] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.2.6
[14:09:36] [Server thread/INFO]: [UpgradeableHoppers] Loading server plugin UpgradeableHoppers v4.12.15
[14:09:37] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.11.7
[14:09:37] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.0.1
[14:09:37] [Server thread/INFO]: [SCore] Loading server plugin SCore v3.9.50
[14:09:37] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v2.92.2
[14:09:37] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.16.5
[14:09:38] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (704 ms).
[14:09:38] [Server thread/INFO]: [Shopkeepers] Loading config.
[14:09:38] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[14:09:38] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[14:09:38] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[14:09:38] [Server thread/INFO]: [GSLibrary] Loading server plugin GSLibrary vBETA-1.0v3
[14:09:38] [Server thread/INFO]: [EpicCore] Loading server plugin EpicCore v1.2.16
[14:09:38] [Server thread/INFO]: [VillagerOverhaul] Loading server plugin VillagerOverhaul v1.1.3
[14:09:38] [Server thread/INFO]: [CollectorsX] Loading server plugin CollectorsX v2.6
[14:09:38] [Server thread/INFO]: [CosmeticsCore] Loading server plugin CosmeticsCore v1.2.1
[14:09:38] [Server thread/INFO]: [VoteParty] Loading server plugin VoteParty v2.35
[14:09:38] [Server thread/INFO]: [MCPets] Loading server plugin MCPets v3.0.2
[14:09:38] [Server thread/INFO]: [MCPets] : mcpets-dismount flag registered successfully !
[14:09:38] [Server thread/INFO]: [MCPets] : mcpets-despawn flag registered successfully !
[14:09:38] [Server thread/INFO]: [MythicMobsGUI] Loading server plugin MythicMobsGUI v1.4.9
[14:09:38] [Server thread/INFO]: [Drop2InventoryPlus] Loading server plugin Drop2InventoryPlus v4.1.1
[14:09:38] [Server thread/INFO]: [DragonSlayer] Loading server plugin DragonSlayer v0.12.6_Jeppa
[14:09:38] [Server thread/INFO]: [MythicLib] Loading server plugin MythicLib v1.5
[14:09:38] [Server thread/INFO]: [MythicLib] Detected Bukkit Version: v1_19_R2
[14:09:38] [Server thread/INFO]: [MythicLib] Hooked onto WorldGuard
[14:09:38] [Server thread/INFO]: [AdvancedAntiVPN] Loading server plugin AdvancedAntiVPN v2.14.5
[14:09:38] [Server thread/INFO]: [HMCCosmetics] Loading server plugin HMCCosmetics v2.2.5
[14:09:38] [Server thread/INFO]: [AdvancedLogin] Loading server plugin AdvancedLogin v3.25
[14:09:38] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v3.8.8
[14:09:38] [Server thread/INFO]: [MultitoolPlusPro] Loading server plugin MultitoolPlusPro v3.5.15
[14:09:38] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.0.4
[14:09:38] [Server thread/INFO]: [SuperMobCoins] Loading server plugin SuperMobCoins v2.4.3
[14:09:38] [Server thread/INFO]: [BannerBoard] Loading server plugin BannerBoard v1.11.18
[14:09:38] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.59.5
[14:09:38] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.59
[14:09:38] [Server thread/INFO]: [BetterStructures] Loading server plugin BetterStructures v1.4.2
[14:09:38] [Server thread/INFO]: [EliteMobs] WorldGuard is not enabled! WorldGuard is recommended when using the EliteMobs integration.
[14:09:38] [Server thread/INFO]: [DeluxeVoidWorld] Loading server plugin DeluxeVoidWorld v3.8.19
[14:09:38] [Server thread/INFO]: [VoidChest-1.10.2] Loading server plugin VoidChest v1.10.2
[14:09:38] [Server thread/INFO]: [Cartographer2] Loading server plugin Cartographer2 v2.15.5
[14:09:38] [Server thread/INFO]: [BossMania] Loading server plugin BossMania v1.9.12
[14:09:38] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.6.1
[14:09:38] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents suscrito a (1 métodos)
[14:09:38] [Server thread/INFO]: [DriveBackupV2] Loading server plugin DriveBackupV2 v1.6.0
[14:09:38] [Server thread/INFO]: [UltraMotd] Loading server plugin UltraMotd v1.0.0
[14:09:38] [Server thread/INFO]: [ServerBooster] Loading server plugin ServerBooster v1.1.3-r4
[14:09:38] [Server thread/INFO]: [CMIEInjector] Loading server plugin CMIEInjector v1.0.2.3
[14:09:38] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart vBuild 53
[14:09:38] [Server thread/INFO]: [SpecializedCrates] Loading server plugin SpecializedCrates v3.3.0
[14:09:38] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.3
[14:09:39] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.3.2
[14:09:39] [Server thread/INFO]: [ExtraStorage] Loading server plugin ExtraStorage v2.6.5
[14:09:39] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.15.41-SNAPSHOT
[14:09:39] [Server thread/INFO]: [RareMobs] Loading server plugin RareMobs v2.6
[14:09:39] [Server thread/INFO]: [AutoComposter] Loading server plugin AutoComposter v3.4.1
[14:09:39] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.0.7-BETA
[14:09:39] [Server thread/INFO]: [Bank] Loading server plugin Bank v4.6.1-RELEASE
[14:09:39] [Server thread/INFO]: [Core] Checking update for Bank v4.6.1-RELEASE
[14:09:39] [Server thread/INFO]: [Core] while parsing a block mapping
 in 'reader', line 36, column 5:
        Back:
        ^
expected <block end>, but found '<block mapping start>'
 in 'reader', line 202, column 7:
          Green:
          ^

[14:09:39] [Server thread/INFO]: [Core] Attempting to load default ItemUtils
[14:09:39] [Server thread/INFO]: [Core] Loaded default, enjoy :)
[14:09:41] [Server thread/INFO]: [Bank] Citizens loaded
[14:09:41] [Server thread/INFO]: [Bank] Block loaded
[14:09:41] [Server thread/INFO]: [Bank] Exp Interest loaded
[14:09:41] [Server thread/INFO]: [Bank] Money Interest loaded
[14:09:41] [Server thread/INFO]: [Bank] Placeholder Api loaded
[14:09:41] [Server thread/INFO]: [Bank] Loans loaded
[14:09:41] [Server thread/INFO]: [Bank] Headdb loaded
[14:09:41] [Server thread/INFO]: [Bank] Bank loaded
[14:09:41] [Server thread/INFO]: [MythicMobsSpawnerGUI] Loading server plugin MythicMobsSpawnerGUI v1.8
[14:09:41] [Server thread/INFO]: [BPS-Premium] Loading server plugin BPS-Premium v17.9.19
[14:09:41] [Server thread/INFO]: [CitizensGUI] Loading server plugin CitizensGUI v1.11
[14:09:41] [Server thread/INFO]: [LemonBeehive] Loading server plugin LemonBeehive v1.10.2-beta
[14:09:41] [Server thread/INFO]: [RedeemableCodes] Loading server plugin RedeemableCodes vBuild 37b
[14:09:41] [Server thread/INFO]: [RePlant] Loading server plugin RePlant v3.1.2
[14:09:41] [Server thread/INFO]: [Vegas] Loading server plugin Vegas v3.0
[14:09:41] [Server thread/INFO]: [ReviveMe] Loading server plugin ReviveMe v3.1.1
[14:09:41] [Server thread/INFO]: [ReviveMe] Random int generated: 8912338
[14:09:41] [Server thread/INFO]: Reviveme loaded. selected version: v1_19_R2
[14:09:41] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.6-Release
[14:09:41] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[14:09:41] [Server thread/INFO]: [Pl-Hide-Pro] Loading server plugin Pl-Hide-Pro v2.6.8
[14:09:41] [Server thread/INFO]: [Duels] Loading server plugin Duels v3.5.2
[14:09:41] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Loading server plugin DiscordSRV-Staff-Chat v1.4.4
[14:09:41] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.8.22
[14:09:41] [Server thread/INFO]: [UpgradeableSpawners] Loading server plugin UpgradeableSpawners v3.9.9
[14:09:41] [Server thread/INFO]: [ChestProtect] Loading server plugin ChestProtect v5.8.5
[14:09:41] [Server thread/INFO]: [ChestProtect] Added flag 'ChestProtect-lock' to the plugin WorldGuard.
[14:09:41] [Server thread/INFO]: [AirDrops] Loading server plugin AirDrops v1.02
[14:09:41] [Server thread/INFO]: [LiteBansBridge] Loading server plugin LiteBansBridge v1.5
[14:09:41] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.18.6.0
[14:09:41] [Server thread/INFO]: [EpicVouchers] Loading server plugin EpicVouchers v2.2.5-DEV
[14:09:41] [Server thread/INFO]: [AdvancedKits] Loading server plugin AdvancedKits v1.0.2.3.3
[14:09:42] [Server thread/INFO]: [AEAddon] Loading server plugin AEAddon v1.0.0
[14:09:42] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.10 build-29/03/2023
[14:09:42] [Server thread/INFO]: [CitizensCMD] Loading server plugin CitizensCMD v2.6.9
[14:09:42] [Server thread/INFO]: [CustomPiglinsTrades] Loading server plugin CustomPiglinsTrades v3.9.44
[14:09:42] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v3.9.50
[14:09:42] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v9.12.0
[14:09:42] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[14:09:42] [Server thread/INFO]: [bloodmoon-advanced] Loading server plugin bloodmoon-advanced v4.5.7
[14:09:42] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v3.16.1
[14:09:42] [Server thread/INFO]: [GSShopSystem] Loading server plugin GSShopSystem vBETA-2.0v4
[14:09:42] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.14
[14:09:42] [Server thread/INFO]: [GCore] Loading server plugin GCore v8.46.0
[14:09:42] [Server thread/INFO]: [SafeCreative] Loading server plugin SafeCreative v1.1.0
[14:09:42] [Server thread/INFO]: [TAB] Loading server plugin TAB v3.2.1
[14:09:42] [Server thread/INFO]: [LagAssist] Loading server plugin LagAssist v2.29.1
[14:09:42] [Server thread/INFO]: [FancyWaystones] Loading server plugin FancyWaystones v1.1.0
[14:09:42] [Server thread/INFO]: [FancyWaystones] Plugin API version has been changed to 1.19
[14:09:42] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:09:42] [Server thread/INFO]: [Core] Enabling Core v0.5.9
[14:09:42] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.58
[14:09:46] [Server thread/INFO]:         __    
[14:09:46] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.58
[14:09:46] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[14:09:46] [Server thread/INFO]: 
[14:09:46] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:09:48] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[14:09:52] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:09:53] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:09:54] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 11988ms)
[14:09:54] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[14:09:54] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[14:09:55] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[14:09:55] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[14:09:55] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[14:09:55] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.0-SNAPSHOT-392;d82bf05
[14:09:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:09:56] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:09:56] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:09:56] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[14:09:58] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[14:10:00] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 7 build(s) out of date.
You are running build 392, the latest version is build 399.
Update at https://www.spigotmc.org/resources/13932/
[14:10:00] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b614
[14:10:00] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.1
[14:10:03] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[14:10:03] [Server thread/INFO]: [LunarClient-API] Enabling LunarClient-API v${git.commit.id.abbrev}*
[14:10:03] [Server thread/INFO]: [STN-Studios-API] Enabling STN-Studios-API v5.0.0-beta.3*
[14:10:03] [Server thread/INFO]: 
[14:10:03] [Server thread/INFO]: [STN Studios API]      _    ____ ___
[14:10:03] [Server thread/INFO]: [STN Studios API]     / \  |  _ \_ _|
[14:10:03] [Server thread/INFO]: [STN Studios API]    / _ \ | |_) | |
[14:10:03] [Server thread/INFO]: [STN Studios API]   / ___ \|  __/| |
[14:10:03] [Server thread/INFO]: [STN Studios API]  /_/   \_\_|  |___|
[14:10:03] [Server thread/INFO]: [STN Studios API] 
[14:10:03] [Server thread/INFO]: [STN Studios API] Running on git-Paper-448 (MC: 1.19.3)
[14:10:03] [Server thread/INFO]: [STN Studios API] Version: 5.0.0-beta.3
[14:10:03] [Server thread/INFO]: [STN Studios API] 
[14:10:03] [Server thread/INFO]: 
[14:10:03] [Server thread/INFO]: [STN Studios API] Please enter your token in config.yml
[14:10:03] [Server thread/INFO]: [DeluxeVoidWorld] Enabling DeluxeVoidWorld v3.8.19
[14:10:03] [Server thread/INFO]: �fBlackKarma
[14:10:03] [Server thread/INFO]: �aSystem �92.0
[14:10:03] [Server thread/INFO]: �bPlugin Name �f(�eDeluxe Void World�f)
[14:10:03] [Server thread/INFO]: �6Plugin Version �f(�e3.8.19�f)
[14:10:03] [Server thread/INFO]: �cPlugin Status �f(�4Cracked�f)
[14:10:03] [Server thread/INFO]: �f(�5�f)
[14:10:03] [Server thread/INFO]: [CMIEInjector] Enabling CMIEInjector v1.0.2.3*
[14:10:03] [Server thread/INFO]: [CMIEInjector] Injecting CMI Economy
[14:10:03] [Server thread/INFO]: [CMIEInjector] [Economy] CMI Economy found: Waiting
[14:10:03] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.10 build-29/03/2023
[14:10:03] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[14:10:04] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[14:10:04] [Server thread/WARN]: [NexEngine] ==================================
[14:10:04] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated server version (V1_19_R2)!
[14:10:04] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[14:10:04] [Server thread/WARN]: [NexEngine] Please, upgrade your server to V1_19_R3.
[14:10:04] [Server thread/WARN]: [NexEngine] ==================================
[14:10:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[14:10:04] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[14:10:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[14:10:04] [Server thread/INFO]: [NexEngine] Using 'en' language.
[14:10:04] [Server thread/INFO]: [NexEngine] Plugin loaded in 370 ms!
[14:10:04] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[14:10:04] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[14:10:04] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[14:10:04] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[14:10:04] [Server thread/INFO]: Preparing level "world"
[14:10:07] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:10:08] [Server thread/INFO]: Time elapsed: 642 ms
[14:10:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:10:08] [Server thread/INFO]: Time elapsed: 68 ms
[14:10:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:10:08] [Server thread/INFO]: Time elapsed: 104 ms
[14:10:08] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.0
[14:10:08] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[14:10:09] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[14:10:11] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[14:10:11] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[14:10:11] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[14:10:11] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[14:10:13] [Server thread/INFO]: Preparing start region for dimension minecraft:deep_dark_arena
[14:10:13] [Server thread/INFO]: Time elapsed: 201 ms
[14:10:13] [Server thread/INFO]: Preparing start region for dimension minecraft:worldlobby
[14:10:14] [Server thread/INFO]: Time elapsed: 298 ms
[14:10:14] [Server thread/INFO]: Preparing start region for dimension minecraft:testingworld
[14:10:16] [Server thread/INFO]: Time elapsed: 2184 ms
[14:10:16] [Server thread/INFO]: Preparing start region for dimension minecraft:worldfanzy
[14:10:16] [Server thread/INFO]: Time elapsed: 68 ms
[14:10:18] [Server thread/INFO]: Preparing start region for dimension minecraft:combatworld
[14:10:18] [Server thread/INFO]: Time elapsed: 616 ms
[14:10:19] [Server thread/INFO]: Preparing start region for dimension minecraft:worldspawn
[14:10:20] [Server thread/INFO]: Time elapsed: 1004 ms
[14:10:20] [Server thread/INFO]: [Multiverse-Core] 9 - World(s) loaded.
[14:10:20] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[14:10:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[14:10:21] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[14:10:22] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[14:10:22] [Server thread/INFO]: [WorldGuard] (deep_dark_arena) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (deep_dark_arena) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (deep_dark_arena) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (deep_dark_arena) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'deep_dark_arena'
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldLobby) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldLobby) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldLobby) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldLobby) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldLobby'
[14:10:22] [Server thread/INFO]: [WorldGuard] (testingworld) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (testingworld) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (testingworld) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (testingworld) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'testingworld'
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldFanzy) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldFanzy) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldFanzy) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldFanzy) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldFanzy'
[14:10:22] [Server thread/INFO]: [WorldGuard] (CombatWorld) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (CombatWorld) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (CombatWorld) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (CombatWorld) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'CombatWorld'
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldSpawn) TNT ignition is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldSpawn) Lighters are PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldSpawn) Lava fire is PERMITTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] (WorldSpawn) Fire spread is UNRESTRICTED.
[14:10:22] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'WorldSpawn'
[14:10:22] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:10:23] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[14:10:23] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[14:10:24] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[14:10:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[14:10:24] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.32
[14:10:24] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.28-Premium.jar
[14:10:24] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_19_R2 (v1_19_R2)
[14:10:24] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1158
[14:10:24] [Server thread/INFO]: [LibsDisguises] Build Date: 03/02/2023 23:08
[14:10:24] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[14:10:24] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[14:10:58] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[14:10:58] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[14:10:58] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[14:10:59] [Server thread/INFO]: [AdvancedChests] Enabling AdvancedChests v27.4
[14:10:59] [Server thread/INFO]: [ContenedoresAvanzados] NBTAPI was found, please make sure to have it enabled on config for a better experience
[14:11:00] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.3
[14:11:00] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[14:11:00] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[14:11:00] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[14:11:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: protectionstones [2.10.3]
[14:11:00] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[14:11:00] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[14:11:00] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (64)
[14:11:01] [Server thread/INFO]: [ProtectionStones] Building region cache...
[14:11:01] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[14:11:01] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[14:11:01] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[14:11:01] [Server thread/INFO]: [DisplayShops] Enabling DisplayShops v1.7.0
[14:11:01] [Server thread/INFO]: [DisplayShops] Everything inside the configuration seems to be up to date. (Took 12ms)
[14:11:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: DisplayShops [1.7.0]
[14:11:01] [Server thread/INFO]: [DisplayShops] Communication to the database was successful. (Took 17ms)
[14:11:01] [Server thread/INFO]: [DisplayShops] No shops were found.
[14:11:01] [Server thread/INFO]: [DisplayShops] Fully loaded and enabled with 1.19 packets (Took 249ms).
[14:11:01] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[14:11:01] [Server thread/INFO]: [Votifier] Loaded token for website: default
[14:11:01] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[14:11:01] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[14:11:02] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[14:11:02] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:8192.
[14:11:02] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[14:11:02] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[14:11:03] [Server thread/INFO]: [PlayerVaults] Loaded! Took 1117ms
[14:11:03] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.5.2
[14:11:05] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
[14:11:05] [Server thread/INFO]: CMI hooked.
[14:11:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.5.2]
[14:11:05] [Server thread/INFO]: PlaceholderAPI hooked.
[14:11:05] [Server thread/INFO]: Updated (EN) language file. Took 50ms
[14:11:05] [Server thread/INFO]: [GadgetsMenu] Enabling GadgetsMenu v5.6.0
[14:11:05] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[14:11:05] [Server thread/INFO]: [GadgetsMenu]       GadgetsMenu [Premium] 5.6.0 is loading...
[14:11:05] [Server thread/INFO]: [GadgetsMenu]          [server: git-Paper-448 (MC: 1.19.3)]
[14:11:05] [Server thread/INFO]: [GadgetsMenu]                    Running Java 17
[14:11:05] [Server thread/INFO]: [GadgetsMenu]                Plugin by Yap Zhen Yie.
[14:11:05] [Server thread/INFO]: [GadgetsMenu]              Date Modified: 2 April 2023
[14:11:05] [Server thread/INFO]: [GadgetsMenu]                            
[14:11:05] [Server thread/INFO]: [GadgetsMenu]              Initializing module v1_19_R2
[14:11:05] [Server thread/INFO]: [GadgetsMenu] ------------------------------------------------------
[14:11:07] [Server thread/INFO]: [GadgetsMenu] Connecting to SQLite database...
[14:11:07] [Server thread/INFO]: [GadgetsMenu] Successfully connected to SQLite database.
[14:11:07] [Server thread/INFO]: [GadgetsMenu] Enabled Mystery Vault individual hologram.
[14:11:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gadgetsmenu [1.0.3]
[14:11:07] [Server thread/INFO]: [GadgetsMenu] [Placeholder] PlaceholderAPI hooked.
[14:11:07] [Server thread/INFO]: [JetsMinions] Enabling JetsMinions v7.7.8
[14:11:07] [Server thread/INFO]: [JetsMinions] Initialising Plugin v7.7.8...
[14:11:07] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[14:11:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jetsminions [1.0.0]
[14:11:07] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[14:11:07] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[14:11:08] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[14:11:08] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[14:11:08] [Server thread/INFO]: [JetsMinions] players.yml found, loading!
[14:11:08] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Miner Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Slayer Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Collector Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Feeder Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Lumberjack Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Farmer Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Fisher Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Loaded Minion: Seller Made by Jet315
[14:11:08] [Server thread/INFO]: [JetsMinions] Initialising Complete in 233ms
[14:11:08] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[14:11:08] [Server thread/INFO]: [CMI] Enabling CMI v9.5.0.6
[14:11:08] [Server thread/WARN]: Nag author(s): '[Zrips]' of 'CMI' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:08] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[14:11:08] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[14:11:08] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[14:11:08] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[14:11:08] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[14:11:08] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[14:11:08] [Server thread/INFO]: _______________________________________________________
[14:11:08] [Server thread/INFO]:   Integrating PaperSpigot async methods
[14:11:08] [Server thread/INFO]:   44 Enabled and 14 Disabled modules
[14:11:08] [Server thread/INFO]:   Votifier found. Enabling vote listeners
[14:11:09] [Server thread/INFO]:   Loaded (3) portals into memory. Took 99ms
[14:11:09] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.58
[14:11:09] [Server thread/INFO]:   Initialized Cipher256 AES
[14:11:10] [pool-123-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[14:11:10] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[14:11:10] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 107ms
[14:11:10] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 34ms
[14:11:10] [Server thread/INFO]:   Detected Java17+35-2724
[14:11:10] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[14:11:10] [Server thread/INFO]:   5.5.5-10.9.4-MariaDB data base type detected
[14:11:11] [Server thread/INFO]:   Started MySQL data base. Took 1153ms
[14:11:11] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[14:11:11] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Servidor encontrado G:⚔ 𝒪𝓋𝑒𝒿𝒶 𝑅𝑜𝓈𝒶 𝒩𝑒𝓉𝓌𝑜𝓇𝓀 ⚔(701622207646007360)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📣』𝐔𝐏𝐃𝐀𝐓𝐄𝐒(831254080352419851)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📚』𝗥𝗘𝗚𝗟𝗔𝗦(705517865847226479)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🌍』𝐆𝐄𝐍𝐄𝐑𝐀𝐋(701760883583615006)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📷』𝐌𝐔𝐋𝐓𝐈𝐌𝐄𝐃𝐈𝐀(831991662741422131)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎥』𝐒𝐓𝐑𝐄𝐀𝐌𝐈𝐍𝐆(873962306327945306)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『😂』𝐌𝐄𝐌𝐄𝐒(831998229355692052)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🕴』𝐏𝐑𝐄𝐒𝐄𝐍𝐓𝐀𝐂𝐈𝐎𝐍(833705826719105115)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『👋🏻』𝐁𝐈𝐄𝐍𝐕𝐄𝐍𝐈𝐃𝐀𝐒(701623868254584832)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『👋』𝐃𝐄𝐒𝐏𝐄𝐃𝐈𝐃𝐀𝐒(832271622655180840)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🍪』𝐍𝐄𝐊𝐎𝐓𝐈𝐍𝐀(833823880991866880)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🏆』𝐋𝐄𝐕𝐄𝐋(701756008472641627)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎉』𝐒𝐎𝐑𝐓𝐄𝐎𝐒(832267342876639312)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『‼』𝐀𝐘𝐔𝐃𝐀(834883458387017778)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📄』𝐒𝐔𝐆𝐄𝐑𝐄𝐍𝐂𝐈𝐀𝐒(832270496178765825)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『✔』𝐀𝐏𝐑𝐎𝐁𝐀𝐂𝐈𝐎𝐍(832275129022283856)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🅼🅲』ℂℍ𝔸𝕋(701634168576147456)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🛑』𝐑𝐄𝐏𝐎𝐑𝐓𝐄𝐒(701624024903450644)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:consola-servidor(1045353577956266024)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tps-200-memdisp-10365-memused-19634(1045354320620699708)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『』tienda(1045354226336927804)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎫』𝐓𝐈𝐂𝐊𝐄𝐓𝐒(831969962981457987)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💂』𝐒𝐓𝐀𝐅𝐅(701652337713873026)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📜』𝐇𝐈𝐒𝐓𝐎𝐑𝐈𝐀𝐋(831969830604767302)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『⛔』𝐏𝐑𝐔𝐄𝐁𝐀(833348408378392617)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『ʀʟᴄʀᴀꜰᴛ』ℂℍ𝔸𝕋(1045093402531868672)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎶』𝐂𝐎𝐌𝐀𝐍𝐃𝐎𝐒(701629215912624188)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎶』𝐂𝐎𝐌𝐀𝐍𝐃𝐎𝐒(832266362373931028)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔞』(831933379099492422)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staffchat-mc-ds(1095635118326022215)
[14:11:11] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enviar la consola al canal asignado TC:consola-servidor(1045353577956266024)
[14:11:12] [Server thread/INFO]:   Loaded (4) holograms into memory. Took 65ms
[14:11:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Activando complementos de LuckPerms
[14:11:12] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Activando complementos de PlaceholderAPI
[14:11:12] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[14:11:12] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[14:11:12] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 18ms
[14:11:12] [Server thread/INFO]:   Loaded (0) cooldowns into memory. Took 34ms
[14:11:12] [Server thread/INFO]:   Loaded (6) warmups into memory. Took 0ms
[14:11:12] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for WorldSpawn world. Please update values.
[14:11:12] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for WorldSpawn world. Please update values.
[14:11:12] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for WorldSpawn world. Please update values.
[14:11:12] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for WorldSpawn world. Please update values.
[14:11:12] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (WorldAurora) name
[14:11:12] [Server thread/INFO]:   Initializing BungeeCord
[14:11:12] [Server thread/INFO]:   Loaded (1) kits into memory. Took 5ms
[14:11:12] [Server thread/INFO]:   Loaded (0) ranks into memory. Took 5ms
[14:11:12] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 25ms
[14:11:12] [Server thread/INFO]:   Loaded (1) player data into memory. Took 10ms
[14:11:12] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 1ms
[14:11:12] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 1ms
[14:11:12] [Server thread/INFO]:   Loaded (0) custom alias into memory. Took 1ms
[14:11:12] [Server thread/INFO]:   Loaded (1) interactive commands into memory. Took 2ms
[14:11:12] [Server thread/INFO]:   Registered events. Took 119ms
[14:11:12] [Server thread/INFO]:   Loaded (1) jails into memory. Took 1ms
[14:11:12] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 3ms
[14:11:13] [Server thread/INFO]:   Updated (EN) language file. Took 258ms
[14:11:13] [Server thread/INFO]:   Updated (ES) language file. Took 228ms
[14:11:13] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 27ms
[14:11:13] [Server thread/INFO]:   Loaded (1) warps into memory. Took 5ms
[14:11:13] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[14:11:13] [Server thread/INFO]:   PlayerVaultsNBT was found - Enabling capabilities.
[14:11:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.5.0.6]
[14:11:13] [Server thread/INFO]:   PlaceholderAPI hooked.
[14:11:13] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[14:11:13] [Server thread/INFO]:   Starting world timer.
[14:11:13] [Server thread/INFO]:   Initializing world manager.
[14:11:13] [Server thread/INFO]:   Loaded (4) schedules into memory. Took 79ms
[14:11:13] [Server thread/INFO]:   Loaded GeoLiteCity
[14:11:13] [Server thread/INFO]:   Loaded (4) holograms into memory. Took 20ms
[14:11:13] [Server thread/INFO]:   Loaded (0) skin cache entries into memory. Took 0ms
[14:11:13] [Server thread/INFO]:   Found DiscordSRV
[14:11:13] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener suscrito a (4 métodos)
[14:11:13] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[14:11:13] [Server thread/INFO]:   Version 9.5.0.6 has been enabled
[14:11:13] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[14:11:13] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[14:11:13] [Server thread/INFO]: [CMIEInjector][Economy] CMI Economy hooked.
[14:11:13] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[14:11:14] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[14:11:14] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[14:11:14] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 149 ms to scan 1 urls, producing 3 keys and 21 values 
[14:11:14] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 33 ms to scan 1 urls, producing 6 keys and 101 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 204 ms to scan 114 urls, producing 0 keys and 0 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 21 ms to scan 1 urls, producing 3 keys and 36 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 10 ms to scan 1 urls, producing 4 keys and 14 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 8 ms to scan 1 urls, producing 4 keys and 14 values 
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs MythicLib Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[14:11:15] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[14:11:15] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 52 ms to scan 1 urls, producing 11 keys and 445 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 32 ms to scan 1 urls, producing 29 keys and 885 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 15 ms to scan 1 urls, producing 9 keys and 152 values 
[14:11:15] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 2 keys and 11 values 
[14:11:15] [Server thread/INFO]: [MythicMobs] LOADED
[14:11:16] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/littleroom/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/MythicBossLavaLord/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/Izzy_Warden/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/MexBot_GlobalAssets/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/TheDragonMonk/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/MythicBossTaloc/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/Nocsy/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/em_fallensoldiers/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] PACK /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/packinfo.yml
[14:11:16] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:11:16] [Server thread/WARN]: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:527)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:332)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:262)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseIndentlessSequenceEntryKey.produce(ParserImpl.java:611)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:270)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:210)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.MythicConfigImpl.<init>(MythicConfigImpl.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.MythicConfigImpl.<init>(MythicConfigImpl.java:43)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.loadItems(ItemExecutor.java:80)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.load(ItemExecutor.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:136)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:16] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.MythicConfigImpl.<init>(MythicConfigImpl.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.MythicConfigImpl.<init>(MythicConfigImpl.java:43)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.loadItems(ItemExecutor.java:80)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.load(ItemExecutor.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:136)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:16] [Server thread/WARN]: Caused by: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:527)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:332)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:262)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseIndentlessSequenceEntryKey.produce(ParserImpl.java:611)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:270)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:210)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[14:11:16] [Server thread/WARN]:     ... 21 more
[14:11:16] [Server thread/WARN]: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:527)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:332)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:262)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseIndentlessSequenceEntryKey.produce(ParserImpl.java:611)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:270)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:210)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.loadItems(ItemExecutor.java:82)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.load(ItemExecutor.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:136)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:16] [Server thread/ERROR]: [MythicMobs] Cannot load /home/container/plugins/MythicMobs/Packs/MexBot_GlobalAssets/Items/mexbotpack_mobfood.yml
[14:11:16] [Server thread/WARN]: io.lumine.mythic.bukkit.utils.config.InvalidConfigurationException: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:55)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:149)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.FileConfiguration.load(FileConfiguration.java:117)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadConfiguration(YamlConfiguration.java:178)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.properties.types.NodeListProp.getNodes(NodeListProp.java:33)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.loadItems(ItemExecutor.java:82)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.items.ItemExecutor.load(ItemExecutor.java:52)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:136)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:16] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:16] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:16] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:16] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:16] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:16] [Server thread/WARN]: Caused by: while scanning a simple key
[14:11:16] [Server thread/WARN]:  in 'string', line 48, column 3:
[14:11:16] [Server thread/WARN]:       /
[14:11:16] [Server thread/WARN]:       ^
[14:11:16] [Server thread/WARN]: could not find expected ':'
[14:11:16] [Server thread/WARN]:  in 'string', line 49, column 1:
[14:11:16] [Server thread/WARN]:     
[14:11:16] [Server thread/WARN]:     ^
[14:11:16] [Server thread/WARN]: 
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:527)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:332)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:262)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseIndentlessSequenceEntryKey.produce(ParserImpl.java:611)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeSequenceNode(Composer.java:270)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:210)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:357)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:336)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:184)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:477)
[14:11:16] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.load(Yaml.java:406)
[14:11:16] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.config.file.YamlConfiguration.loadFromString(YamlConfiguration.java:52)
[14:11:16] [Server thread/WARN]:     ... 21 more
[14:11:16] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:11:16] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:11:17] [Server thread/ERROR]: [MythicMobs] Error loading LineConfig: Unbalanced Braces
[14:11:17] [Server thread/ERROR]: [MythicMobs] [Line]: velocity=0.5;velocityY=1{repeat=4;repeatInterval=10
[14:11:17] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic setBlockType
[14:11:17] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Skills/littleroom/capra.yml
[14:11:17] [Server thread/WARN]: [MythicMobs] --| Error Message: 'Material' must be a valid Material type.
[14:11:17] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: setblock{m=MAGMA;md=0}
[14:11:19] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic message
[14:11:19] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/MexBot_GlobalAssets/Skills/MexBot_pet-skills.yml
[14:11:19] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'message' attribute is required.
[14:11:19] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: message{m=&ePet
[14:11:19] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic effect:glow
[14:11:19] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/MexBot_GlobalAssets/Skills/MexBot_pet-skills.yml
[14:11:19] [Server thread/WARN]: [MythicMobs] --| Error Message: The GLOW Effect requires GlowAPI and the 'color' attribute must be a valid GlowAPI Color.
[14:11:19] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: glow{audience=caster}
[14:11:19] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error: Particle 'sweep' is not supported by this version of MythicMobs.
[14:11:19] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=4;d=3;f=true;tr=true} @PIR{r=2}
[14:11:19] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:19] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.4
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[14:11:19] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[14:11:19] [Server thread/WARN]:     ... 23 more
[14:11:19] [Server thread/ERROR]: [MythicMobs] Error loading LineConfig: Unbalanced Braces
[14:11:19] [Server thread/ERROR]: [MythicMobs] [Line]: particle=blockcrack;m=coarse_dirt;amount=100;radius=0.5}
[14:11:19] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=4;d=3;f=true;tr=true} @PIR{r=2}
[14:11:19] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:19] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.4
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[14:11:19] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[14:11:19] [Server thread/WARN]:     ... 23 more
[14:11:19] [Server thread/WARN]: [MythicMobs] Failed to construct mechanic effect:firework{t=4;d=3;f=true;tr=true} @PIR{r=2}
[14:11:19] [Server thread/WARN]: java.lang.reflect.InvocationTargetException
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77)
[14:11:19] [Server thread/WARN]:     at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.getMechanic(SkillExecutor.java:243)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.MetaSkill.<init>(MetaSkill.java:172)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.SkillExecutor.loadSkills(SkillExecutor.java:101)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.config.ConfigExecutor.load(ConfigExecutor.java:137)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.MythicBukkit.enable(MythicBukkit.java:168)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:80)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192)
[14:11:19] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[14:11:19] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560)
[14:11:19] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[14:11:19] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[14:11:19] [Server thread/WARN]: Caused by: java.lang.IllegalArgumentException: No enum constant org.bukkit.FireworkEffect.Type.4
[14:11:19] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[14:11:19] [Server thread/WARN]:     at org.bukkit.FireworkEffect$Type.valueOf(FireworkEffect.java:21)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.adapters.BukkitFirework.<init>(BukkitFirework.java:40)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.bukkit.BukkitBootstrap.createFirework(BukkitBootstrap.java:272)
[14:11:19] [Server thread/WARN]:     at MythicMobs-5.2.1.jar//io.lumine.mythic.core.skills.mechanics.FireworkEffect.<init>(FireworkEffect.java:74)
[14:11:19] [Server thread/WARN]:     ... 23 more
[14:11:23] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:11:23] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:11:23] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=3;types=goblinking}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: cerberusSWIPE | File: /home/container/plugins/MythicMobs/Skills/littleroom/cerberus.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill cerberusRANDOMchainS
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=cerberusRANDOMchainS}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: Desert_Guardian_Spawn | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{type=Desert_Guardian;amount=1;radius=0;yr=0}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_Perojectiel_DOWN | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{type=METEOR;bulletType=MOB;mob=Guardian_M_DOWN;i=1;oS=D_G_D<&da>Start;oT=D_G_D<&da>Tick;oH=D_G_D<&da>Hit;oE=D_G_D<&da>End;sE=true;sB=true;hnp=false;hp=true;hfs=20;hr=4;g=0.8}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_D-Hit | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Guardian_M_DOWN_01;amount=1;yu=false;r=0;yr=0;y=0}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_D-End | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Guardian_M_DOWN_01;amount=1;yu=false;r=0;yr=0;y=0}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_Perojectiel_UP_01 | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=mob;mob=Guardian_M_UP;i=1;onStart=D_G<&da>Start;oT=D_G<&da>Tick;oH=D_G<&da>Hit;mr=20;sE=false;v=25;syo=7;hnp=false;hp=false;hR=1.4;vO=45;sso=2}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_Perojectiel_UP_02 | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=mob;mob=Guardian_M_UP;i=1;onStart=D_G<&da>Start;oT=D_G<&da>Tick;oH=D_G<&da>Hit;mr=20;sE=false;v=25;syo=7;hnp=false;hp=false;hR=1.4;vO=45;sso=<&da>2}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic projectile
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_Rocks | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Invalid bullet mob type specified
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: projectile{bulletType=mob;mob=Guardian_Zone;i=1;onStart=D_G_R<&da>Start;oT=D_G_R<&da>Tick;oH=D_G_R<&da>Hit;oE=D_G_R<&da>End;mr=10;sE=false;v=8;syo=1.5;tyo=1.5hnp=false;hp=true;hR=3;sB=true;g=0.1}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic summon
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Skill: D_G_R-End | File: /home/container/plugins/MythicMobs/Skills/Desert_Guardian_Skills.yml
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: The 'type' attribute must be a valid MythicMob or MythicEntity type.
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: summon{mob=Guardian_Zone_01;amount=1;yu=false;r=0;yr=0;y=1}
[14:11:23] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mob: KUR_GROUNDROCKS | File: Unknown
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill kurrot_groundrocks
[14:11:23] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=kurrot_groundrocks}
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 272 mobs.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 11 vanilla mob overrides.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3263 skills.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 110 mythic items.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 drop tables.
[14:11:23] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 mob spawners.
[14:11:23] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:11:24] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:11:24] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[14:11:24] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2972)
[14:11:24] [Server thread/INFO]: [Citizens] Loading external libraries
[14:11:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[14:11:26] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[14:11:26] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.6
[14:11:26] [Server thread/INFO]: [ModelEngine] [STDOUT] 
[14:11:26] [Server thread/WARN]: Nag author(s): '[Ticxo]' of 'ModelEngine' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:27] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[14:11:27] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: MythicMobs
[14:11:27] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: Citizens
[14:11:27] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.6.0
[14:11:27] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.5
[14:11:27] [Server thread/INFO]: [PremiumVanish] [STDOUT] 
[14:11:27] [Server thread/WARN]: Nag author(s): '[MyzelYam]' of 'PremiumVanish' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.5]
[14:11:27] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[14:11:27] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[14:11:27] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[14:11:27] [Server thread/INFO]: [PremiumVanish] Hooked into CMI
[14:11:27] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[14:11:27] [Server thread/INFO]: [KingdomsX] Enabling Kingdoms v1.16.4
[14:11:27] [Server thread/INFO]: [KingdomsX] [STDOUT] 
[14:11:27] [Server thread/WARN]: Nag author(s): '[Crypto Morin]' of 'Kingdoms' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:27] [Server thread/INFO]: [KingdomsX] Loading language: EN (version 5f45a7b1a275edd1218e128e77df6c38a3b5b0e7)
[14:11:28] [Server thread/INFO]: [KingdomsX] Default language: EN (English)
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: regulator
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: siege-cannon
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: warppad
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: powercell
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: national-nexus
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: extractor
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: outpost
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Structure: nexus
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: chemical-mine
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: hellfire
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: flame
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: inferno
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: psionic
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: arrow
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: heatbeam
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: healing
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: soldier
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: explosive-mine
[14:11:28] [Server thread/INFO]: [Kingdoms] Registering Turret: spring
[14:11:36] [Server thread/INFO]: [KingdomsX] Next MassWar in: 12:00:00
[14:11:36] [Server thread/INFO]: [Kingdoms] Successfully registered LuckPerms context.
[14:11:36] [Server thread/INFO]: [Kingdoms] Citizens found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] MyPet not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] MCPets not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] MVdWPlaceholderAPI not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] PlaceholderAPI found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] ProjectKorra not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] WorldGuard found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] WorldEdit found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] Vault found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] AuthMe not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] DiscordSRV found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] LuckPerms found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] MythicMobs found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] Essentials not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] CMI found and hooked.
[14:11:36] [Server thread/INFO]: [Kingdoms] Slimefun not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] dynmap not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] BlueMap not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] squaremap not found.
[14:11:36] [Server thread/INFO]: [Kingdoms] Pl3xMap not found.
[14:11:36] [Server thread/INFO]: [KingdomsX] Loading libraries for h2 database...
[14:11:36] [Server thread/INFO]: [KingdomsX] Loaded all libraries.
[14:11:36] [Server thread/INFO]: [KingdomsX] Running SQL Database:
[14:11:36] [Server thread/INFO]: [KingdomsX]    | Driver: H2 JDBC Driver (catalog) | 2.1.214 (2022-06-13)
[14:11:36] [Server thread/INFO]: [KingdomsX]    | Product: H2 | 2.1.214 (2022-06-13)
[14:11:36] [Server thread/INFO]: [KingdomsX]    | JDBC: 4.2
[14:11:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: kingdoms [10.0.0]
[14:11:37] [pool-132-thread-1/INFO]: [Kingdoms] Taking a backup...
[14:11:37] [pool-132-thread-1/INFO]: [Kingdoms] You already have a backup for today!
[14:11:37] [Server thread/INFO]: [Kingdoms] Initiating DiscordSRV support...
[14:11:37] [Server thread/WARN]: [KingdomsX] The channel 'consola-servidor' (1045353577956266024) cannot be used because it's not specified in DiscordSRV's 'Channels' config.yml option. For more information visit: https://github.com/CryptoMorin/KingdomsX/wiki/FAQ#why-is-in-game-chat-not-sent-to-discord
 in chat.yml, line 178, column 20:
      private-channel: '$console'
                       ^
[14:11:37] [Server thread/INFO]: [KingdomsX] A total of 322 loaded chunks has been queried.
[14:11:37] [kingdoms-worker-0/INFO]: [Kingdoms] Checking for updates...
[14:11:38] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[14:11:38] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[14:11:38] [kingdoms-worker-0/INFO]: [Kingdoms] Failed to check for updates: Server returned HTTP response code: 400 for URL: https://api.spigotmc.org/simple/0.1/index.php?action=getResource&id=%%__RESOURCE__%% (internet connection problems?)
[14:11:39] [Server thread/INFO]: Oraxen | Successfully updated settings.yml
[14:11:39] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:11:39] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:11:39] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for cart.
[14:11:39] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:11:39] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:11:39] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for chair.
[14:11:39] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:11:39] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:11:39] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for coach.
[14:11:41] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_helmet
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_helmet.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_helmet.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_helmet_overlay
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_helmet_overlay.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_helmet.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_leggings
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_leggings.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_leggings.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_leggings_overlay
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_leggings_overlay.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_leggings.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_boots
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_boots.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_boots.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_boots_overlay
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_boots_overlay.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_boots.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_chestplate
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_chestplate.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_chestplate.json .
[14:11:41] [Server thread/INFO]: Oraxen | required/custom_chestplate_overlay
[14:11:41] [Server thread/INFO]: Oraxen | assets/minecraft/textures/required/custom_chestplate_overlay.png
[14:11:41] [Server thread/INFO]: Oraxen | Found invalid texture inside assets/minecraft/models/default/custom_chestplate.json .
[14:11:41] [Server thread/INFO]: Oraxen | No broken models or textures were found
[14:11:41] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3 Resource Pack format
[14:11:42] [Server thread/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[14:11:42] [Server thread/INFO]: Oraxen | Successfully loaded on Debian GNU/Linux 11 (bullseye)
[14:11:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: oraxen [1.155.1]
[14:11:42] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[14:11:42] [Server thread/INFO]: Oraxen | Plugin "MythicMobs" detected, enabling hooks
[14:11:42] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v14.2.10
[14:11:42] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_19_R2, using MappingSpigotSkinRefresher.
[14:11:43] [Server thread/INFO]: [SkinsRestorer] [ACF] Enabled Asynchronous Tab Completion Support!
[14:11:43] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[14:11:43] [Server thread/INFO]: [InteractiveBoard] Enabling InteractiveBoard v19.6
[14:11:43] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.6.0
[14:11:44] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[14:11:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[14:11:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[14:11:44] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents suscrito a (2 métodos)
[14:11:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[14:11:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[14:11:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [4.2.6.0]
[14:11:44] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[14:11:44] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.1.3.3
[14:11:45] [Server thread/INFO]: [TradeMe] Version 6.1.3.3 has been enabled
[14:11:45] [Server thread/INFO]: [TradeMe] Kingdoms plugin was found. But its missing needed classes. Support will not be enabled.
[14:11:45] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[14:11:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: trademe [6.1.3.3]
[14:11:45] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[14:11:45] [Server thread/INFO]: [TradeMe] Connected to sqlite
[14:11:45] [Server thread/INFO]: [TradeMe] 0 trade logs preloaded
[14:11:45] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.5.1
[14:11:45] [Server thread/INFO]: [BountyHunters] [STDOUT] 
[14:11:45] [Server thread/WARN]: Nag author(s): '[Indyuce]' of 'BountyHunters' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:45] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_19_R2
[14:11:45] [Server thread/INFO]: [BountyHunters] Hooked onto Kingdoms
[14:11:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters [2.5.1]
[14:11:45] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[14:11:45] [Server thread/INFO]: [RealisticSeasons] Enabling RealisticSeasons v10.4.3
[14:11:45] [Server thread/INFO]: [RealisticSeasons] [STDOUT] 
[14:11:45] [Server thread/WARN]: Nag author(s): '[]' of 'RealisticSeasons' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:45] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.2.6
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Enabling UpgradeableHoppers v4.12.15
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] [STDOUT] 
[14:11:45] [Server thread/WARN]: Nag author(s): '[Angeschossen]' of 'UpgradeableHoppers' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Version: 4.12.15 Previous: 4.12.15
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Server: 1.19.x running Paper
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Licensed to: %%__USER__%%
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Experiencing issues or having questions? Join our Discord!
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Discord: https://discord.gg/B4MAJVk
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Wiki: https://github.com/Angeschossen/UpgradeableHoppers/wiki
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers]  
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Using SQLITE as database driver.
[14:11:45] [Server thread/INFO]: [UpgradeableHoppers] Successful connected to SQL database.
[14:11:46] [Server thread/INFO]: [UpgradeableHoppers] Database is ready.
[14:11:46] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.11.7
[14:11:46] [Server thread/INFO]: [LiteBans] Using system locale (en)
[14:11:46] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[14:11:46] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[14:11:46] [Server thread/INFO]: [LiteBans] Connecting to database...
[14:11:46] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[14:11:47] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[14:11:47] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (342.9 ms).
[14:11:47] [Server thread/INFO]: [LiteBans] Database connection fully initialized (352.1 ms).
[14:11:47] [Server thread/INFO]: [LiteBans] v2.11.7 enabled. Startup took 1050 ms.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.0.1
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] [STDOUT] 
[14:11:47] [Server thread/WARN]: Nag author(s): '[AdvancedPlugins]' of 'AdvancedEnchantments' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtectionStones.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuardExtraFlags.
[14:11:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into MythicMobs.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CMI.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into GadgetsMenu.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[14:11:47] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[14:11:48] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[14:11:48] [Server thread/INFO]: [SCore] Enabling SCore v3.9.50
[14:11:48] [Server thread/INFO]: ================ SCore ================
[14:11:48] [Server thread/INFO]: SCore Version of the server git-Paper-448 (MC: 1.19.3) !
[14:11:48] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (3.9.50) Load After
[14:11:48] [Server thread/INFO]: SCore CustomPiglinsTrades hooked !  (3.9.44) Load After
[14:11:48] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.3)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.8-beta-01+cbb2ba7)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-CMI)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.1-b861)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore ProtocolLib hooked !
[14:11:48] [Server thread/INFO]: SCore Locale setup: EN
[14:11:48] [Server thread/INFO]: SCore NBTAPI hooked !  (2.11.2)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.17.0)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore MythicMobs hooked !  (5.2.1-fd1d0777)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore CMI hooked !  (9.5.0.6)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore Oraxen hooked !  (1.155.1)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore ProtectionStones hooked !  (2.10.3)  8aLoad Before
[14:11:48] [Server thread/INFO]: SCore Language of the editor setup on EN
[14:11:48] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[14:11:48] [Server thread/INFO]: SCore onnection to the db...
[14:11:48] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table Commands if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[14:11:48] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[14:11:49] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[14:11:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: SCore [1.0.0]
[14:11:49] [Server thread/INFO]: ================ SCore ================
[14:11:49] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.92.2
[14:11:49] [Server thread/INFO]:  
[14:11:49] [Server thread/INFO]: =============================
[14:11:49] [Server thread/INFO]: AuctionHouse 2.92.2 by Kiran Hart
[14:11:49] [Server thread/INFO]: Action: Enabling...
[14:11:49] [Server thread/INFO]: [AuctionHouse] [STDOUT] 
[14:11:49] [Server thread/WARN]: Nag author(s): '[Kiran Hart]' of 'AuctionHouse' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:49] [Server thread/INFO]: [TweetyCore] Hooked into AuctionHouse.
[14:11:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionhouse [1.0.0]
[14:11:50] [Server thread/INFO]: =============================
[14:11:50] [Server thread/INFO]:  
[14:11:50] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.5
[14:11:50] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[14:11:50] [Server thread/INFO]: [GSLibrary] Enabling GSLibrary vBETA-1.0v3
[14:11:50] [Server thread/INFO]: [EpicCore] Enabling EpicCore v1.2.16
[14:11:50] [Server thread/INFO]: [DiscordSRV] API listener io.signality.Modules.DiscordSRV.DiscordListener suscrito a (2 métodos)
[14:11:50] [Server thread/INFO]: [EpicCore] 
                   __
       __   _____ /\_\    ___         ___    ___   _ __    __
     /'__`\/\ '__`\/\ \  /'___\      /'___\ / __`\/\`'__\/'__`\
    /\  __/\ \ \L\ \ \ \/\ \__/     /\ \__//\ \L\ \ \ \//\  __/
    \ \____\\ \ ,__/\ \_\ \____\    \ \____\ \____/\ \_\\ \____\
     \/____/ \ \ \/  \/_/\/____/     \/____/\/___/  \/_/ \/____/
              \ \_\
               \/_/

[14:11:50] [Server thread/INFO]: [EpicCore] Loaded 26 config files
[14:11:50] [Server thread/INFO]: [EpicCore] Loaded 0 custom GUIs files
[14:11:50] [Server thread/INFO]: [EpicCore] Economy support is enabled
[14:11:50] [Server thread/INFO]: [EpicCore] Connecting to SQLite database
[14:11:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ecore [1.2.16]
[14:11:50] [Server thread/INFO]: [EpicCore] [EpicCore] BungeeCord support is enabled
[14:11:50] [Server thread/INFO]: [EpicCore] Plugin loaded without fatal errors
[14:11:50] [Server thread/INFO]: [EpicCore] [STDOUT] [EpicCore] Loaded
[14:11:50] [Server thread/WARN]: Nag author(s): '[centers]' of 'EpicCore' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:50] [Server thread/INFO]: [VillagerOverhaul] Enabling VillagerOverhaul v1.1.3
[14:11:50] [Server thread/INFO]: [VillagerOverhaul] Villager Overhaul is running
[14:11:51] [Server thread/INFO]: [CollectorsX] Enabling CollectorsX v2.6
[14:11:51] [Server thread/INFO]: [CollectorsX] [STDOUT] [CollectorsX] Loaded
[14:11:51] [Server thread/WARN]: Nag author(s): '[ProSavage]' of 'CollectorsX' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:51] [Server thread/INFO]: [CollectorsX] Debug is disabled
[14:11:51] [Server thread/INFO]: [CollectorsX] Loaded 4 collectors from file.
[14:11:51] [Server thread/INFO]: [CollectorsX] Registering Commands
[14:11:51] [Server thread/INFO]: [CollectorsX] Initialized Inventory Manager.
[14:11:51] [Server thread/INFO]: [CollectorsX] Could not hook into ShopGUIPlus
[14:11:51] [Server thread/INFO]: [CollectorsX] Could not hook into FactionsX
[14:11:51] [Server thread/INFO]: [CollectorsX] Found Vault, hooking in...
[14:11:51] [Server thread/INFO]: [CollectorsX] Hooked into Vault.
[14:11:51] [Server thread/INFO]: [CollectorsX] Could not hook into WildStacker
[14:11:51] [Server thread/INFO]: [CollectorsX] Could not hook into HolographicDisplays
[14:11:51] [Server thread/INFO]: [CollectorsX] Loaded all hooks.
[14:11:51] [Server thread/INFO]: [CosmeticsCore] Enabling CosmeticsCore v1.2.1
[14:11:51] [Server thread/INFO]: [VoteParty] Enabling VoteParty v2.35
[14:11:52] [Server thread/INFO]: [VoteParty] [ACF] Enabled Asynchronous Tab Completion Support!
[14:11:52] [Server thread/INFO]: 
 _  _  ____
/ )( \(  _ \
\ \/ / ) __/ VoteParty v2.35
 \__/ (__)   Server Version: git-Paper-448 (MC: 1.19.3)

[14:11:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: voteparty [2.0]
[14:11:53] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[14:11:53] [Server thread/INFO]: [MCPets] : Language file reloaded.
[14:11:53] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[14:11:53] [Server thread/INFO]: Loading pets... 
[14:11:53] [Server thread/INFO]:   - Rot loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Aerial_Bunny loaded succesfully.
[14:11:53] [Server thread/INFO]:   - forest_element_pet loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Panda loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Baby_Shark loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Death_Knight loaded succesfully.
[14:11:53] [Server thread/INFO]:   - dark_element_pet loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Dragon_Sculk loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Manticore_Venom loaded succesfully.
[14:11:53] [Server thread/INFO]:   - JOTSSmallAirship loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Lizard_Aqua loaded succesfully.
[14:11:53] [Server thread/INFO]:   - JOTSHeavyAirship loaded succesfully.
[14:11:53] [Server thread/INFO]:   - WOSHeavyAssaultMech loaded succesfully.
[14:11:53] [Server thread/INFO]:   - forzen_element_pet loaded succesfully.
[14:11:53] [Server thread/INFO]:   - WOSTankMech loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Bluestone_Golem loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Sabertooth_Savanna loaded succesfully.
[14:11:53] [Server thread/INFO]:   - WOSLightArmorMech loaded succesfully.
[14:11:53] [Server thread/INFO]:   - Eternal_Dragon loaded succesfully.
[14:11:53] [Server thread/INFO]:   - JOTSMediumAirship loaded succesfully.
[14:11:53] [Server thread/INFO]:   - izzy_warden_pet loaded succesfully.
[14:11:53] [Server thread/INFO]: [MCPets] : 21 pets registered successfully !
[14:11:53] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[14:11:54] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[14:11:54] [Server thread/INFO]:       Plugin made by Nocsy
[14:11:54] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[14:11:54] [Server thread/INFO]: -=- Launching Flags -=-
[14:11:54] [Server thread/INFO]: [MCPets] : Starting flag mcpets-dismount.
[14:11:54] [Server thread/INFO]: [MCPets] : Starting flag mcpets-despawn.
[14:11:54] [Server thread/INFO]: 2 flags launched.
[14:11:54] [Server thread/INFO]: [MythicMobsGUI] Enabling MythicMobsGUI v1.4.9
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] ----------------------[ Hooks Initializing ]----------------------
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] Citizens: Success! version: 2.0.30-SNAPSHOT (build 2972)
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] DecentHolograms: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] HolographicDisplays: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] ItemsAdder: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] LibsDisguises: Success! version: 10.0.32
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] MMOCore: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] MMOItems: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] ModelEngine: Success! version: R3.1.6
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] MythicArtifacts: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] MythicCrucible: Not Found!
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] MythicMobs: Success! version: 5.2.1-fd1d0777
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] Oraxen: Success! version: 1.155.1
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] ProtocolLib: Success! version: 5.0.0-SNAPSHOT-b614
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] Vault: Success! version: 1.7.3-CMI
[14:11:55] [Server thread/INFO]: [MythicMobsGUI] WorldGuard: Success! version: 7.0.8-beta-01+cbb2ba7
[14:11:57] [Server thread/INFO]: [Drop2InventoryPlus] Enabling Drop2InventoryPlus v4.1.1
[14:11:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: drop2inventory [GENERIC]
[14:11:57] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.12.6_Jeppa
[14:11:57] [Server thread/INFO]: [DragonSlayer] Checking for updates...
[14:11:57] [Server thread/INFO]: [DragonSlayer] You're running the latest plugin version!
[14:11:57] [Server thread/INFO]: [DragonSlayer] Events 1.9+ enabled!
[14:11:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragonslayer [0.12.6_Jeppa]
[14:11:57] [Server thread/INFO]: [DragonSlayer] ProtocolLib found...
[14:11:57] [Server thread/INFO]: [DragonSlayer] ...starting Metrics...
[14:11:57] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled!
[14:11:57] [Server thread/INFO]: [DragonSlayer] PlaceholderAPI found, will be used!
[14:11:58] [Server thread/INFO]: [DragonSlayer] 3 endgateways found on world_the_end with 17 free slots...
[14:11:58] [Server thread/INFO]: [MythicLib] Enabling MythicLib v1.5
[14:11:58] [Server thread/INFO]: [MythicLib] Hooked onto CMI
[14:11:58] [Server thread/INFO]: [MythicLib] Hooked onto MythicMobs
[14:11:58] [Server thread/INFO]: [MythicLib] Hooked onto Citizens
[14:11:58] [Server thread/INFO]: [MythicLib] Hooked onto ProtocolLib
[14:11:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythiclib [1.5]
[14:11:58] [Server thread/INFO]: [MythicLib] Hooked onto PlaceholderAPI
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Enabling AdvancedAntiVPN v2.14.5
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Initializing managers...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] VaultManager initialized!
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Using SQLite...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] DataManager initialized!
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] ServiceManager initialized!
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] ActionManager initialized!
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Registering commands...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Registering listeners...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Loading data...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Starting tasks...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Starting metrics...
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Plugin registered to 811190 | 814982130
[14:11:58] [Server thread/INFO]: [AdvancedAntiVPN] Done and enabled in 59.07ms
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Enabling HMCCosmetics v2.2.5
[14:11:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: HMCCosmetics [2.2.5]
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into PlaceholderAPI
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into PremiumVanish
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into HMCCosmetics
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into mythicmobs
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into oraxen
[14:11:58] [Server thread/INFO]: [HMCCosmetics] Successfully hooked into CMI
[14:11:59] [Server thread/INFO]: [HMCCosmetics] Successfully Enabled HMCCosmetics
[14:11:59] [Server thread/INFO]: [HMCCosmetics] 16 Cosmetics Successfully Setup
[14:11:59] [Server thread/INFO]: [HMCCosmetics] 1 Menus Successfully Setup
[14:11:59] [Server thread/INFO]: [HMCCosmetics] Data storage is set to sqlite
[14:11:59] [Server thread/INFO]: [AdvancedLogin] Enabling AdvancedLogin v3.25*
[14:11:59] [Server thread/INFO]: [AdvancedLogin] [STDOUT] Enabeling files-system
[14:11:59] [Server thread/WARN]: Nag author(s): '[Leoko]' of 'AdvancedLogin' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:11:59] [Server thread/INFO]: [AdvancedLogin] [STDOUT] Checking PINs!
[14:11:59] [Server thread/INFO]: [AdvancedLogin] [STDOUT] Done!
[14:11:59] [Server thread/INFO]: [AdvancedLogin] [STDOUT] 
[=]---------------------------[=]
-= AdvancedLogin =-
Dev: Leoko
Status: Enabled
License: Privat
[=]---------------------------[=]
[14:11:59] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v3.8.8
[14:11:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedcrates [3.8.8]
[14:11:59] [Thread-30/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.advancedcrates.nbtapi' seems to be outdated!
[14:11:59] [Thread-30/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.1' Newest Version: 2.11.2'
[14:11:59] [Thread-30/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[14:12:02] [Server thread/INFO]: [MultitoolPlusPro] Enabling MultitoolPlusPro v3.5.15
[14:12:02] [Server thread/INFO]: [MultitoolPlusPro] [Multitool] Multitool Plus Pro enabled!
[14:12:02] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.0.4
[14:12:02] [Server thread/INFO]: 
[14:12:02] [Server thread/INFO]: --------------------------------------
[14:12:02] [Server thread/INFO]:      Kix's Chat Games by kixmc
[14:12:02] [Server thread/INFO]:      Starting on version 2.0.4
[14:12:02] [Server thread/INFO]: --------------------------------------
[14:12:02] [Server thread/INFO]: 
[14:12:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: kixschatgames [2.0.4]
[14:12:02] [Server thread/INFO]: [SuperMobCoins] Enabling SuperMobCoins v2.4.3
[14:12:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supermobcoins [2.4.3]
[14:12:03] [Server thread/INFO]: [SuperMobCoins] [STDOUT] This plugin has been cracked by RareHyperIonYT#7909 : https://discord.gg/PvJYceu7ms
[14:12:03] [Server thread/WARN]: Nag author(s): '[Swanis]' of 'SuperMobCoins' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:03] [Server thread/INFO]: [BannerBoard] Enabling BannerBoard v1.11.18*
[14:12:03] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.59.5
[14:12:03] [Server thread/INFO]: [PinataParty] Registering hooks...
[14:12:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.59.5]
[14:12:03] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[14:12:03] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[14:12:03] [Server thread/INFO]: [PinataParty] Hooked into Vault
[14:12:03] [Server thread/INFO]: [PinataParty] Registering commands...
[14:12:03] [Server thread/INFO]: [PinataParty] Registering listeners...
[14:12:03] [Server thread/INFO]: [PinataParty] Loading data...
[14:12:03] [Server thread/INFO]: [PinataParty] Starting tasks...
[14:12:03] [Server thread/INFO]: [PinataParty] Starting metrics...
[14:12:03] [Server thread/INFO]: [PinataParty] Plugin registered to 713180 | 1091435349
[14:12:03] [Server thread/INFO]: [PinataParty] Done and enabled in 84.97ms
[14:12:03] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.59
[14:12:03] [Server thread/INFO]: [BetterStructures] Enabling BetterStructures v1.4.2
[14:12:03] [Server thread/INFO]: [BetterStructures] Initialized!
[14:12:03] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 102 ms to scan 1 urls, producing 1 keys and 5 values 
[14:12:03] [Server thread/INFO]: [com.magmaguy.shaded.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 1 keys and 29 values 
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Enabling VoidChest v1.10.2
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Plugin attempting to load now...
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] YML files loaded.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] messages.yml file fully loaded.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Attempting to load voidchest files in memory.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] VoidChest file: default successfully loaded in memory.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Attempting to load voidchest items in memory.
[14:12:16] [Server thread/INFO]: Currently loaded files: 1
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Loaded voidchest item for: default
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] Attempted registering the following tasks: voidchest-purge, hologram, data-purge, sell-message
[14:12:16] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:12:16] [Server thread/INFO]: [Cartographer2] Enabling Cartographer2 v2.15.5
[14:12:16] [Server thread/INFO]: [Cartographer2] [STDOUT] [Cartographer2] Loaded
[14:12:16] [Server thread/WARN]: Nag author(s): '[BananaPuncher714]' of 'Cartographer2' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:16] [Server thread/INFO]: [Cartographer2] [STDOUT] Captured 247 colors!
[14:12:20] [Server thread/INFO]: [Cartographer2] [STDOUT] Initial lookup table initialized in 3643.388084 ms
[14:12:20] [Server thread/INFO]: [Cartographer2] Loading locales...
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loading default locale
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Successfully loaded the internal locale(default)
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Čeština (CS)(Česko) as cs_cz
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Norsk (NO)(Norway) as nb_no
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Turkish (TR)(Turkey) as tr_tr
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Romanian (RO)(ROMANIA) as ro_ro
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Magyar(Hungary) as hu_hu
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Bahasa Indonesia (Indonesia)(Indonesia) as id_id
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language 한국어(South Korea) as ko_kr
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Español (España)(Spain) as es_es
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language English (US)(USA) as en_us
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Filipino (PH)(Philippines) as fil_ph
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Français (FR)(France) as fr_fr
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Tiếng Việt (VN)(Việt Nam) as vi_vn
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Русский (Russkiĭ)(Russia) as ru_ru
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Pirate Speak(The Seven Seas) as en_pt
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Српски/Srpski(Србија) as sr_sp
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language 繁體中文 (台灣)(Taiwan, Hong Kong, Macau) as zh_tw
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Deutsch (DE)(Deutschland) as de_de
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language 日本語 (Nihongo)(日本) as ja_jp
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Svenska (Sverige)(Sweden) as sv_se
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language ქართული (Kharthuli)(Georgia) as ka_ge
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Italiano(Italy) as it_it
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Dansk (Danmark)(Danmark) as da_dk
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language 简体中文 (中国)(中国大陆) as zh_cn
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Slovenčina (Slovensko)(Slovensko) as sk_sk
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Portugues(BR) as pt_br
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Polski(Poland) as pl_pl
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Nederlands (NL)(Nederlands) as nl_nl
[14:12:20] [Server thread/INFO]: [LocaleManager] [Cartographer2] [LocaleManager] Loaded language Català (Espanya)(Spain) as ca_es
[14:12:20] [Server thread/INFO]: [Cartographer2] Detected version 'v1_19_R2'
[14:12:20] [Server thread/INFO]: [Cartographer2] Loading config...
[14:12:20] [Server thread/INFO]: [Cartographer2] Added 'ANVIL' as a blacklisted inventory
[14:12:20] [Server thread/INFO]: [Cartographer2] Added 'WORKBENCH' as a blacklisted inventory
[14:12:20] [Server thread/INFO]: [Cartographer2] Added 'CARTOGRAPHY' as a blacklisted inventory
[14:12:20] [Server thread/INFO]: [Cartographer2] Loading images...
[14:12:20] [Server thread/WARN]: [Cartographer2] Overlay image does not exist!
[14:12:20] [Server thread/INFO]: [Cartographer2] Background detected!
[14:12:20] [Server thread/INFO]: [Cartographer2] Missing map image detected!
[14:12:20] [Server thread/INFO]: [Cartographer2] Disabled map image detected!
[14:12:20] [Server thread/INFO]: [Cartographer2] Loading palettes...
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Constructing vanilla palette...
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] 972 materials mapped for vanilla
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loading local palette files...
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'palette-1.13.2' successfully!
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'vanilla' successfully!
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'palette-1.15.1' successfully!
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'palette-1.16.1' successfully!
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'palette-1.12.2' successfully!
[14:12:20] [Server thread/INFO]: [PaletteManager] [Cartographer2] [PaletteManager] Loaded palette 'palette-1.11.2' successfully!
[14:12:20] [Server thread/INFO]: [BossMania] Enabling BossMania v1.9.12
[14:12:20] [Server thread/INFO]: [BossMania] [STDOUT] 
[14:12:20] [Server thread/WARN]: Nag author(s): '[dado997]' of 'BossMania' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:20] [Server thread/WARN]: [BossMania] Could not save Config.yml to plugins/BossMania/Config.yml because Config.yml already exists.
[14:12:20] [Server thread/INFO]: [BossMania] Hooked with the plugin LibsDisguises
[14:12:20] [Server thread/INFO]: [BossMania] Hooked with the plugin Vault
[14:12:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: BossMania [1.9.12]
[14:12:20] [Server thread/INFO]: [BossMania] Hooked with the plugin PlaceholderAPI
[14:12:20] [Server thread/INFO]: [BossMania] Hooked with the plugin WorldGuard
[14:12:20] [Server thread/INFO]: [BossMania] Enabled!
[14:12:20] [Server thread/INFO]: [BossMania] Selected language: English
[14:12:20] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.6.1
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[14:12:21] [Server thread/INFO]: [InteractiveChat] Loading languages...
[14:12:21] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents suscrito a (1 métodos)
[14:12:21] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents suscrito a (1 métodos)
[14:12:21] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents suscrito a (16 métodos)
[14:12:21] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents suscrito a (8 métodos)
[14:12:21] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[14:12:21] [Server thread/INFO]: [DriveBackupV2] Enabling DriveBackupV2 v1.6.0
[14:12:21] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[14:12:22] [Server thread/INFO]: [Backup] Config loaded!
[14:12:22] [Server thread/INFO]: [Backup] Scheduling a backup to run every 480 minutes
[14:12:22] [Server thread/INFO]: [UltraMotd] Enabling UltraMotd v1.0.0
[14:12:23] [Server thread/INFO]: [UltraMotd] Loading Plugin...
[14:12:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: umotd [1.0.0]
[14:12:23] [Server thread/INFO]: [UltraMotd] UltraMotd placeholders registered
[14:12:23] [Server thread/INFO]: [UltraMotd] Successfully loaded in 357 ms
[14:12:23] [Server thread/INFO]: [UltraMotd] [STDOUT] [UltraMotd] Loaded
[14:12:23] [Server thread/WARN]: Nag author(s): '[Tech]' of 'UltraMotd' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:23] [Server thread/INFO]: [ServerBooster] Enabling ServerBooster v1.1.3-r4
[14:12:23] [Server thread/WARN]: [ServerBooster] Invalid configuration for mob type: pig_zombie
[14:12:23] [Server thread/INFO]: Override of spigot.yml and bukkit.yml configs completed
[14:12:23] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart vBuild 53
[14:12:23] [Server thread/INFO]: [UltimateAutoRestart] Build 53, a free resource by Norska - Thanks for downloading!
[14:12:23] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[14:12:23] [Server thread/INFO]: [SpecializedCrates] Enabling SpecializedCrates v3.3.0
[14:12:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: specializedcrates [3.3.0]
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: semicircle
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_1
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_5
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_4
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: nightmare_animation
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_3
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: slots
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: tnt_animation
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_7
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_9
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: example_animation
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: roulette
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_6
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_2
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: portal
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: animation_8
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: lootbox_animation_1
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: great_box
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: [SpecializedCrates] Hologram handler: CMI
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: MasterCrate
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: BeginnerCrate
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: ExpertCrate
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: Nightmare
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: BasicCrate
[14:12:24] [Server thread/INFO]:   + Success: there were no issues.
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: MineChestExample (Disabled)
[14:12:24] [Server thread/INFO]:   Animation
[14:12:24] [Server thread/INFO]:     - Failed to load the CrateType.Inventory.CSGO.final-panel-tick-length value.
[14:12:24] [Server thread/INFO]:         CAUSE: The value does not exist
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: MiddleCrate
[14:12:24] [Server thread/INFO]:   Animation
[14:12:24] [Server thread/INFO]:     - Failed to load the CrateType.Inventory.CSGO.final-panel-tick-length value.
[14:12:24] [Server thread/INFO]:         CAUSE: The value does not exist
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: AllCrates
[14:12:24] [Server thread/INFO]:   MultiCrate Inventory
[14:12:24] [Server thread/INFO]:     - Failed to load the MultiCrate object: #
[14:12:24] [Server thread/INFO]:         CAUSE: The crate name is invalid
[14:12:24] [Server thread/INFO]: 
[14:12:24] [Server thread/INFO]: 
[14:12:25] [Server thread/INFO]: Crate AllCrates rewards not found.
[14:12:25] [Server thread/INFO]: WARNING: The value 'spawn-protection' is set to 16 in the server.properties file. This WILL cause issues with SpecializedCrates - any crates near spawn will only be openable for OP players. Please go to your server.properties file in the main directory of your server and change spawn-protection: 0.
[14:12:25] [Server thread/INFO]: [GSit] Enabling GSit v1.4.3
[14:12:25] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[14:12:25] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[14:12:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.3]
[14:12:25] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[14:12:25] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.3.2
[14:12:25] [Server thread/INFO]: [ExtraStorage] Enabling ExtraStorage v2.6.5
[14:12:25] [Server thread/INFO]: [ExtraStorage] Established SQLite connection!
[14:12:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: exstorage [2.6.5]
[14:12:25] [Server thread/INFO]: [ExtraStorage] Hooked into PlaceholderAPI v2.11.3
[14:12:25] [Server thread/INFO]: [ExtraStorage] Plugin loaded successfully!
[14:12:25] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.15.41-SNAPSHOT
[14:12:26] [Server thread/INFO]: [SafariNet] Using v1_19_R2
[14:12:26] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[14:12:26] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[14:12:26] [Server thread/INFO]: [SafariNet] [SafariNet] MythicMobs found and using it.
[14:12:26] [Server thread/INFO]: [SafariNet] [SafariNet] TradeMe found and using it.
[14:12:26] [Server thread/INFO]: [SafariNet] [SafariNet] Kingdoms found and using it.
[14:12:26] [Server thread/INFO]: [RareMobs] Enabling RareMobs v2.6
[14:12:28] [Server thread/INFO]: [AutoComposter] Enabling AutoComposter v3.4.1
[14:12:28] [Server thread/INFO]: [AutoComposter] [ACF] Enabled Asynchronous Tab Completion Support!
[14:12:28] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.0.7-BETA
[14:12:28] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[14:12:28] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[14:12:28] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[14:12:28] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[14:12:28] [Server thread/INFO]:     _   _                 _____             
[14:12:28] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___
[14:12:28] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-<
[14:12:28] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/
[14:12:28] [Server thread/INFO]:                                    |___/    
[14:12:28] [Server thread/INFO]:    Running plugin AlonsoTags v2.0.7-BETA (v1_19)
[14:12:28] [Server thread/INFO]:    Server running Paper version git-Paper-448 (MC: 1.19.3)
[14:12:28] [Server thread/INFO]:    (Implementing API version 1.19.3-R0.1-SNAPSHOT)
[14:12:28] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[14:12:28] [Server thread/INFO]:    Join our official discord server to receive support in alonsoaliaga.com/discord
[14:12:28] [Server thread/INFO]:    If you loved the plugin consider leaving a 5-stars review and mentioning your server IP in it!
[14:12:28] [Server thread/INFO]: 
[14:12:28] [Server thread/INFO]: ==============================================================================================
[14:12:28] [Server thread/INFO]: [AlonsoTags] This is not a error! This is just a warning to keep in mind if you have issues!
[14:12:28] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper). This plugin was made for Spigot
[14:12:28] [Server thread/INFO]: [AlonsoTags] but was (in most cases) tested with different builds of Paper and Purpur.
[14:12:28] [Server thread/INFO]: [AlonsoTags] Spigot and forks API are really similar and should be compatible, however there are
[14:12:28] [Server thread/INFO]: [AlonsoTags] some cases in which they aren't compatible. If you have issues report them to the
[14:12:28] [Server thread/INFO]: [AlonsoTags] developer instead of reviewing 1 star. Thanks in advanced!
[14:12:28] [Server thread/INFO]: [AlonsoTags] Join us in our official support server on alonsoaliaga.com/discord
[14:12:28] [Server thread/INFO]: ==============================================================================================
[14:12:28] [Server thread/INFO]: 
[14:12:28] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[14:12:28] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[14:12:28] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[14:12:28] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[14:12:28] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[14:12:28] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[14:12:28] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.36.0
[14:12:28] [Server thread/INFO]: [SQLite] Successfully connected to database!
[14:12:28] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[14:12:28] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[14:12:28] [Server thread/INFO]: [AlonsoTags] GameProfile field is available for heads. Hooking..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: Negative | Negative
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags1' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags2' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags62' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags3' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags4' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags5' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags6' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags7' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags8' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags9' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags10' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags11' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags12' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags13' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags14' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags16' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags17' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags18' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags19' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags20' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags21' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags22' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags23' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags24' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags25' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags26' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags27' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags28' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags29' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags30' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags31' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags32' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags33' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags34' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags35' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags36' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags37' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags38' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags39' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags40' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags41' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags42' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags43' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags44' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags45' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags46' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags47' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags48' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags49' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags50' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags51' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags52' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags53' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags54' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags55' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags56' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags57' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags58' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags59' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags60' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags61' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags63' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags64' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags65' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags66' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags67' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags68' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags69' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags70' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags71' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags72' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags73' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags74' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags75' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags76' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags77' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags78' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags79' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags80' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags81' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags82' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags83' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags84' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags85' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags96' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags86' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags87' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags88' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags89' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags90' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags91' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags92' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags93' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags94' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags95' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags97' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags98' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags99' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags100' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags101' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags102' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags103' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags104' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags105' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags106' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags107' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags108' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags109' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags110' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags111' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags112' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags113' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags114' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags115' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags116' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags117' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags118' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags119' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags120' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags121' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags122' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags123' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags124' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags125' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags126' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags127' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags128' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags129' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags130' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags131' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags132' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags133' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags134' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags135' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags136' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags137' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags138' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags139' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags140' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags141' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags142' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags143' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags144' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags145' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags146' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags147' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags148' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags149' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags150' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags151' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags152' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags153' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags154' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags155' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags156' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags157' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags158' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags159' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags160' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags161' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags162' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags163' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags164' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags165' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags166' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags167' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags168' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags169' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags170' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags171' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags172' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags173' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags174' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags175' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags176' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags177' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags178' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags179' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags180' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags181' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags182' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags183' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags184' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags185' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags186' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags187' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags188' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags189' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags190' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags191' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags192' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags193' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags194' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags195' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags196' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags197' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags198' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags199' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'tags200' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'illuminati' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'blaze' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'swag' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'onethreethreeseven' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'xbox' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'derp' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'sanic' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'ez' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'youtube' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'twitch' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'snapchat' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'instagram' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'harambae' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'trump' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'kanye2020' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'spigot' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'haxor' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'lit' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'nuker' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'wizard' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'russianspy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'internetpolice' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'dubstep' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'bae' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'yolo' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'king' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rushb' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'kfc' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'squad' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'hype' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rog' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'amd' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'intel' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'nvidia' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'apple' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'blazeit' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'toxic' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rekt' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'bounty' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'salty' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'moneybags' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'pleb' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'roasted' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'triggered' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'weeaboo' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading '4head' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'kappa' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'babyrage' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mommyscard' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'quickdropped' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'og' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'umadbro' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'uw0tm8' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'gotem' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'deeznuts' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'ezpz' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'savage' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'lag' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'netflix' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'facepalm' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'noballz' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'vac' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mcchicken' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'halloween' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'trickortreat' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'p2w' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'xoxo' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'jolliest' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'elves' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'joy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'noelle' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'naughty' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'nice' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'jolly' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'jinglebells' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'eggnog' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'merrychristmas' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'snowflakes' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'santa' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'gingerbread' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'sing' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'happyholiday' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'deckthehalls' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'letitsnow' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'falalala' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'hollyjolly' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'candycanes' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'applepie' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'cookies' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'milk' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'snowman' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'xmas' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'giftbearer' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'fruitcake' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'raindeer' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mrsclaus' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mrclaus' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rudolph' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'angel' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rudy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'rosy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'ice' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'boo' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'ghost' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'bats' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'vampire' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'pumpkin' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mummy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'werewolf' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'ghoul' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'scary' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'witch' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'zombified' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'brain' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'candy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'slimy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'coffin' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'banned' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'nds' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'hacker' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'badapple' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'dough' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'dhcp' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'egghead' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'mask' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'elmo' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'cookiemonster' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'cookingmama' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'am' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'pm' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'sugardaddy' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'twentyfour' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'approved' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'urgent' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'email' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'cancelled' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'charged' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'checked' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'delivered' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'credit' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'faxed' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'paid' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'received' tag..
[14:12:28] [Server thread/INFO]: [AlonsoTags] Loading 'shipped' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'ebay' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'punie' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'goodnuddle' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'flapjacks' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'cnn' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'coffee' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hashtag' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'nerd' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bread' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mug' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'pickle' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'twelveinch' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'garry' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'skull' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'tiny' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'cherrygum' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'cola' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'yuuki' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'shiro' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'taiga' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'lucy' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'kurumi' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'shana' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'souleater' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'holo' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'wolf' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'wise' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'cc' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'pinky' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading '1800suicide' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading '24-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'profcube' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'prof' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'flames' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bullethead' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hitman' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'anonymous' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'lemon' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'upx' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'pallets' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'jamer' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'marijuana' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'pothead' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'baldy' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'oniichan' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'senpai' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'killorbekilled' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'friday' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'artist' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'nuts' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'chief' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'chef' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'op' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'girlpower' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'excalibur' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-smile' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-heart' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-tiny-heart' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-star' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-moon' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-sun' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-cloud' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-umbrella' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-snowman' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-coin' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-skull' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-music-note-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-music-note-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-music-note-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-tm' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-yinyang' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-peace' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-sword' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-bow' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-trident' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-potion' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-fishing-rob' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-shield' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-axe' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-pickaxe' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-shear' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-male' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-female' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-limit' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-clover' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-flag' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-dual-sword' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-anchor' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-thunder' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-looped-square' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'u-sanke' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'mask-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'hat-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'gift-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'bubble-8' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-anvil' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-book' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-candy' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-chest' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-cloud' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-flame' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-hammer' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-medal' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-sleeping' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-small-star' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-spell' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-spider' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-star' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-sword' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-thunder' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-hat' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-treasure' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-trophy' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-heart' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-more-coin' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-gem' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-cup' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-smll-shield' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-shield-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-shield-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-shield-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-wing' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-small-candy' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-blue-gem' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-8' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-9' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'c-crystal-10' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-amethyst-shard' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-apple' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-axolotl-bucket' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-bell' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-blazepowder' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-chest' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-copper-ingot' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-diamond' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-emerald' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-firework-rocket' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-gold-ingot' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-golden-apple' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-honeycomb' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-nether-star' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-netherite-ingot' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-totem' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-turtle-egg' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-exp-bottle' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-heart-of-the-sea' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-knowledge_book' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-light' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-magma-cream' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-slime-ball' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'm-ruby-8' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-1' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-2' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-3' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-4' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-5' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-6' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-7' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-8' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-9' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-10' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-11' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-12' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-13' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Loading 'update-14' tag..
[14:12:29] [Server thread/INFO]: [AlonsoTags] Successfully loaded 545 tags!
[14:12:29] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[14:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: alonsotags [2.0.7-BETA]
[14:12:29] [Server thread/INFO]: [Bank] Enabling Bank v4.6.1-RELEASE
[14:12:29] [Server thread/INFO]: [Bank] Enabled placeholderapi expansion
[14:12:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bank [4.6.1-RELEASE]
[14:12:29] [Server thread/INFO]: [Bank] Bank Enabled
[14:12:29] [Server thread/INFO]: [MythicMobsSpawnerGUI] Enabling MythicMobsSpawnerGUI v1.8
[14:12:29] [Server thread/INFO]: [BPS-Premium] Enabling BPS-Premium v17.9.19
[14:12:29] [Server thread/INFO]: [BPS] Loaded 
[14:12:29] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.11
[14:12:29] [Server thread/INFO]: [LemonBeehive] Enabling LemonBeehive v1.10.2-beta
[14:12:29] [Server thread/INFO]: [LemonDatabase] Success connecting Yaml Store.
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: ========== [LemonBeehive] ==========
[14:12:29] [Server thread/INFO]: This plugin has been enable.
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: Soft Depends:
[14:12:29] [Server thread/INFO]:  [Vault]
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: Database Store:
[14:12:29] [Server thread/INFO]:  [MySQL]
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: Loaded 0 Beehive.
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: [Version checker]
[14:12:29] [Server thread/INFO]:  No new versions found on SpigotMC.
[14:12:29] [Server thread/INFO]: ====================================
[14:12:29] [Server thread/INFO]: [LemonBeehive] [STDOUT] 
[14:12:29] [Server thread/WARN]: Nag author(s): '[Lemon251206]' of 'LemonBeehive' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:29] [Server thread/INFO]: [RedeemableCodes] Enabling RedeemableCodes vBuild 37b
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: [RedeemableCodes] Build 37b, a premium resource by Norska - Thanks for purchasing!
[14:12:29] [Server thread/INFO]: 
[14:12:29] [Server thread/INFO]: [RePlant] Enabling RePlant v3.1.2
[14:12:29] [Server thread/INFO]: [RePlant] Hooked into WorldGuard 7.0.8-beta-01+cbb2ba7
[14:12:30] [Server thread/INFO]: [RePlant] Using language 'en'
[14:12:30] [Server thread/INFO]: [RePlant] [ACF] Enabled Asynchronous Tab Completion Support!
[14:12:30] [Server thread/INFO]: [Vegas] Enabling Vegas v3.0
[14:12:30] [Server thread/INFO]: [ReviveMe] Enabling ReviveMe v3.1.1
[14:12:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: reviveme [3.1.1]
[14:12:30] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[14:12:30] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[14:12:31] [Server thread/INFO]: [DeluxeMenus] 2 GUI menus loaded!
[14:12:31] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[14:12:31] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[14:12:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[14:12:31] [Server thread/INFO]: [Pl-Hide-Pro] Enabling Pl-Hide-Pro v2.6.8
[14:12:31] [Server thread/INFO]: [Duels] Enabling Duels v3.5.2
[14:12:31] [Server thread/INFO]: [Duels] Successfully hooked into 'BountyHunters'!
[14:12:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0]
[14:12:31] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[14:12:31] [Server thread/INFO]: [Duels] Using Economy Provider: com.Zrips.Economy_CMI
[14:12:31] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[14:12:31] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[14:12:32] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 1 kit(s).
[14:12:32] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 1 arena(s).
[14:12:32] [Server thread/INFO]: [Duels] QueueManager: Loaded 1 queue(s).
[14:12:32] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 1 queue sign(s).
[14:12:32] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Enabling DiscordSRV-Staff-Chat v1.4.4
[14:12:32] [Server thread/INFO]: [DiscordSRV] API listener com.rezzedup.discordsrv.staffchat.listeners.DiscordStaffChatListener suscrito a (1 métodos)
[14:12:32] [Server thread/INFO]: [DiscordSRV-Staff-Chat] Subscribed to DiscordSRV: messages will be sent to Discord
[14:12:32] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.8.22
[14:12:32] [Server thread/INFO]: ==================================================================================
[14:12:32] [Server thread/INFO]: 
[14:12:32] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[14:12:32] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[14:12:32] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[14:12:32] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[14:12:32] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[14:12:32] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[14:12:32] [Server thread/INFO]: 
[14:12:32] [Server thread/INFO]: - Loading v4.8.22...
[14:12:32] [Server thread/INFO]: 
[14:12:32] [Server thread/INFO]: [PyroFishingPro] - Successfully hooked into RealisticReasons
[14:12:33] [Server thread/INFO]: - Registered to: 31092
[14:12:33] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[14:12:33] [Server thread/INFO]: - Loaded (125) Custom Fish successfully.
[14:12:33] [Server thread/INFO]: - Loaded (0) fishing baits.
[14:12:33] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[14:12:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PyroFishingPro [4.8.22]
[14:12:33] [Server thread/INFO]: 
[14:12:33] [Server thread/INFO]: ==================================================================================
[14:12:33] [Server thread/INFO]: 
[14:12:33] [Server thread/INFO]: [UpgradeableSpawners] Enabling UpgradeableSpawners v3.9.9
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Version: 3.9.9 Previous: 3.9.9
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Server: 1.19.x running Paper
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Licensed to: %%__USER__%%
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Experiencing issues or having questions? Join our Discord!
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Discord: https://discord.gg/B4MAJVk
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Wiki: https://github.com/Angeschossen/UpgradeableSpawners/wiki
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners]  
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated CMI as hologram manager.
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Using SQLite as database driver.
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Successful connected to SQL database.
[14:12:34] [Server thread/INFO]: [UpgradeableSpawners] Database is ready.
[14:12:34] [Server thread/INFO]: [ChestProtect] Enabling ChestProtect v5.8.5
[14:12:34] [Server thread/INFO]: [ChestProtect] [STDOUT] 
[14:12:34] [Server thread/WARN]: Nag author(s): '[Angeschossen]' of 'ChestProtect' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:34] [Server thread/INFO]: [ChestProtect] Version: 5.8.5 Previous: 5.8.5
[14:12:34] [Server thread/INFO]: [ChestProtect] Server: 1.19.x running Paper
[14:12:34] [Server thread/INFO]: [ChestProtect] Licensed to: %%__USER__%%
[14:12:34] [Server thread/INFO]: [ChestProtect] Experiencing issues or having questions? Join our Discord!
[14:12:34] [Server thread/INFO]: [ChestProtect] Discord: https://discord.gg/B4MAJVk
[14:12:34] [Server thread/INFO]: [ChestProtect] Wiki: https://github.com/Angeschossen/ChestProtect/wiki
[14:12:34] [Server thread/INFO]: [ChestProtect]  
[14:12:34] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated CMI as hologram manager.
[14:12:34] [Server thread/INFO]: [ChestProtect] Setting up general tables...
[14:12:34] [Server thread/INFO]: [ChestProtect] Successfully connected to SQL (MySQL) database.
[14:12:34] [Server thread/INFO]: [AirDrops] Enabling AirDrops v1.02
[14:12:34] [Server thread/INFO]: Cargados 3 items totales del Airdrop Comun.
[14:12:34] [Server thread/INFO]: Cargados 5 items totales del Airdrop Raro.
[14:12:34] [Server thread/INFO]: Cargados 3 items totales del Airdrop Legendario.
[14:12:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: airdrop [1.02]
[14:12:34] [Server thread/INFO]: --------------------------------------------------
[14:12:34] [Server thread/INFO]:  
[14:12:34] [Server thread/INFO]: Project: AirDrops+
[14:12:34] [Server thread/INFO]: Version: v1.02
[14:12:34] [Server thread/INFO]: Author: Josn3r
[14:12:34] [Server thread/INFO]:  
[14:12:34] [Server thread/INFO]: --------------------------------------------------
[14:12:34] [Server thread/INFO]: [LiteBansBridge] Enabling LiteBansBridge v1.5
[14:12:34] [Server thread/INFO]: >----------[ LiteBansBridge ]--------<
[14:12:34] [Server thread/INFO]: >                                    <
[14:12:34] [Server thread/INFO]: >         LiteBansBridge V1.5        <
[14:12:34] [Server thread/INFO]: >              By Woutzah            <
[14:12:34] [Server thread/INFO]: >                                    <
[14:12:34] [Server thread/INFO]: >              Enabling ...          <
[14:12:34] [Server thread/INFO]: >                                    <
[14:12:34] [Server thread/INFO]: >------------------------------------<
[14:12:34] [Server thread/INFO]: [DiscordSRV] API listener be.woutzah.litebansbridge.listeners.DiscordListener suscrito a (1 métodos)
[14:12:35] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.6.0
[14:12:35] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.0 Plugin Loading...
[14:12:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[14:12:35] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.6.0 Plugin Loaded!
[14:12:35] [Server thread/INFO]: [EpicVouchers] Enabling EpicVouchers v2.2.5-DEV
[14:12:35] [Server thread/WARN]: Error validating license: Missing license field.
[14:12:35] [Thread-37/INFO]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[14:12:35] [Thread-37/INFO]: You do not have access to this plugin.
[14:12:35] [Thread-37/INFO]: Please purchase a license at https://sngda.to/marketplace
[14:12:35] [Thread-37/INFO]: or set up your license at https://sngda.to/licenses
[14:12:35] [Thread-37/INFO]: License setup steps:
[14:12:35] [Thread-37/INFO]: Visit the link mentioned above and click the 'Create License button'
[14:12:35] [Thread-37/INFO]: Copy the following ip and uuid and click create.
[14:12:35] [Server thread/INFO]: [AdvancedKits] Enabling AdvancedKits v1.0.2.3.3
[14:12:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedkits [1.0.2.3.3]
[14:12:36] [Server thread/INFO]: [AdvancedKits] Successfully enabled in 199 ms!
[14:12:36] [Server thread/INFO]: [AEAddon] Enabling AEAddon v1.0.0
[14:12:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aeaddon [1.0.0]
[14:12:36] [Server thread/ERROR]: Error occurred while enabling AEAddon v1.0.0 (Is it up to date?)
java.lang.RuntimeException: Not possible to register new effects yet in v9.0.0
    at net.advancedplugins.ae.api.AEAPI.registerEffect(AEAPI.java:55) ~[AdvancedEnchantments-9.0.1.jar:?]
    at dev.hyronic.aeaddon.CustomEffect.<init>(CustomEffect.java:22) ~[AEAddon-1.0.13.jar:?]
    at dev.hyronic.aeaddon.effects.Throw.<init>(Throw.java:9) ~[AEAddon-1.0.13.jar:?]
    at dev.hyronic.aeaddon.AEAddon.onEnable(AEAddon.java:21) ~[AEAddon-1.0.13.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:279) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:192) ~[paper-1.19.3.jar:git-Paper-448]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:560) ~[paper-1.19.3.jar:git-Paper-448]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:471) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-448]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-448]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[14:12:36] [Server thread/INFO]: [AEAddon] Disabling AEAddon v1.0.0
[14:12:36] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.6.9
[14:12:36] [Thread-37/INFO]: IP: 46.4.94.213
[14:12:36] [Thread-37/INFO]: UUID: cce45976-6034-4ae5-8c5d-b824cea16063
[14:12:36] [Thread-37/INFO]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[14:12:37] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.6.9
[14:12:37] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[14:12:37] [Server thread/INFO]: [CitizensCMD] Using English messages!
[14:12:37] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[14:12:37] [Server thread/INFO]: [CitizensCMD] Using Vault!
[14:12:37] [Server thread/INFO]: [CustomPiglinsTrades] Enabling CustomPiglinsTrades v3.9.44
[14:12:37] [Server thread/INFO]: ================ [[CustomPiglinsTrades]] ================
[14:12:38] [Server thread/INFO]: ================ [[CustomPiglinsTrades]] ================
[14:12:38] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v3.9.50
[14:12:38] [Server thread/INFO]: ================ ExecutableBlocks ================
[14:12:38] [Server thread/INFO]: ExecutableBlocks WorldEdit hooked !
[14:12:38] [Server thread/INFO]: ExecutableBlocks Oraxen hooked !
[14:12:38] [Server thread/INFO]: ExecutableBlocks There are: 0 ExecutableBlock placed configs to load.
[14:12:38] [Server thread/INFO]: ExecutableBlocks 0 ExecutableBlock(s)Placed loaded !
[14:12:38] [Server thread/INFO]: ================ ExecutableBlocks ================
[14:12:38] [Server thread/INFO]: [AngelChest] Enabling AngelChest v9.12.0
[14:12:39] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[14:12:39] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[14:12:39] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[14:12:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: angelchest [GENERIC]
[14:12:39] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[14:12:39] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[14:12:39] [Server thread/INFO]: [bloodmoon-advanced] Enabling bloodmoon-advanced v4.5.7
[14:12:39] [Server thread/INFO]: [bloodmoon-advanced] plugin registered for user 1137036 with nonce 257548422
[14:12:39] [Server thread/WARN]: [bloodmoon-advanced] Config is not up-to-date! Please update the config!
[14:12:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bloodmoon-advanced [4.5.7]
[14:12:39] [Server thread/INFO]: [bloodmoon-advanced] [STDOUT] [bloodmoon-advanced] Loaded
[14:12:39] [Server thread/WARN]: Nag author(s): '[MrGeneralQ, PandaCrafter1]' of 'bloodmoon-advanced' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:39] [Server thread/INFO]: [BattlePass] Enabling BattlePass v3.16.1
[14:12:39] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[14:12:39] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[14:12:40] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[14:12:40] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[14:12:40] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[14:12:40] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[14:12:40] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[14:12:40] [Server thread/INFO]: [BattlePass] Hooked into AdvancedEnchantments
[14:12:40] [Server thread/INFO]: [BattlePass] Hooked into Citizens
[14:12:40] [Server thread/INFO]: [BattlePass] Using internal version as PluginVersion{major=5, minor=2, bugfix=1} for loading MythicMobs.
[14:12:40] [Server thread/INFO]: [BattlePass] Hooked into MythicMobs
[14:12:40] [Server thread/INFO]: [BattlePass] Hooked into Shopkeepers
[14:12:40] [Server thread/INFO]: [BattlePass] Hooked into Votifier
[14:12:40] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[14:12:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: battlepass [1.1]
[14:12:40] [Server thread/INFO]: [GSShopSystem] Enabling GSShopSystem vBETA-2.0v4
[14:12:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gold [BETA-2.0v4]
[14:12:41] [Server thread/INFO]: false
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]                                                                           
[14:12:41] [Server thread/WARN]: Nag author(s): '[Gennario, Optimal]' of 'GSLibrary' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] Loading plugin GSShopSystem v.BETA-2.0v4
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]                                                                           
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] 
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Hooked to: 1 economies  (GOLDS)
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Successfully loaded: 2 languages
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Hooked to language: en_GB
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Products registered: 12
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Successfully joined File
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Successfully joined File
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] 
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] This plugin is running on BETA-2.0v4...
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] Current plugin version on polymart is BETA-2.0v4...
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] So your plugin is on the latest version...
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] 
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]  Plugin author: [Gennario]
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] 
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT] Thanks for selecting Gennario's Studios development team.
[14:12:41] [Server thread/INFO]: [GSLibrary] [STDOUT]                                                                           
[14:12:41] [Server thread/INFO]: [Rankup] Enabling Rankup v3.14
[14:12:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.14]
[14:12:41] [Server thread/INFO]: [GCore] Enabling GCore v8.46.0
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[14:12:41] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[14:12:41] [Server thread/INFO]: [GCore-8.46.0] Found server version MC_1_19_R2
[14:12:41] [Server thread/INFO]: [GCore-8.46.0] Enabled integration for HeadDatabase
[14:12:41] [Server thread/INFO]: [GCore-8.46.0] Loading materials...
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loading sounds...
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loading particles...
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled currency VAULT
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled currency XP_LEVEL
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled currency XP
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loading texts...
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Text durationformatdays doesn't exist in default files (not even in en_US)
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loaded 16 missing texts from default lang for generic.yml : messageInvalidNumberRangeMin, textDescribeItemSingleLineEnchantmentsLine, messageInvalidEnumNoList, commandDescriptionGenericMigrate, messageInvalidNumber, commandDescriptionGenericPluginState, messageInvalidNumberRangeMax, textDescribeItemSingleLineEnchantmentsIfHas, commandDescriptionGenericReload, commandParameterUsageDate, textDescribeItemSingleLineSeparator, messageInvalidEnum, durationFormatDays, textDescribeItemSingleLineLoreIfHas, messageMustHaveItemNoDetail, textDescribeItemSingleLineNameIfHas
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loaded 24 missing texts from default lang for generic_editor.yml
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Loaded 7 missing texts from default lang for gcore.yml : commandDescriptionGcoreItemSetNBTString, commandDescriptionGcoreItemReadChat, commandDescriptionGcoreItemRead, messagePluginInternalState, commandDescriptionGcoreItemReadClick, messageItemReadNull, messageItemReadExported
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled integration for Citizens
[14:12:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gcore [1.0.0]
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled integration for PlaceholderAPI
[14:12:42] [Server thread/INFO]: [GCore-8.46.0] Enabled integration for MythicMobs
[14:12:43] [Server thread/INFO]: [GCore-8.46.0] Initializing worker and caches
[14:12:43] [Server thread/INFO]: [GCore-8.46.0] Enabled NPC manager with ProtocolLib
[14:12:43] [Server thread/INFO]: [GCore-8.46.0] Registering integrations
[14:12:43] [Server thread/INFO]: [GCore-8.46.0] Initializing tasks and listeners
[14:12:43] [Server thread/INFO]: [GCore-8.46.0] Successfully enabled
[14:12:43] [Server thread/INFO]: [SafeCreative] Enabling SafeCreative v1.1.0
[14:12:43] [Server thread/INFO]: [SafeCreative] SafeCreative has been enabled.
[14:12:43] [Server thread/INFO]: [SafeCreative] [STDOUT] 
[14:12:43] [Server thread/WARN]: Nag author(s): '[M0dii]' of 'SafeCreative' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:12:43] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[14:12:43] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[14:12:43] [Server thread/INFO]: [TAB] Loaded NMS hook in 25ms
[14:12:43] [Server thread/INFO]: [TAB] Enabled in 177ms
[14:12:43] [Server thread/INFO]: [LagAssist] Enabling LagAssist v2.29.1
[14:12:43] [Server thread/INFO]: LagAssist » Enabling Systems:
[14:12:43] [Server thread/INFO]:     [] Economy manager
[14:12:43] [Server thread/INFO]:     [] Smart Mob Tools.
[14:12:43] [Server thread/INFO]:     [] MicroFeatures.
[14:12:43] [Server thread/INFO]:     [] Hopper Manager.
[14:12:43] [Server thread/INFO]:     [] Redstone Culler.
[14:12:43] [Server thread/INFO]:     [] Physics-Tweaker.
[14:12:43] [Server thread/INFO]:     [] Lag Monitor.
[14:12:43] [Server thread/INFO]:     [] MapVisualizer.
[14:12:43] [Server thread/INFO]:     [] Chunk Analyser.
[14:12:43] [Server thread/INFO]:     [] Chunk Limiter.
[14:12:43] [Server thread/INFO]:     [] StatsAnalyse.
[14:12:43] [Server thread/INFO]:     [] Spawner Manager.
[14:12:43] [Server thread/INFO]:     [] GUI.
[14:12:43] [Server thread/INFO]:     [] Injecting PacketListener.
[14:12:43] [Server thread/INFO]:     [] API Tools.
[14:12:43] [Server thread/INFO]: [FancyWaystones] Enabling FancyWaystones v1.1.0
[14:12:43] [Server thread/INFO]: [FancyWaystones] Enabled support for PlaceholderAPI
[14:12:43] [Server thread/INFO]: [FancyWaystones] Hooked with Vault
[14:12:43] [Server thread/INFO]: [FancyWaystones] Available Effects: [PlayCustomSound, GivePotionEffect, LineParticle, PlaySound, SphereParticle, CircleParticle]
[14:12:43] [Server thread/INFO]: [FancyWaystones] Using latest version compability listener
[14:12:43] [Server thread/INFO]: [FancyWaystones] Using ModernRecipeManager
[14:12:43] [Server thread/INFO]: [FancyWaystones] Hooked with Oraxen
[14:12:43] [Server thread/INFO]: [FancyWaystones] Hooked with ModelEngine
[14:12:44] [FWS/INFO]: [FancyWaystones] Loading generated_structures.bin with 0 entries
[14:12:44] [FWS/INFO]: [FancyWaystones] File channel open for generated_structures.bin
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loading plugins/FancyWaystones/languages/id_id.yml
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded language file: id_id
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loading plugins/FancyWaystones/languages/en_us.yml
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded language file: en_us
[14:12:44] [Server thread/INFO]: [FancyWaystones] Added waypoint center_world (server)
[14:12:44] [Server thread/INFO]: [FancyWaystones] Added 1 server waypoints
[14:12:44] [Server thread/INFO]: [FancyWaystones] Added Item Economy with id EnderPearl: ItemStack{ENDER_PEARL x 1}
[14:12:44] [Server thread/INFO]: [FancyWaystones] Added Item Economy with id Emerald: ItemStack{EMERALD x 1}
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registering Waystone Effect: cumshot
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registering Waystone Effect: ws_idle_eff
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registering Waystone Effect: ws_atv_eff_example
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type public_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type region_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type private
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type public
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type server_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type public_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type server_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type region
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type server
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type private_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type server_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type region_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type region_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type public_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type private_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered waystone type private_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered item model: basic (regular) [public|private|region|server|public_normal|public_nether|public_the_end|private_normal|private_nether|private_the_end|server_normal|server_nether|server_the_end|region_normal|region_nether|region_the_end]
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded warm up teleport effect: wuExample (4)
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded post teleport effect: ptExample (5)
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded warm up warpstone teleport effect: wuExample (4)
[14:12:44] [Server thread/INFO]: [FancyWaystones] Loaded post warpstone teleport effect: ptExample (5)
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered warpstone: warp_scroll
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered warpstone: admin_stone
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered warpstone: warp_stone
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_region_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: tp_book
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_public_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_region
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: warp_scroll
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_public_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_region_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_private_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_private
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_public_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_private_the_end
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: death_book
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: warp_stone
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_server_normal
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_private_nether
[14:12:44] [Server thread/INFO]: [FancyWaystones] Registered recipe: regular_public
[14:12:44] [FWIO/INFO]: [FancyWaystones] Uses File Waystone Storage
[14:12:44] [Server thread/INFO]: [FancyWaystones] Running RecipeDiscoveryTask!
[14:12:46] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[14:12:46] [Server thread/INFO]: [Cartographer2] Enabling modules...
[14:12:46] [Server thread/INFO]: [Cartographer2] Loading minimaps and data...
[14:12:46] [Server thread/INFO]: [MapManager] [Cartographer2] [MapManager] Loading minimap 'map1'
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Default rotation set to unset
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Showname set to unset
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Auto update set to true
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Circular zoom set to false
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Render out of border set to false
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Default zoom set to 1.000000
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Allowed zooms: 0.125, 0.25, 0.5, 1.0, 2.0, 4.0, 8.0, 16.0
[14:12:46] [Server thread/INFO]: [map1] [Cartographer2] [Minimap] [map1] Blacklisted worlds: world_nether
[14:12:46] [Server thread/INFO]: Running delayed init tasks
[14:12:46] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[14:12:46] [Craft Scheduler Thread - 10 - GadgetsMenu/INFO]: [GadgetsMenu] Checking for updates...
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[14:12:47] [Craft Scheduler Thread - 19 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing GodofSea.bbmodel.
[14:12:47] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:12:47] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:12:47] [Craft Scheduler Thread - 20 - BountyHunters/INFO]: [BountyHunters] Initializing player data..
[14:12:47] [Craft Scheduler Thread - 10 - GadgetsMenu/INFO]: [GadgetsMenu] You have an old version of the plugin. You are using 5.6.0, available version 5.7.0.
[14:12:47] [Craft Scheduler Thread - 26 - EpicCore/INFO]: [EpicCore] New version 1.2.22 is now available
[14:12:47] [Craft Scheduler Thread - 23 - Pl-Hide-Pro/INFO]: Pl-Hide-Pro Update available: 2.6.9! You are on 2.6.8!
[14:12:47] [Craft Scheduler Thread - 10 - ReviveMe/INFO]: [ReviveMe] There is a new update available.
[14:12:47] [Craft Scheduler Thread - 10 - ReviveMe/INFO]: [ReviveMe] https://www.spigotmc.org/resources/update.99030/
[14:12:47] [Craft Scheduler Thread - 29 - AdvancedKits/INFO]: [AdvancedKits] There is a new update available.
[14:12:47] [Craft Scheduler Thread - 29 - AdvancedKits/INFO]: [AdvancedKits] Current installed version: v1.0.2.3.3
[14:12:47] [Craft Scheduler Thread - 29 - AdvancedKits/INFO]: [AdvancedKits] Latest available version: v1.0.3.3.6
[14:12:47] [Craft Scheduler Thread - 29 - AdvancedKits/INFO]: [AdvancedKits] Download link: https://www.spigotmc.org/resources/90054/
[14:12:47] [Craft Scheduler Thread - 42 - Duels/INFO]: [Duels] ===============================================
[14:12:47] [Craft Scheduler Thread - 42 - Duels/INFO]: [Duels] An update for Duels is available!
[14:12:47] [Craft Scheduler Thread - 42 - Duels/INFO]: [Duels] Download Duels v3.5.3 here:
[14:12:47] [Craft Scheduler Thread - 42 - Duels/INFO]: [Duels] https://www.spigotmc.org/resources/duels.20171/
[14:12:47] [Craft Scheduler Thread - 42 - Duels/INFO]: [Duels] ===============================================
[14:12:47] [Craft Scheduler Thread - 32 - MythicLib/INFO]: [MythicLib] A new build is available: 1.5.2 (you are running 1.5)
[14:12:47] [Craft Scheduler Thread - 32 - MythicLib/INFO]: [MythicLib] Download it here: https://www.spigotmc.org/resources/90306/
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[14:12:47] [Craft Scheduler Thread - 18 - VoteParty/INFO]: [VoteParty] Version is up to date
[14:12:47] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] Checking for Updates ... 
[14:12:47] [Craft Scheduler Thread - 36 - BetterStructures/INFO]: [BetterStructures] Latest public release is 1.4.2
[14:12:47] [Craft Scheduler Thread - 36 - BetterStructures/INFO]: [BetterStructures] Your version is 1.4.2
[14:12:47] [Craft Scheduler Thread - 10 - AuctionHouse/INFO]: [AuctionHouse] You're running an unreleased version of Auction House (2.92.2)
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[14:12:47] [Craft Scheduler Thread - 36 - BetterStructures/INFO]: [BetterStructures] You are running the latest version!
[14:12:47] [Craft Scheduler Thread - 13 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[14:12:47] [Craft Scheduler Thread - 13 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 14.2.10
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[14:12:47] [Craft Scheduler Thread - 14 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing aerial_bunny.bbmodel.
[14:12:47] [Craft Scheduler Thread - 22 - CosmeticsCore/INFO]: [CosmeticsCore] [License] Spigot product licensed to: LoneDev (88296)
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:47] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing armored_trex.bbmodel.
[14:12:47] [Craft Scheduler Thread - 42 - LagAssist/INFO]: LagAssist » You are up to date with LagAssist.
[14:12:47] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] No new version available
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_iron_golem.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_shark.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing blaze_king.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing bluestone_golem.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing bonfire.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing bonfire_lit.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing brownaliveshroom.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing capra.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing caprachains.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone chains has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 90.0 ]
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing capybara.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing capybara_rare_dark.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing capybara_rare_white.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_bowl.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_bowl_empty.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_chains.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_groundfx.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing cerberus_sleep.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing chocobo.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing concussion.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing crocodile.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_element_pet.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head is rotated in multiple axis. Choosing one axis.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head is rotated in multiple axis. Choosing one axis.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_element_pet_attack.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_element_pet_attack_vfx.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_element_pet_skill.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dark_imp.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing death_knight.bbmodel.
[14:12:48] [Craft Scheduler Thread - 28 - UltraMotd/INFO]: [UltraMotd] Translations successfully loaded & applied
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_creature.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_creature_dust_double.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_creature_dust_ring.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_creature_still.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_explosion.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_explosion_small.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing deep_shine_vfx.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_golem_zone.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_lifeless.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_lifeless_statue.bbmodel.
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:48] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_meteor_down.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing desert_guardian_meteor_up.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_desert.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_glacial.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_monk.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_monk_dragon.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_nether.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_sculk.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_spirit.bbmodel.
[14:12:49] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing dragon_stone.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing eternal_dragon.bbmodel.
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:49] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallen_knight.bbmodel.
[14:12:50] [User Authenticator #0/WARN]: [LuckPerms] Processing login for _KingOfCoal took 1192ms.
[14:12:50] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[14:12:50] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[14:12:50] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:50] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallen_knight2.bbmodel.
[14:12:50] [Craft Scheduler Thread - 17 - Oraxen/INFO]: Oraxen | Resourcepack uploaded on url http://atlas.oraxen.com:8080/pack.zip?id=d996804f85a2759cfa2d6bb831bf52f45bb378c7 in 68629 ms
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallen_knight3.bbmodel.
[14:12:51] [Server thread/INFO]: [Deluxe Void World] Uso de SQLite para los datos de los jugadores.
[14:12:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallen_knight_sword.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fallingmortos.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftwing4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 40.0 ]
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightwing2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -40.0 ]
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fire_imp.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forest_element_pet.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forest_element_pet_attack.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forest_element_pet_attack_vfx.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forest_element_pet_skill.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet_attack.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet_attack_vfx.bbmodel.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:51] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet_skill.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet_skill2.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing forzen_element_pet_skill2_vfx.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing frog.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing fsoldier_fireexplosion.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing gargoyle_king.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing gargoyle_king_ender.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing gargoyle_king_nether.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing giantzombie.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing glume.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing glume_baby.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing glume_parts.bbmodel.
[14:12:52] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[14:12:52] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_archer.bbmodel.
[14:12:52] [Craft Scheduler Thread - 35 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_club.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_king.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_shaman.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_sword.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_treasure.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing goblin_undead.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing golem.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightleg is rotated in multiple axis. Choosing one axis.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing groundcrack.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing hell_hound.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing hellhound.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing hermitcrab.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing imp.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing jelly.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing judicator.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kraken.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kur.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kur_parts.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kur_rot.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.0 ]
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kurrot_groundbreak.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing kurrot_groundrocks.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing large_airship.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lava_mite.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lava_piranha.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lizard_aqua.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lizard_lava.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lost_soul.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis_groundbreak.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis_mummy.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis_obelisk.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis_parts.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing lr_anubis_souls.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing magiccircle.bbmodel.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:52] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus.bbmodel.
[14:12:52] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 52010 heads!
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus_fx.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing magnus_sword.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_aether.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_dusk.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_soul.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing manticore_venom.bbmodel.
[14:12:53] [Server thread/INFO]: Loaded 7 recipes
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mechexcavator.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mechgunner.bbmodel.
[14:12:53] [Craft Scheduler Thread - 9 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mechutility.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing medium_airship.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Eye height is below 0. Entity might suffocate.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing meteor.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mimic.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mortos.bbmodel.
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone leftwing4 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 40.0 ]
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone rightwing2 has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -40.0 ]
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:53] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mount_oondasta.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mso_laval_lord.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mso_lavastone_golem.bbmodel1.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Error: Unknown format.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mso_taloc.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mso_taloc_head.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing mso_taloc_minion.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nether_mushroom.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_dragon.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_dragon_saddled_version.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin2.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin3.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin4.bbmodel.
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:54] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin5.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone horn_left is rotated in multiple axis. Choosing one axis.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone horn_right is rotated in multiple axis. Choosing one axis.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin6.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin7.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin8.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby2.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby3.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby4.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby5.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby6.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby7.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_baby8.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_egg.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_firespell.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_poisoncloud.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_rocks.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_roots.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_shadowspell.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_tornado.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_drakonin_water_geyser.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing oondasta.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing panda_normal.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing phillip.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing redaliveshroom.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing rhino.bbmodel.
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:55] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing rot_pet.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -22.0 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing rotter.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing s_210316.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_arctic.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_midnight.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing sabertooth_savanna.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing scorpid.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing scythe.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing shark.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing shieldbreak.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing shipwreck.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing slashfx.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing slimegirlprincess.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing slimegirlprincessspawn.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing small_airship.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing soldier_fireblade.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing soldier_thrustblade.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing soldierplosion_reources.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing soulknight.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing soulknight_withhorse.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing spineffect.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing statue_knighta.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing stomp_shockwave.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone lightbeam_far is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -90.4000015258789, -4.9680023193359375 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone lightbeam_close is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -116.11429595947266, 54.80000305175781 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone spike2 is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, -38.114295959472656, -81.24687194824219 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing teeny_warden.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing teeny_warden_chestglow.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_deep_debris_large.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_deep_debris_small.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_ender_dragon.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone chest is translated too far away from the pivot. Maximum translation is 80x80x80. [ 0.0, 3.728227138519287, -102.40000915527344 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone left_wingtip_one is translated too far away from the pivot. Maximum translation is 80x80x80. [ -120.69267272949219, -6.400000095367432, 87.73777770996094 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The bone right_wingtip_one is translated too far away from the pivot. Maximum translation is 80x80x80. [ 120.69267272949219, -6.400000095367432, 87.73777770996094 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_queenbee.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_pool.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_skull_2ndphase.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_still.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing toro_wither_terror.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing trex.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing warden_heart.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing yin_yang_fx.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head is rotated in multiple axis. Choosing one axis.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 24.100000381469727 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head is rotated in multiple axis. Choosing one axis.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: The cube cube in bone head has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ 24.100000381469727 ]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_abomination.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_abomination_base.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_abomination_parts.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_circle.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_metal.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_parts.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_poisonfx.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_potion.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/WARN]: [ModelEngine] [A] --Warning: Missing hitbox.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zahar_tumor.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zombie.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Importing zombie_ground.bbmodel.
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] [Generating assets]
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:56] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating godofsea.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating aerial_bunny.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating armored_trex.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating baby_iron_golem.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating baby_shark.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating blaze_king.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating bluestone_golem.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating bonfire.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating bonfire_lit.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating brownaliveshroom.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating capra.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating caprachains.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating capybara.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating capybara_rare_dark.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating capybara_rare_white.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_bowl.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_bowl_empty.
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:57] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_chains.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_groundfx.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating cerberus_sleep.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating chocobo.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating concussion.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating crocodile.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_element_pet.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_element_pet_attack.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_element_pet_attack_vfx.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_element_pet_skill.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dark_imp.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating death_knight.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_creature.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_creature_dust_double.
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:58] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_creature_dust_ring.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_creature_still.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_explosion.
[14:12:59] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:12:59] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:12:59] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for cart.
[14:12:59] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:12:59] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:12:59] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for chair.
[14:12:59] [Server thread/INFO]: Oraxen | Use of Display Entity on unsupported server version.
[14:12:59] [Server thread/INFO]: Oraxen | This EntityType is only supported on 1.19.4 and above.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_explosion_small.
[14:12:59] [Server thread/INFO]: Oraxen | Setting type to ITEM_FRAME for coach.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating deep_shine_vfx.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_golem_zone.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_guardian.
[14:12:59] [Server thread/INFO]: [RealisticSeasons] [STDOUT] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_guardian_lifeless.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_guardian_lifeless_statue.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_guardian_meteor_down.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating desert_guardian_meteor_up.
[14:12:59] [Craft Scheduler Thread - 27 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_desert.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_glacial.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_monk.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_monk_dragon.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_nether.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_sculk.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_spirit.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating dragon_stone.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating eternal_dragon.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fallen_knight.
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:12:59] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fallen_knight2.
[14:12:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rs [1.0.0]
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fallen_knight3.
[14:13:00] [Server thread/INFO]: [RealisticSeasons] Total biomes registered on server: 248
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fallen_knight_sword.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fallingmortos.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fire_imp.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forest_element_pet.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forest_element_pet_attack.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forest_element_pet_attack_vfx.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forest_element_pet_skill.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet_attack.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet_attack_vfx.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet_skill.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet_skill2.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating forzen_element_pet_skill2_vfx.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating frog.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating fsoldier_fireexplosion.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle_king.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle_king_ender.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating gargoyle_king_nether.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating giantzombie.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating glume.
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:00] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating glume_baby.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating glume_parts.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_archer.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_club.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_king.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_shaman.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_sword.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_treasure.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating goblin_undead.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating golem.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating groundcrack.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating hell_hound.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating hellhound.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating hermitcrab.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating imp.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating jelly.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating judicator.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kraken.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kur.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kur_parts.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kur_rot.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kurrot_groundbreak.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating kurrot_groundrocks.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating large_airship.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lava_mite.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lava_piranha.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lizard_aqua.
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:01] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lizard_lava.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lost_soul.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis_groundbreak.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis_mummy.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis_obelisk.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis_parts.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating lr_anubis_souls.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating magiccircle.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating magnus.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating magnus_fx.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating magnus_sword.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_aether.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_dusk.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_soul.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating manticore_venom.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mechexcavator.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mechgunner.
[14:13:02] [Server thread/INFO]: [BPS Premium] Successfully enabled v17.9.19
[14:13:02] [Server thread/INFO]: --------------------------------------------------------------------------------------
[14:13:02] [Server thread/INFO]:          Developed by [Ruben_Artz, STN Studios]
[14:13:02] [Server thread/INFO]: [BPS Premium] Version: 17.9.19 is loading... (Current)
[14:13:02] [Server thread/INFO]: [BPS Premium] Server: git-Paper-448 (MC: 1.19.3)
[14:13:02] [Server thread/INFO]: [BPS Premium] Loading necessary files...
[14:13:02] [Server thread/INFO]: 
[14:13:02] [Server thread/INFO]: BPS-Premium Starting plugin...
[14:13:02] [Server thread/INFO]: 
[14:13:02] [Server thread/INFO]: [BPS Premium] Congratulations now this plugin is connected to the database!
[14:13:02] [Server thread/INFO]: [BPS Premium] PlaceholderAPI found correctly.
[14:13:02] [Server thread/INFO]: 
[14:13:02] [Server thread/INFO]: --------------------------------------------------------------------------------------
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mechutility.
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:02] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating medium_airship.
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 server_nether waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 server waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 private waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 server_normal waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 region_normal waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 public_the_end waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 private_normal waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 region_nether waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 private_nether waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 region_the_end waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 public_nether waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 server_the_end waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 public waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 public_normal waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 private_the_end waystones
[14:13:03] [FWIO/INFO]: [FancyWaystones] Loaded 0 region waystones
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating meteor.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mimic.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mortos.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mount_oondasta.
[14:13:03] [Server thread/INFO]: [FancyWaystones] Loaded structure: demo.bin (plugins/FancyWaystones/structures/demo.bin)
[14:13:03] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion envoys due to a missing plugin: Envoys
[14:13:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: multiverse [1.0.1]
[14:13:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chunky [1.0.1]
[14:13:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[14:13:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[14:13:03] [Server thread/INFO]: 4 placeholder hook(s) registered!
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mso_laval_lord.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mso_taloc.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mso_taloc_head.
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:03] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating mso_taloc_minion.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nether_mushroom.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_dragon.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_dragon_saddled_version.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin2.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin3.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin4.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin5.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin6.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin7.
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Condition CustomCondition
[14:13:04] [Server thread/WARN]: [MythicMobs] --| File: Unknown
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom condition lasthitbox
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: lasthitbox{h=clusterbox}
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin8.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'selff': Failed to load custom targeter SELFF
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSHeavyAssaultMechWeaponModeControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000015}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSHeavyAssaultMechWeaponModeControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000016}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSHeavyAssaultMechWeaponModeControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000017}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSHeavyAssaultMechSpeedControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000014}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSTankMechWeaponModeControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000015}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSTankMechWeaponModeControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000016}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSTLightArmorMechWeaponModeControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000015}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSTLightArmorMechWeaponModeControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000016}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: WOSTLightArmorMechWeaponModeControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/WOSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=1000017}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipDirectionControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000002}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipDirectionControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000004}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipDirectionControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby2.
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000005}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipMovementControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000007}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipMovementControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000001}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipSpecialControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000006}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipSpecialControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000003}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipSpecialControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000010}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSHeavyAirshipSpecialControlerMenu4 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000011}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipDirectionControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000002}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipDirectionControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000004}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipDirectionControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000005}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipMovementControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000007}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipMovementControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000001}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipSpecialControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000006}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipSpecialControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000003}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipSpecialControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000010}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSMediumAirshipSpecialControlerMenu4 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000011}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipDirectionControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000002}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipDirectionControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000004}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipDirectionControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000005}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipMovementControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000007}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipMovementControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000001}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipSpecialControlerMenu1 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000006}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipSpecialControlerMenu2 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000003}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipSpecialControlerMenu3 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000010}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSSmallAirshipSpecialControlerMenu4 | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000011}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSRevolverReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000033}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSRevolverReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000034}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSRevolverReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000028}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSWinchesterReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000031}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSWinchesterReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000032}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: JOTSWinchesterReload | File: /home/container/plugins/MythicMobs/Skills/JOTSItemsSkills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic MODELSET
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: modelSet{m=3000026}
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby3.
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: toro_queenbee_honeyshot | File: /home/container/plugins/MythicMobs/Skills/torotoro/toro_queenbee_skill.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic DEALY
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: dealy
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ownertarget': Failed to load custom targeter OWNERTARGET
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby4.
[14:13:04] [Server thread/WARN]: [ModelEngine] [S] The SwapModel mechanic would be deprecated very soon. Please use the Model mechanic.
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby5.
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&7¦¦¦¦¦¦¦¦";d=20;fi=10;fo=5}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦&7¦¦¦¦¦¦¦";d=200;delay=10}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦&7¦¦¦¦¦¦";d=200;delay=20}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦&7¦¦¦¦¦";d=200;delay=30}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦&7¦¦¦¦";d=200;delay=40}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦¦&7¦¦¦";d=200;delay=50}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦¦¦&7¦¦";d=200;delay=60}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦¦¦&7¦¦";d=200;delay=70}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦¦¦¦&7¦";d=200;delay=80}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic SENDTITLEMESSAGE
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: sendtitlemessage{title="";subtitle="&cOondasta<&sp>casts<&sp>&fCrush<&sp>&a¦¦¦¦¦¦¦¦";d=10;fo=5;delay=90}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-crush | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic DAMAGEARMOR
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: damagearmor{a=all;d=25}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-frillblast-Hit | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic EFFECT:FIREWORK
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:firework{t=4;d=3;f=true;tr=true}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta-spiritcannon-Hit | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic EFFECT:FIREWORK
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:firework{t=4;d=3;f=true;tr=true}
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Skill: oondasta_pet-spiritcannon-Hit | File: /home/container/plugins/MythicMobs/Packs/MexBot_OondastaPack/Skills/trexskills.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic EFFECT:FIREWORK
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: effect:firework{t=4;d=3;f=true;tr=true}
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:04] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby6.
[14:13:04] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop mmoitems{type=MATERIAL;id=TOTEM_OF_UNDYING} 2 1
[14:13:04] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/MythicBossTaloc/Mobs/Taloc-Mobs.yml
[14:13:04] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[14:13:05] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Drop Dragon_Monk
[14:13:05] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/TheDragonMonk/Mobs/dragon_monk_mobs.yml
[14:13:05] [Server thread/WARN]: [MythicMobs] --| Error Message: Drop type not found.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby7.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_baby8.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_egg.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_firespell.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_poisoncloud.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_rocks.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_roots.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_shadowspell.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_tornado.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating nocsy_drakonin_water_geyser.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating oondasta.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating panda_normal.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating phillip.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating redaliveshroom.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating rhino.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating rot_pet.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating rotter.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating s_210316.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_arctic.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_midnight.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating sabertooth_savanna.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating scorpid.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating scythe.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating shark.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating shieldbreak.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating shipwreck.
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:05] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating slashfx.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating slimegirlprincess.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating slimegirlprincessspawn.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating small_airship.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating soldier_fireblade.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating soldier_thrustblade.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating soldierplosion_reources.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating soulknight.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating soulknight_withhorse.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating spineffect.
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:06] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating statue_knighta.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating stomp_shockwave.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating teeny_warden.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating teeny_warden_chestglow.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_deep_debris_large.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_deep_debris_small.
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:07] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_ender_dragon.
[14:13:07] [Server thread/ERROR]: [Citizens] ID 519 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 518 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 517 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 516 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 515 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 514 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 513 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 512 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 511 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 510 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Server thread/ERROR]: [Citizens] ID 509 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:08] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_queenbee.
[14:13:08] [Server thread/ERROR]: [Citizens] ID 508 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:08] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:08] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 507 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Server thread/ERROR]: [Citizens] ID 506 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_pool.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_skull.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_skull_2ndphase.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 505 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_still.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating toro_wither_terror.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 504 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Server thread/ERROR]: [Citizens] ID 503 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Server thread/ERROR]: [Citizens] ID 502 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating trex.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 501 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Server thread/ERROR]: [Citizens] ID 500 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Server thread/ERROR]: [Citizens] ID 499 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating warden_heart.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 498 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating yin_yang_fx.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_abomination.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 497 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_abomination_base.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_abomination_parts.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 496 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_circle.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_metal.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_parts.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_poisonfx.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 495 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_potion.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 494 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zahar_tumor.
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zombie.
[14:13:09] [Server thread/ERROR]: [Citizens] ID 493 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:09] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Generating zombie_ground.
[14:13:09] [Craft Scheduler Thread - 44 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[14:13:10] [Server thread/ERROR]: [Citizens] ID 492 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 491 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 490 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 489 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 488 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 487 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 486 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 485 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 484 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 483 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 482 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 481 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 480 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 479 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 478 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 477 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:10] [Server thread/ERROR]: [Citizens] ID 476 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 475 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 474 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 473 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 472 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 471 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 470 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 469 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 468 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 467 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 466 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 465 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 464 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 463 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 462 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 461 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 460 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 459 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 458 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 457 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 456 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 455 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 454 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 453 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:11] [Server thread/ERROR]: [Citizens] ID 452 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 451 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 450 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 449 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 448 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 447 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 446 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 445 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 444 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 443 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 442 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 441 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 440 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 439 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 438 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 437 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 436 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 435 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 434 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 433 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 432 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 431 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 430 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 429 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 428 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:12] [Server thread/ERROR]: [Citizens] ID 427 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 426 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 425 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 424 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 423 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 422 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 421 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 420 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 419 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 418 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 417 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 416 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 415 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 414 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 413 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 412 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 411 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 410 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 409 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 408 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 407 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:13] [Server thread/ERROR]: [Citizens] ID 406 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 405 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 404 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 403 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 402 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] 
[14:13:14] [Craft Scheduler Thread - 15 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[14:13:14] [Server thread/ERROR]: [Citizens] ID 401 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 400 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 399 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 398 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 397 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 396 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 395 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 394 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 393 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 392 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 391 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 390 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 389 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 388 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 387 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 386 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 385 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 384 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 383 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 382 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 381 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 380 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 379 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 378 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 377 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 376 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 375 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 374 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 373 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 372 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 371 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 370 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 369 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 368 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:14] [Server thread/ERROR]: [Citizens] ID 367 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 366 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 365 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 364 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 363 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 362 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 361 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 360 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 359 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 358 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 357 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 356 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 355 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 354 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 353 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 352 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 351 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 350 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 349 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 348 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 347 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 346 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 345 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 344 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 343 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 342 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 341 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 340 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 339 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 338 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 337 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 336 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 335 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 334 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 333 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 332 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 331 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 330 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 329 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 328 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 327 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 326 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 325 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 324 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 323 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 322 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 321 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 320 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 319 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 318 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:15] [Server thread/ERROR]: [Citizens] ID 317 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 316 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 315 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 314 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 313 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 312 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 311 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 310 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 309 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 308 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 307 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 306 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 305 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 304 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 303 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 302 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 301 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 300 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 299 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 298 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 297 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 296 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 295 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 294 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 293 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 292 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 291 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 290 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 289 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 288 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 287 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 286 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 285 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 284 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 283 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 282 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 281 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 280 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 279 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:16] [Server thread/ERROR]: [Citizens] ID 278 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 277 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 276 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 275 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 274 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 273 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 272 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 271 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 270 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 269 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 268 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 267 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 266 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 265 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 264 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 263 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 262 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 261 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 260 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 259 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 258 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 257 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 256 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 255 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 254 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 253 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 252 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 251 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 250 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 249 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 248 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 247 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 246 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 245 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 244 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 243 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 242 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 241 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 240 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 239 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 238 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 237 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 236 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 235 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 234 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 233 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 232 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 231 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 230 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 229 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 228 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 227 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:17] [Server thread/ERROR]: [Citizens] ID 226 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 225 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 224 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 223 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 222 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 221 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 220 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 219 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 218 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 217 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 216 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 215 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 214 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 213 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 212 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 211 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 210 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 209 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 208 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 207 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 206 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 205 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 204 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 203 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 202 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 201 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 200 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 199 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 198 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 197 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 196 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 195 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 194 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 193 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 192 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 191 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 190 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 189 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 188 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 187 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 186 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 185 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 184 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 183 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 182 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 181 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 180 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 179 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 178 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 177 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 176 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:18] [Server thread/ERROR]: [Citizens] ID 175 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 174 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 173 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 172 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 171 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 170 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 169 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 168 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 167 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 166 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 165 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 164 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 163 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 162 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 161 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 160 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 159 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 158 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 157 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 156 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 155 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 154 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 153 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 152 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 151 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 150 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 149 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 148 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 147 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 146 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 145 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 144 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 143 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 142 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 141 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 140 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 139 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 138 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 137 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 136 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 135 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:19] [Server thread/ERROR]: [Citizens] ID 134 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 133 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 132 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 131 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 130 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 129 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 128 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 127 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 126 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 125 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 124 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 123 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 122 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 121 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 120 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 119 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 118 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 117 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 116 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 115 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 114 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 113 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 112 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 111 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 110 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 109 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 108 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 107 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 106 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 105 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 104 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 103 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 102 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 101 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 100 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 99 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 98 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 97 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 96 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 95 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 94 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 93 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 92 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 91 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 90 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 89 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 88 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 87 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 86 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 85 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 84 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 83 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 82 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 81 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 80 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 79 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 78 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 77 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 76 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 75 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:20] [Server thread/ERROR]: [Citizens] ID 74 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 73 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 72 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 71 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 70 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 69 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 68 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 67 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 66 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 65 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 64 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 63 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 62 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 61 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 60 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 59 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 58 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 56 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 55 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 54 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 53 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 52 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 51 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 50 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 49 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 48 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 47 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 46 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 45 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 44 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 43 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 42 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 41 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 40 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 39 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 38 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 37 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 36 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 35 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 34 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 33 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 32 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 31 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 30 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 29 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:21] [Server thread/ERROR]: [Citizens] ID 28 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 27 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 26 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 25 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 24 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 23 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 22 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 21 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 20 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 19 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/ERROR]: [Citizens] ID 18 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:22] [Server thread/INFO]: [Citizens] Loaded 517 NPCs.
[14:13:22] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[14:13:22] [Server thread/INFO]: [UpgradeableHoppers] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[14:13:22] [Server thread/INFO]: [UpgradeableHoppers] Successfully added region provider: ProtectionStones Type: SERVER
[14:13:22] [Server thread/INFO]: [UpgradeableHoppers] Successfully added region provider: WorldGuard Type: SERVER
[14:13:22] [Server thread/INFO]: [UpgradeableHoppers] Successful integrated Vault economy into economy system. Name: CMIEconomy
[14:13:22] [Server thread/INFO]: --------------------------------------------------------
[14:13:22] [Server thread/INFO]: 
[14:13:22] [Server thread/INFO]: Thank you for purchasing Auction House, it means a lot
[14:13:22] [Server thread/INFO]:  - Kiran Hart
[14:13:22] [Server thread/INFO]: 
[14:13:22] [Server thread/INFO]: --------------------------------------------------------
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Added hopper provider: UpgradeableHoppers
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: ProtectionStones Type: SERVER
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: WorldGuard Type: SERVER
[14:13:22] [Server thread/INFO]: [UpgradeableSpawners] Successful integrated Vault economy into economy system. Name: CMIEconomy
[14:13:22] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[14:13:22] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[14:13:22] [Server thread/INFO]: [ChestProtect] Successfully added region provider: ProtectionStones Type: SERVER
[14:13:22] [Server thread/INFO]: [ChestProtect] Successfully added region provider: WorldGuard Type: SERVER
[14:13:22] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated provider for block protection checks: UpgradeableHoppers
[14:13:22] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.6.2, you're on: 4.6.0
[14:13:22] [Server thread/INFO]: [Drop2InventoryPlus] You are using the latest version of Drop2InventoryPlus.
[14:13:22] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[14:13:22] [Server thread/INFO]: [HMCCosmetics] +++++++++++++++++++++++++++++++++++
[14:13:22] [Server thread/INFO]: [HMCCosmetics] There is a new update for HMCCosmetics!
[14:13:22] [Server thread/INFO]: [HMCCosmetics] Please download it as soon as possible for possible fixes and new features.
[14:13:22] [Server thread/INFO]: [HMCCosmetics] Current Version 2.2.5 | Latest Version 2.2.6
[14:13:22] [Server thread/INFO]: [HMCCosmetics] Spigot: https://www.spigotmc.org/resources/100107/
[14:13:22] [Server thread/INFO]: [HMCCosmetics] Polymart: https://polymart.org/resource/1879
[14:13:22] [Server thread/INFO]: [HMCCosmetics] +++++++++++++++++++++++++++++++++++
[14:13:22] [Server thread/INFO]: [JetsMinions] skins.yml found, loading!
[14:13:22] [Server thread/INFO]: [JetsMinions] config.yml found, loading!
[14:13:22] [Server thread/INFO]: [JetsMinions] messages.yml found, loading!
[14:13:22] [Server thread/INFO]: [JetsMinions] hooks.yml found, loading!
[14:13:22] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion jetsminions. Identifier is already in use.
[14:13:22] [Server thread/INFO]: [JetsMinions] controlpanel.yml found, loading!
[14:13:22] [Server thread/INFO]: [JetsMinions] store.yml found, loading!
[14:13:23] [Server thread/INFO]: Loading images...
[14:13:23] [Server thread/INFO]: Successfully loaded 0 image(s).
[14:13:23] [Server thread/INFO]: [BannerBoard] Connecting to http://www.skinrender.com:2798/ with key ***********EY_HERE...
[14:13:23] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[14:13:23] [Server thread/INFO]: Done (272.648s)! For help, type "help"
[14:13:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 36217ms or 724 ticks behind
[14:13:23] [Server thread/INFO]: Timings Reset
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Attempt on registering the hologram type.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Hologram input is either invalid or the hologram plugin was not enabled properly.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Attempt on registering the bank type.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Attempt on registering the tnt bank type.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] TNT Bank type is invalid, no bank will be used at this point and all bank features will be disabled.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Attempting to load player datas.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Emptied storages and loaded to stats a size of: 0 player data
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Craft Scheduler Thread - 27 - DeluxeVoidWorld/INFO]: --------------------------------------------------------------------------------------
[14:13:23] [Craft Scheduler Thread - 27 - DeluxeVoidWorld/INFO]: [Deluxe Void World] You have an old version of the Deluxe Void World plugin.
[14:13:23] [Craft Scheduler Thread - 27 - DeluxeVoidWorld/INFO]: [Deluxe Void World] Please download the latest 3.9.19 version.
[14:13:23] [Craft Scheduler Thread - 27 - DeluxeVoidWorld/INFO]: --------------------------------------------------------------------------------------
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Load Data: Data for: _KingOfCoal have been removed.
[14:13:23] [Server thread/INFO]: Player owned: 0 voidchests.
[14:13:23] [Server thread/INFO]: Booster: 1.0, No active booster
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Starting a hook attempt for economy...
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Path was set correctly and economy selected is: Vault, VaultEconomy{name=Vault, version=1.7.3-CMI} attempting to hook now.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Starting a hook attempt for sell mode...
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Path was set correctly and mode selected is: VoidChest attempting to hook now.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] Event details: VoidChestEconomy{name=VoidChest, version=1.10.2}
[14:13:23] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:23] [User Authenticator #0/INFO]: UUID of player _KingOfCoal is a2b1d3fc-9ad5-3bf5-bf6a-cf14d3987833
[14:13:23] [Server thread/INFO]: com.mojang.authlib.GameProfile@17a4935e[id=a2b1d3fc-9ad5-3bf5-bf6a-cf14d3987833,name=_KingOfCoal,properties={textures=[com.mojang.authlib.properties.Property@10123358]},legacy=false] (/179.63.54.47:65301) lost connection: Disconnected
[14:13:23] [Server thread/WARN]: [MCPets] : Impossible to link the despawn skill "WOSLightArmorMechDespawn" to the pet "WOSLightArmorMech", because this skill doesn't exist.
[14:13:25] [Server thread/INFO]: [Deluxe Void World] Successfully enabled v3.8.19
[14:13:25] [Server thread/INFO]: --------------------------------------------------------------------------------------
[14:13:25] [Server thread/INFO]:          Developed by [Ruben_Artz, STN Studios]
[14:13:25] [Server thread/INFO]: [Deluxe Void World] Version: 3.8.19 is loading... (Current)
[14:13:25] [Server thread/INFO]: [Deluxe Void World] Server: git-Paper-448 (MC: 1.19.3)
[14:13:25] [Server thread/INFO]: [Deluxe Void World] Loading necessary files...
[14:13:25] [Server thread/INFO]: 
[14:13:25] [Server thread/INFO]: [Loader] Maps loaded correctly: '9'
[14:13:25] [Server thread/INFO]: 
[14:13:25] [Server thread/INFO]: DeluxeVoidWorld Starting plugin...
[14:13:25] [Server thread/INFO]: 
[14:13:25] [Server thread/INFO]: --------------------------------------------------------------------------------------
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Setting up nations data...
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Done, loaded a total of 0 nations. Took 1ms
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Setting up kingdoms data...
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Done, loaded a total of 0 kingdoms. Took 1ms
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Loading lands data...
[14:13:25] [Craft Scheduler Thread - 69 - Kingdoms/INFO]: [Kingdoms] Done, loaded a total of 0 lands. Took 0ms
[14:13:30] [Server thread/INFO]: [DragonSlayer] Restarting a timer for dragonspawn on: world_the_end
[14:13:30] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy
[14:13:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestprotect [5.8.5]
[14:13:30] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI into chat system.
[14:13:30] [Craft Scheduler Thread - 81 - Kingdoms/INFO]: [KingdomsX] Updating top kingdoms... 0
[14:13:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateautorestart [Build 53]
[14:13:35] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[14:13:35] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[14:13:35] [Server thread/INFO]: [RedeemableCodes] Attempting hooks...
[14:13:35] [Server thread/INFO]: [RedeemableCodes] Hooked into PlaceholderAPI!
[14:13:35] [Server thread/INFO]: [RedeemableCodes] Successfully performed 1 hooks!
[14:13:35] [Server thread/INFO]: [DragonSlayer] Found that the Statue is not where it should be, resetting it!
[14:13:40] [Server thread/ERROR]: [Citizens] ID 209 created with name length greater than 256, truncating Airdrop Tocame para reclamarme to Airdrop Tocame 
[14:13:44] [Server thread/INFO]:  
[14:13:44] [Server thread/INFO]:  [RedeemableCodes] New update available!
[14:13:44] [Server thread/INFO]:  Current version: Build 37b with latest being Build 37c!
[14:13:44] [Server thread/INFO]:  
[14:13:44] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/rc/
[14:13:44] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/rc/
[14:13:44] [Server thread/INFO]:  
[14:13:44] [Craft Scheduler Thread - 137 - AuctionHouse/INFO]: [AuctionHouse] Auto saved auction items & transactions
[14:13:44] [Server thread/INFO]: [VoidChest-1.10.2] Plugin loaded in 67.019 seconds
[14:13:44] [Server thread/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:57] [Thread-54/INFO]:  
[14:13:57] [Thread-54/INFO]:  
[14:13:57] [Thread-54/INFO]:      Debugging... [VoidChest-1.10.2]
[14:13:57] [Thread-54/INFO]: An update is available! VoidChest 1.11.0 may be downloaded on SpigotMC or MC-Market (depending where you've bought it from)
[14:13:57] [Thread-54/INFO]: [VoidChest-1.10.2] End of debugging.
[14:13:57] [Thread-54/INFO]:  
[14:13:57] [Thread-54/INFO]:  
[14:14:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 22060ms or 441 ticks behind