Paste #132976: Test-Server-Plugins

Date: 2025/04/25 07:01:19 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501


[10:55:00] [ServerMain/INFO]: [bootstrap] Running Java 23 (Java HotSpot(TM) 64-Bit Server VM 23.0.2+7-58; Oracle Corporation null) on Windows 11 10.0 (amd64)
[10:55:00] [ServerMain/INFO]: [bootstrap] Loading Purpur 1.21.1-2329-ver/1.21.1@803bf62 (2024-10-31T20:25:04Z) for Minecraft 1.21.1
[10:55:02] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[10:55:06] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[10:55:06] [ServerMain/INFO]: [PluginInitializerManager] Initialized 100 plugins
[10:55:06] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (3):
 - EconomyShopGUI (6.12.1), HuskHomes (4.9.5), nightcore (2.7.5.2)
[10:55:06] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (97):
 - AuraSkills (2.2.8), AutoPickupPlus (1.6.8), BanItem (3.7), BetterReports (2.0.5), BlockCompressor (1.5.0.10), BloodMoon (0.8.1), BlueSlimeCore (2.9.6.454), ChestSort (14.2.0), Chunky (1.4.36), ChunkyBorder (1.2.23), Citizens (2.0.38-SNAPSHOT (build 3786)), CitizensCMD (2.7.2), CitizensGUI (1.12), CitizensText (1.20), Clans (0.4.5), ClearLag (3.2.2), Clumps (4.0), ColoredSigns (6.3.1.215), ConditionalEvents (4.62.1), ControlPlayer (2.5.1), Corpses (2023.5), CustomCrafting (4.16.9.1), CustomizablePlayerModels (0.6.21a), DecentHolograms (2.8.16), DiscordSRV (1.29.0), DiscordSRVUtils (1.2.14-BETA-1), EntitySize (1.6.0), Essentials (2.21.1-dev+13-be3e641), EssentialsSpawn (2.21.1-dev+13-be3e641), ExcellentCrates (6.1.3), ExecutableBlocks (5.25.4.21), ExecutableEvents (3.25.4.21), ExecutableItems (7.25.4.21), FastAsyncWorldEdit (2.13.1-SNAPSHOT-1094;f137a11), FastLeafDecay (1.0), FlexibleNPC (0.1.8), Geyser-Spigot (2.7.0-SNAPSHOT), HeadDB (5.0.0-rc.15), HeadsPlus (7.1.5), HexNicks (2.2.2), HiddenArmor (1.1.2), HopperPipes (0.1), InteractionVisualizer (1.18.14.0), InteractiveBooks (1.7.9), InteractiveChat (4.2.16.0), InteractiveChatDiscordSrvAddon (4.2.12.0), InventoryRollbackPlus (1.7.0), InvisibleFrames (1.2.2), LagFixer (1.4.09 (build 104)), LaserTurrets (3.6.0), LetMeDespawn (1.19.2-1.0-bukkit-paper), LevelledMobs (4.3.1 b112), LoginSecurity (3.3.0), LuckPerms (5.4.158), MobSizeRandomizer (1.1.2), MobsToEggs (1.7.15), MoreMobHeads (1.20_1.0.39), Multiverse-Core (4.3.16), MyCommand (5.7.4), MythicMobs (5.8.2-6a2683d7), OnePlayerSleep (1.3), PlaceholderAPI (2.11.6), PlasmoVoice (2.0.4), PlayerKits2 (1.17.3), PlayerParticles (8.9), PlayerStats (2.3), ProtocolLib (5.3.0), PurpurExtras (1.34.4), RedProtect (8.1.2-SNAPSHOT), RedstoneGuard (1.0.1), SCore (5.25.4.21), ServerRedirect (Plugin-1.4.3), ShulkerPacks (1.6.4), SkinsRestorer (15.6.2), Spectral (1.0), TAB (5.2.0), Terra (6.5.1-BETA+0a952cff4), ToolsNotifier (1.0), TradeSystem (2.6.3), Unstripper (2.2), Vault (1.7.3-b131), VeinMiner (2.2.6), VentureChat (3.7.2), ViaBackwards (5.3.2), ViaRewind (4.0.7), ViaVersion (5.3.2), ViaVersionStatus (3.13), VotingPlugin (6.18.4), WildBuster (2025.1), WildChests (2025.1), WildLoaders (2025.1), Wireless (1.1.0), WolfyUtilities (4.17-beta.7), WorldGuard (7.0.12+829a4a4), XPStorage (1.6.2), ajLeaderboards (2.10.1), dtlTraders (6.4.33)
[10:55:14] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:55:17] [ServerMain/INFO]: Loaded 1290 recipes
[10:55:17] [ServerMain/INFO]: Loaded 1399 advancements
[10:55:17] [Server thread/INFO]: Starting minecraft server version 1.21.1
[10:55:17] [Server thread/INFO]: Loading properties
[10:55:17] [Server thread/INFO]: This server is running Purpur version 1.21.1-2329-ver/1.21.1@803bf62 (2024-10-31T20:25:04Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[10:55:19] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[10:55:19] [Server thread/INFO]: Server Ping Player Sample Count: 12
[10:55:19] [Server thread/INFO]: Using 4 threads for Netty based IO
[10:55:20] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 6 worker threads, and population gen parallelism of 6 threads
[10:55:20] [Server thread/WARN]: [Pufferfish] Will not enable SIMD! These optimizations are only safely supported on Java 17-21.
[10:55:20] [Server thread/INFO]: Default game type: SURVIVAL
[10:55:20] [Server thread/INFO]: Generating keypair
[10:55:20] [Server thread/INFO]: Starting Minecraft server on *:25565
[10:55:20] [Server thread/INFO]: Using default channel type
[10:55:20] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[10:55:20] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loading 1 libraries... please wait
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-all\4.1.118.Final\netty-all-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-buffer\4.1.118.Final\netty-buffer-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec\4.1.118.Final\netty-codec-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-dns\4.1.118.Final\netty-codec-dns-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-haproxy\4.1.118.Final\netty-codec-haproxy-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-http\4.1.118.Final\netty-codec-http-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-http2\4.1.118.Final\netty-codec-http2-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-memcache\4.1.118.Final\netty-codec-memcache-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-mqtt\4.1.118.Final\netty-codec-mqtt-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-redis\4.1.118.Final\netty-codec-redis-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-smtp\4.1.118.Final\netty-codec-smtp-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-socks\4.1.118.Final\netty-codec-socks-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-stomp\4.1.118.Final\netty-codec-stomp-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-codec-xml\4.1.118.Final\netty-codec-xml-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-common\4.1.118.Final\netty-common-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-handler\4.1.118.Final\netty-handler-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-unix-common\4.1.118.Final\netty-transport-native-unix-common-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-handler-proxy\4.1.118.Final\netty-handler-proxy-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-handler-ssl-ocsp\4.1.118.Final\netty-handler-ssl-ocsp-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-resolver\4.1.118.Final\netty-resolver-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-resolver-dns\4.1.118.Final\netty-resolver-dns-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport\4.1.118.Final\netty-transport-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-rxtx\4.1.118.Final\netty-transport-rxtx-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-sctp\4.1.118.Final\netty-transport-sctp-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-udt\4.1.118.Final\netty-transport-udt-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-classes-epoll\4.1.118.Final\netty-transport-classes-epoll-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-classes-kqueue\4.1.118.Final\netty-transport-classes-kqueue-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-resolver-dns-classes-macos\4.1.118.Final\netty-resolver-dns-classes-macos-4.1.118.Final.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-x86_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-aarch_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-epoll\4.1.118.Final\netty-transport-native-epoll-4.1.118.Final-linux-riscv64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-kqueue\4.1.118.Final\netty-transport-native-kqueue-4.1.118.Final-osx-x86_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-transport-native-kqueue\4.1.118.Final\netty-transport-native-kqueue-4.1.118.Final-osx-aarch_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-resolver-dns-native-macos\4.1.118.Final\netty-resolver-dns-native-macos-4.1.118.Final-osx-x86_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [SCore] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\io\netty\netty-resolver-dns-native-macos\4.1.118.Final\netty-resolver-dns-native-macos-4.1.118.Final-osx-aarch_64.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[10:55:22] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[10:55:23] [Server thread/INFO]: [DiscordSRV] Unknown user language PT.
[10:55:23] [Server thread/INFO]: [DiscordSRV] If you fluently speak PT as well as English, see the GitHub repo to translate it!
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loading 3 libraries... please wait
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\inject\guice\5.1.0\guice-5.1.0.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\javax\inject\javax.inject\1\javax.inject-1.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\aopalliance\aopalliance\1.0\aopalliance-1.0.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\guava\guava\30.1-jre\guava-30.1-jre.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\guava\listenablefuture\9999.0-empty-to-avoid-conflict-with-guava\listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\code\findbugs\jsr305\3.0.2\jsr305-3.0.2.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\checkerframework\checker-qual\3.5.0\checker-qual-3.5.0.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\errorprone\error_prone_annotations\2.3.4\error_prone_annotations-2.3.4.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\google\j2objc\j2objc-annotations\1.3\j2objc-annotations-1.3.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar
[10:55:23] [Server thread/INFO]: [SpigotLibraryLoader] [WolfyUtilities] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\it\unimi\dsi\fastutil\8.5.6\fastutil-8.5.6.jar
[10:55:24] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 569 ms to scan 1 urls, producing 924 keys and 3724 values
[10:55:25] [Server thread/INFO]: [WolfyUtilities] Register Default StackIdentifiers
[10:55:26] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDB] Loading 1 libraries... please wait
[10:55:26] [Server thread/INFO]: [SpigotLibraryLoader] [HeadDB] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\xerial\sqlite-jdbc\3.47.0.0\sqlite-jdbc-3.47.0.0.jar
[10:55:26] [Server thread/INFO]: [nightcore] Server version detected as Purpur 1.21.1. Using paper-bridge.
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\ch\ethz\globis\phtree\phtree\2.8.2\phtree-2.8.2.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-bukkit\4.3.4\adventure-platform-bukkit-4.3.4.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-api\4.3.4\adventure-platform-api-4.3.4.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.4\adventure-text-serializer-bungeecord-4.3.4.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\jetbrains\annotations\24.0.1\annotations-24.0.1.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-gson\4.13.1\adventure-text-serializer-gson-4.13.1.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-facet\4.3.4\adventure-platform-facet-4.3.4.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-platform-viaversion\4.3.4\adventure-platform-viaversion-4.3.4.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-text-minimessage\4.20.0\adventure-text-minimessage-4.20.0.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-api\4.20.0\adventure-api-4.20.0.jar
[10:55:27] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\kyori\adventure-key\4.20.0\adventure-key-4.20.0.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\openjdk\nashorn\nashorn-core\15.3\nashorn-core-15.3.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[10:55:29] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[10:55:29] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Initializing Terra...
[10:55:29] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config.yml
[10:55:29] [Server thread/INFO]: [com.dfsek.terra.config.PluginConfigImpl] Loading config values from config.yml
[10:55:30] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading 37 Terra addons:
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]+0a952cff4
        - [email protected]
        - [email protected]
        - [email protected]+0a952cff4
