Paste #106015: Unnamed Server Log Paste

Date: 2023/02/05 13:41:54 UTC-08: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


[22:32:52] [ServerMain/INFO]: Building unoptimized datafixer
[22:32:53] [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'
[22:32:54] [ServerMain/INFO]: Loaded 7 recipes
[22:32:55] [Server thread/INFO]: Starting minecraft server version 1.19.3
[22:32:55] [Server thread/INFO]: Loading properties
[22:32:55] [Server thread/INFO]: This server is running Paper version git-Paper-386 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 4da844f)
[22:32:55] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:32:55] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:32:55] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 16 worker threads, and gen parallelism of 16 threads
[22:32:55] [Server thread/INFO]: Default game type: SURVIVAL
[22:32:55] [Server thread/INFO]: Generating keypair
[22:32:55] [Server thread/INFO]: Starting Minecraft server on 31.187.74.125:28965
[22:32:55] [Server thread/INFO]: Using epoll channel type
[22:32:55] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[22:32:55] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[22:32:55] [Server thread/ERROR]: Could not load 'plugins/openaudiomc-6.7.7.jar' in folder 'plugins'
org.bukkit.plugin.InvalidDescriptionException: Invalid plugin.yml
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:187) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:157) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.util.zip.ZipException: zip END header not found
    at java.util.zip.ZipFile$Source.findEND(ZipFile.java:1469) ~[?:?]
    at java.util.zip.ZipFile$Source.initCEN(ZipFile.java:1477) ~[?:?]
    at java.util.zip.ZipFile$Source.<init>(ZipFile.java:1315) ~[?:?]
    at java.util.zip.ZipFile$Source.get(ZipFile.java:1277) ~[?:?]
    at java.util.zip.ZipFile$CleanableResource.<init>(ZipFile.java:709) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:243) ~[?:?]
    at java.util.zip.ZipFile.<init>(ZipFile.java:172) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:347) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:318) ~[?:?]
    at java.util.jar.JarFile.<init>(JarFile.java:284) ~[?:?]
    at org.bukkit.plugin.java.JavaPluginLoader.getPluginDescription(JavaPluginLoader.java:175) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 6 more
[22:32:55] [Server thread/ERROR]: Could not load 'plugins/advancedregionmarket-3.4.3.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [WorldGuard]. Please download and install these plugins to run 'AdvancedRegionMarket'.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:289) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:32:56] [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!
[22:33:00] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[22:33:00] [Server thread/ERROR]: Could not load 'plugins/WorldGuardExtraFlags.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [WorldGuard]. Please download and install these plugins to run 'WorldGuardExtraFlags'.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:289) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:33:00] [Server thread/ERROR]: Could not load 'plugins/RegionClaimPlus-1.1.7.jar' in folder 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [WorldGuard]. Please download and install these plugins to run 'RegionClaimPlus'.
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:289) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:33:00] [Server thread/INFO]: [NexEngine] Loading 1 libraries... please wait
[22:33:00] [Server thread/INFO]: [NexEngine] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[22:33:00] [Server thread/INFO]: [NexEngine] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loading 1 libraries... please wait
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[22:33:00] [Server thread/INFO]: [VotingPlugin] Loaded library /home/sid_4449838/minecraft_paper_119/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[22:33:00] [Server thread/WARN]: Legacy plugin CustomHeads v3.0.7 does not specify an api-version.
[22:33:00] [Server thread/ERROR]: Could not load 'plugins/images-2.2.7.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.ExceptionInInitializerError
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:158) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugin(SimplePluginManager.java:413) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.loadPlugins(SimplePluginManager.java:321) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.loadPlugins(CraftServer.java:436) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ExceptionInInitializerError
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:71) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:154) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 7 more
Caused by: java.lang.UnsupportedOperationException: Class class com.andavin.images.PacketListener is not currently supported for version v1_19_R2
    at com.andavin.images.Versioned.getInstance(Versioned.java:60) ~[images-2.2.7.jar:?]
    at com.andavin.images.Images.<clinit>(Images.java:97) ~[images-2.2.7.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:467) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:71) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.loadPlugin(JavaPluginLoader.java:154) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 7 more
[22:33:00] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[22:33:00] [Server thread/INFO]: [VoidWorld] Loading VoidWorld v1.0
[22:33:00] [Server thread/INFO]: [CommandToItem] Loading CommandToItem v${version}
[22:33:00] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1
[22:33:00] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1 is now loaded, injecting!
[22:33:01] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[22:33:01] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[22:33:01] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[22:33:01] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[22:33:01] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[22:33:01] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[22:33:01] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[22:33:01] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[22:33:01] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[22:33:01] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[22:33:01] [Server thread/INFO]: [CombatPlus] Loading CombatPlus v1.6.5
[22:33:01] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.52
[22:33:01] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:33:01] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.2.2
[22:33:01] [Server thread/INFO]: [UnsignedMessages] Loading UnsignedMessages v1.0.0
[22:33:01] [Server thread/INFO]: [UnsignedMessages] Detected server version: 1.19.3
[22:33:01] [Server thread/INFO]: [NocsyItems] Loading NocsyItems v2.0
[22:33:01] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[22:33:01] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[22:33:01] [Server thread/INFO]: [LoneLibs] Loading LoneLibs v1.0.23
[22:33:01] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b607
[22:33:02] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.12-Release
[22:33:02] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[22:33:02] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[22:33:02] [Server thread/INFO]: [ColoredAnvils] Loading ColoredAnvils v2.0.0
[22:33:02] [Server thread/INFO]: [FreedomOfSpeech] Loading FreedomOfSpeech v1.0.0
[22:33:02] [Server thread/INFO]: [EpicRename] Loading EpicRename v3.11.1
[22:33:02] [Server thread/INFO]: [Brewery] Loading Brewery v3.1.1
[22:33:02] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.7 build-17/11/2022
[22:33:02] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.14-SNAPSHOT+6290-474c191
[22:33:02] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@3cf64274]
[22:33:02] [Server thread/INFO]: [Skript] Loading Skript v2.6.4
[22:33:02] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.11
[22:33:02] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[22:33:02] [Server thread/INFO]: [SimpleClans] Loading SimpleClans v2.18.1-43da5bd
[22:33:02] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2901)
[22:33:02] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v6.11
[22:33:02] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.1.6
[22:33:02] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.6
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[22:33:03] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[22:33:03] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.19.7
[22:33:03] [Server thread/INFO]: [TAB] Loading TAB v3.2.4
[22:33:03] [Server thread/INFO]: [CustomCrates] Loading CustomCrates v5.0.4
[22:33:03] [Server thread/INFO]: [ExcellentEnchants] Loading ExcellentEnchants v3.2.7
[22:33:03] [Server thread/INFO]: [JumpPads] Loading JumpPads v1.25.13
[22:33:03] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v6.10.9-Premium
[22:33:03] [Server thread/INFO]: [CustomHeads] Loading CustomHeads v3.0.7
[22:33:03] [Server thread/INFO]: [GSit] Loading GSit v1.3.6
[22:33:03] [Server thread/INFO]: [ServerSigns] Loading ServerSigns v4.8.0
[22:33:03] [Server thread/INFO]: [Essentials_WarpGUI] Loading Essentials_WarpGUI v2.5
[22:33:03] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[22:33:03] [Server thread/INFO]: [Multiverse-Portals] Loading Multiverse-Portals v4.2.1-b834
[22:33:03] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.2.1-fd1d0777
[22:33:03] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[22:33:03] [Server thread/INFO]: [Multiverse-SignPortals] Loading Multiverse-SignPortals v4.2.0-b762
[22:33:03] [Server thread/INFO]: [Duels] Loading Duels v3.5.3-SNAPSHOT
[22:33:03] [Server thread/INFO]: [BetterRTP] Loading BetterRTP v3.6.1
[22:33:03] [Server thread/INFO]: [MythicDungeons] Loading MythicDungeons v1.1.1
[22:33:03] [Server thread/INFO]: [UltimateShops] Loading UltimateShops v2.2
[22:33:03] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR3.1.4
[22:33:03] [Server thread/INFO]: [ItemsAdder] Loading ItemsAdder v3.3.1
[22:33:03] [Server thread/INFO]: [MCPets] Loading MCPets v3.0.2
[22:33:03] [Server thread/WARN]: [MCPets] : WorldGuard could not be found. Flags won't be available.
[22:33:03] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:33:03] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[22:33:03] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.52
[22:33:03] [Server thread/INFO]:         __    
[22:33:03] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.52
[22:33:03] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[22:33:03] [Server thread/INFO]: 
[22:33:03] [Server thread/INFO]: [LuckPerms] Loading configuration...
[22:33:04] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[22:33:04] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[22:33:05] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[22:33:05] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2094ms)
[22:33:05] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.23
[22:33:05] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b607
[22:33:05] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:33:05] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend or softdepend of this plugin.
[22:33:05] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:33:05] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:33:05] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:33:05] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[22:33:05] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.7 build-17/11/2022
[22:33:05] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant su.nexmedia.engine.Version.V1_19_R2
[22:33:05] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:273)
[22:33:05] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.Version.valueOf(Version.java:6)
[22:33:05] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.Version.<clinit>(Version.java:19)
[22:33:05] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.NexEngine.setupNMS(NexEngine.java:80)
[22:33:05] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.NexEngine.loadCore(NexEngine.java:57)
[22:33:05] [Server thread/WARN]:     at NexEngine.jar//su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:69)
[22:33:05] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[22:33:05] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[22:33:05] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[22:33:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[22:33:05] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[22:33:05] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
[22:33:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:33:05] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:33:05] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:33:05] [Server thread/ERROR]: Error occurred while enabling NexEngine v2.2.7 build-17/11/2022 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at su.nexmedia.engine.NexEngine.setupNMS(NexEngine.java:80) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexEngine.loadCore(NexEngine.java:57) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:69) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: No enum constant su.nexmedia.engine.Version.V1_19_R2
    at java.lang.Enum.valueOf(Enum.java:273) ~[?:?]
    at su.nexmedia.engine.Version.valueOf(Version.java:6) ~[NexEngine.jar:?]
    at su.nexmedia.engine.Version.<clinit>(Version.java:19) ~[NexEngine.jar:?]
    ... 12 more
[22:33:05] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.7 build-17/11/2022
[22:33:05] [Server thread/ERROR]: Error occurred while disabling NexEngine v2.2.7 build-17/11/2022 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "su.nexmedia.engine.hooks.external.citizens.CitizensHook.traits" is null
    at su.nexmedia.engine.hooks.external.citizens.CitizensHook.unregisterTraits(CitizensHook.java:82) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:232) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:33:05] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.14-SNAPSHOT+6290-474c191
[22:33:05] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[22:33:05] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[22:33:05] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R2.PaperweightAdapter as the Bukkit adapter
[22:33:06] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v3.2.7
[22:33:06] [Server thread/INFO]: [ExcellentEnchants] Powered by: NexEngine
[22:33:06] [Server thread/ERROR]: Error occurred while enabling ExcellentEnchants v3.2.7 (Is it up to date?)
java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:185) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:33:06] [Server thread/INFO]: [ExcellentEnchants] Disabling ExcellentEnchants v3.2.7
[22:33:06] [Server thread/ERROR]: Error occurred while disabling ExcellentEnchants v3.2.7 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "java.util.Map.getOrDefault(Object, Object)" because "su.nexmedia.engine.hooks.external.citizens.CitizensHook.traits" is null
    at su.nexmedia.engine.hooks.external.citizens.CitizensHook.unregisterTraits(CitizensHook.java:82) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:232) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:274) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[22:33:06] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v6.10.9-Premium
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[22:33:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 1683427
[22:33:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[22:33:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: 116925896
[22:33:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[22:33:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:33:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:33:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:33:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #22(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:33:07] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 10 UUIDs will be cached
[22:33:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plotsquared [3]
[22:33:07] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[22:33:07] [Server thread/INFO]: Preparing level "world"
[22:33:07] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[22:33:07] [Server thread/INFO]: Time elapsed: 93 ms
[22:33:07] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[22:33:07] [Server thread/INFO]: Time elapsed: 33 ms
[22:33:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[22:33:07] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1 which is not a depend or softdepend of this plugin.
[22:33:07] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:33:07] [Server thread/INFO]: [CommandToItem] Enabling CommandToItem v${version}
[22:33:07] [Server thread/INFO]: [CommandToItem] Your server is running version v1_19_R2.
[22:33:07] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1
[22:33:07] [Server thread/INFO]: [CombatPlus] Enabling CombatPlus v1.6.5
[22:33:08] [Server thread/INFO]:  
[22:33:08] [Server thread/INFO]: Combat Plus v1.6.5
[22:33:08] [Server thread/INFO]:  
[22:33:08] [Server thread/INFO]:   Author: Nik
[22:33:08] [Server thread/INFO]:  
[22:33:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: combatplus [1.6.5]
[22:33:08] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[22:33:08] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[22:33:08] [Server thread/INFO]: [ClearLag] Loading modules...
[22:33:08] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (net.minecraft.server.v1_19_R2.MinecraftServer)
[22:33:08] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[22:33:08] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[22:33:08] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[22:33:08] [Thread-25/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.19]...
[22:33:08] [Server thread/INFO]: [UnsignedMessages] Enabling UnsignedMessages v1.0.0
[22:33:08] [Server thread/INFO]: [UnsignedMessages] Format: blank
[22:33:08] [Server thread/INFO]: [NocsyItems] Enabling NocsyItems v2.0
[22:33:08] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[22:33:08] [Server thread/INFO]: [BuycraftX] Validating your server key...
[22:33:08] [Thread-25/INFO]: [ClearLag] No updates found!
[22:33:08] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[22:33:08] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[22:33:08] [Server thread/INFO]: [Votifier] Loaded token for website: default
[22:33:09] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[22:33:09] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[22:33:09] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.12-Release
[22:33:09] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[22:33:09] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /31.187.74.125:8192.
[22:33:09] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[22:33:09] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[22:33:09] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[22:33:09] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[22:33:09] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[22:33:09] [Server thread/INFO]: [Minepacks] Loading item translations ...
[22:33:09] [Server thread/INFO]: [Minepacks] Finished loading item translations for 828 items.
[22:33:09] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[22:33:09] [Server thread/INFO]: [ColoredAnvils] Enabling ColoredAnvils v2.0.0
[22:33:09] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v2.0.0 has been enabled!
[22:33:09] [Server thread/INFO]: [ColoredAnvils] git-Paper-386 (MC: 1.19.3)   1.19.3-R0.1-SNAPSHOT
[22:33:09] [Server thread/INFO]: [FreedomOfSpeech] Enabling FreedomOfSpeech v1.0.0
[22:33:09] [Server thread/INFO]: FreedomOfSpeech plugin loaded.
[22:33:09] [Server thread/WARN]: [FreedomOfSpeech] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend or softdepend of this plugin.
[22:33:09] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11.1
[22:33:09] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[22:33:09] [Server thread/INFO]: [EpicRename] Version: 3.11.1 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[22:33:09] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[22:33:09] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[22:33:09] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[22:33:09] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[22:33:09] [Server thread/INFO]: [Brewery] Enabling Brewery v3.1.1
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: ex: Unknown Material: ex-item
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: No ingredients for: Example
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: Loading the Recipe with id: 'ex' failed!
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: gin: Unknown Material: blue-flowers
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: No ingredients for: Gin
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: Loading the Recipe with id: 'gin' failed!
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: bl_flow: Unknown Material: blue-flowers
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: No ingredients for Cauldron-Recipe: Blueish brew
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: Loading the Cauldron-Recipe with id: 'bl_flow' failed!
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: juniper: Unknown Material: blue-flowers
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: No ingredients for Cauldron-Recipe: Juniper brew
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: Loading the Cauldron-Recipe with id: 'juniper' failed!
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: gin_base: Unknown Material: blue-flowers
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: No ingredients for Cauldron-Recipe: Fruity juniper brew
[22:33:09] [Server thread/INFO]: [Brewery] ERROR: Loading the Cauldron-Recipe with id: 'gin_base' failed!
[22:33:09] [Server thread/INFO]: [Brewery] Brewery enabled!
[22:33:09] [Server thread/INFO]: [Skript] Enabling Skript v2.6.4
[22:33:09] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] You're currently running the latest stable version of Skript.
[22:33:13] [Server thread/INFO]: [Skript] Loaded 153613 aliases in 4055ms
[22:33:14] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[22:33:14] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.11
[22:33:14] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[22:33:14] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[22:33:14] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[22:33:14] [Server thread/WARN]: [Essentials] Version mismatch! Please update Essentials_WarpGUI to the same version.
[22:33:14] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[22:33:14] [Server thread/INFO]: [Essentials] No kits found to migrate.
[22:33:14] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[22:33:14] [Server thread/INFO]: [Essentials] Using locale en_US
[22:33:14] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:33:14] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:33:14] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:33:14] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[22:33:14] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.18.1-43da5bd
[22:33:14] [Server thread/INFO]: [SimpleClans] SQLite Connection successful
[22:33:14] [Server thread/INFO]: [SimpleClans] Clans: 1
[22:33:14] [Server thread/INFO]: [SimpleClans] Clan players: 6
[22:33:14] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[22:33:14] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[22:33:14] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[22:33:14] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[22:33:15] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[22:33:15] [Server thread/INFO]: [SimpleClans] Registering 18 command completions...
[22:33:15] [Server thread/INFO]: [SimpleClans] Multithreading: true
[22:33:15] [Server thread/INFO]: [SimpleClans] BungeeCord: false
[22:33:15] [Server thread/INFO]: [SimpleClans] HEX support: true
[22:33:15] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[22:33:15] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[22:33:15] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[22:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: simpleclans [2.18.1-43da5bd]
[22:33:15] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2901)
[22:33:15] [Server thread/INFO]: [Citizens] Loading external libraries
[22:33:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[22:33:15] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[22:33:15] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.11
[22:33:16] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[22:33:16] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.11
[22:33:16] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from https://minecraftservers.org, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[22:33:16] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from https://Minecraft-Server.eu, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[22:33:16] [Server thread/WARN]: [VotingPlugin] No vote has been recieved from https://minecraft-mp.com, may be an invalid service site. Please read: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[22:33:16] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.6
[22:33:16] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[22:33:16] [Server thread/ERROR]: Error occurred while enabling ExcellentCrates v4.1.6 (Is it up to date?)
java.lang.NoClassDefFoundError: su/nexmedia/engine/hooks/Hooks
    at su.nightexpress.excellentcrates.ExcellentCrates.registerHooks(ExcellentCrates.java:105) ~[ExcellentCrates-4.1.6.jar:?]
    at su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:182) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: su.nexmedia.engine.hooks.Hooks
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 14 more
[22:33:16] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.6
[22:33:16] [Server thread/ERROR]: Error occurred while disabling ExcellentCrates v4.1.6 (Is it up to date?)
java.lang.NoClassDefFoundError: su/nexmedia/engine/hooks/Hooks
    at su.nightexpress.excellentcrates.ExcellentCrates.disable(ExcellentCrates.java:85) ~[ExcellentCrates-4.1.6.jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:225) ~[NexEngine.jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-386]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-386]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-386]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: su.nexmedia.engine.hooks.Hooks
    ... 16 more
[22:33:16] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.6
[22:33:16] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[22:33:16] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[22:33:16] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[22:33:16] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[22:33:16] [Server thread/INFO]: [ajLeaderboards] Loaded 2 boards
[22:33:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.6]
[22:33:16] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[22:33:16] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[22:33:16] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.6 by ajgeiss0702 enabled!
[22:33:16] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.19.7
[22:33:16] [Server thread/INFO]: [EssentialsChat] Secure signed chat and previews are enabled.
[22:33:16] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[22:33:16] [Server thread/INFO]: [TAB] Enabling TAB v3.2.4
[22:33:16] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[22:33:16] [Server thread/INFO]: [TAB] Loaded NMS hook in 20ms
[22:33:17] [Server thread/INFO]: [TAB] Enabled in 50ms
[22:33:17] [Server thread/INFO]: [CustomCrates] Enabling CustomCrates v5.0.4
[22:33:17] [Server thread/INFO]: [CustomCrates] Loading Language: language_en.yml
[22:33:17] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Version Detected: UNKNOWN
[22:33:17] [Server thread/INFO]: [CustomCrates] [EnchantmentLib] Using latest enchantment api
[22:33:17] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.25.13
[22:33:17] [Server thread/INFO]: [CustomHeads] Enabling CustomHeads v3.0.7*
[22:33:17] [Server thread/INFO]: [CustomHeads] Using LATEST as Version Handler
[22:33:17] [Server thread/INFO]: [CustomHeads] Warning : Hrm. Seems like CustomHeads wasn't tested on this Minecraft Version (v1_19_R2) yet...
[22:33:17] [Server thread/INFO]: [CustomHeads] Warning : Feel free to join my Discord to know when it gets updated
[22:33:17] [pool-24-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[22:33:17] [pool-24-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[22:33:17] [pool-24-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[22:33:17] [Server thread/INFO]: [GSit] Enabling GSit v1.3.6
[22:33:17] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[22:33:17] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[22:33:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.3.6]
[22:33:17] [Server thread/INFO]: [GSit] Link with PlotSquared successful!
[22:33:17] [Server thread/INFO]: [ServerSigns] Enabling ServerSigns v4.8.0
[22:33:17] [Server thread/INFO]: [ServerSigns] Version 4.8.0 is now enabled.
[22:33:17] [Server thread/INFO]: [Essentials_WarpGUI] Enabling Essentials_WarpGUI v2.5
[22:33:17] [Server thread/WARN]: java.lang.IllegalStateException: Unable to parse version number (1)
[22:33:17] [Server thread/WARN]:     at WarpGUI.jar//de.marcely.warpgui.version.Version.fetchVersion(Version.java:103)
[22:33:17] [Server thread/WARN]:     at WarpGUI.jar//de.marcely.warpgui.version.Version.init(Version.java:62)
[22:33:17] [Server thread/WARN]:     at WarpGUI.jar//de.marcely.warpgui.EssentialsWarpGUI.onEnable(EssentialsWarpGUI.java:41)
[22:33:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[22:33:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[22:33:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[22:33:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[22:33:17] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[22:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[22:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[22:33:17] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[22:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[22:33:17] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[22:33:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:33:17] [Server thread/WARN]: [Essentials_WarpGUI] IMPORTANT: We weren't able to fetch your plugin version from the strings: "1.19.3-R0.1-SNAPSHOT" and "git-Paper-386 (MC: 1.19.3)"
[22:33:17] [Server thread/WARN]: [Essentials_WarpGUI] We'll use the latest supported version (R2_18) for now.
[22:33:17] [Server thread/INFO]: [Essentials_WarpGUI] Loading library 'Vault'...
[22:33:17] [Server thread/INFO]: [Essentials_WarpGUI] Loading library 'Essentials'...
[22:33:17] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[22:33:17] [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--].
[22:33:17] [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.
[22:33:18] [Server thread/INFO]: Preparing start region for dimension minecraft:dungeons
[22:33:18] [Server thread/INFO]: Time elapsed: 222 ms
[22:33:18] [Server thread/INFO]: Preparing start region for dimension minecraft:worldconnect
[22:33:18] [Server thread/INFO]: Time elapsed: 351 ms
[22:33:19] [Server thread/INFO]: Preparing start region for dimension minecraft:clanworld
[22:33:19] [Server thread/INFO]: Time elapsed: 84 ms
[22:33:19] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: elecdungeon
[22:33:19] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[22:33:19] [Server thread/INFO]: Preparing start region for dimension minecraft:nethertest
[22:33:19] [Server thread/INFO]: Time elapsed: 197 ms
[22:33:19] [Server thread/INFO]: Preparing start region for dimension minecraft:farmworld
[22:33:19] [Server thread/INFO]: Time elapsed: 86 ms
[22:33:19] [Server thread/INFO]: Preparing start region for dimension minecraft:valiv2
[22:33:19] [Server thread/INFO]: Time elapsed: 37 ms
[22:33:20] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'OtherPlotWorld'
[22:33:20] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[22:33:20] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[22:33:20] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[22:33:20] [Server thread/INFO]: [P2] Area flags: []
[22:33:20] [Server thread/INFO]: [P2] Road flags: []
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name OtherPlotWorld
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic_height = -1
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 64
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 64
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 64
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 64
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = dirt
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = grass_block
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = smooth_quartz_slab
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = smooth_stone_slab
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = dirt
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = quartz_bricks
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 8
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[22:33:20] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 50
[22:33:20] [Server thread/INFO]: Preparing start region for dimension minecraft:otherplotworld
[22:33:20] [Server thread/INFO]: Time elapsed: 224 ms
[22:33:20] [Server thread/INFO]: Preparing start region for dimension minecraft:mall
[22:33:20] [Server thread/INFO]: Time elapsed: 58 ms
[22:33:21] [Server thread/INFO]: Preparing start region for dimension minecraft:pbspawn1
[22:33:21] [Server thread/INFO]: Time elapsed: 37 ms
[22:33:21] [Server thread/INFO]: Preparing start region for dimension minecraft:pbspawn
[22:33:21] [Server thread/INFO]: Time elapsed: 69 ms
[22:33:21] [Server thread/INFO]: Preparing start region for dimension minecraft:pvparena
[22:33:21] [Server thread/INFO]: Time elapsed: 102 ms
[22:33:21] [Server thread/INFO]: Preparing start region for dimension minecraft:pvpworld
[22:33:21] [Server thread/INFO]: Time elapsed: 82 ms
[22:33:21] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: forestdungeon
[22:33:21] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[22:33:21] [Server thread/INFO]: Preparing start region for dimension minecraft:forestdungon
[22:33:22] [Server thread/INFO]: Time elapsed: 326 ms
[22:33:22] [Server thread/INFO]: [Multiverse-Core] 15 - World(s) loaded.
[22:33:22] [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.
[22:33:22] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[22:33:22] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.1-b834
[22:33:23] [Server thread/INFO]: [Multiverse-Portals] 47 - Portals(s) loaded
[22:33:23] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[22:33:23] [Server thread/INFO]: [Multiverse-Portals 4.2.1-b834]  Enabled - By Rigby and fernferret
[22:33:23] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.2.1-fd1d0777
[22:33:23] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.19.3)...
[22:33:23] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[22:33:23] [Server thread/WARN]: [MythicMobs] Loaded class org.slf4j.impl.StaticLoggerBinder from VotingPlugin v6.11 which is not a depend or softdepend of this plugin.
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 58 ms to scan 1 urls, producing 3 keys and 21 values 
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 28 ms to scan 1 urls, producing 6 keys and 101 values 
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 105 ms to scan 115 urls, producing 0 keys and 0 values 
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 7 ms to scan 1 urls, producing 3 keys and 36 values 
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 8 ms to scan 1 urls, producing 4 keys and 14 values 
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 8 ms to scan 1 urls, producing 4 keys and 14 values 
[22:33:23] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[22:33:23] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[22:33:23] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[22:33:23] [Server thread/INFO]: [MythicMobs] Base directory /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/SavedData
[22:33:23] [Server thread/INFO]: [MythicMobs] Module directory /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/SavedData/worlds
[22:33:23] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 19 ms to scan 1 urls, producing 11 keys and 445 values 
[22:33:24] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 71 ms to scan 1 urls, producing 29 keys and 885 values 
[22:33:24] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 37 ms to scan 1 urls, producing 9 keys and 152 values 
[22:33:24] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 18 ms to scan 1 urls, producing 2 keys and 11 values 
[22:33:24] [Server thread/INFO]: [MythicMobs] LOADED
[22:33:24] [Server thread/INFO]: [MythicMobs] Loading Packs...
[22:33:24] [Server thread/INFO]: [MythicMobs] PACK /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Packs/Nocsy/packinfo.yml
[22:33:24] [Server thread/INFO]: [MythicMobs] PACK /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Packs/em_v1forgottenTerrors/packinfo.yml
[22:33:24] [Server thread/INFO]: [MythicMobs] Loading Items...
[22:33:24] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[22:33:24] [Server thread/INFO]: [MythicMobs] Loading Skills...
[22:33:26] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[22:33:26] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[22:33:26] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[22:33:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Skill: oniCHILL | File: /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Skills/littleroom/yokai.yml
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill oniGETDOWN
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=oniGETDOWN}
[22:33:26] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Mob: cupid | File: Unknown
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill cupidvolley50
[22:33:26] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=cupidvolley50;sync=true}
[22:33:26] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=2}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:33:26] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=3}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 108 mobs.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1052 skills.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 40 mythic items.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 drop tables.
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[22:33:26] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[22:33:26] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[22:33:26] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.2.1 ( build fd1d0777 ) has been successfully loaded!
[22:33:26] [Server thread/INFO]: [Multiverse-SignPortals] Enabling Multiverse-SignPortals v4.2.0-b762
[22:33:26] [Server thread/INFO]: [Multiverse-SignPortals 4.2.0-b762]  Enabled - By Rigby and fernferret
[22:33:26] [Server thread/INFO]: [Duels] Enabling Duels v3.5.3-SNAPSHOT
[22:33:26] [Server thread/INFO]: [Duels] Successfully hooked into 'Essentials'!
[22:33:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels [1.0]
[22:33:26] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[22:33:26] [Server thread/INFO]: [Duels] Successfully hooked into 'SimpleClans'!
[22:33:26] [Server thread/INFO]: [Duels] Using Economy Provider: com.earth2me.essentials.economy.vault.VaultEconomyProvider
[22:33:26] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[22:33:26] [Server thread/INFO]: [Duels] KitManagerImpl: Loaded 0 kit(s).
[22:33:26] [Server thread/INFO]: [Duels] ArenaManagerImpl: Loaded 6 arena(s).
[22:33:26] [Server thread/INFO]: [Duels] QueueManager: Loaded 7 queue(s).
[22:33:26] [Server thread/INFO]: [Duels] QueueSignManagerImpl: Loaded 6 queue sign(s).
[22:33:26] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.1
[22:33:26] [Server thread/ERROR]: [BetterRTP] The particle 'EXPLOSION_NORMAL' created a fatal error when loading particles! Your MC version isn't supported!
[22:33:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.1]
[22:33:26] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.1.1
[22:33:26] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[22:33:26] [Server thread/INFO]: [MythicDungeons] [STDOUT] DungeonParties plugin found! Enabled party support.
[22:33:26] [Server thread/WARN]: Nag author(s): '[MarcatoSound]' of 'MythicDungeons' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[22:33:26] [Server thread/INFO]: [MythicDungeons] [STDOUT] MythicMobs plugin found! Enabled MythicMobs support.
[22:33:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.1.1]
[22:33:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 51 ms to scan 1 urls, producing 11 keys and 137 values
[22:33:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 9 ms to scan 1 urls, producing 7 keys and 58 values
[22:33:27] [Server thread/INFO]: [org.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 5 keys and 20 values
[22:33:27] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 28 functions.
[22:33:27] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 12 triggers.
[22:33:27] [Server thread/INFO]: [MythicDungeons] [STDOUT] * Loaded 4 conditions.
[22:33:27] [Server thread/INFO]: [MythicDungeons] [STDOUT] GUI menus initialized!
[22:33:27] [Server thread/INFO]: [MythicDungeons] [STDOUT] Mythic Dungeons v1.1.1 initialized! Happy dungeon-ing!
[22:33:27] [Server thread/INFO]: [UltimateShops] Enabling UltimateShops v2.2
[22:33:27] [Server thread/WARN]: [UltimateShops] Loaded class me.minebuilders.clearlag.events.EntityRemoveEvent from ClearLag v3.2.2 which is not a depend or softdepend of this plugin.
[22:33:27] [Server thread/INFO]: [UltimateShops] UltimateShops V: 2.2 has been enabled
[22:33:27] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR3.1.4
[22:33:28] [Server thread/INFO]: [MythicMobs] Model Engine Compatibility Loaded.
[22:33:28] [Server thread/INFO]: [ModelEngine] Compatibility applied: MythicMobs
[22:33:28] [Server thread/INFO]: [ModelEngine] Compatibility applied: Citizens
[22:33:28] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.3.1
[22:33:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[22:33:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[22:33:28] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[22:33:28] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.3.1
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.23
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-386 (MC: 1.19.3)
                                               
[22:33:28] [Server thread/INFO]: [ItemsAdder] LightAPI not installed, please install it to see blocks emitting light: https://a.devs.beer/lightapi-new
[22:33:28] [Server thread/INFO]: [ItemsAdder] Registered Skript API
[22:33:28] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[22:33:28] [Server thread/INFO]: [MCPets] Enabling MCPets v3.0.2
[22:33:28] [Server thread/INFO]: [MCPets] : Language file reloaded.
[22:33:28] [Server thread/INFO]: [MCPets] : Blacklist file reloaded.
[22:33:28] [Server thread/INFO]: Loading pets... 
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-Orange loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-White loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-White loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-Yellow loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-Black loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-Green loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-Orange loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-Black loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Fire loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Fire loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Night loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Dark loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Dark loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Volcanic loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Poison loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Water loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Forest loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Volcanic loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Cloud loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Water loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Cloud loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin-Night loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Poison loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Drakonin_Baby-Forest loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-Blue loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_Yokibird-Blue loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-Yellow loaded succesfully.
[22:33:28] [Server thread/INFO]:   - Nocsy_YokibirdBaby-Green loaded succesfully.
[22:33:28] [Server thread/INFO]: [MCPets] : 28 pets registered successfully !
[22:33:28] [Server thread/INFO]: [MCPets] : 0 categories registered successfully !
[22:33:28] [Server thread/WARN]: [MCPets] Loaded class us.ajg0702.leaderboards.libs.h2.Driver from ajLeaderboards v2.6.6 which is not a depend or softdepend of this plugin.
[22:33:28] [Server thread/ERROR]: [MCPets] Could not reach SQL database. Please configure your database parameters.
[22:33:28] [Server thread/ERROR]: [MCPets] [Database] Can't initialize MySQL.
[22:33:28] [Server thread/ERROR]: [MCPets] [Database] Will be using YAML support instead.
[22:33:28] [Server thread/INFO]: -=-=-=-= MCPets loaded =-=-=-=-
[22:33:28] [Server thread/INFO]:       Plugin made by Nocsy
[22:33:28] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[22:33:28] [Server thread/INFO]: -=- Launching Flags -=-
[22:33:28] [Server thread/INFO]: 0 flags launched.
[22:33:28] [Server thread/WARN]: Could not register alias key because it contains commands that do not exist: ecrates key show
[22:33:29] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:33:29] [Server thread/INFO]: Starting GS4 status listener
[22:33:29] [Server thread/INFO]: Thread Query Listener started
[22:33:29] [Query Listener #1/INFO]: Query running on 31.187.74.125:28965
[22:33:29] [Server thread/INFO]: Running delayed init tasks
[22:33:29] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loading animations...
[22:33:29] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[22:33:29] [Craft Scheduler Thread - 4 - Brewery/INFO]: [Brewery] Background data loading complete.
[22:33:29] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Fetching version information...
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: org.bukkit.configuration.InvalidConfigurationException: while scanning a simple key
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:  in 'reader', line 4, column 1:
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     -'&c-&6-&e-&a-&9-&b-&5-&c-&6-&e- ... 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     ^
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: could not find expected ':'
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:  in 'reader', line 5, column 1:
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     -'&9-&c-&6-&e-&a-&9-&b-&5-&c-&6- ... 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     ^
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:106)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:128)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at DecentHolograms-2.7.11.jar//eu.decentsoftware.holograms.api.utils.config.FileConfig.reload(FileConfig.java:103)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at DecentHolograms-2.7.11.jar//eu.decentsoftware.holograms.api.utils.config.FileConfig.<init>(FileConfig.java:45)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at DecentHolograms-2.7.11.jar//eu.decentsoftware.holograms.api.animations.custom.CustomTextAnimation.fromFile(CustomTextAnimation.java:36)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at DecentHolograms-2.7.11.jar//eu.decentsoftware.holograms.api.animations.AnimationManager.loadCustomAnimations(AnimationManager.java:120)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: Caused by: while scanning a simple key
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:  in 'reader', line 4, column 1:
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     -'&c-&6-&e-&a-&9-&b-&5-&c-&6-&e- ... 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     ^
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: could not find expected ':'
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:  in 'reader', line 5, column 1:
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     -'&9-&c-&6-&e-&a-&9-&b-&5-&c-&6- ... 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     ^
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]: 
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.stalePossibleSimpleKeys(ScannerImpl.java:527)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.needMoreTokens(ScannerImpl.java:332)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:262)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:694)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:185)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:239)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:208)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeKeyNode(Composer.java:347)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:332)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:311)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:212)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:134)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:160)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.yaml.snakeyaml.Yaml.compose(Yaml.java:559)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:104)
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/WARN]:     ... 12 more
[22:33:29] [Craft Scheduler Thread - 13 - DecentHolograms/INFO]: [DecentHolograms] Loaded 1 animations!
[22:33:29] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[22:33:29] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[22:33:29] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[22:33:29] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[22:33:29] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 19 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: playBalance (18377)
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [Importing models]
[22:33:29] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] Checking for Updates ... 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing Wuk.bbmodel.
[22:33:29] [Craft Scheduler Thread - 5 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[22:33:29] [Craft Scheduler Thread - 11 - DecentHolograms/INFO]: [DecentHolograms] Loaded 49 holograms!
[22:33:29] [Craft Scheduler Thread - 26 - Vault/INFO]: [Vault] No new version available
[22:33:29] [Craft Scheduler Thread - 18 - Duels/INFO]: [Duels] No updates were available. You are on the latest version!
[22:33:29] [Server thread/INFO]: [Skript] Loading variables...
[22:33:29] [Server thread/INFO]: [Skript] Loaded 3 variables in 0.0 seconds
[22:33:29] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[22:33:29] [Server thread/INFO]: [Skript] No scripts were found, maybe you should write some ;)
[22:33:29] [Server thread/INFO]: [Skript] Finished loading.
[22:33:29] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing circular_branch.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_32.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64.bbmodel.
[22:33:29] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64_projectile.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64_splash.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64a.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64b.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64c.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_64d.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing corruptblood_resources.bbmodel.
[22:33:29] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_dusthit.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_dustplosionmarker.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_ravagemarker.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_shockwaveresources.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_supershockwave.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cpblood_vfx32.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing cupid.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: The cube cube in bone quiver is rotated in multiple axis. Choosing one axis.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: The cube cube in bone quiver is rotated in multiple axis. Choosing one axis.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing em_corruptedbrute.bbmodel.
[22:33:29] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[22:33:29] [Server thread/WARN]: [ItemsAdder] Detected legacy ItemsAdder pack (pre 3.3.0).
[22:33:29] [Server thread/WARN]: [ItemsAdder] Trying to load files, unexpected results might occur.
[22:33:29] [Server thread/WARN]: [ItemsAdder] It's adviced to follow the new guidelines: https://a.devs.beer/ia-new-guidelines-330
[22:33:29] [Craft Scheduler Thread - 10 - CombatPlus/INFO]: [Combat+]: No updates are found, You're running the Latest Version <3
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing em_darklurker.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing em_darkpuker.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_branch.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_branch_upwards.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_guardian.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_king.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_minion.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_sorcerer.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing ent_warrior.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing heart.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing kappa.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing kite.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Eye height is below 0. Entity might suffocate.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing leaf_storm.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing leaf_tornado.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird2.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird3.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird4.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird5.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_baby_bird6.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird2.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird3.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird4.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird5.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird6.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_yokai_bird_egg.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing oni.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing tengu.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing tenguhandkatana.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing tengusheathkatana.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing toffy_triforce_generic.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor2.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor3.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor3_parts.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor4.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_decor4_parts.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_miniboss.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: The cube cube in bone body has illegal rotations. Cube rotation can only be -45, -22.5, 0, 22.5 and 45. [ -67.5 ]
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_miniboss_axe.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_miniboss_axeland.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_miniboss_door.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_miniboss_parts.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_parts.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_rune_parts.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_rune_power.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing viking_stone_pile.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing yurei.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing helmforest.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing shieldforest.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing tridentforest.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin2.bbmodel.
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:29] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin3.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin4.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin5.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: The cube cube in bone horn_left is rotated in multiple axis. Choosing one axis.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: The cube cube in bone horn_right is rotated in multiple axis. Choosing one axis.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin6.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin7.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin8.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_axe.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_bow.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_bow_pulling_0.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_bow_pulling_1.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_bow_pulling_2.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_arrow.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_firework.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_general.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_pulling_0.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_pulling_1.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_crossbow_pulling_2.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Model contains duplicate bone names.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_hoe.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_pickaxe.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_shield.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_shield_blocking.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_shovel.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing adventurer_sword.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/WARN]: [ModelEngine] --Warning: Missing hitbox.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby2.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby3.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby4.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby5.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby6.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby7.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_baby8.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_egg.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_firespell.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_poisoncloud.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_rocks.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_roots.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_shadowspell.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_tornado.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Importing nocsy_drakonin_water_geyser.bbmodel.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] [Generating assets]
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating wuk.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating circular_branch.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_32.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64_projectile.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64_splash.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64a.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64b.
[22:33:30] [Server thread/INFO]: [Citizens] Loaded 22 NPCs.
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64c.
[22:33:30] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [1.0.1]
[22:33:30] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend or softdepend of this plugin.
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: formatter [1.9.0]
[22:33:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[22:33:30] [Server thread/INFO]: 6 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[22:33:30] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_64d.
[22:33:30] [Server thread/INFO]: Done (35.634s)! For help, type "help"
[22:33:30] [Server thread/INFO]: Timings Reset
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:30] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating corruptblood_resources.
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Loaded 166 items
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 0/750 REAL_NOTE block IDs
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] Used 34/6608 font_images
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 3 categories
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_dusthit.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_dustplosionmarker.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_ravagemarker.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_shockwaveresources.
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[22:33:31] [Craft Scheduler Thread - 12 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_supershockwave.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cpblood_vfx32.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating cupid.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating em_corruptedbrute.
[22:33:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: img [1.0.1]
[22:33:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: iaplayerstat [1.0.1]
[22:33:31] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating em_darklurker.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating em_darkpuker.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_branch.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_branch_upwards.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_guardian.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_king.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_minion.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_sorcerer.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating ent_warrior.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating heart.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating kappa.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating kite.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating leaf_storm.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating leaf_tornado.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird.
[22:33:31] [Server thread/INFO]: Attempt to teleport removed player hooker restricted
[22:33:31] [Server thread/INFO]: Attempt to teleport removed player hooker restricted
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird3.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird4.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird5.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_baby_bird6.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird3.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird4.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird5.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird6.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_yokai_bird_egg.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating oni.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating tengu.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating tenguhandkatana.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating tengusheathkatana.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating toffy_triforce_generic.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor3.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor3_parts.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor4.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_decor4_parts.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_miniboss.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_miniboss_axe.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_miniboss_axeland.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_miniboss_door.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_miniboss_parts.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_parts.
[22:33:31] [Server thread/INFO]: [Mythic] Reloading plugin...
[22:33:31] [Server thread/INFO]: [MythicMobs] Mythic beginning reload procedure...
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_rune_parts.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_rune_power.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating viking_stone_pile.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating yurei.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating helmforest.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating shieldforest.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating tridentforest.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin.
[22:33:31] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 12 ms to scan 1 urls, producing 4 keys and 14 values 
[22:33:31] [Server thread/INFO]: [MythicMobs] Loading Packs...
[22:33:31] [Server thread/INFO]: [MythicMobs] PACK /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Packs/Nocsy/packinfo.yml
[22:33:31] [Server thread/INFO]: [MythicMobs] PACK /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Packs/em_v1forgottenTerrors/packinfo.yml
[22:33:31] [Server thread/INFO]: [MythicMobs] Loading Items...
[22:33:31] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[22:33:31] [Server thread/INFO]: [MythicMobs] Loading Skills...
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin3.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin4.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin5.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin6.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin7.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin8.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_axe.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_bow.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_bow_pulling_0.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_bow_pulling_1.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_bow_pulling_2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_arrow.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_firework.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_general.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_pulling_0.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_pulling_1.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_crossbow_pulling_2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_hoe.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_pickaxe.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_shield.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_shield_blocking.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_shovel.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating adventurer_sword.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby2.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby3.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby4.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby5.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby6.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby7.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_baby8.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_egg.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_firespell.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_poisoncloud.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_rocks.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_roots.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_shadowspell.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_tornado.
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:31] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Generating nocsy_drakonin_water_geyser.
[22:33:32] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[22:33:32] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[22:33:32] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[22:33:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Skill: oniCHILL | File: /home/sid_4449838/minecraft_paper_119/plugins/MythicMobs/Skills/littleroom/yokai.yml
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill oniGETDOWN
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=oniGETDOWN}
[22:33:32] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic metaskill
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Mob: cupid | File: Unknown
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Error Message: Could not find MetaSkill cupidvolley50
[22:33:32] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: skill{s=cupidvolley50;sync=true}
[22:33:32] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=2}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:33:32] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'MobsInRadius{r=3}': The 'type' attribute must be a valid MythicMob or MythicEntity type.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 108 mobs.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1052 skills.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 40 mythic items.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 drop tables.
[22:33:32] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[22:33:32] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] 
[22:33:32] [Craft Scheduler Thread - 20 - ModelEngine/INFO]: [ModelEngine] Resource pack zipped.
[22:33:32] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[22:33:32] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[22:33:32] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[22:33:32] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[22:33:33] [Craft Scheduler Thread - 8 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.11 New Version: 6.11.1
[22:33:33] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[22:33:33] [Craft Scheduler Thread - 27 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[22:33:33] [Craft Scheduler Thread - 25 - VotingPlugin/WARN]: [VotingPlugin] Detected an issue with voting sites, check the server startup log for more details: https://github.com/BenCodez/VotingPlugin/wiki/Votifier-Troubleshooting
[22:33:34] [Craft Scheduler Thread - 4 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL is valid (external-host). Url: https://www.dropbox.com/s/uw9ody3qffl2b4u/generated.zip?raw=1
[22:34:00] [User Authenticator #0/INFO]: UUID of player Und3rt4k3r is 8f62498b-0e88-4651-b12d-86c04e033baa
[22:34:00] [Server thread/INFO]: Und3rt4k3r[/         ip         ] logged in with entity id 1304 at ([Mall]-60.7624831043755, -51.1520809854685, 234.2423222015682)
[22:34:01] [Craft Scheduler Thread - 22 - ItemsAdder/WARN]: [ItemsAdder] Warning: null checksum. Make sure to run /iazip command to generate the resourcepack!
[22:34:01] [Server thread/INFO]: Omg Server UwU Und3rt4k3r
[22:34:29] [Craft Scheduler Thread - 20 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[22:34:45] [Server thread/INFO]: Und3rt4k3r issued server command: /npc create Lolle
[22:34:54] [Server thread/INFO]: Und3rt4k3r issued server command: /npc select
[22:35:10] [Server thread/INFO]: Und3rt4k3r issued server command: /npc shop edit
[22:35:30] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[22:35:30] [Craft Scheduler Thread - 22 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[22:37:07] [Server thread/INFO]: Stopping the server
[22:37:07] [Server thread/INFO]: Stopping server
[22:37:07] [Server thread/INFO]: [DungeonParties] Disabling DungeonParties v1.0-SNAPSHOT
[22:37:07] [Server thread/INFO]: [MCPets] Disabling MCPets v3.0.2
[22:37:07] [Server thread/INFO]: -=-=-=-= MCPets disable =-=-=-=-
[22:37:07] [Server thread/INFO]:           See you soon
[22:37:07] [Server thread/INFO]: -=-=-=-= -=-=-=-=-=-=- =-=-=-=-
[22:37:07] [Server thread/INFO]: [ItemsAdder] Disabling ItemsAdder v3.3.1
[22:37:07] [Server thread/INFO]: [ModelEngine] Disabling ModelEngine vR3.1.4
[22:37:07] [Server thread/INFO]: [UltimateShops] Disabling UltimateShops v2.2
[22:37:07] [Server thread/INFO]: [UltimateShops] UltimateShops V: 2.2 has been disabled
[22:37:07] [Server thread/INFO]: [MythicDungeons] Disabling MythicDungeons v1.1.1
[22:37:07] [Server thread/INFO]: [MythicDungeons] [STDOUT] Cleaning up dungeons...
[22:37:07] [Server thread/INFO]: [BetterRTP] Disabling BetterRTP v3.6.1
[22:37:07] [Server thread/INFO]: [Duels] Disabling Duels v3.5.3-SNAPSHOT
[22:37:07] [Server thread/INFO]: [Duels] Disable process took 21ms.
[22:37:07] [Server thread/INFO]: [Multiverse-SignPortals] Disabling Multiverse-SignPortals v4.2.0-b762
[22:37:07] [Server thread/INFO]: [Multiverse-SignPortals] - Disabled
[22:37:07] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.2.1-fd1d0777
[22:37:07] [Server thread/INFO]: [MythicMobs] Disabling Mythic Mobs...
[22:37:07] [Server thread/INFO]: [MythicMobs] All active settings have been saved.
[22:37:07] [Server thread/INFO]: [MythicMobs] UNLOADED
[22:37:07] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.2.1-b834
[22:37:07] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.1-b861
[22:37:07] [Server thread/INFO]: [Essentials_WarpGUI] Disabling Essentials_WarpGUI v2.5
[22:37:07] [Server thread/INFO]: [ServerSigns] Disabling ServerSigns v4.8.0
[22:37:07] [Server thread/INFO]: [ServerSigns] ServerSigns is now disabled.
[22:37:07] [Server thread/INFO]: [GSit] Disabling GSit v1.3.6
[22:37:07] [Server thread/INFO]: [GSit] The plugin was successfully disabled.
[22:37:07] [Server thread/INFO]: [CustomHeads] Disabling CustomHeads v3.0.7
[22:37:07] [Server thread/INFO]: [PlotSquared] Disabling PlotSquared v6.10.9-Premium
[22:37:07] [Server thread/INFO]: [PlotSquared/SQLManager] All DB transactions during this session are being validated (This may take a while if corrections need to be made)
[22:37:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:37:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:37:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #14(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:37:07] [Server thread/WARN]: [PlotSquared/SQLManager] Entry #22(null) in `plot_flags` does not exist. Create this plot or set `database-purger: true` in settings.yml
[22:37:07] [Server thread/INFO]: [JumpPads] Disabling JumpPads v1.25.13
[22:37:07] [Server thread/INFO]: [CustomCrates] Disabling CustomCrates v5.0.4
[22:37:07] [Server thread/INFO]: [TAB] Disabling TAB v3.2.4
[22:37:07] [Server thread/INFO]: [TAB] Disabled in 2ms
[22:37:07] [Server thread/INFO]: [EssentialsChat] Disabling EssentialsChat v2.19.7
[22:37:07] [Server thread/INFO]: [ajLeaderboards] Disabling ajLeaderboards v2.6.6
[22:37:07] [pool-48-thread-1/INFO]: [ajLeaderboards] Shutting down cache method..
[22:37:07] [pool-48-thread-1/INFO]: [ajLeaderboards] Cache method shut down
[22:37:07] [Server thread/INFO]: [ajLeaderboards] Killing remaining workers
[22:37:07] [Server thread/INFO]: [ajLeaderboards] Remaining workers killed
[22:37:07] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.6 disabled.
[22:37:07] [Server thread/INFO]: [VotingPlugin] Disabling VotingPlugin v6.11
[22:37:07] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.30-SNAPSHOT (build 2901)
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player Redstony restricted
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player Redstony restricted
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player Psycho restricted
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player Psycho restricted
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player hooker restricted
[22:37:07] [Server thread/INFO]: Attempt to teleport removed player hooker restricted
[22:37:07] [Server thread/INFO]: [SimpleClans] Disabling SimpleClans v2.18.1-43da5bd
[22:37:07] [Server thread/INFO]: [Essentials] Disabling Essentials v2.19.7
[22:37:07] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[22:37:07] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.7.11
[22:37:07] [Server thread/INFO]: [Skript] Disabling Skript v2.6.4
[22:37:07] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.14-SNAPSHOT+6290-474c191
[22:37:07] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[22:37:07] [Server thread/INFO]: [Brewery] Disabling Brewery v3.1.1
[22:37:07] [Server thread/INFO]: [Brewery] Brewery disabled!
[22:37:07] [Server thread/INFO]: [EpicRename] Disabling EpicRename v3.11.1
[22:37:07] [Server thread/INFO]: [EpicRename] Plugin Disabled.
[22:37:07] [Server thread/INFO]: [FreedomOfSpeech] Disabling FreedomOfSpeech v1.0.0
[22:37:07] [Server thread/INFO]: FreedomOfSpeech plugin was shutdown.
[22:37:07] [Server thread/INFO]: [ColoredAnvils] Disabling ColoredAnvils v2.0.0
[22:37:07] [Server thread/INFO]: [ColoredAnvils] ColoredAnvils v2.0.0 has been disabled!
[22:37:07] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[22:37:07] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion vault
[22:37:07] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin Vault was disabled.
[22:37:07] [Server thread/INFO]: [Minepacks] Disabling Minepacks v2.4.12-Release
[22:37:08] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown initiated...
[22:37:08] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Shutdown completed.
[22:37:08] [Server thread/INFO]: [Minepacks]  Minepacks has been disabled.  :( 
[22:37:08] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.0.0-SNAPSHOT-b607
[22:37:08] [Server thread/INFO]: [LoneLibs] Disabling LoneLibs v1.0.23
[22:37:08] [Server thread/INFO]: [Votifier] Disabling Votifier v2.7.3
[22:37:10] [Server thread/INFO]: [Votifier] Votifier disabled.
[22:37:10] [Server thread/INFO]: [BuycraftX] Disabling BuycraftX v12.0.8
[22:37:10] [Server thread/INFO]: [NocsyItems] Disabling NocsyItems v2.0
[22:37:10] [Server thread/INFO]: [UnsignedMessages] Disabling UnsignedMessages v1.0.0
[22:37:10] [Server thread/INFO]: [ClearLag] Disabling ClearLag v3.2.2
[22:37:10] [Server thread/INFO]: [ClearLag] Clearlag is now disabled!
[22:37:10] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.52
[22:37:10] [Server thread/INFO]: [PlaceholderAPI] Unregistered placeholder expansion luckperms
[22:37:10] [Server thread/INFO]: [PlaceholderAPI] Reason: required plugin LuckPerms was disabled.
[22:37:10] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[22:37:10] [Server thread/INFO]: [LuckPerms] Closing storage...
[22:37:10] [Server thread/INFO]: [LuckPerms] Goodbye!
[22:37:10] [Server thread/INFO]: [CombatPlus] Disabling CombatPlus v1.6.5
[22:37:10] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.5.1
[22:37:10] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[22:37:10] [Server thread/INFO]: [CommandToItem] Disabling CommandToItem v${version}
[22:37:10] [Server thread/INFO]: [VoidWorld] Disabling VoidWorld v1.0
[22:37:10] [Server thread/INFO]: [PlaceholderAPI] Disabling PlaceholderAPI v2.11.2
[22:37:10] [Server thread/INFO]: Saving players
[22:37:10] [Server thread/INFO]: Und3rt4k3r lost connection: Server closed
[22:37:11] [Server thread/INFO]: Und3rt4k3r left the game
[22:37:11] [Server thread/INFO]: Saving worlds
[22:37:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world]'/minecraft:overworld
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world'
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world'
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world'
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world' in 0.79s
[22:37:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (world): All chunks are saved
[22:37:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[world_the_end]'/minecraft:the_end
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'world_the_end'
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'world_the_end'
[22:37:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'world_the_end'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'world_the_end' in 0.23s
[22:37:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[22:37:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Dungeons]'/minecraft:dungeons
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Dungeons'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Dungeons'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Dungeons'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'Dungeons' in 0.19s
[22:37:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (Dungeons): All chunks are saved
[22:37:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[worldconnect]'/minecraft:worldconnect
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'worldconnect'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'worldconnect'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'worldconnect'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'worldconnect' in 0.18s
[22:37:12] [Server thread/INFO]: ThreadedAnvilChunkStorage (worldconnect): All chunks are saved
[22:37:12] [Server thread/INFO]: Saving chunks for level 'ServerLevel[ClanWorld]'/minecraft:clanworld
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'ClanWorld'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'ClanWorld'
[22:37:12] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'ClanWorld'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'ClanWorld' in 0.58s
[22:37:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (ClanWorld): All chunks are saved
[22:37:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[netherTest]'/minecraft:nethertest
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'netherTest'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'netherTest'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'netherTest'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'netherTest' in 0.45s
[22:37:13] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[22:37:13] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Farmworld]'/minecraft:farmworld
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Farmworld'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Farmworld'
[22:37:13] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Farmworld'
[22:37:14] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'Farmworld' in 0.62s
[22:37:14] [Server thread/INFO]: ThreadedAnvilChunkStorage (Farmworld): All chunks are saved
[22:37:14] [Server thread/INFO]: Saving chunks for level 'ServerLevel[ValiV2]'/minecraft:valiv2
[22:37:14] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'ValiV2'
[22:37:14] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'ValiV2'
[22:37:14] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'ValiV2'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'ValiV2' in 0.89s
[22:37:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (ValiV2): All chunks are saved
[22:37:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[OtherPlotWorld]'/minecraft:otherplotworld
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'OtherPlotWorld'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'OtherPlotWorld'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'OtherPlotWorld'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'OtherPlotWorld' in 0.32s
[22:37:15] [Server thread/INFO]: ThreadedAnvilChunkStorage (OtherPlotWorld): All chunks are saved
[22:37:15] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Mall]'/minecraft:mall
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Mall'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Mall'
[22:37:15] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Mall'
[22:37:17] [Server thread/INFO]: [ChunkHolderManager] Saved 5175 block chunks, 5175 entity chunks, 0 poi chunks in world 'Mall' in 2.12s
[22:37:17] [Server thread/INFO]: ThreadedAnvilChunkStorage (Mall): All chunks are saved
[22:37:17] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pbspawn1]'/minecraft:pbspawn1
[22:37:17] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pbspawn1'
[22:37:17] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pbspawn1'
[22:37:17] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pbspawn1'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'pbspawn1' in 0.29s
[22:37:18] [Server thread/INFO]: ThreadedAnvilChunkStorage (pbspawn1): All chunks are saved
[22:37:18] [Server thread/INFO]: Saving chunks for level 'ServerLevel[pbspawn]'/minecraft:pbspawn
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'pbspawn'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'pbspawn'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'pbspawn'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'pbspawn' in 0.39s
[22:37:18] [Server thread/INFO]: ThreadedAnvilChunkStorage (pbspawn): All chunks are saved
[22:37:18] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PvPArena]'/minecraft:pvparena
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PvPArena'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PvPArena'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PvPArena'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'PvPArena' in 0.14s
[22:37:18] [Server thread/INFO]: ThreadedAnvilChunkStorage (PvPArena): All chunks are saved
[22:37:18] [Server thread/INFO]: Saving chunks for level 'ServerLevel[PvPWorld]'/minecraft:pvpworld
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'PvPWorld'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'PvPWorld'
[22:37:18] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'PvPWorld'
[22:37:19] [Server thread/INFO]: [ChunkHolderManager] Saved 531 block chunks, 531 entity chunks, 0 poi chunks in world 'PvPWorld' in 0.52s
[22:37:19] [Server thread/INFO]: ThreadedAnvilChunkStorage (PvPWorld): All chunks are saved
[22:37:19] [Server thread/INFO]: Saving chunks for level 'ServerLevel[ForestDungon]'/minecraft:forestdungon
[22:37:19] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'ForestDungon'
[22:37:19] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'ForestDungon'
[22:37:19] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'ForestDungon'
[22:37:19] [Server thread/INFO]: [ChunkHolderManager] Saved 529 block chunks, 529 entity chunks, 0 poi chunks in world 'ForestDungon' in 0.52s
[22:37:19] [Server thread/INFO]: ThreadedAnvilChunkStorage (ForestDungon): All chunks are saved
[22:37:19] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[22:37:19] [Server thread/INFO]: Flushing Chunk IO
[22:37:19] [Server thread/INFO]: Closing Thread Pool
[22:37:19] [Server thread/INFO]: Closing Server