[10:55:30] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Terra addons successfully loaded.
[10:55:30] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Finished initialization.
[10:55:30] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[10:55:39] [Server thread/WARN]: Legacy plugin RedstoneGuard v1.0.1 does not specify an api-version.
[10:55:39] [Server thread/WARN]: Legacy plugin OnePlayerSleep v1.3 does not specify an api-version.
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loading 1 libraries... please wait
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\jetbrains\kotlin\kotlin-stdlib\2.1.20\kotlin-stdlib-2.1.20.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [MobsToEggs] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\jetbrains\annotations\13.0\annotations-13.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loading 1 libraries... please wait
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm\7.3.1\asm-7.3.1.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-commons\7.3.1\asm-commons-7.3.1.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-analysis\7.3.1\asm-analysis-7.3.1.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-tree\7.3.1\asm-tree-7.3.1.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LaserTurrets] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\ow2\asm\asm-util\7.3.1\asm-util-7.3.1.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loading 3 libraries... please wait
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\apache\commons\commons-lang3\3.17.0\commons-lang3-3.17.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\commons-io\commons-io\2.18.0\commons-io-2.18.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\com\github\oshi\oshi-core\6.8.0\oshi-core-6.8.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\java\dev\jna\jna\5.17.0\jna-5.17.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\net\java\dev\jna\jna-platform\5.17.0\jna-platform-5.17.0.jar
[10:55:39] [Server thread/INFO]: [SpigotLibraryLoader] [LagFixer] Loaded library N:\Servidores de Minecraft\Servidor de Teste\libraries\org\slf4j\slf4j-api\2.0.17\slf4j-api-2.0.17.jar
[10:55:40] [Server thread/WARN]: Legacy plugin HopperPipes v0.1 does not specify an api-version.
[10:55:40] [Server thread/INFO]: [Corpses] Your server is using Bukkit version: 1.21.1-R0.1-SNAPSHOT
[10:55:40] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[10:55:40] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[10:55:41] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[10:55:41] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[10:55:42] [Server thread/INFO]: [ViaBackwards] Loading translations...
[10:55:42] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[10:55:43] [Server thread/INFO]: [ViaRewind] Registering protocols...
[10:55:43] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.158
[10:55:44] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[10:55:44] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.13.1-SNAPSHOT-1094;f137a11
[10:55:47] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@e57017f]
[10:55:47] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[10:55:47] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[10:55:47] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[10:55:47] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.16
[10:55:47] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[10:55:47] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+13-be3e641
[10:55:47] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.7.2
[10:55:47] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.25.4.21
[10:55:47] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.2-6a2683d7
[10:55:47] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[10:55:47] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[10:55:47] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.2
[10:55:47] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Loading server plugin WolfyUtilities v4.17-beta.7
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register JSON de-/serializers
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register JSON Operators
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register JSON Value Providers
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register CustomItem NBT Checks
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Actions
[10:55:47] [Server thread/INFO]: [WolfyUtilities] Register CustomItem Events
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register Particle Animators
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register Particle Shapes
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register Particle Timers
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register Custom Block Data
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register Custom Player Data
[10:55:48] [Server thread/INFO]: [WolfyUtilities] Register NBT Query Nodes
[10:55:48] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.7
[10:55:48] [Server thread/INFO]: [HexNicks] Loading server plugin HexNicks v2.2.2
[10:55:48] [Server thread/INFO]: [LevelledMobs] Loading server plugin LevelledMobs v4.3.1 b112
[10:55:48] [Server thread/INFO]: [LevelledMobs] Loading commands
[10:55:48] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[10:55:48] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.15
[10:55:48] [Server thread/INFO]: [CustomCrafting] Loading server plugin CustomCrafting v4.16.9.1
[10:55:48] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.17-beta.7
[10:55:48] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.9.1
[10:55:48] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[10:55:48] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[10:55:48] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.25.4.21
[10:55:48] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.5.2
[10:55:48] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.7.0-SNAPSHOT
[10:55:49] [Server thread/INFO]: [Geyser-Spigot] Carregando extensões...
[10:55:49] [Server thread/INFO]: [Geyser-Spigot] 0 extensão(ões) carregada
[10:55:49] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.38-SNAPSHOT (build 3786)
[10:55:49] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.36
[10:55:49] [Server thread/INFO]: [ShulkerPacks] Loading server plugin ShulkerPacks v1.6.4
[10:55:49] [Server thread/INFO]: [Blue Slime Core] Loading server plugin BlueSlimeCore v2.9.6.454
[10:55:49] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.6.2
[10:55:49] [Server thread/INFO]: [XPStorage] Loading server plugin XPStorage v1.6.2
[10:55:49] [Server thread/INFO]: [Wireless] Loading server plugin Wireless v1.1.0
[10:55:49] [Server thread/INFO]: [WildLoaders] Loading server plugin WildLoaders v2025.1
[10:55:49] [Server thread/INFO]: [WildChests] Loading server plugin WildChests v2025.1
[10:55:49] [Server thread/INFO]: [WildBuster] Loading server plugin WildBuster v2025.1
[10:55:49] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18.4
[10:55:49] [Server thread/INFO]: [ViaVersionStatus] Loading server plugin ViaVersionStatus v3.13
[10:55:49] [Server thread/INFO]: [VeinMiner] Loading server plugin VeinMiner v2.2.6
[10:55:49] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[10:55:49] [Server thread/INFO]: [Unstripper] Loading server plugin Unstripper v2.2
[10:55:49] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.6.3
[10:55:49] [Server thread/INFO]: [ToolsNotifier] Loading server plugin ToolsNotifier v1.0
[10:55:49] [Server thread/INFO]: [Terra] Loading server plugin Terra v6.5.1-BETA+0a952cff4
[10:55:49] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.2.0
[10:55:49] [Server thread/INFO]: [Spectral] Loading server plugin Spectral v1.0
[10:55:49] [Server thread/INFO]: [ServerRedirect] Loading server plugin ServerRedirect vPlugin-1.4.3
[10:55:49] [Server thread/INFO]: [RedstoneGuard] Loading server plugin RedstoneGuard v1.0.1
[10:55:49] [Server thread/INFO]: [RedProtect] Loading server plugin RedProtect v8.1.2-SNAPSHOT
[10:55:49] [Server thread/INFO]: [PurpurExtras] Loading server plugin PurpurExtras v1.34.4
[10:55:49] [Server thread/INFO]: [PlayerStats] Loading server plugin PlayerStats v2.3
[10:55:49] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.9
[10:55:49] [Server thread/INFO]: [PlayerKits2] Loading server plugin PlayerKits2 v1.17.3
[10:55:49] [Server thread/INFO]: [PlasmoVoice] Loading server plugin PlasmoVoice v2.0.4
[10:55:49] [Server thread/INFO]: [OnePlayerSleep] Loading server plugin OnePlayerSleep v1.3
[10:55:49] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[10:55:49] [Server thread/INFO]: [MoreMobHeads] Loading server plugin MoreMobHeads v1.20_1.0.39
[10:55:49] [Server thread/INFO]: [MobsToEggs] Loading server plugin MobsToEggs v1.7.15
[10:55:49] [Server thread/INFO]: [MobSizeRandomizer] Loading server plugin MobSizeRandomizer v1.1.2
[10:55:49] [Server thread/INFO]: [LoginSecurity] Loading server plugin LoginSecurity v3.3.0
[10:55:49] [Server thread/INFO]: [LetMeDespawn] Loading server plugin LetMeDespawn v1.19.2-1.0-bukkit-paper
[10:55:49] [Server thread/INFO]: [LaserTurrets] Loading server plugin LaserTurrets v3.6.0
[10:55:49] [Server thread/INFO]: [⚡] Loading server plugin LagFixer v1.4.09 (build 104)
[10:55:49] [Server thread/INFO]: [Invisible Frames] Loading server plugin InvisibleFrames v1.2.2
[10:55:49] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.7.0
[10:55:49] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.12.0
[10:55:49] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[10:55:49] [Server thread/INFO]: [InteractiveBooks] Loading server plugin InteractiveBooks v1.7.9
[10:55:49] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.14.0
[10:55:49] [Server thread/INFO]: [HuskHomes] Loading server plugin HuskHomes v4.9.5
[10:55:49] [Server thread/INFO]: [HuskHomes] Registered 'on_load' hooks
[10:55:49] [Server thread/INFO]: [HuskHomes] Successfully loaded HuskHomes v4.9.5
[10:55:49] [Server thread/INFO]: [HopperPipes] Loading server plugin HopperPipes v0.1
[10:55:49] [Server thread/INFO]: [HiddenArmor] Loading server plugin HiddenArmor v1.1.2
[10:55:49] [Server thread/INFO]: [HeadsPlus] Loading server plugin HeadsPlus v7.1.5
[10:55:49] [Server thread/INFO]: [FlexibleNPC] Loading server plugin FlexibleNPC v0.1.8
[10:55:49] [Server thread/INFO]: [FastLeafDecay] Loading server plugin FastLeafDecay v1.0
[10:55:49] [Server thread/INFO]: [ExecutableEvents] Loading server plugin ExecutableEvents v3.25.4.21
[10:55:49] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.25.4.21
[10:55:49] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v6.1.3
[10:55:49] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+13-be3e641
[10:55:49] [Server thread/INFO]: [EntitySize] Loading server plugin EntitySize v1.6.0
[10:55:49] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.12.1
[10:55:49] [Server thread/INFO]: [dtlTraders] Loading server plugin dtlTraders v6.4.33
[10:55:49] [Server thread/INFO]: [DiscordSRVUtils] Loading server plugin DiscordSRVUtils v1.2.14-BETA-1
[10:55:50] [Server thread/INFO]: [CustomizablePlayerModels] Loading server plugin CustomizablePlayerModels v0.6.21a
[10:55:50] [Server thread/INFO]: [Corpses] Loading server plugin Corpses v2023.5
[10:55:50] [Server thread/INFO]: [ControlPlayer] Loading server plugin ControlPlayer v2.5.1
[10:55:50] [Server thread/INFO]: [ConditionalEvents] Loading server plugin ConditionalEvents v4.62.1
[10:55:50] [Server thread/INFO]: [Colored Signs] Loading server plugin ColoredSigns v6.3.1.215
[10:55:50] [Server thread/INFO]: [Clumps] Loading server plugin Clumps v4.0
[10:55:50] [Server thread/INFO]: [ClearLag] Loading server plugin ClearLag v3.2.2
[10:55:50] [Server thread/INFO]: [Clans] Loading server plugin Clans v0.4.5
[10:55:50] [Server thread/INFO]: [CitizensText] Loading server plugin CitizensText v1.20
[10:55:50] [Server thread/INFO]: [CitizensGUI] Loading server plugin CitizensGUI v1.12
[10:55:50] [Server thread/INFO]: [CitizensCMD] Loading server plugin CitizensCMD v2.7.2
[10:55:50] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.23
[10:55:50] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[10:55:50] [Server thread/INFO]: [BloodMoon] Loading server plugin BloodMoon v0.8.1
[10:55:50] [Server thread/INFO]: [Block Compressor] Loading server plugin BlockCompressor v1.5.0.10
[10:55:50] [Server thread/INFO]: [BetterReports] Loading server plugin BetterReports v2.0.5
[10:55:50] [Server thread/INFO]: [BanItem] Loading server plugin BanItem v3.7
[10:55:50] [Server thread/INFO]: [AutoPickupPlus] Loading server plugin AutoPickupPlus v1.6.8
[10:55:50] [Server thread/INFO]: [AuraSkills] Loading server plugin AuraSkills v2.2.8
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.10.1
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[10:55:50] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[10:55:50] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[10:55:50] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.158
[10:55:53] [Server thread/INFO]:         __    
[10:55:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.158
[10:55:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[10:55:53] [Server thread/INFO]: 
[10:55:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[10:55:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[10:55:56] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[10:55:57] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[10:55:57] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 7385ms)
[10:55:57] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[10:55:58] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[10:55:58] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[10:55:58] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[10:55:58] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[10:55:58] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.13.1-SNAPSHOT-1094;f137a11
[10:55:58] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[10:55:58] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[10:55:58] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[10:55:58] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[10:55:59] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[10:56:00] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.17-beta.7
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.21.1
[10:56:00] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.17.0.0
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[10:56:00] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[10:56:00] [Server thread/INFO]: [WolfyUtilities]  - ExecutableItems
[10:56:00] [Server thread/INFO]: [WolfyUtilities]  - ExecutableBlocks
[10:56:00] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Register API references
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[10:56:00] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[10:56:01] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.7
[10:56:01] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.5.2
[10:56:01] [Server thread/WARN]: [nightcore] Locale file for 'pt' language not found. Using default 'en' locale.
[10:56:01] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[10:56:01] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[10:56:01] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[10:56:01] [Server thread/INFO]: [nightcore] Time zone set as America/Sao_Paulo
[10:56:01] [Server thread/INFO]: [nightcore] Plugin loaded in 173 ms!
[10:56:01] [Server thread/INFO]: [Blue Slime Core] Enabling BlueSlimeCore v2.9.6.454
[10:56:01] [Server thread/INFO]: [Blue Slime Core] Successfully loaded 3 language(s).
[10:56:01] [Server thread/INFO]: [Blue Slime Core] Detected server as regular SpigotMC/PaperMC (not Folia)
[10:56:02] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.6.2
[10:56:03] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[10:56:03] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.1.
[10:56:04] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[10:56:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.6.2]
[10:56:04] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[10:56:04] [Server thread/INFO]: [Terra] Enabling Terra v6.5.1-BETA+0a952cff4
[10:56:04] [Server thread/INFO]: [com.dfsek.terra.bukkit.TerraBukkitPlugin] Running on Minecraft version v1.21.1 with server implementation Purpur.
[10:56:04] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loading config packs...
[10:56:04] [Server thread/INFO]: [com.dfsek.terra.registry.master.ConfigRegistry] Loading ZIP archive: default.zip
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.6.2
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: 7bda5de
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[10:56:04] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[10:56:07] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loading config pack "OVERWORLD:OVERWORLD"
[10:56:09] [Server thread/INFO]: [com.dfsek.terra.config.pack.ConfigPackImpl] Loaded config pack "OVERWORLD:OVERWORLD" v1.3.4 by Astrash, Sancires, Aureus in 5301.728ms.
[10:56:10] [Server thread/INFO]: [com.dfsek.terra.AbstractPlatform] Loaded packs.
[10:56:10] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_21.AwfulBukkitHacks] Hacking biome registry...
[10:56:10] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_21.AwfulBukkitHacks] Doing tag garbage....
[10:56:11] [Server thread/INFO]: [PlasmoVoice] Enabling PlasmoVoice v2.0.4
[10:56:11] [Server thread/INFO]: [PlasmoVoice] LuckPerms permissions listener attached
[10:56:11] [Server thread/INFO]: [PlasmoVoice] UDP server is started on /[0:0:0:0:0:0:0:0]:25565
[10:56:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plasmovoice [2.0.4]
[10:56:12] [Server thread/INFO]: [MobSizeRandomizer] Enabling MobSizeRandomizer v1.1.2
[10:56:12] [Server thread/INFO]: [MobSizeRandomizer] Mob Size Randomizer Loaded.
[10:56:12] [Server thread/INFO]: [Clumps] Enabling Clumps v4.0
[10:56:12] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[10:56:12] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[10:56:12] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[10:56:12] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[10:56:12] [Server thread/INFO]: Preparing level "Spectral"
[10:56:12] [pool-28-thread-1/WARN]: [PlasmoVoice] New version available 2.1.3: https://cdn.modrinth.com/data/1bZhdhsH/versions/3ta29XY1/PlasmoVoice-Paper-2.1.3.jar
[10:56:12] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_21.NMSInjectListener] Preparing to take over the world: Spectral
[10:56:12] [Server thread/INFO]: [com.dfsek.terra.bukkit.nms.v1_21.NMSInjectListener] Successfully injected into world.
[10:56:13] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[10:56:15] [Server thread/INFO]: Time elapsed: 2599 ms
[10:56:15] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[10:56:16] [Server thread/INFO]: Time elapsed: 316 ms
[10:56:16] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[10:56:16] [Server thread/INFO]: Time elapsed: 182 ms
[10:56:16] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[10:56:16] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[10:56:16] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[10:56:17] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[10:56:17] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[10:56:17] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for PlaceholderAPI
[10:56:17] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[10:56:17] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK
[10:56:17] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-2329-803bf62 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-2329-803bf62 (MC: 1.21.1) hence the tree type PALE_OAK is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[10:56:17] [Server thread/INFO]: No TreeType mapping for TreeGenerator.TreeType.PALE_OAK_CREAKING
[10:56:17] [Server thread/INFO]: The above message is displayed because your FAWE version is newer than 1.21.1-2329-803bf62 (MC: 1.21.1) and contains features of future minecraft versions which do not exist in 1.21.1-2329-803bf62 (MC: 1.21.1) hence the tree type PALE_OAK_CREAKING is not available. This is not an error. This version of FAWE will work on your version of  Minecraft. This is an informative message only.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral) TNT ignition is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral) Lighters are PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral) Lava fire is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral) Fire spread is UNRESTRICTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spectral'
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_nether) TNT ignition is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_nether) Lighters are PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_nether) Lava fire is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_nether) Fire spread is UNRESTRICTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spectral_nether'
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_the_end) TNT ignition is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_the_end) Lighters are PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_the_end) Lava fire is PERMITTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] (Spectral_the_end) Fire spread is UNRESTRICTED.
[10:56:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spectral_the_end'
[10:56:17] [Server thread/INFO]: [WorldGuard] Loading region data...
[10:56:18] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.16
[10:56:18] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.16" 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--].
[10:56:18] [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.
[10:56:18] [Server thread/INFO]: [Multiverse-Core] 3 - World(s) loaded.
[10:56:18] [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.
[10:56:18] [Server thread/INFO]: [Multiverse-Core] Version 4.3.16 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[10:56:18] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[10:56:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[10:56:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[10:56:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[10:56:18] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+13-be3e641
[10:56:19] [Server thread/ERROR]: [Essentials] Você está executando uma versão de servidor não suportada!
[10:56:19] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[10:56:19] [Server thread/INFO]: [Essentials] No kits found to migrate.
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Reflection Sync Commands Provider as the provider for SyncCommandsProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[10:56:19] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[10:56:19] [Server thread/INFO]: [Essentials] Loaded 43517 items from items.json.
[10:56:19] [Server thread/INFO]: [Essentials] Using locale pt_BR
[10:56:19] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[10:56:20] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[10:56:20] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[10:56:20] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[10:56:20] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.7.2
[10:56:20] [Server thread/INFO]: [VentureChat] - Initializing...
[10:56:20] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[10:56:20] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[10:56:20] [Server thread/INFO]: [VentureChat] - Loading player data
[10:56:21] [Server thread/INFO]: [VentureChat] - Registering Listeners
[10:56:21] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[10:56:21] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[10:56:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: venturechat [3.7.2]
[10:56:21] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[10:56:21] [Server thread/INFO]: [SCore] Enabling SCore v5.25.4.21
[10:56:21] [Server thread/INFO]: SCore The library part of SCore is initializing ... (by SCore)
[10:56:21] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.25.4.21) Load After
[10:56:21] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.25.4.21) Load After
[10:56:21] [Server thread/INFO]: SCore ExecutableEvents hooked !  (3.25.4.21) Load After
[10:56:21] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[10:56:21] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.12+829a4a4)  Load Before
[10:56:21] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-b131)  Load Before
[10:56:21] [Server thread/INFO]: SCore Multiverse-Core hooked !  (4.3.16)  Load Before
[10:56:21] [Server thread/INFO]: SCore ProtocolLib hooked !
[10:56:21] [Server thread/INFO]: SCore Locale setup: EN
[10:56:21] [Server thread/INFO]: SCore HeadDB hooked !  (5.0.0-rc.15) Load After
[10:56:21] [Server thread/INFO]: SCore MythicMobs hooked !  (5.8.2-6a2683d7) Load After
[10:56:21] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.16)  Load Before
[10:56:21] [Server thread/INFO]: SCore TAB hooked !  (5.2.0) Load After
[10:56:21] [Server thread/INFO]: SCore Terra hooked !  (6.5.1-BETA+0a952cff4)  Load Before
[10:56:21] [Server thread/INFO]: SCore CustomCrafting hooked !  (4.16.9.1) Load After
[10:56:21] [Server thread/INFO]: SCore WorldEdit hooked !  (2.13.1-SNAPSHOT-1094;f137a11)  Load Before
[10:56:21] [Server thread/INFO]: SCore Language of the editor setup on EN
[10:56:21] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[10:56:21] [Server thread/INFO]: SCore Connection to the db...
[10:56:21] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[10:56:21] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table Commands if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[10:56:21] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[10:56:21] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[10:56:21] [Server thread/INFO]: ================ SCore ================
[10:56:21] [Server thread/INFO]: SCore is running on Folia
[10:56:21] [Server thread/INFO]: SCore is running on Paper or fork
[10:56:21] [Server thread/INFO]: SCore Version of the server 1.21.1-2329-803bf62 (MC: 1.21.1) !
[10:56:21] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[10:56:22] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[10:56:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[10:56:22] [Server thread/INFO]: ================ SCore ================
[10:56:22] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.2-6a2683d7
[10:56:22] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.1)...
[10:56:22] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[10:56:24] [Server thread/INFO]: [MythicMobs] Mythic Citizens Support has been enabled!
[10:56:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[10:56:25] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[10:56:25] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[10:56:25] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[10:56:25] [Server thread/INFO]: [MythicMobs] Base directory N:\Servidores de Minecraft\Servidor de Teste\plugins\MythicMobs\data
[10:56:25] [Server thread/INFO]: [MythicMobs] Module directory N:\Servidores de Minecraft\Servidor de Teste\plugins\MythicMobs\data\worlds
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Packs...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Items...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Skills...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[10:56:28] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[10:56:28] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[10:56:28] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[10:56:29] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[10:56:29] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.8.2 ( build 6a2683d7 ) has been successfully loaded!
[10:56:29] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for MythicMobs
[10:56:29] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.2
[10:56:29] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[10:56:29] [Server thread/INFO]: [HexNicks] Enabling HexNicks v2.2.2
[10:56:29] [Server thread/INFO]: [HexNicks] Running on PaperMC server software.
[10:56:29] [Server thread/INFO]: [HexNicks] Successfully loaded nicknames from Json storage.
[10:56:29] [Server thread/INFO]: [HexNicks] Hooking into PlaceholderAPI...
[10:56:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hexnicks [2.2.2]
[10:56:29] [Server thread/INFO]: [HexNicks] Hooking into Vault...
[10:56:29] [Server thread/INFO]: [HexNicks] Hooking into Essentials...
[10:56:29] [Server thread/INFO]: [LevelledMobs] Enabling LevelledMobs v4.3.1 b112
[10:56:29] [Server thread/INFO]: [LevelledMobs] Enabling commands
[10:56:29] [Server thread/INFO]: [LevelledMobs] Building reflection cache, use simple names: true
[10:56:29] [Server thread/INFO]: [LevelledMobs] Found Essentials, loading integration
[10:56:29] [Server thread/INFO]: [LevelledMobs] Using NMS version 1.21.1 for nametag support
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading files...
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'settings.yml'...
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'messages.yml'...
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'externalplugins.yml'...
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'rules.yml'...
[10:56:29] [Server thread/INFO]: [LevelledMobs] Current rules hash: 9b0f48e3273bb9cc29d2891ad33fb3410fec8cf1e77c2092ff670fd38f6d4ff5
[10:56:29] [Server thread/INFO]: [LevelledMobs] File Loader: Loading file 'customdrops.yml'...
[10:56:29] [Server thread/INFO]: [LevelledMobs] Listeners: Registering event listeners...
[10:56:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: LevelledMobs [4.3.1 b112]
[10:56:29] [Server thread/INFO]: [LevelledMobs] Running misc procedures
[10:56:29] [Server thread/INFO]: [LevelledMobs] Tasks: Starting async nametag auto update task...
[10:56:29] [Server thread/INFO]: [LevelledMobs] Start-up complete (took 326ms)
[10:56:29] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[10:56:30] [pool-63-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[10:56:30] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[10:56:30] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[10:56:30] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[10:56:30] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[10:56:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[10:56:30] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[10:56:30] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.15
[10:56:30] [HeadDB Storage Worker/INFO]: [tsp.headdb.core.player.PlayerDatabase] Loaded 0 players!
[10:56:30] [Server thread/INFO]: [tsp.headdb.HeadDB] Loaded 1 languages!
[10:56:30] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.9.1
[10:56:30] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[10:56:30] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[10:56:31] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[10:56:31] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[10:56:31] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[10:56:31] [Server thread/INFO]: [CustomCrafting]     Version      | v4.16.9.1
[10:56:31] [Server thread/INFO]: [CustomCrafting]     WolfyUtils   | v4.17-beta.7
[10:56:31] [Server thread/INFO]: [CustomCrafting]     Bukkit       | 1.21.1-2329-803bf62 (MC: 1.21.1)(API: 1.21.1-R0.1-SNAPSHOT)
[10:56:31] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[10:56:31] [Server thread/INFO]: [CustomCrafting] 
[10:56:31] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[10:56:31] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Obsidian_Sword, LiveJunye, Mithran, Teddy
[10:56:31] [Server thread/INFO]: [CustomCrafting] Invictus_Vulpes , Luuk Musch, fioxu, JorshStark, Perny Dev, Charlie
[10:56:31] [Server thread/INFO]: [CustomCrafting] iachen, whja t, Green Masks, lance fector, Jack Snellings, MineHouse Server
[10:56:31] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[10:56:31] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[10:56:31] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[10:56:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: customcrafting [4.16.9.1]
[10:56:31] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[10:56:31] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[10:56:31] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[10:56:31] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[10:56:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:🥥-survtech-console(1365318795748704366)
[10:56:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[10:56:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[10:56:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[10:56:31] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[10:56:32] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[10:56:32] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[10:56:32] [Server thread/INFO]: [CustomCrafting] [LOCAL] Using 24 threads
[10:56:32] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[10:56:32] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[10:56:32] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[10:56:32] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 2 recipes in 183ms
[10:56:32] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[10:56:32] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[10:56:32] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[10:56:32] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.25.4.21
[10:56:32] [Server thread/INFO]: ================ ExecutableItems ================
[10:56:35] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 17
[10:56:35] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[10:56:35] [Server thread/INFO]: ================ ExecutableItems ================
[10:56:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[10:56:35] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ExecutableItems
[10:56:35] [Server thread/INFO]: [CustomCrafting] [LOCAL] Validated 0 recipes from 0 pending recipes
[10:56:35] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.7.0-SNAPSHOT
[10:56:35] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3786)
[10:56:36] [Server thread/INFO]: [Citizens] Detected system language [[pt]]. If youd like you can contribute to Citizens translations via our Discord! https://discord.gg/Q6pZGSR
[10:56:36] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[10:56:36] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[bT.
[10:56:36] [Server thread/ERROR]: [Citizens] Could not fetch NMS field bT: [[null.
[10:56:36] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3786) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R4/boss/CraftBossBar
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.nms.v1_21_R4.util.NMSImpl.<clinit>(NMSImpl.java:2744) ~[Citizens-2.0.38-b3786.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:578) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:557) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:175) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:180) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens-2.0.38-b3786.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Thread.java:1575) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R4.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:528) ~[?:?]
    ... 21 more
[10:56:36] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3786)
[10:56:36] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.36
[10:56:36] [Server thread/INFO]: [ShulkerPacks] Enabling ShulkerPacks v1.6.4
[10:56:36] [Server thread/INFO]: [ShulkerPacks] [ShulkerPacks] ShulkerPacks has been enabled!
[10:56:36] [Server thread/INFO]: [XPStorage] Enabling XPStorage v1.6.2
[10:56:36] [Server thread/INFO]: [XPStorage] XPStorage enabled and loaded!
[10:56:36] [Server thread/INFO]: [Wireless] Enabling Wireless v1.1.0
[10:56:36] [Server thread/INFO]: [WildLoaders] Enabling WildLoaders v2025.1
[10:56:36] [Server thread/INFO]: [WildLoaders] ******** ENABLE START ********
[10:56:36] [Server thread/INFO]: [WildLoaders] Loading configuration started...
[10:56:36] [Server thread/INFO]: [WildLoaders]  - Found 2 chunk-loaders in config.yml.
[10:56:36] [Server thread/INFO]: [WildLoaders] Loading configuration done (Took 18ms)
[10:56:36] [Server thread/INFO]: [WildLoaders] Loading messages started...
[10:56:36] [Server thread/INFO]: [WildLoaders]  - Found 25 messages in lang.yml.
[10:56:36] [Server thread/INFO]: [WildLoaders] Loading messages done (Took 1ms)
[10:56:36] [Server thread/INFO]: [WildLoaders] ******** ENABLE DONE ********
[10:56:36] [Server thread/INFO]: [WildChests] Enabling WildChests v2025.1
[10:56:36] [Server thread/INFO]: [WildChests] ******** ENABLE START ********
[10:56:36] [Server thread/INFO]: [WildChests] Loading configuration started...
[10:56:36] [Server thread/INFO]: [WildChests]  - Found 6 chests in config.yml.
[10:56:36] [Server thread/INFO]: [WildChests] Loading configuration done (Took 79ms)
[10:56:36] [Server thread/INFO]: [WildChests] Loading messages started...
[10:56:36] [Server thread/INFO]: [WildChests]  - Found 42 messages in lang.yml.
[10:56:36] [Server thread/INFO]: [WildChests] Loading messages done (Took 2ms)
[10:56:36] [Server thread/INFO]: [WildChests] ******** ENABLE DONE ********
[10:56:36] [Server thread/INFO]: [WildBuster] Enabling WildBuster v2025.1
[10:56:36] [Server thread/INFO]: [WildBuster] ******** ENABLE START ********
[10:56:36] [Server thread/INFO]: [WildBuster] Loading configuration started...
[10:56:36] [Server thread/INFO]: [WildBuster]  - Found 2 chunk-busters in config.yml.
[10:56:36] [Server thread/INFO]: [WildBuster] Loading configuration done (Took 4ms)
[10:56:36] [Server thread/INFO]: [WildBuster] Loading messages started...
[10:56:36] [Server thread/INFO]: [WildBuster]  - Found 25 messages in lang.yml.
[10:56:36] [Server thread/INFO]: [WildBuster] Loading messages done (Took 1ms)
[10:56:36] [Server thread/INFO]: [WildBuster] ******** ENABLE DONE ********
[10:56:36] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18.4
[10:56:36] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[10:56:36] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[10:56:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[10:56:37] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[10:56:37] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[10:56:37] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[10:56:37] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18.4
[10:56:38] [Server thread/INFO]: [ViaVersionStatus] Enabling ViaVersionStatus v3.13
[10:56:38] [Server thread/INFO]: [ViaVersionStatus] Using ViaVersion to determine versions.
[10:56:38] [Server thread/INFO]: [ViaVersionStatus] Metrics enabled if allowed by plugins/bStats/config.yml
[10:56:38] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v2.2.6
[10:56:38] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[10:56:38] [ForkJoinPool.commonPool-worker-14/INFO]: [VeinMiner] Using SQLITE for persistent storage.
[10:56:38] [Server thread/INFO]: [VeinMiner] Added 13 aliases.
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Axe" holding 6 unique items and 26 unique blocks.
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Hoe" holding 6 unique items and 10 unique blocks.
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Pickaxe" holding 6 unique items and 23 unique blocks.
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Shears" holding 1 unique items and 27 unique blocks.
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Shovel" holding 6 unique items and 10 unique blocks.
[10:56:38] [Server thread/WARN]: [VeinMiner] No block list configured for category with id "Hand"! Is this intentional?
[10:56:38] [Server thread/INFO]: [VeinMiner] Registered category with id "Hand" holding 0 unique items and 0 unique blocks.
[10:56:38] [Server thread/INFO]: [VeinMiner] Performing an update check!
[10:56:38] [Server thread/INFO]: [VeinMiner] Registering commands
[10:56:38] [Server thread/INFO]: [VeinMiner] Registering events
[10:56:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: veinminer [2.2.6]
[10:56:38] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[10:56:38] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[10:56:38] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[10:56:38] [Server thread/INFO]: [Unstripper] Enabling Unstripper v2.2
[10:56:38] [ForkJoinPool.commonPool-worker-14/INFO]: [VeinMiner] You are on the latest version of VeinMiner!
[10:56:38] [Server thread/INFO]: [Unstripper] Hooking into WorldGuard!
[10:56:38] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.6.3
[10:56:38] [Server thread/INFO]:  
[10:56:38] [Server thread/INFO]: __________________________________________________________
[10:56:38] [Server thread/INFO]:  
[10:56:38] [Server thread/INFO]:                        TradeSystem [2.6.3]
[10:56:38] [Server thread/INFO]:  
[10:56:38] [Server thread/INFO]: Status:
[10:56:38] [Server thread/INFO]:  
[10:56:38] [Server thread/INFO]: MC-Version: Paper (1.21.1)
[10:56:38] [Server thread/INFO]:  
[10:56:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tradesystem [1.2]
[10:56:38] [Server thread/INFO]:   > Loading sounds
[10:56:39] [Server thread/INFO]:   > Loading blacklist
[10:56:39] [Server thread/INFO]:     ...got 3 blocked item(s)
[10:56:39] [Server thread/INFO]:   > Loading layouts
[10:56:39] [Server thread/INFO]:     ...got 4 layout(s)
[10:56:39] [Server thread/INFO]:   > Queuing database initializing task
[10:56:39] [Folia Async Scheduler Thread #11/INFO]: [TradeSystem] Database was started successfully.
[10:56:39] [Server thread/INFO]:  
[10:56:39] [Server thread/INFO]: Finished (877ms)
[10:56:39] [Server thread/INFO]:  
[10:56:39] [Server thread/INFO]: __________________________________________________________
[10:56:39] [Server thread/INFO]:  
[10:56:39] [Server thread/INFO]: [ToolsNotifier] Enabling ToolsNotifier v1.0
[10:56:39] [Server thread/INFO]:   _______          _     _   _       _   _  __ _           
[10:56:39] [Server thread/INFO]:  |__   __|        | |   | \ | |     | | (_)/ _(_)          
[10:56:39] [Server thread/INFO]:     | | ___   ___ | |___|  \| | ___ | |_ _| |_ _  ___ _ __ 
[10:56:39] [Server thread/INFO]:     | |/ _ \ / _ \| / __| . ` |/ _ \| __| |  _| |/ _ \ '__|
[10:56:39] [Server thread/INFO]:     | | (_) | (_) | \__ \ |\  | (_) | |_| | | | |  __/ |   
[10:56:39] [Server thread/INFO]:     |_|\___/ \___/|_|___/_| \_|\___/ \__|_|_| |_|\___|_|   
[10:56:39] [Server thread/INFO]: 
[10:56:39] [Server thread/INFO]:  - Loading configs (1)
[10:56:39] [Server thread/INFO]:  - Loading config.yml... Successful!
[10:56:39] [Server thread/INFO]:  - Loading events (6)
[10:56:39] [Server thread/INFO]: [TAB] Enabling TAB v5.2.0
[10:56:39] [Server thread/INFO]: [TAB] Loaded NMS hook in 33ms
[10:56:39] [Server thread/INFO]: [TAB] Enabled in 271ms
[10:56:39] [Server thread/INFO]: [Spectral] Enabling Spectral v1.0
[10:56:39] [Server thread/INFO]: [Spectral] Database: Successfully connected to database
[10:56:39] [Server thread/INFO]: [Spectral] Spectral: Successfully registered 182x custom items.
[10:56:39] [Server thread/INFO]: [Spectral] BlockStorage: All data have been loaded - Blocks: 0
[10:56:39] [Server thread/INFO]: [Spectral] BlockMenu: All data have been loaded - Blocks: 0 - Inventories (Pages): 0
[10:56:39] [Server thread/INFO]: [Spectral] PlayerStorage: All data have been loaded - Players: 0
[10:56:39] [Server thread/INFO]: [Spectral] ChunkStorage: All data have been loaded - Chunks: 0
[10:56:39] [Server thread/INFO]: [Spectral] MultiblockStorage: All data have been loaded - Multiblocks: 0
[10:56:40] [Server thread/INFO]: [Spectral] TickerManager: Starting all Ticking Task
[10:56:40] [Server thread/INFO]: [Spectral] TickerManager: Block Ticker - Tick: 5 - Seconds: 0,25
[10:56:40] [Server thread/INFO]: [Spectral] TickerManager: Item Ticker - Tick: 10 - Seconds: 0,50
[10:56:40] [Server thread/INFO]: [ServerRedirect] Enabling ServerRedirect vPlugin-1.4.3
[10:56:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: serverredirect [Plugin-1.4.3]
[10:56:40] [Server thread/INFO]: [RedstoneGuard] Enabling RedstoneGuard v1.0.1*
[10:56:40] [Server thread/INFO]: 
[10:56:40] [Server thread/INFO]: ██████╗ ███████╗██████╗ ███████╗████████╗ ██████╗ ███╗   ██╗███████╗ ██████╗ ██╗   ██╗ █████╗ ██████╗ ██████╗ 
[10:56:40] [Server thread/INFO]: ██╔══██╗██╔════╝██╔══██╗██╔════╝╚══██╔══╝██╔═══██╗████╗  ██║██╔════╝██╔════╝ ██║   ██║██╔══██╗██╔══██╗██╔══██╗
[10:56:40] [Server thread/INFO]: ██████╔╝█████╗  ██║  ██║███████╗   ██║   ██║   ██║██╔██╗ ██║█████╗  ██║  ███╗██║   ██║███████║██████╔╝██║  ██║
[10:56:40] [Server thread/INFO]: ██╔══██╗██╔══╝  ██║  ██║╚════██║   ██║   ██║   ██║██║╚██╗██║██╔══╝  ██║   ██║██║   ██║██╔══██║██╔══██╗██║  ██║
[10:56:40] [Server thread/INFO]: ██║  ██║███████╗██████╔╝███████║   ██║   ╚██████╔╝██║ ╚████║███████╗╚██████╔╝╚██████╔╝██║  ██║██║  ██║██████╔╝
[10:56:40] [Server thread/INFO]: ╚═╝  ╚═╝╚══════╝╚═════╝ ╚══════╝   ╚═╝    ╚═════╝ ╚═╝  ╚═══╝╚══════╝ ╚═════╝  ╚═════╝ ╚═╝  ╚═╝╚═╝  ╚═╝╚═════╝ 
[10:56:40] [Server thread/INFO]:                                 Version 1.0.1
[10:56:40] [Server thread/INFO]:                                 by wwishh ❤
[10:56:40] [Server thread/INFO]: [RedstoneGuard] Initializing RedstoneGuard...
[10:56:40] [Server thread/INFO]: [RedstoneGuard] RedstoneGuard has been successfully enabled! by wwishh
[10:56:40] [Server thread/INFO]: [RedProtect] Enabling RedProtect v8.1.2-SNAPSHOT
[10:56:40] [Server thread/INFO]: [RedProtect] Server version: 1.21.1-R0.1-SNAPSHOT
[10:56:40] [Server thread/INFO]: [RedProtect] All configurations loaded!
[10:56:40] [Server thread/INFO]: [RedProtect] Language file loaded - Using: PT-BR
[10:56:40] [Server thread/INFO]: [RedProtect] Registering commands...
[10:56:40] [Server thread/INFO]: [RedProtect] Registering listeners...
[10:56:40] [Server thread/INFO]: [RedProtect] Vault Economy found. Hooked.
[10:56:40] [Server thread/INFO]: [RedProtect] Vault Permissions found. Hooked.
[10:56:40] [Server thread/INFO]: [RedProtect] Essentials found. Hooked.
[10:56:40] [Server thread/INFO]: [RedProtect] This version is only compatible with server version running on 1.19+. WorldGuard not hooked!
[10:56:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: redprotect [8.1.2-SNAPSHOT]
[10:56:40] [Server thread/INFO]: [RedProtect] PlaceHolderAPI found. Hooked and registered some chat placeholders.
[10:56:40] [Server thread/INFO]: [RedProtect] - Loading Spectral's regions...
[10:56:40] [Server thread/INFO]: [RedProtect] - Loading Spectral_nether's regions...
[10:56:40] [Server thread/INFO]: [RedProtect] - Loading Spectral_the_end's regions...
[10:56:40] [Server thread/INFO]: [RedProtect] Auto-save Scheduler: Saving file database every 60 minutes!
[10:56:40] [Server thread/INFO]: [RedProtect] There are 0 regions on (file) database!
[10:56:40] [Server thread/INFO]: [RedProtect] Helper version: Latest
[10:56:40] [Server thread/INFO]: [RedProtect] Loading GuiFlags for 1.14+
[10:56:40] [Server thread/INFO]: [RedProtect] Metrics enabled! See our stats here: https://bstats.org/plugin/bukkit/RedProtect
[10:56:40] [Server thread/INFO]: [RedProtect] Loading API...
[10:56:40] [Server thread/INFO]: [RedProtect] API Loaded!
[10:56:40] [Server thread/INFO]:  _   _  _   _   _   _  _ _  _  _ _ _  _
[10:56:40] [Server thread/INFO]: |_| |_ | \ |_| |_| | |  |  |_ |   |  |_|
[10:56:40] [Server thread/INFO]: | \ |_ |_/ |   | \ |_|  |  |_ |_  |  |_|
[10:56:40] [Server thread/INFO]: » RedProtect v8.1.2-SNAPSHOT enabled
[10:56:40] [Server thread/INFO]: 
[10:56:40] [Server thread/INFO]: [PurpurExtras] Enabling PurpurExtras v1.34.4
[10:56:41] [Server thread/INFO]: [org.purpurmc.purpurextras.reflections.Reflections] Reflections took 108 ms to scan 1 urls, producing 3 keys and 73 values
[10:56:41] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v2.3
[10:56:41] [pool-97-thread-1/INFO]: [PlayerStats] Loaded 0 excluded players from file (2ms)
[10:56:41] [pool-97-thread-1/INFO]: [PlayerStats] Loaded 1 offline players (6ms)
[10:56:41] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[10:56:41] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.9
[10:56:41] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[10:56:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.9]
[10:56:42] [Server thread/INFO]: [PlayerKits2] Enabling PlayerKits2 v1.17.3
[10:56:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerkits [1.17.3]
[10:56:42] [Server thread/INFO]: [PlayerKits²] Has been enabled! Version: 1.17.3
[10:56:42] [Server thread/INFO]: [PlayerKits²] Thanks for using my plugin!   ~Ajneb97
[10:56:42] [Server thread/INFO]: [OnePlayerSleep] Enabling OnePlayerSleep v1.3*
[10:56:42] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[10:56:42] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[10:56:42] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[10:56:42] [Server thread/INFO]: | Command file(s) found : 1
[10:56:42] [Server thread/INFO]: | Config : Ready.
[10:56:42] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[10:56:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mycommand [1.0.0]
[10:56:42] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[10:56:42] [Server thread/INFO]: | Custom commands loaded : 44
[10:56:42] [Server thread/INFO]: | New update available : MyCommand v5.7.5
[10:56:42] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[10:56:42] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Enabling MoreMobHeads v1.20_1.0.39
[10:56:42] [Server thread/INFO]: [MoreMobHeads] **************************************
[10:56:42] [Server thread/INFO]: [MoreMobHeads]  v1.20_1.0.39 Loading...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Server Version: 1.21.1-2329-803bf62 (MC: 1.21.1)
[10:56:42] [Server thread/INFO]: [MoreMobHeads] [Warning] Version 1.21.1 has not yet been tested! Proceed with caution.
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading file version checker...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading config file...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading messages file...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading player_heads.yml...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading custom_trades file...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading chance_config file...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading language based mobname file...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading 1.20.6/1.21 EventHandler...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading block_heads_1_17.yml...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading block_heads_1_17_2.yml...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading block_heads_1_20.yml...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading PlayerHead Recipes...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] 33 PlayerHead Recipes ADDED...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Loading BlockHead Recipes...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] BlockHeads=100
[10:56:42] [Server thread/INFO]: [MoreMobHeads] BlockHeads2=44
[10:56:42] [Server thread/INFO]: [MoreMobHeads] BlockHeads3=71
[10:56:42] [Server thread/INFO]: [MoreMobHeads] 215 BlockHead Recipes ADDED...
[10:56:42] [Server thread/INFO]: [MoreMobHeads] EventHandler_1_20 took 115 ms. to load
[10:56:42] [Server thread/INFO]: [MoreMobHeads] Checking for updates...
[10:56:43] [Server thread/INFO]: [MoreMobHeads] *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[10:56:43] [Server thread/INFO]: [MoreMobHeads] * A versão está atualizada!
[10:56:43] [Server thread/INFO]: [MoreMobHeads] * Doação: https://ko-fi.com/joelgodofwar
[10:56:43] [Server thread/INFO]: [MoreMobHeads] *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[10:56:43] [Server thread/INFO]: [MoreMobHeads]  v1.20_1.0.39 is Enabled - Loading took 704 ms.
[10:56:43] [Server thread/INFO]: [MobsToEggs] Enabling MobsToEggs v1.7.15
[10:56:43] [Server thread/INFO]: [MobsToEggs] Loading files for MobsToEggs...
[10:56:43] [Server thread/INFO]: [MobsToEggs] Loading language: en
[10:56:43] [Server thread/INFO]: [MobsToEggs] Using Dependencies:
[10:56:43] [Server thread/INFO]: [MobsToEggs] ✔️ [Vault, WorldGuard, MythicMobs]
[10:56:43] [Server thread/INFO]: [MobsToEggs] ❌ [NBTAPI, StackMob, Towny]
[10:56:43] [Server thread/INFO]: [LoginSecurity] Enabling LoginSecurity v3.3.0
[10:56:43] [Server thread/INFO]: [LoginSecurity] Loading base translations from "en_us"
[10:56:43] [Server thread/INFO]: [LoginSecurity] Loading specified translations from "en_us"
[10:56:43] [Server thread/INFO]: [LoginSecurity] Registering commands...
[10:56:43] [Server thread/INFO]: [LoginSecurity] Registering listeners...
[10:56:43] [Server thread/INFO]: [LoginSecurity] Using 1.12+ map captcha renderer
[10:56:43] [Server thread/INFO]: [LetMeDespawn] Enabling LetMeDespawn v1.19.2-1.0-bukkit-paper
[10:56:43] [Server thread/INFO]: Let Me Despawn Loaded.
[10:56:43] [Server thread/INFO]: [LaserTurrets] Enabling LaserTurrets v3.6.0
[10:56:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: laserturrets [3.6.0]
[10:56:44] [Server thread/INFO]: Localized Message: Insert a base64 head texture value for arrow turrets. Website: &bhttps://minecraft-heads.com/custom-heads
[10:56:44] [Server thread/INFO]: [DiscordSRV] API listener games.coob.laserturrets.lib.model.DiscordListener$DiscordListenerImpl unsubscribed
[10:56:44] [Server thread/INFO]: [DiscordSRV] API listener games.coob.laserturrets.lib.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[10:56:44] [Server thread/INFO]: [⚡] Enabling LagFixer v1.4.09 (build 104)
[10:56:45] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★





LagFixer - Best Performance Solution!
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
░██╗░░░░░░█████╗░░██████╗░░░███████╗██╗██╗░░██╗███████╗██████╗░░
░██║░░░░░██╔══██╗██╔════╝░░░██╔════╝██║╚██╗██╔╝██╔════╝██╔══██╗░
░██║░░░░░███████║██║░░██╗░░░█████╗░░██║░╚███╔╝░█████╗░░██████╔╝░
░██║░░░░░██╔══██║██║░░╚██╗░░██╔══╝░░██║░██╔██╗░██╔══╝░░██╔══██╗░
░███████╗██║░░██║╚██████╔╝░░██║░░░░░██║██╔╝╚██╗███████╗██║░░██║░
░╚══════╝╚═╝░░╚═╝░╚═════╝░░░╚═╝░░░░░╚═╝╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝░
░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░





[10:56:45] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡]  • Started listening for console LagFixer errors!
[10:56:45] [Server thread/INFO]: [⚡] (ErrorsManager) -> Enabled manager in 1ms!
[10:56:45] [Server thread/INFO]: [⚡] (SupportManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded fork support ~ xyz.lychee.lagfixer.support.Paper
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded nms support ~ xyz.lychee.lagfixer.nms.v1_21_R1.SupportNms
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded creatures 64 to creature container!
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded items 0 to item container!
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded projectiles 0 to projectile container!
[10:56:45] [Server thread/INFO]: [⚡]  • Loaded vehicles 6 to vehicle container!
[10:56:45] [Server thread/INFO]: [⚡] (SupportManager) -> Enabled manager in 27ms!
[10:56:45] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡] (ConfigManager) -> Enabled manager in 75ms!
[10:56:45] [Server thread/INFO]: [⚡] (HookManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡]  • Skipping hook WildStacker, reason: Plugin not found
[10:56:45] [Server thread/INFO]: [⚡]  • Skipping hook UltimateStacker, reason: Plugin not found
[10:56:45] [Server thread/INFO]: [⚡]  • Skipping hook spark, reason: Plugin not found
[10:56:45] [Server thread/INFO]: [⚡]  • Skipping hook RoseStacker, reason: Plugin not found
[10:56:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lagfixer [1.4.09 (build 104)]
[10:56:45] [Server thread/INFO]: [⚡]  • Sucessfully loaded hook PlaceholderAPI in 1ms!
[10:56:45] [Server thread/INFO]: [⚡] (HookManager) -> Enabled manager in 3ms!
[10:56:45] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡] (MetricsManager) -> Enabled manager in 3ms!
[10:56:45] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡] (UpdaterManager) -> Enabled manager in 1ms!
[10:56:45] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabling manager...
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module EntityLimiter in 3ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module RedstoneLimiter in 5ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module AbilityLimiter in 1ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module WorldCleaner in 7ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module VehicleMotionReducer in 27ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module InstantLeafDecay in 1ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module MobAiReducer in 26ms.
[10:56:45] [Server thread/INFO]: [⚡]  • Successfully loaded module LagMonitor in 4ms.
[10:56:45] [Server thread/INFO]: [⚡] (ModuleManager) -> Enabled manager in 109ms!
[10:56:45] [Server thread/INFO]: [⚡] (CommandManager) -> Enabling manager...
[10:56:46] [Server thread/INFO]: [⚡] (CommandManager) -> Enabled manager in 585ms!
[10:56:46] [Server thread/INFO]: [⚡] Remember to leave a rating! ★ ★ ★ ★ ★
[10:56:46] [Server thread/INFO]: [Invisible Frames] Enabling InvisibleFrames v1.2.2
[10:56:46] [Server thread/INFO]: [Invisible Frames] ItemsAdder API has not been found, ItemsAdder checks are disabled.
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.7.0
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21.1-2329-803bf62 (MC: 1.21.1)
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R1
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[10:56:46] [Server thread/INFO]: [InventoryRollbackPlus] All tests completed. (5 tests)
[10:56:46] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.12.0
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[10:56:47] [Server thread/INFO]: [InteractiveChat] Loading languages...
[10:56:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[10:56:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[10:56:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[10:56:47] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [ICDiscordSrvAddon] VERSION NOT COMPATIBLE WITH INSTALLED INTERACTIVECHAT VERSION, PLEASE UPDATE BOTH TO LATEST!!!!
[10:56:47] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Disabling InteractiveChatDiscordSrvAddon v4.2.12.0
[10:56:47] [Server thread/ERROR]: Error occurred while disabling InteractiveChatDiscordSrvAddon v4.2.12.0
java.lang.NullPointerException: Cannot invoke "com.loohp.interactivechatdiscordsrvaddon.resources.ModelRenderer.close()" because "this.modelRenderer" is null
    at InteractiveChatDiscordSrvAddon-4.2.12.0.jar/com.loohp.interactivechatdiscordsrvaddon.InteractiveChatDiscordSrvAddon.onDisable(InteractiveChatDiscordSrvAddon.java:429) ~[InteractiveChatDiscordSrvAddon-4.2.12.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:291) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:237) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at InteractiveChatDiscordSrvAddon-4.2.12.0.jar/com.loohp.interactivechatdiscordsrvaddon.InteractiveChatDiscordSrvAddon.onEnable(InteractiveChatDiscordSrvAddon.java:367) ~[InteractiveChatDiscordSrvAddon-4.2.12.0.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Thread.java:1575) ~[?:?]
[10:56:47] [Server thread/INFO]: [InteractiveBooks] Enabling InteractiveBooks v1.7.9
[10:56:48] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[10:56:48] [Server thread/INFO]: [InteractiveBooks] [ACF] Enabled Asynchronous Tab Completion Support!
[10:56:48] [Server thread/INFO]: [InteractiveBooks] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[10:56:48] [Server thread/INFO]: [InteractiveBooks] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[10:56:48] [Server thread/INFO]: [InteractiveBooks] [NBTAPI] Using the plugin 'InteractiveBooks' to create a bStats instance!
[10:56:48] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.14.0
[10:56:52] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[10:56:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactionvisualizer [2.0.0]
[10:56:54] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[10:56:54] [Server thread/INFO]: [HuskHomes] Enabling HuskHomes v4.9.5
[10:56:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: huskhomes [4.9.5]
[10:56:54] [Server thread/INFO]: [HuskHomes] Registered 'on_enable' hooks
[10:56:54] [Server thread/INFO]: [HuskHomes] Successfully enabled HuskHomes v4.9.5
[10:56:54] [Server thread/INFO]: [HopperPipes] Enabling HopperPipes v0.1*
[10:56:54] [Server thread/INFO]: [HiddenArmor] Enabling HiddenArmor v1.1.2
[10:56:54] [Server thread/INFO]: [HeadsPlus] Enabling HeadsPlus v7.1.5
[10:56:54] [Server thread/INFO]: [HeadsPlus] Using the PaperProfileHandler profile handler.
[10:56:55] [Server thread/INFO]: [HeadsPlus] Registered 438 heads.
[10:56:55] [Server thread/INFO]: [HeadsPlus] Registered 3 masks.
[10:56:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headsplus [7.1.5]
[10:56:55] [Server thread/INFO]: [HeadsPlus] We've registered our PAPI placeholders!
[10:56:55] [Server thread/INFO]: HeadsPlus »  HeadsPlus has been enabled!
[10:56:55] [Server thread/INFO]:     __  __               __     ____  __                   _____
[10:56:55] [Server thread/INFO]:    / / / /__  ____ _____/ /____/ __ \/ /_  _______   _   _/__  /
[10:56:55] [Server thread/INFO]:   / /_/ / _ \/ __ `/ __  / ___/ /_/ / / / / / ___/  | | / / / / 
[10:56:55] [Server thread/INFO]:  / __  /  __/ /_/ / /_/ /__  / ____/ / /_/ /__  /   | |/ / / /  
[10:56:55] [Server thread/INFO]: /_/ /_/\___/\__,_/\__,_/____/_/   /_/\__,_/____/    |___/ /_/  
[10:56:55] [Server thread/INFO]:                                                                 
[10:56:55] [Server thread/INFO]: HeadsPlus 7.1.5 has been enabled successfully!
[10:56:55] [Server thread/INFO]: 
[10:56:55] [Server thread/INFO]: [FlexibleNPC] Enabling FlexibleNPC v0.1.8
[10:56:55] [Server thread/INFO]: FlexibleNPC loaded. selected version: craftbukkit
[10:56:55] [Server thread/INFO]: [FastLeafDecay] Enabling FastLeafDecay v1.0
[10:56:55] [Server thread/INFO]: [ExecutableEvents] Enabling ExecutableEvents v3.25.4.21
[10:56:55] [Server thread/INFO]: ================ ExecutableEvents ================
[10:56:55] [Server thread/INFO]: ExecutableEvents Amount of Executable Events configurations loaded: 0
[10:56:55] [Server thread/INFO]: ================ ExecutableEvents ================
[10:56:55] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.25.4.21
[10:56:55] [Server thread/INFO]: ================ ExecutableBlocks ================
[10:56:55] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[10:56:55] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[10:56:55] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[10:56:55] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 4
[10:56:55] [Server thread/INFO]: ExecutableBlocks There are: 0 ExecutableBlock placed configs to load.
[10:56:55] [Server thread/INFO]: ExecutableBlocks 0 ExecutableBlock(s)Placed loaded !
[10:56:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[10:56:55] [Server thread/INFO]: ================ ExecutableBlocks ================
[10:56:55] [Server thread/INFO]: [WolfyUtilities] Enabled plugin integration for ExecutableBlocks
[10:56:55] [Server thread/INFO]: [CustomCrafting] [LOCAL] Validated 0 recipes from 0 pending recipes
[10:56:55] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v6.1.3
[10:56:55] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[10:56:55] [Server thread/WARN]: [ExcellentCrates] Locale file for 'pt' language not found. Using default 'en' locale.
[10:56:56] [Server thread/WARN]: [ExcellentCrates] *************************
[10:56:56] [Server thread/WARN]: [ExcellentCrates] You don't have EconomyBridge installed.
[10:56:56] [Server thread/WARN]: [ExcellentCrates] The following features will be unavailable:
[10:56:56] [Server thread/WARN]: [ExcellentCrates] - Crate open cost.
[10:56:56] [Server thread/WARN]: [ExcellentCrates] - Custom item plugin support.
[10:56:56] [Server thread/WARN]: [ExcellentCrates] *************************
[10:56:56] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@698ebb2b
[10:56:56] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate openings.
[10:56:56] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crate keys.
[10:56:56] [Server thread/INFO]: [ExcellentCrates] Loaded 3 rarities!
[10:56:56] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crates.
[10:56:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [6.1.3]
[10:56:56] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 635 ms!
[10:56:56] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+13-be3e641
[10:56:56] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[10:56:56] [Server thread/INFO]: [EntitySize] Enabling EntitySize v1.6.0
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.12.1
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault and using EssentialsX Economy as economy provider
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 14 shop sections.
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21.1...
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[10:56:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.1.0]
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[10:56:56] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[10:56:57] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 517ms to complete
[10:56:57] [Server thread/INFO]: [dtlTraders] Enabling dtlTraders v6.4.33
[10:56:57] [Server thread/INFO]: dtlTraders> Welcome to dtlTraders v6.4.33!
[10:56:57] [Server thread/INFO]: dtlTraders> Trying to hook into any Vault supported plugin...
[10:56:57] [Server thread/INFO]: dtlTraders> Vault found! Trying to hook...
[10:56:57] [Server thread/INFO]: dtlTraders> Found economy plugin: EssentialsX Economy
[10:56:57] [Server thread/INFO]: dtlTraders> Loaded 0 guis from the guis config!
[10:56:57] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.38-SNAPSHOT (build 3786)
[10:56:57] [Server thread/WARN]: Enabled plugin with unregistered ConfiguredPluginClassLoader Citizens v2.0.38-SNAPSHOT (build 3786)
[10:56:57] [Server thread/ERROR]: [Citizens] Citizens implementation changed, disabling plugin.
[10:56:57] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.38-SNAPSHOT (build 3786)
[10:56:57] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.38-SNAPSHOT (build 3786) (Is it up to date?)
java.lang.NullPointerException: null
    at java.base/java.io.Reader.<init>(Reader.java:168) ~[?:?]
    at java.base/java.io.InputStreamReader.<init>(InputStreamReader.java:126) ~[?:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.api.util.Translator.getBaseTranslations(Translator.java:93) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.api.util.Translator.<init>(Translator.java:26) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.api.util.Translator.setInstance(Translator.java:147) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.Citizens.setupTranslator(Citizens.java:477) ~[Citizens-2.0.38-b3786.jar:?]
    at Citizens-2.0.38-b3786.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:324) ~[Citizens-2.0.38-b3786.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at dtlTraders-6.4.33.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:217) ~[dtlTraders-6.4.33.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Thread.java:1575) ~[?:?]
[10:56:57] [Server thread/INFO]: dtlTraders> Hooking into Citizens!
[10:56:57] [Server thread/ERROR]: Error occurred while enabling dtlTraders v6.4.33 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at dtlTraders-6.4.33.jar/com.degitise.minevid.dtlTraders.utils.citizens.CitizensHook.<init>(CitizensHook.java:27) ~[dtlTraders-6.4.33.jar:?]
    at dtlTraders-6.4.33.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:221) ~[dtlTraders-6.4.33.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:757) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:519) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:366) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1230) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:333) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at java.base/java.lang.Thread.run(Thread.java:1575) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:528) ~[?:?]
    ... 14 more
[10:56:57] [Server thread/INFO]: [dtlTraders] Disabling dtlTraders v6.4.33
[10:56:57] [Server thread/INFO]: dtlTraders> Saving shops before shutting down...
[10:56:57] [Server thread/INFO]: dtlTraders> Shops Saved!
[10:56:57] [Server thread/INFO]: [DiscordSRVUtils] Enabling DiscordSRVUtils v1.2.14-BETA-1
[10:56:58] [Server thread/INFO]: 
[10:56:58] [Server thread/INFO]: []=====[Enabling DiscordSRVUtils]=====[]
[10:56:58] [Server thread/INFO]: | Information:
[10:56:58] [Server thread/INFO]: |   Name: DiscordSRVUtils
[10:56:58] [Server thread/INFO]: |   Developers: BlueTree242
[10:56:58] [Server thread/INFO]: |   Version: 1.2.14-BETA-1
[10:56:58] [Server thread/INFO]: |   Storage: HsqlDB
[10:56:58] [Server thread/INFO]: | Support:
[10:56:58] [Server thread/INFO]: |   Github: https://github.com/BlueTree242/BlueDevelopersInc/issues
[10:56:58] [Server thread/INFO]: |   Wiki: https://wiki.discordsrvutils.xyz
[10:56:58] [Server thread/INFO]: |   Discord: https://discordsrvutils.xyz/support
[10:56:58] [Server thread/INFO]: []====================================[]
[10:56:58] [Server thread/INFO]: [DiscordSRVUtils] MySQL is disabled, using hsqldb
[10:56:58] [Server thread/INFO]: [DiscordSRVUtils] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[10:56:59] [Thread-57/INFO]: [DiscordSRVUtils] Pre-Loaded JOOQ classes in 1,09 Seconds.
[10:56:59] [Server thread/INFO]: [DiscordSRVUtils] [Flyway] Schema "PUBLIC" is up to date. No migration necessary.
[10:56:59] [Server thread/INFO]: [DiscordSRVUtils] MySQL/HsqlDB Connected & Setup
[10:56:59] [Server thread/INFO]: [DiscordSRV] API listener dev.bluetree242.discordsrvutils.listeners.discordsrv.DiscordSRVListener subscribed (3 methods)
[10:56:59] [Server thread/INFO]: [CustomizablePlayerModels] Enabling CustomizablePlayerModels v0.6.21a
[10:56:59] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into Essentials
[10:56:59] [Server thread/WARN]: [CustomizablePlayerModels] Command API not found, using fallback command system.
[10:56:59] [Server thread/INFO]: [CustomizablePlayerModels] Customizable Player Models Initialized
[10:56:59] [DSU-THREAD/INFO]: [DiscordSRVUtils] Successfully hooked into PlaceholderAPI
[10:56:59] [Server thread/INFO]: [Corpses] Enabling Corpses v2023.5
[10:56:59] [Server thread/INFO]: This server version (1.21.1) is not supported by this plugin (Corpses v2023.5)
[10:56:59] [Server thread/INFO]: Supported server versions: 1.17, 1.17.1, 1.18, 1.18.1, 1.18.2, 1.19, 1.19.1, 1.19.2, 1.19.3, 1.19.4, 1.20, 1.20.1
[10:56:59] [Server thread/INFO]: [Corpses] Disabling Corpses v2023.5
[10:56:59] [Server thread/INFO]: [ControlPlayer] Enabling ControlPlayer v2.5.1
[10:56:59] [Server thread/INFO]: [ConditionalEvents] Enabling ConditionalEvents v4.62.1
[10:56:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: conditionalevents [4.62.1]
[10:56:59] [Server thread/INFO]: [ConditionalEvents] Has been enabled! Version: 4.62.1
[10:56:59] [Server thread/INFO]: [ConditionalEvents] Thanks for using my plugin!   ~Ajneb97
[10:56:59] [DSU-THREAD/INFO]: [DiscordSRVUtils] Plugin is ready to function.
[10:56:59] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v6.3.1.215
[10:56:59] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.2.2
[10:56:59] [Server thread/INFO]: [ClearLag] Using version-adapter: LatestVersionAdapter
[10:56:59] [Server thread/INFO]: [ClearLag] Loading modules...
[10:56:59] [Server thread/WARN]: [ClearLag] Clearlag failed to use the internal TPS tracker during initialization. Reverted to estimation... (Index 3 out of bounds for length 3)
[10:56:59] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[10:56:59] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[10:56:59] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[10:56:59] [Thread-63/WARN]: [ClearLag] Clearlag failed to check for updates - bukkit may be down
[10:56:59] [Thread-63/WARN]: java.lang.ArrayIndexOutOfBoundsException: Index 3 out of bounds for length 3
[10:56:59] [Thread-63/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.Util.getBukkitVersion(Util.java:105)
[10:56:59] [Thread-63/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.updateAvailable(BukkitUpdater.java:32)
[10:56:59] [Thread-63/WARN]:     at Clearlag.jar//me.minebuilders.clearlag.BukkitUpdater.run(BukkitUpdater.java:82)
[10:56:59] [Thread-63/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1575)
[10:56:59] [Server thread/INFO]: [Clans] Enabling Clans v0.4.5
[10:56:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clans [0.4.5]
[10:56:59] [Server thread/INFO]: [CitizensText] Enabling CitizensText v1.20
[10:56:59] [Server thread/INFO]: [CitizensText] PlaceholderAPI hooked !
[10:56:59] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.12
[10:56:59] [Server thread/ERROR]: [CitizensGUI] Failed to register events for class fr.ender_griefeur99.citizensgui.Main because net/citizensnpcs/api/event/NPCRightClickEvent does not exist.
[10:56:59] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.7.2
[10:57:00] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.7.2
[10:57:00] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[10:57:00] [Server thread/INFO]: [CitizensCMD] Using English messages!
[10:57:00] [Server thread/ERROR]: [CitizensCMD] Failed to register events for class me.mattstudios.citizenscmd.listeners.NPCClickListener because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[10:57:00] [Server thread/ERROR]: [CitizensCMD] Failed to register events for class me.mattstudios.citizenscmd.listeners.NPCListener because net/citizensnpcs/api/event/NPCRemoveByCommandSenderEvent does not exist.
[10:57:00] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[10:57:00] [Server thread/INFO]: [CitizensCMD] Using Vault!
[10:57:00] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.23
[10:57:01] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[10:57:01] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.12+829a4a4
[10:57:01] [Server thread/INFO]: [ChestSort] Use permissions: true
[10:57:01] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[10:57:01] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[10:57:01] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[10:57:01] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[10:57:01] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[10:57:01] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[10:57:01] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[10:57:01] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[10:57:01] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[10:57:01] [Server thread/INFO]: [ChestSort] Check for updates: true
[10:57:01] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[10:57:01] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[10:57:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[10:57:01] [Server thread/INFO]: [BloodMoon] Enabling BloodMoon v0.8.1
[10:57:01] [Server thread/INFO]: [BloodMoon] This plugin is still in its infancy. If you encounter a bug, please report it to https://www.spigotmc.org/threads/bloodmoon.412741/
[10:57:01] [Server thread/INFO]: [Block Compressor] Enabling BlockCompressor v1.5.0.10
[10:57:01] [Server thread/INFO]: [Block Compressor] Successfully loaded 1 language(s).
[10:57:01] [Server thread/WARN]: [Block Compressor] Failed to find handler class with type 'class com.github.sirblobman.api.nms.ItemHandler'.
[10:57:01] [Server thread/WARN]: [Block Compressor] Possibly missing support for NMS version 'Unsupported'.
[10:57:01] [Server thread/WARN]: [Block Compressor] Searching for fallback handler...
[10:57:01] [Server thread/WARN]: [Block Compressor] Using fallback ItemHandler.
[10:57:01] [Server thread/WARN]: [Block Compressor] Version '1.21.1' and NMS 'Unsupported' combo is not supported.
[10:57:01] [Server thread/WARN]: [Block Compressor] Please contact SirBlobman if you believe this is a mistake.
[10:57:01] [Server thread/WARN]: [Block Compressor] https://github.com/SirBlobman/BlueSlimeCore/issues/new/choose
[10:57:01] [Server thread/INFO]: [Block Compressor] Using Paper ItemHandler with NMS backup for NBT.
[10:57:01] [Server thread/INFO]: [Block Compressor] Detected server as regular SpigotMC/PaperMC (not Folia)
[10:57:01] [Server thread/INFO]: [BetterReports] Enabling BetterReports v2.0.5
[10:57:01] [Server thread/INFO]: [BanItem] Enabling BanItem v3.7
[10:57:01] [Server thread/INFO]: [AutoPickupPlus] Enabling AutoPickupPlus v1.6.8
[10:57:01] [Server thread/INFO]: LOGGER [AutoPickupPlus] | INFO: Found PlaceholderAPI, hooking into it.
[10:57:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: AutoPickupPlusPAPI [1.6.8]
[10:57:01] [Server thread/INFO]: LOGGER [AutoPickupPlus] | INFO: Server version is most likely 1.21.0 (38, v1_21_R1 :: 7092ff)
[10:57:01] [Server thread/INFO]: LOGGER [AutoPickupPlus] | INFO: Executed setup for config: config.yml
[10:57:01] [Server thread/INFO]: [AuraSkills] Enabling AuraSkills v2.2.8
[10:57:02] [Server thread/INFO]: [AuraSkills] Loaded 21 message files
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook DecentHolograms
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook LuckPerms
[10:57:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: auraskills [2.2.8]
[10:57:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: aureliumskills [2.2.8]
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook PlaceholderAPI
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook ProtocolLib
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook Vault
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook WorldGuard
[10:57:03] [Server thread/INFO]: [AuraSkills] Successfully registered hook MythicMobs
[10:57:03] [Server thread/INFO]: [AuraSkills] Loaded 151 config options in 87 ms
[10:57:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[10:57:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[10:57:03] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AuraSkills' to create a bStats instance!
[10:57:03] [Server thread/INFO]: [AuraSkills] Loaded 3 blocked/disabled worlds
[10:57:03] [Server thread/INFO]: [AuraSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[10:57:04] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.10.1
[10:57:05] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[10:57:05] [Server thread/INFO]: [ajLeaderboards] Loaded 0 boards
[10:57:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.10.1]
[10:57:05] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[10:57:05] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.10.1 by ajgeiss0702 enabled!
[10:57:06] [Server thread/INFO]: [spark] Starting background profiler...
[10:57:06] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows11/amd64), so the built-in Java engine will be used instead.
[10:57:06] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[10:57:06] [Server thread/INFO]: 0 placeholder hook(s) registered!
[10:57:06] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:57:06] [Server thread/INFO]: [Geyser-Spigot] 
[10:57:06] [Server thread/INFO]: [Geyser-Spigot] Carregando Geyser versão 2.7.0-b816 (git-master-c5fd3d4)
[10:57:06] [Server thread/INFO]: [Geyser-Spigot] 
[10:57:06] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[10:57:07] [pool-105-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.10.1)
[10:57:12] [Server thread/INFO]: [Geyser-Spigot] Geyser iniciado na porta UDP 19132
[10:57:12] [Server thread/INFO]: [Geyser-Spigot] Concluído (5,455 s)! Execute /geyser help para obter ajuda!
[10:57:12] [Server thread/INFO]: Done preparing level "Spectral" (60.251s)
[10:57:12] [Server thread/INFO]: Running delayed init tasks
[10:57:12] [Craft Scheduler Thread - 8 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[10:57:12] [Craft Scheduler Thread - 11 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[10:57:12] [Craft Scheduler Thread - 14 - HeadDB/INFO]: [tsp.headdb.HeadDB] Fetching heads...
[10:57:12] [Craft Scheduler Thread - 33 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[10:57:12] [Craft Scheduler Thread - 24 - LaserTurrets/ERROR]: LaserTurrets 3.6.0 encountered a FoException! Please check your error.log and report this issue with the information in that file. Running Purpur 1.21.1-R0.1-SNAPSHOT and Java 23.0.2
[10:57:12] [Craft Scheduler Thread - 24 - LaserTurrets/WARN]: [LaserTurrets] Plugin LaserTurrets v3.6.0 generated an exception while executing task 147
games.coob.laserturrets.lib.exception.FoException: Report: LaserTurrets could not hook into Citizens as the plugin is disabled! (DO NOT REPORT THIS TO LaserTurrets, look for errors above and contact support of 'Citizens')
    at LaserTurrets-3.6.0.jar/games.coob.laserturrets.lib.Valid.checkBoolean(Valid.java:90) ~[LaserTurrets-3.6.0.jar:?]
    at LaserTurrets-3.6.0.jar/games.coob.laserturrets.lib.Common.lambda$doesPluginExist$3(Common.java:1098) ~[LaserTurrets-3.6.0.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at org.bukkit.craftbukkit.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[purpur-1.21.1.jar:1.21.1-2329-803bf62]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[purpur-1.21.1.jar:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1144) ~[?:?]
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:642) ~[?:?]
    at java.base/java.lang.Thread.run(Thread.java:1575) ~[?:?]
[10:57:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[10:57:12] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[10:57:12] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[10:57:12] [Craft Scheduler Thread - 13 - Essentials/INFO]: [Essentials] Buscando informações da versão...
[10:57:12] [Craft Scheduler Thread - 46 - Vault/INFO]: [Vault] Checking for Updates ... 
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID BLACK_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID BLACK_AND_WHITE_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID BROWN_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID GOLD_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID SALT_AND_PEPPER_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID THE_KILLER_BUNNY_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 29 - HeadsPlus/WARN]: [HeadsPlus] Head with ID WHITE_rabbit not found.
[10:57:12] [Craft Scheduler Thread - 46 - Vault/INFO]: [Vault] No new version available
[10:57:12] [Craft Scheduler Thread - 40 - HeadsPlus/INFO]: [HeadsPlus] Registered 1 rewards.
[10:57:12] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:57:12] [Craft Scheduler Thread - 5 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlockCompressor'.
[10:57:12] [Craft Scheduler Thread - 33 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[10:57:12] [Craft Scheduler Thread - 36 - FlexibleNPC/INFO]: [flexiblenpc]! There is not a new update available.
[10:57:12] [Craft Scheduler Thread - 40 - HeadsPlus/INFO]: [HeadsPlus] Registered 36 levels.
[10:57:12] [Craft Scheduler Thread - 45 - BetterReports/ERROR]: [BetterReports] An error occurred whilst fetching updates: null
[10:57:12] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[10:57:12] [Craft Scheduler Thread - 8 - HeadsPlus/INFO]: [HeadsPlus] HeadsPlus »  Plugin is up to date!
[10:57:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[10:57:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[10:57:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrvutils [1.2.14-BETA-1]
[10:57:13] [Craft Scheduler Thread - 35 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[10:57:13] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core]  
[10:57:13] [Craft Scheduler Thread - 6 - BlueSlimeCore/INFO]: [Blue Slime Core] [Update Checker] There are no updates available for plugin 'BlueSlimeCore'.
[10:57:13] [Craft Scheduler Thread - 38 - DiscordSRVUtils/INFO]: [DiscordSRVUtils] You are up to date.
[10:57:14] [Server thread/INFO]: [AuraSkills] Loaded 11 skills with 312 total sources
[10:57:14] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Fetched 90416 total heads! (1s)
[10:57:14] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading 90416 heads...
[10:57:14] [Server thread/INFO]: [AuraSkills] Loaded 9 stats and 17 traits
[10:57:14] [Craft Scheduler Thread - 34 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[10:57:14] [Server thread/INFO]: [AuraSkills] Loaded 22 pattern rewards and 0 level rewards
[10:57:14] [Server thread/INFO]: [AuraSkills] Loaded 53 loot entries in 4 pools and 2 tables
[10:57:15] [Server thread/INFO]: [AuraSkills] Loaded 6 menus
[10:57:15] [Craft Scheduler Thread - 17 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[10:57:15] [Server thread/INFO]: Done (137.219s)! For help, type "help"
[10:57:15] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3380ms or 67 ticks behind
[10:57:16] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 29 slash commands (0 conflicted) for 2 plugins in 1/1 guilds (0 cancelled)
[10:57:16] [Server thread/INFO]: [WildChests] - Couldn't find any prices providers, using default one
[10:57:16] [Server thread/INFO]: [WildBuster] Loading providers started...
[10:57:16] [Server thread/INFO]: [WildBuster]  - Using v1_21 adapter.
[10:57:16] [Server thread/INFO]: [WildBuster]  - Couldn't find any factions providers, using default one.
[10:57:16] [Server thread/INFO]: [WildBuster]  - Using WorldGuard as ClaimsProvider.
[10:57:16] [Server thread/INFO]: [WildBuster]  - Using RedProtect as ClaimsProvider.
[10:57:16] [Server thread/INFO]: [WildBuster] Loading providers done (Took 12ms)
[10:57:16] [Server thread/INFO]: [WildBuster] Loading database started...
[10:57:16] [Server thread/INFO]: [WildBuster]  - Found 0 player-busters in files.
[10:57:16] [Server thread/INFO]: [WildBuster] Loading database done (Took 0ms)
[10:57:16] [Server thread/INFO]: [WildChests] Trying to connect to SQLite database...
[10:57:16] [Server thread/INFO]: [WildChests] Successfully established connection with SQLite database!
[10:57:16] [Server thread/ERROR]: [CitizensText] Citizens has not started properly. CitizensText can not work without it, the plugin will now stop.
[10:57:16] [Server thread/INFO]: [CitizensText] Disabling CitizensText v1.20
[10:57:16] [Server thread/INFO]: [HeadsPlus] Avengers, assemble!
[10:57:16] [Server thread/INFO]: [BanItem] Successfully loaded 0 blacklisted & 0 whitelisted item(s).
[10:57:17] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 25%
[10:57:18] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 50%
[10:57:20] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 75%
[10:57:20] [Craft Scheduler Thread - 41 - HuskHomes/INFO]: [HuskHomes] Registered 'after_load' hooks
[10:57:20] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[10:57:20] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] ViaVersion supported protocols:
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.7.2-1.7.5(4)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.7.6-1.7.10(5)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.8.x(47)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.9(107)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.9.1(108)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.9.2(109)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.9.3-1.9.4(110)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.10.x(210)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.11(315)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.11.1-1.11.2(316)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.12(335)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.12.1(338)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.12.2(340)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.13(393)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.13.1(401)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.13.2(404)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.14(477)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.14.1(480)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.14.2(485)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.14.3(490)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.14.4(498)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.15(573)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.15.1(575)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.15.2(578)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.16(735)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.16.1(736)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.16.2(751)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.16.3(753)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.16.4-1.16.5(754)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.17(755)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.17.1(756)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.18-1.18.1(757)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.18.2(758)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.19(759)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.19.1-1.19.2(760)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.19.3(761)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.19.4(762)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.20-1.20.1(763)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.20.2(764)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.20.3-1.20.4(765)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.20.5-1.20.6(766)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.21-1.21.1(767)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.21.2-1.21.3(768)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.21.4(769)
[10:57:20] [Server thread/INFO]: [ViaVersionStatus] 1.21.5(770)
[10:57:20] [Server thread/INFO]: [Spectral]  
[10:57:20] [Server thread/INFO]: [Spectral] ====================[Saving Task]====================
[10:57:20] [Server thread/INFO]: [Spectral]  
[10:57:20] [Server thread/INFO]: [Spectral] BlockStorage: All data have been saved - Blocks Affected: 0 - Saved: 0 - Deleted: 0
[10:57:20] [Server thread/INFO]: [Spectral] BlockMenu: All data have been saved - Blocks Affected: 0 - Saved: 0 - Deleted: 0
[10:57:20] [Server thread/INFO]: [Spectral] PlayerStorage: All data have been saved - Players Affected: 0 - Saved: 0 - Deleted: 0
[10:57:20] [Server thread/INFO]: [Spectral] ChunkStorage: All data have been saved - Chunks Affected: 0 - Saved: 0 - Deleted: 0
[10:57:20] [Server thread/INFO]: [Spectral] MultiblockStorage: All data have been saved - Multiblocks Affected: 0 - Saved: 0 - Deleted: 0
[10:57:20] [Server thread/INFO]: [Spectral]  
[10:57:20] [Server thread/INFO]: [Spectral] ====================[Saving Task]====================
[10:57:20] [Server thread/INFO]: [Spectral]  
[10:57:21] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloading heads... 100%
[10:57:21] [HeadDB Database Worker | 1/INFO]: [tsp.headdb.HeadDB] Preloaded 90416 total heads! (7s)
[10:57:25] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[10:57:25] [Craft Scheduler Thread - 7 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.18.4