Paste #130657: Unnamed Server Log Paste

Date: 2025/02/06 21:10:11 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[05:07:44] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Linux 6.1.0-28-amd64 (amd64)
[05:07:44] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21-130-master@b1b5d4c (2024-08-10T10:02:42Z) for Minecraft 1.21
[05:07:44] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[05:07:45] [ServerMain/INFO]: [PluginInitializerManager] Initialized 51 plugins
[05:07:45] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (51):
 - AbstractMenus (1.17.2-beta), AdvancedChat (1.7.7), AdvancedCrates (4.2.1), AlonsoTags (2.2.1-BETA-PRO), AnimatedScoreboard (0.3.5), AxBoosters (3.6.5), BattlePass (4.8.18), CMI (9.7.9.2), CMILib (1.5.2.8), ChatColor (2.7.11), Citizens (2.0.37-SNAPSHOT (build 3706)), ClickableHeads (1.2.6), DeluxeCoinflip (2.7.13), DeluxeMenus (1.13.7-Release), EdPrison (5.6), EdPrivateMines (1.7), FadeCrystals (1), FadePlaytime (1), FastAsyncWorldEdit (2.12.2), HeadDatabase (4.20.4), HyanseItemSkins (1.2.4), InteractiveChat (4.2.16.0), ItemsAdder (4.0.6), KixsChatGames (2.1.9), LeaderboardMaker (1.2.3), LiteBans (2.16.4), LiteCommandEditor (1.0.0.0-SNAPSHOT-18), LoneLibs (1.0.63), LuckPerms (5.4.131), MiniMOTD (2.1.5), Multiverse-Core (4.3.14), NBTAPI (2.14.1), PhantomArmor (1), PlaceholderAPI (2.11.6), PlayerVaults (3.6.0-bSNAPSHOT), PlotSquared (7.4.1-Premium), ProtocolLib (5.3.0), Quests (5.1.6-b523), RivalCredits (1.0.5), RivalPets (2.0.9), SetModelData (1.0.0), ShopGUIPlus (1.102.0), SpecializedCrates (3.5.4), TAB (5.0.3), UltimateAutoRestart (2025.01), Vault (1.7.3-b131), ViaVersion (5.2.1), VoidGen (2.2.1), VouchersPlus (1.1.6), WorldGuard (7.0.12+829a4a4), packetevents (2.7.0)
[05:07:47] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[05:07:48] [ServerMain/INFO]: Loaded 1290 recipes
[05:07:48] [ServerMain/INFO]: Loaded 1399 advancements
[05:07:49] [Server thread/INFO]: Starting minecraft server version 1.21
[05:07:49] [Server thread/INFO]: Loading properties
[05:07:49] [Server thread/INFO]: This server is running Paper version 1.21-130-master@b1b5d4c (2024-08-10T10:02:42Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[05:07:49] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[05:07:49] [Server thread/INFO]: Server Ping Player Sample Count: 12
[05:07:49] [Server thread/INFO]: Using 4 threads for Netty based IO
[05:07:49] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[05:07:49] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[05:07:50] [Server thread/INFO]: Default game type: SURVIVAL
[05:07:50] [Server thread/INFO]: Generating keypair
[05:07:50] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[05:07:50] [Server thread/INFO]: Using epoll channel type
[05:07:50] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[05:07:50] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loading 1 libraries... please wait
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [LoneLibs] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /home/container/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loading 1 libraries... please wait
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [AdvancedChat] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loading 4 libraries... please wait
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.14/httpmime-4.5.14.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.14/httpclient-4.5.14.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.16/httpcore-4.4.16.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/apache/commons/commons-math3/3.6.1/commons-math3-3.6.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/net/sourceforge/streamsupport/speedy-math/1.0.0/speedy-math-1.0.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [ItemsAdder] Loaded library /home/container/libraries/org/fusesource/jansi/jansi/2.4.1/jansi-2.4.1.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loading 3 libraries... please wait
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/container/libraries/com/zaxxer/HikariCP/3.4.5/HikariCP-3.4.5.jar
[05:07:51] [Server thread/INFO]: [SpigotLibraryLoader] [BattlePass] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loading 1 libraries... please wait
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AbstractMenus] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loading 1 libraries... please wait
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[05:07:52] [Server thread/INFO]: [SpigotLibraryLoader] [AxBoosters] Loaded library /home/container/libraries/org/json/json/20230618/json-20230618.jar
[05:07:52] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[05:07:56] [Server thread/WARN]: Legacy plugin PlayerVaults v3.6.0-bSNAPSHOT does not specify an api-version.
[05:07:56] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[05:07:56] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[05:07:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[05:07:56] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[05:07:57] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[05:07:57] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[05:07:57] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.2
[05:07:57] [Server thread/WARN]: 
**********************************************
** You are using the Spigot-mapped FAWE jar on a modern Paper version.
** This will result in slower first-run times and wasted disk space from plugin remapping.
** Download the Paper FAWE jar from Modrinth to avoid this: https://modrinth.com/plugin/fastasyncworldedit/
**********************************************
[05:07:58] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@434ee620]
[05:07:58] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[05:07:58] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[05:07:58] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[05:07:58] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.63
[05:07:58] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.37-SNAPSHOT (build 3706)
[05:07:58] [Server thread/INFO]: [AdvancedChat] Loading server plugin AdvancedChat v1.7.7
[05:07:58] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.8
[05:07:58] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v4.0.6
[05:07:58] [Server thread/WARN]: [ItemsAdder] 'apply_on_join' and 'apply_during_chunk_load_phase' are both enabled. Please, disable one of them.
[05:07:58] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.4
[05:07:58] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.4.1-Premium
[05:07:58] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[05:07:58] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.9.2
[05:07:58] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.14.1
[05:07:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[05:07:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:07:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'NBTAPI' to create a bStats instance!
[05:07:58] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.102.0
[05:07:58] [Server thread/INFO]: [BattlePass] Loading server plugin BattlePass v4.8.18
[05:07:58] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[05:07:58] [Thread-7/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[05:08:00] [Server thread/INFO]: [ClickableHeads] Loading server plugin ClickableHeads v1.2.6
[05:08:00] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[05:08:00] [Server thread/INFO]: [EdPrison] Loading server plugin EdPrison v5.6
[05:08:00] [Server thread/INFO]: [EdPrison] Loaded WorldGuard 1.16-1.20
[05:08:00] [Server thread/INFO]: [RivalPets] Loading server plugin RivalPets v2.0.9
[05:08:00] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[05:08:00] [Server thread/INFO]: [AdvancedCrates] Loading server plugin AdvancedCrates v4.2.1
[05:08:00] [Server thread/INFO]: [EdPrivateMines] Loading server plugin EdPrivateMines v1.7
[05:08:00] [Server thread/INFO]: [AbstractMenus] Loading server plugin AbstractMenus v1.17.2-beta
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading server plugin AxBoosters v3.6.5
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library commons-math3
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library caffeine
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library snakeyaml
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library HikariCP
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library mysql-connector-j
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library sqlite-jdbc
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library h2
[05:08:00] [Server thread/INFO]: [AxBoosters] Loading library postgresql
[05:08:00] [Server thread/INFO]: [AnimatedScoreboard] Loading server plugin AnimatedScoreboard v0.3.5
[05:08:00] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[05:08:00] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.16.4
[05:08:00] [Server thread/INFO]: [VouchersPlus] Loading server plugin VouchersPlus v1.1.6
[05:08:00] [Server thread/INFO]: [HyanseItemSkins] Loading server plugin HyanseItemSkins v1.2.4
[05:08:00] [Server thread/INFO]: [AlonsoTags] Loading server plugin AlonsoTags v2.2.1-BETA-PRO
[05:08:00] [Server thread/INFO]: [KixsChatGames] Loading server plugin KixsChatGames v2.1.9
[05:08:00] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[05:08:00] [Server thread/INFO]: [LeaderboardMaker] Loading server plugin LeaderboardMaker v1.2.3
[05:08:00] [Server thread/INFO]: [DeluxeCoinflip] Loading server plugin DeluxeCoinflip v2.7.13
[05:08:00] [Server thread/INFO]: [FadePlaytime] Loading server plugin FadePlaytime v1
[05:08:00] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R1 > NMS_Common > CommandAPIBukkit
[05:08:00] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[05:08:00] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[05:08:00] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[05:08:00] [Server thread/INFO]: [SetModelData] Loading server plugin SetModelData v1.0.0
[05:08:00] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[05:08:00] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[05:08:00] [Server thread/INFO]: [RivalCredits] Loading server plugin RivalCredits v1.0.5
[05:08:00] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v3.6.0-bSNAPSHOT
[05:08:00] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2025.01
[05:08:00] [Server thread/INFO]: [ChatColor] Loading server plugin ChatColor v2.7.11
[05:08:00] [Server thread/INFO]: [SpecializedCrates] Loading server plugin SpecializedCrates v3.5.4
[05:08:00] [Server thread/INFO]: [FadeCrystals] Loading server plugin FadeCrystals v1
[05:08:01] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R1 > NMS_Common > CommandAPIBukkit
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[05:08:01] [Server thread/INFO]: [FadeCrystals] [STDOUT] CommandAPI loaded
[05:08:01] [Server thread/WARN]: Nag author(s): '[]' of 'FadeCrystals v1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[05:08:01] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.1.6-b523
[05:08:01] [Server thread/INFO]: [PhantomArmor] Loading server plugin PhantomArmor v1
[05:08:01] [Server thread/INFO]: [CommandAPI] Loaded platform NMS_1_21_R1 > NMS_Common > CommandAPIBukkit
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Spigot successfully for Chat/ChatComponents
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Adventure for AdventureChat/AdventureChatComponents
[05:08:01] [Server thread/INFO]: [CommandAPI] Hooked into Paper for paper-specific API implementations
[05:08:01] [Server thread/INFO]: [LiteCommandEditor] Loading server plugin LiteCommandEditor v1.0.0.0-SNAPSHOT-18
[05:08:01] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[05:08:01] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[05:08:01] [Server thread/INFO]:         __    
[05:08:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[05:08:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[05:08:01] [Server thread/INFO]: 
[05:08:01] [Server thread/INFO]: [LuckPerms] Loading configuration...
[05:08:01] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[05:08:02] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[05:08:02] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[05:08:02] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1197ms)
[05:08:02] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[05:08:02] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[05:08:02] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[05:08:02] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[05:08:02] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.2
[05:08:02] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[05:08:02] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[05:08:02] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[05:08:03] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[05:08:03] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_R1.PaperweightFaweAdapter as the Bukkit adapter
[05:08:03] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[05:08:03] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.63
[05:08:03] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.4.1-Premium
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [plot, plots, p, plotsquared, plot2, p2, ps, 2, plotme, plotz, ap]
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[05:08:04] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[05:08:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared version licensed to Spigot user 87642
[05:08:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] https://www.spigotmc.org/resources/77506
[05:08:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Download ID: 2023679133
[05:08:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Thanks for supporting us :)
[05:08:05] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[05:08:05] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[05:08:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[05:08:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using Paper as a complementary UUID service
[05:08:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 0 UUIDs will be cached
[05:08:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[05:08:06] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[05:08:06] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[05:08:06] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[05:08:06] [Server thread/INFO]: Preparing level "world"
[05:08:06] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[05:08:06] [Server thread/INFO]: Time elapsed: 423 ms
[05:08:06] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[05:08:06] [Server thread/INFO]: Time elapsed: 132 ms
[05:08:06] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[05:08:06] [Server thread/INFO]: Time elapsed: 92 ms
[05:08:06] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[05:08:06] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[05:08:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[05:08:07] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[05:08:07] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[05:08:07] [Server thread/INFO]: [WorldGuard] Loading region data...
[05:08:07] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[05:08:07] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[05:08:07] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.37-SNAPSHOT (build 3706)
[05:08:07] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[05:08:07] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cj: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_HORIZONTAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @140b5828).
[05:08:07] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.37-SNAPSHOT (build 3706) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R3/boss/CraftBossBar
    at Citizens (4).jar/net.citizensnpcs.nms.v1_21_R3.util.NMSImpl.<clinit>(NMSImpl.java:2730) ~[Citizens (4).jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    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) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at Citizens (4).jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:176) ~[Citizens (4).jar:?]
    at Citizens (4).jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:181) ~[Citizens (4).jar:?]
    at Citizens (4).jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:326) ~[Citizens (4).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R3.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[05:08:07] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.37-SNAPSHOT (build 3706)
[05:08:07] [Server thread/INFO]: [AdvancedChat] Enabling AdvancedChat v1.7.7
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 18 chat colors
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 1 chat bubbles
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 33 tags
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loading chat rules...
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered advertising chat rule
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered emojis chat rule
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered similarity chat rule
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered spam chat rule
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered caps chat rule
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 5 chat rules
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 2 join message formats
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 2 announcements
[05:08:08] [Server thread/INFO]: [AdvancedChat] Customizer has been enabled.
[05:08:08] [Server thread/INFO]: [AdvancedChat] Loaded 1 message customizations.
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered mod chat format
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered candy chat format
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered donator chat format
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered owner chat format
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered azure chat format
[05:08:08] [Server thread/INFO]: [AdvancedChat] Registered default chat format
[05:08:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedchat [1.0.0]
[05:08:09] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.8
[05:08:09] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-130-b1b5d4c (MC: 1.21)
[05:08:09] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[05:08:09] [Server thread/INFO]: CMI hooked.
[05:08:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.8]
[05:08:09] [Server thread/INFO]: PlaceholderAPI hooked.
[05:08:09] [Server thread/INFO]: Updated (EN) language file. Took 31ms
[05:08:09] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v4.0.6
[05:08:10] [Server thread/INFO]: [ItemsAdder] 
                                                   ItemsAdder 4.0.6
  ___  ___        __        __   __   ___  __      LoneLibs 1.0.63
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     ProtocolLib 5.3.0
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper 1.21-130-b1b5d4c (MC: 1.21)
                                                   Build Date: 2024-12-19_14.54.20
                                                   Java Version: 21.0.3
                                                   OS: Linux 6.1.0-28-amd64
[05:08:10] [Server thread/INFO]: [ItemsAdder] ViaVersion detected. Do not report glitches when joining using game versions different than the server version.
[05:08:10] [Server thread/INFO]: [ItemsAdder] More info: https://github.com/PluginBugs/Issues-ItemsAdder/issues/3683
[05:08:10] [Server thread/ERROR]: [ItemsAdder] Failed to hook into Citizens. Please update make sure you're running a compatible version.
[05:08:10] [Server thread/WARN]: java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/Trait
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass1(Native Method)
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.defineClass(ClassLoader.java:1027)
[05:08:10] [Server thread/WARN]:     at java.base/java.security.SecureClassLoader.defineClass(SecureClassLoader.java:150)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:243)
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[05:08:10] [Server thread/WARN]:     at ItemsAdder_4.0.6 (1).jar//dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.register(SourceFile:40)
[05:08:10] [Server thread/WARN]:     at ItemsAdder_4.0.6 (1).jar//dev.lone.itemsadder.Main.onEnable(SourceFile:368)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[05:08:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[05:08:10] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[05:08:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[05:08:10] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[05:08:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[05:08:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[05:08:10] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[05:08:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[05:08:10] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[05:08:10] [Server thread/WARN]: Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.Trait
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197)
[05:08:10] [Server thread/WARN]:     at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164)
[05:08:10] [Server thread/WARN]:     at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526)
[05:08:10] [Server thread/WARN]:     ... 22 more
[05:08:10] [Server thread/WARN]: [ItemsAdder] 'apply_on_join' and 'apply_during_chunk_load_phase' are both enabled. Please, disable one of them.
[05:08:10] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 21374
[05:08:10] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[05:08:10] [Server thread/INFO]: [ItemsAdder] [Pack] Done extracting internal contents from .jar
[05:08:11] [Server thread/ERROR]: [ItemsAdder] [Items] 'iaalchemy:mysterious_amulet'. Error: 'max_durability' must be > 0. File: /contents/iaalchemy/configs/items/mysterious_amulet.yml
[05:08:11] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.4
[05:08:12] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[05:08:12] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[05:08:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.4]
[05:08:12] [Server thread/INFO]: [CMI] Enabling CMI v9.7.9.2
[05:08:12] [Server thread/INFO]: _______________________________________________________
[05:08:12] [Server thread/INFO]:  
[05:08:12] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[05:08:12] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[05:08:12] [Server thread/INFO]: ██║     ██╔████╔██║██║
[05:08:12] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[05:08:12] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[05:08:12] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[05:08:12] [Server thread/INFO]: _______________________________________________________
[05:08:12] [Server thread/INFO]: Integrating PaperSpigot async methods
[05:08:12] [Server thread/INFO]: Vault found. (Loaded: true)
[05:08:12] [Server thread/INFO]: Citizens found. (Loaded: false)
[05:08:12] [Server thread/INFO]: Loaded (67) 64 Enabled and 3 Disabled modules into memory. Took 257ms
[05:08:12] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[05:08:12] [Server thread/INFO]: Initialized Cipher256 AES
[05:08:13] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 69377 heads!
[05:08:13] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[05:08:13] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] You are using an outdated version!
[05:08:13] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Latest version: 4.21.1. You are on version: 4.20.4.
[05:08:13] [Folia Async Scheduler Thread Timer/WARN]: [HeadDatabase] Update here: https://www.spigotmc.org/resources/head-database.14280/
[05:08:13] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 39ms
[05:08:13] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 4ms
[05:08:13] [Server thread/INFO]: (RandomTeleportation) Can't find world with (SuperiorWorld) name
[05:08:13] [Server thread/INFO]: (RandomTeleportation) Can't find world with (mines) name
[05:08:13] [Server thread/INFO]: (RandomTeleportation) Can't find world with (EdPrivateMines) name
[05:08:13] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Plots) name
[05:08:13] [Server thread/INFO]: 3.46.0 data base type detected
[05:08:13] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 60ms
[05:08:14] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[05:08:14] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[05:08:14] [Server thread/INFO]: Vault was found but not economy plugin, you will have limited economy support
[05:08:14] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[05:08:14] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[05:08:14] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[05:08:14] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 6ms
[05:08:14] [Server thread/INFO]: Loaded (5) kits into memory. Took 6ms
[05:08:14] [Server thread/INFO]: Loaded (7) ranks into memory. Took 10ms
[05:08:14] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 2ms
[05:08:14] [Server thread/INFO]: Loaded (4) player data into memory. Took 11ms
[05:08:14] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[05:08:14] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[05:08:14] [Server thread/INFO]: Loaded (5) custom alias into memory. Took 1ms
[05:08:14] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 97ms
[05:08:14] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 2ms
[05:08:14] [Server thread/INFO]: Loaded (EN) language file into memory. Took 49ms
[05:08:14] [Server thread/INFO]: Loaded (245) worth values into memory. Took 21ms
[05:08:14] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[05:08:14] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[05:08:14] [Server thread/INFO]: Loaded (4) schedules into memory. Took 4ms
[05:08:14] [Server thread/INFO]: Loaded (-) GeoIP into memory. Took 3ms
[05:08:14] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 2ms
[05:08:14] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 1ms
[05:08:14] [Server thread/INFO]: Version 9.7.9.2 has been enabled
[05:08:14] [Server thread/INFO]: _______________________________________________________
[05:08:14] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.14.1
[05:08:14] [Server thread/INFO]: [NBTAPI] Checking bindings...
[05:08:14] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[05:08:14] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[05:08:14] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[05:08:15] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[05:08:15] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.102.0
[05:08:15] [Server thread/INFO]: [BattlePass] Enabling BattlePass v4.8.18
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the week-pool quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully.
[05:08:15] [Server thread/INFO]: [PlotSquared] Hooked into PlotSquared
[05:08:15] [Server thread/INFO]: [ShopGUIPlus] Hooked into ShopGuiPlus
[05:08:15] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium
[05:08:15] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free
[05:08:15] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders
[05:08:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: battlepass [1.1]
[05:08:15] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[05:08:15] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[05:08:15] [Server thread/INFO]: [ClickableHeads] Enabling ClickableHeads v1.2.6
[05:08:15] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[05:08:15] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.14" 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--].
[05:08:15] [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.
[05:08:15] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[05:08:15] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:15] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:15] [Server thread/INFO]: Preparing start region for dimension minecraft:mines
[05:08:15] [Server thread/INFO]: Time elapsed: 64 ms
[05:08:15] [Server thread/INFO]: [WorldGuard] (mines) TNT ignition is PERMITTED.
[05:08:15] [Server thread/INFO]: [WorldGuard] (mines) Lighters are PERMITTED.
[05:08:15] [Server thread/INFO]: [WorldGuard] (mines) Lava fire is PERMITTED.
[05:08:15] [Server thread/INFO]: [WorldGuard] (mines) Fire spread is UNRESTRICTED.
[05:08:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'mines'
[05:08:15] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:15] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:15] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: SuperiorWorld
[05:08:15] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[05:08:16] [pool-28-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[05:08:16] [pool-28-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[05:08:16] [Server thread/INFO]: Preparing start region for dimension minecraft:edprivatemines
[05:08:16] [Server thread/INFO]: Time elapsed: 38 ms
[05:08:16] [Server thread/INFO]: [WorldGuard] (EdPrivateMines) TNT ignition is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (EdPrivateMines) Lighters are PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (EdPrivateMines) Lava fire is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (EdPrivateMines) Fire spread is UNRESTRICTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'EdPrivateMines'
[05:08:16] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'Plots'
[05:08:16] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[05:08:16] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[05:08:16] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[05:08:16] [Server thread/INFO]: [P2] Loading flags for area: Plots
[05:08:16] [Server thread/INFO]: [P2] Area flags: []
[05:08:16] [Server thread/INFO]: [P2] Road flags: []
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - road schematic: false
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name Plots
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = false
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 3
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 46
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 62
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 62
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = minecraft:stone
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = minecraft:grass_block
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = minecraft:stone_slab
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:sandstone_slab
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:stone
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:quartz_block
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 42
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 7
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[05:08:16] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 49
[05:08:16] [Server thread/INFO]: Preparing start region for dimension minecraft:plots
[05:08:16] [Server thread/INFO]: Time elapsed: 67 ms
[05:08:16] [Server thread/INFO]: [WorldGuard] (Plots) TNT ignition is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Plots) Lighters are PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Plots) Lava fire is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Plots) Fire spread is UNRESTRICTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Plots'
[05:08:16] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:16] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:16] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[05:08:16] [Server thread/INFO]: Time elapsed: 83 ms
[05:08:16] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[05:08:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[05:08:16] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:16] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:16] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[05:08:16] [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.
[05:08:16] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[05:08:16] [Server thread/INFO]: [EdPrison] Enabling EdPrison v5.6
[05:08:16] [Server thread/INFO]: fortune was loaded (Lazy Enchant)
[05:08:16] [Server thread/INFO]: shardgreed was loaded (Lazy Enchant)
[05:08:16] [Server thread/INFO]: merchant was loaded (Enchant)
[05:08:16] [Server thread/INFO]: greed was loaded (Enchant)
[05:08:16] [Server thread/INFO]: explosive was loaded (Enchant)
[05:08:16] [Server thread/INFO]: keyfinder was loaded (Enchant)
[05:08:16] [Server thread/INFO]: strike was loaded (Enchant)
[05:08:16] [Server thread/INFO]: ripple was loaded (Enchant)
[05:08:16] [Server thread/INFO]: cupid was loaded (Enchant)
[05:08:16] [Server thread/INFO]: ripsaw was loaded (Enchant)
[05:08:16] [Server thread/INFO]: jackhammer was loaded (Enchant)
[05:08:16] [Server thread/INFO]: keyall was loaded (Enchant)
[05:08:16] [Server thread/INFO]: jukebox was loaded (Enchant)
[05:08:16] [Server thread/INFO]: sonicboom was loaded (Enchant)
[05:08:16] [Server thread/INFO]: poseidonstrike was loaded (Enchant)
[05:08:16] [Server thread/INFO]: radioactive was loaded (Enchant)
[05:08:16] [Server thread/INFO]: pouchfinder was loaded (Exact probability Enchant)
[05:08:16] [Server thread/INFO]: speed was loaded (Enchant)
[05:08:16] [Server thread/INFO]: remove-speed was loaded (Enchant)
[05:08:16] [Server thread/INFO]: haste was loaded (Enchant)
[05:08:16] [Server thread/INFO]: remove-haste was loaded (Enchant)
[05:08:16] [Server thread/INFO]: nightvision was loaded (Enchant)
[05:08:16] [Server thread/INFO]: remove-nightvision was loaded (Enchant)
[05:08:16] [Server thread/INFO]: jumpboost was loaded (Enchant)
[05:08:16] [Server thread/INFO]: remove-jumpboost was loaded (Enchant)
[05:08:16] [Server thread/INFO]: dantesinferno-relic was loaded (Enchant)
[05:08:16] [Server thread/INFO]: midastouch-relic was loaded (Enchant)
[05:08:16] [Server thread/INFO]: Registered static variable: randomshardgreed
[05:08:16] [Server thread/INFO]: Registered static variable: randomfortunemoney
[05:08:16] [Server thread/INFO]: Registered static variable: randomfortuneshards
[05:08:16] [Server thread/INFO]: Registered static variable: jackhammershards
[05:08:16] [Server thread/INFO]: Registered static variable: jackhammermoney
[05:08:16] [Server thread/INFO]: Registered static variable: pouchshards
[05:08:16] [Server thread/INFO]: [EdPrison] Currency money was registered with Vault.
[05:08:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: edprison [1.0.0]
[05:08:17] [Server thread/INFO]: [RivalPets] Enabling RivalPets v2.0.9
[05:08:17] [Server thread/INFO]:                                                  
[05:08:17] [Server thread/INFO]:                                                  
[05:08:17] [Server thread/INFO]:  /$$$$$$$  /$$$$$$ /$$    /$$  /$$$$$$  /$$      
[05:08:17] [Server thread/INFO]: | $$__  $$|_  $$_/| $$   | $$ /$$__  $$| $$      
[05:08:17] [Server thread/INFO]: | $$  \ $$  | $$  | $$   | $$| $$  \ $$| $$      
[05:08:17] [Server thread/INFO]: | $$$$$$$/  | $$  |  $$ / $$/| $$$$$$$$| $$      
[05:08:17] [Server thread/INFO]: | $$__  $$  | $$   \  $$ $$/ | $$__  $$| $$      
[05:08:17] [Server thread/INFO]: | $$  \ $$  | $$    \  $$$/  | $$  | $$| $$      
[05:08:17] [Server thread/INFO]: | $$  | $$ /$$$$$$   \  $/   | $$  | $$| $$$$$$$$
[05:08:17] [Server thread/INFO]: |__/  |__/|______/    \_/    |__/  |__/|________/
[05:08:17] [Server thread/INFO]:                                                  
[05:08:17] [Server thread/INFO]:  /$$$$$$$  /$$$$$$$$ /$$$$$$$$ /$$$$$$ 
[05:08:17] [Server thread/INFO]: | $$__  $$| $$_____/|__  $$__//$$__  $$
[05:08:17] [Server thread/INFO]: | $$  \ $$| $$         | $$  | $$  \__/
[05:08:17] [Server thread/INFO]: | $$$$$$$/| $$$$$      | $$  |  $$$$$$ 
[05:08:17] [Server thread/INFO]: | $$____/ | $$__/      | $$   \____  $$
[05:08:17] [Server thread/INFO]: | $$      | $$         | $$   /$$  \ $$
[05:08:17] [Server thread/INFO]: | $$      | $$$$$$$$   | $$  |  $$$$$$/
[05:08:17] [Server thread/INFO]: |__/      |________/   |__/   \______/ 
[05:08:17] [Server thread/INFO]:                                        
[05:08:17] [Server thread/INFO]: 
[05:08:17] [Server thread/INFO]: [!] Registered experience buff type.
[05:08:17] [Server thread/INFO]: [!] Registered block-break buff type.
[05:08:17] [Server thread/INFO]: [!] Registered block-break-exact- buff type.
[05:08:17] [Server thread/INFO]: [!] Registered damage buff type.
[05:08:17] [Server thread/INFO]: [!] Registered resistance buff type.
[05:08:17] [Server thread/INFO]: [!] Registered mob-kill buff type.
[05:08:17] [Server thread/INFO]: [!] Registered mob-kill-exact- buff type.
[05:08:17] [Server thread/INFO]: [!] Registered fish-catch buff type.
[05:08:17] [Server thread/INFO]: [!] Registered rivalpets-xp buff type.
[05:08:17] [Server thread/INFO]: [!] Registered potioneffect- buff type.
[05:08:17] [Server thread/INFO]: [!] Registered cmi buff type.
[05:08:17] [Server thread/INFO]: [!] Registered edprison- buff type.
[05:08:17] [Server thread/INFO]: [!] Registered edprison-enchant- buff type.
[05:08:17] [Server thread/INFO]: [!] Registered edprisonbreak buff type.
[05:08:17] [Server thread/INFO]: [!] Registered edprisonbreak-multi buff type.
[05:08:17] [Server thread/INFO]: [!] Registered battlepass buff type.
[05:08:17] [Server thread/INFO]: [!] Registered shopgui-buy buff type.
[05:08:17] [Server thread/INFO]: [!] Registered shopgui-sell buff type.
[05:08:17] [Server thread/INFO]: [!] Registered shopgui-sell-amount buff type.
[05:08:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalpets-0 - Starting...
[05:08:17] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] rivalpets-0 - Added connection org.sqlite.jdbc4.JDBC4Connection@12ebd79f
[05:08:17] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalpets-0 - Start completed.
[05:08:17] [Server thread/INFO]: [Rival Pets] Successfully connected to the SQLite Database.
[05:08:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalpets [2.0.0]
[05:08:17] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[05:08:18] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[05:08:18] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into CMI!
[05:08:18] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[05:08:18] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[05:08:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[05:08:18] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[05:08:18] [Server thread/INFO]: [AdvancedCrates] Enabling AdvancedCrates v4.2.1
[05:08:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[05:08:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:08:18] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AdvancedCrates' to create a bStats instance!
[05:08:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedcrates [4.2.1]
[05:08:20] [Server thread/WARN]: java.lang.IllegalArgumentException: No enum constant me.PM2.AdvancedCrates.animations.utils.AnimationType.INSTANTCRATE
[05:08:20] [Server thread/WARN]:     at java.base/java.lang.Enum.valueOf(Enum.java:293)
[05:08:20] [Server thread/WARN]:     at AdvancedCrates-4.2.1 (1).jar//me.PM2.AdvancedCrates.animations.utils.AnimationType.valueOf(AnimationType.java:3)
[05:08:20] [Server thread/WARN]:     at AdvancedCrates-4.2.1 (1).jar//me.PM2.AdvancedCrates.animations.utils.AnimationType.getAnimationType(AnimationType.java:18)
[05:08:20] [Server thread/WARN]:     at AdvancedCrates-4.2.1 (1).jar//me.PM2.AdvancedCrates.cratesHandler.Crate.<init>(Crate.java:362)
[05:08:20] [Server thread/WARN]:     at AdvancedCrates-4.2.1 (1).jar//me.PM2.AdvancedCrates.MonthlyCrate.registerCrateInfo(MonthlyCrate.java:950)
[05:08:20] [Server thread/WARN]:     at AdvancedCrates-4.2.1 (1).jar//me.PM2.AdvancedCrates.MonthlyCrate.onEnable(MonthlyCrate.java:212)
[05:08:20] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[05:08:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[05:08:20] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[05:08:20] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[05:08:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:640)
[05:08:20] [Server thread/WARN]:     at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:589)
[05:08:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:754)
[05:08:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:516)
[05:08:20] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329)
[05:08:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1215)
[05:08:20] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330)
[05:08:20] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[05:08:20] [Server thread/INFO]: [EdPrivateMines] Enabling EdPrivateMines v1.7
[05:08:20] [Server thread/ERROR]: [EdPrivateMines] Failed to register events for class com.edwardbelt.edprivatemines.listeners.TaxListener because com/edwardbelt/edprison/customevents/EdPrisonAutoSellEvent does not exist.
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: edprivatemines [1.0.0]
[05:08:20] [Server thread/INFO]: [AbstractMenus] Enabling AbstractMenus v1.17.2-beta
[05:08:20] [Server thread/INFO]: [AbstractMenus] Loaded head animation "anim_eye"
[05:08:20] [Server thread/INFO]: [AbstractMenus] Using LuckPerms
[05:08:20] [Server thread/INFO]: [AbstractMenus] Using PlaceholderAPI
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: var [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: varp [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vart [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: varpt [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hanim [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ctg [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: activator [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: placed [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: taken [1.0]
[05:08:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: changed [1.0]
[05:08:21] [Server thread/INFO]: [AbstractMenus] Loaded 4 menus
[05:08:21] [Server thread/INFO]: [AxBoosters] Enabling AxBoosters v3.6.5
[05:08:22] [Server thread/INFO]: [AxBoosters] Hooked into LuckPerms!
[05:08:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axboosters [3.0.0]
[05:08:22] [Server thread/INFO]: [AxBoosters] Hooked into PlaceholderAPI!
[05:08:22] [Server thread/INFO]: [AxBoosters] Loaded plugin! Using H2 database to store data!
[05:08:22] [Server thread/INFO]: [AnimatedScoreboard] Enabling AnimatedScoreboard v0.3.5
[05:08:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: animatedscoreboard [0.0.1]
[05:08:22] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[05:08:22] [Server thread/INFO]: [TAB] Loaded NMS hook in 25ms
[05:08:23] [Server thread/INFO]: [TAB] Enabled in 350ms
[05:08:23] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.16.4
[05:08:23] [Server thread/INFO]: [LiteBans] Using system locale (en)
[05:08:23] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[05:08:23] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[05:08:23] [Server thread/INFO]: [LiteBans] Connecting to database...
[05:08:23] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (139.4 ms).
[05:08:23] [Server thread/INFO]: [LiteBans] Database connection fully initialized (142.5 ms).
[05:08:23] [Server thread/INFO]: [LiteBans] v2.16.4 enabled. Startup took 281 ms.
[05:08:23] [Server thread/INFO]: [VouchersPlus] Enabling VouchersPlus v1.1.6
[05:08:23] [Server thread/INFO]: [Vouchers+] Starting Plugin...
[05:08:23] [Server thread/INFO]: [Vouchers+] Detected Placeholder API. Successfully enabled plugin support.
[05:08:23] [Server thread/INFO]: [Vouchers+] Anti-Dupe is not enabled, skipping set up.
[05:08:23] [Server thread/INFO]: [Vouchers+] Detected version group as V1.20.5+[1210]. Applying necessary settings.
[05:08:23] [Server thread/INFO]: [Vouchers+] Started Successfully!
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Enabling HyanseItemSkins v1.2.4
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Starting to load all skins...
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_pickaxe.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_hoe.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_crossbow.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_axe.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_shovel.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_sword.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darkmagic_bow.yml' skins (from 'darkmagic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'demonbow.yml' skins (from 'demonic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'demonsword.yml' skins (from 'demonic' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'doomhammer.yml' skins (from 'skins' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'darksaber.yml' skins (from 'skins' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'eldersword.yml' skins (from 'elder' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'elderbow.yml' skins (from 'elder' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] Loading 'phoenixbow.yml' skins (from 'phoenix' directory)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] All skins are successfully loaded (took 112ms)
[05:08:23] [Server thread/INFO]: [HyanseItemSkins] ItemsAdder detected, trying to hook into it
[05:08:23] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.2.1-BETA-PRO
[05:08:23] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[05:08:23] [Server thread/INFO]: Enabling HEX color fix for 1.8 - 1.15 players.. (This is an experimental feature
[05:08:23] [Server thread/INFO]:     _   _                 _____             ___          Running v2.2.1-BETA-PRO
[05:08:23] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ __| _ \_ _ ___  Server Paper v1.21-130-b1b5d4c (MC: 1.21)
[05:08:23] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-<  _/ '_/ _ \ Discord for support: https://alonsoaliaga.com/discord
[05:08:23] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/_| |_| \___/ Thanks for using my plugin ❤ 87642!
[05:08:23] [Server thread/INFO]:          Developed by AlonsoAliaga |___/
[05:08:23] [Server thread/INFO]: 
[05:08:23] [Server thread/INFO]: ==============================================================================================
[05:08:23] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper), plugin should work fine!
[05:08:23] [Server thread/INFO]: [AlonsoTags] If you have issues, join us on our official support server on alonsoaliaga.com/discord
[05:08:23] [Server thread/INFO]: ==============================================================================================
[05:08:23] [Server thread/INFO]: 
[05:08:23] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[05:08:23] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[05:08:23] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[05:08:23] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[05:08:23] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[05:08:23] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[05:08:23] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.46.0
[05:08:23] [Server thread/INFO]: [SQLite] Successfully connected to database!
[05:08:23] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[05:08:23] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Column called 'selected_color' already exists. Skipping..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Column called 'selected_filter' already exists. Skipping..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded 1 books!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Forced mode is not enabled. Players can choose the mode they want..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Old ItemStack constructor is available!
[05:08:23] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwningPlayer method is available for heads.
[05:08:23] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwner method is available for heads.
[05:08:23] [Server thread/INFO]: [AlonsoTags] SkullMeta#setOwnerProfile method is available for heads. Using it for heads..
[05:08:23] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] New setOwningPlayer method is available!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Old Bukkit#getOfflinePlayer(String name) method is available!
[05:08:23] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Currency LEVEL successfully loaded!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Vault hooked correctly with plugin 'EdPrison' because couldn't find preferred plugins!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Cost type 'VAULT' has been enabled!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Currency VAULT successfully loaded!
[05:08:23] [Server thread/INFO]: [AlonsoTags] PlayerPoints is not available! Disabling economy support..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Currency PLAYER_POINTS not loaded!
[05:08:23] [Server thread/INFO]: [AlonsoTags] TokenManager is not available! Disabling economy support..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Currency TOKEN_MANAGER not loaded!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'beginner-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dash-lover-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'rekt-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'knight-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'magic-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-eyes-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-mouth-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-kiss-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'king-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'queen-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'robot-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'miner-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'geek-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'idk-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'lenny-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'rich-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'rich-rank-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-love-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-crown-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-heart-banner-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'glasses-items-adder-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Tag with identifier 'glasses-items-adder-tag' has invalid item name from ItemsAdder!! Skipping..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'compressed-custom-items-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] CustomItems plugin wasn't found. Tag with identifier 'compressed-custom-items-tag' will be ignored! Skipping...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'crying-cat-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading '30-bill-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading '100-bill-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'sus-red-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'crewmate-red-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'impostor-black-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'lgbt-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'christmas-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'nerd-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'halloween-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'hacker-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'candy-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'king-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'love-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'supreme-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'halloween-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'amethyst-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'toxic-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'love-instagram-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'love-facebook-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'love-netflix-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'love-tiktok-hex-tag' tag...
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded 43 tags!
[05:08:23] [Server thread/INFO]: [AlonsoTags] [Start] Scheduling economy hooks..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Loading 'brown' color..
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded brown color!
[05:08:23] [Server thread/INFO]: [AlonsoTags] Successfully loaded 17 colors!
[05:08:23] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[05:08:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: alonsotags [2.2.1-BETA-PRO]
[05:08:23] [Server thread/INFO]: [AlonsoTags] Bungee messaging system is allowed in this server. Enabling..
[05:08:23] [Server thread/INFO]: [KixsChatGames] Enabling KixsChatGames v2.1.9
[05:08:23] [Server thread/INFO]: 
[05:08:23] [Server thread/INFO]: --------------------------------------
[05:08:23] [Server thread/INFO]:      Kix's Chat Games by kixmc
[05:08:23] [Server thread/INFO]:      Starting on version 2.1.9
[05:08:23] [Server thread/INFO]: --------------------------------------
[05:08:23] [Server thread/INFO]: 
[05:08:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: kixschatgames [2.1.9]
[05:08:23] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[05:08:24] [Server thread/INFO]: [LeaderboardMaker] Enabling LeaderboardMaker v1.2.3
[05:08:24] [Server thread/INFO]: [ERROR] Invalid license key.
[05:08:24] [Server thread/INFO]: [ERROR] Your license key is invalid!
Create a ticket in our discord server to get one.
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Enabling DeluxeCoinflip v2.7.13
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] 
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip]  __ __    DeluxeCoinflip v2.7.13
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] /  |_     Author(s): ItsLewizzz
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] \_ |      (c) Zithium Studios 2020-2023. All rights reserved.
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] 
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Loading bStats metrics
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Registered economy provider 'Vault' using Vault plugin.
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] [ACF] Enabled Asynchronous Tab Completion Support!
[05:08:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxecoinflip [2.7.13]
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Hooked into PlaceholderAPI successfully
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Clearing all active coinflip games.
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] All coinflip games have been cleared.
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] 
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] Successfully loaded in 113ms
[05:08:24] [Server thread/INFO]: [DeluxeCoinflip] 
[05:08:24] [Server thread/INFO]: [FadePlaytime] Enabling FadePlaytime v1
[05:08:24] [Server thread/INFO]: [!] Checking License: DCSX-T5JZ-OZ1S-PQQM
[05:08:24] [Server thread/INFO]:  
[05:08:24] [Server thread/INFO]:  
[05:08:24] [Server thread/INFO]: /$$$$$$$$             /$$
[05:08:24] [Server thread/INFO]: | $$_____/            | $$
[05:08:24] [Server thread/INFO]: | $$    /$$$$$$   /$$$$$$$  /$$$$$$
[05:08:24] [Server thread/INFO]: | $$$$$|____  $$ /$$__  $$ /$$__  $$
[05:08:24] [Server thread/INFO]: | $$__/ /$$$$$$$| $$  | $$| $$$$$$$$
[05:08:24] [Server thread/INFO]: | $$   /$$__  $$| $$  | $$| $$_____/
[05:08:24] [Server thread/INFO]: | $$  |  $$$$$$$|  $$$$$$$|  $$$$$$$
[05:08:24] [Server thread/INFO]: |__/   \_______/ \_______/ \_______/
[05:08:24] [Server thread/INFO]: 
[05:08:24] [Server thread/INFO]: /$$$$$$  /$$  /$$$$$$   /$$
[05:08:24] [Server thread/INFO]: /$$__  $$|__/ /$$__  $$ | $$
[05:08:24] [Server thread/INFO]: | $$  \__/ /$$| $$  \__//$$$$$$   /$$$$$$$
[05:08:24] [Server thread/INFO]: | $$ /$$$$| $$| $$$$   |_  $$_/  /$$_____/
[05:08:24] [Server thread/INFO]: | $$|_  $$| $$| $$_/     | $$   |  $$$$$$
[05:08:24] [Server thread/INFO]: | $$  \ $$| $$| $$       | $$ /$$\____  $$
[05:08:24] [Server thread/INFO]: |  $$$$$$/| $$| $$       |  $$$$//$$$$$$$/
[05:08:24] [Server thread/INFO]: \______/ |__/|__/        \___/ |_______/
[05:08:24] [Server thread/INFO]:  
[05:08:24] [Server thread/INFO]:  
[05:08:24] [Server thread/INFO]: [!] Connected to SQLite database.
[05:08:24] [Server thread/INFO]: [!] Starting gifts reset task.
[05:08:24] [Server thread/INFO]: [!] Starting leaderboard refresh task with a refresh time of 3600 ticks
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #1
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #2
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #3
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #4
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #5
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #6
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #7
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #8
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #9
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #10
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #11
[05:08:24] [Server thread/INFO]: [!] Cached Gift: #12
[05:08:24] [Server thread/INFO]: [SetModelData] Enabling SetModelData v1.0.0
[05:08:24] [Server thread/INFO]: [SetModelData] SetModelData is loaded!
[05:08:24] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[05:08:24] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[05:08:25] [Server thread/WARN]: [DeluxeMenus] Material for item: grass in menu: cosmetics-main is not a valid material name!
Skipping item: grass
[05:08:25] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: cosmetics-trails already exists for another menu!
Skipping menu: cosmetics-trails
[05:08:25] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: cosmetics-pets already exists for another menu!
Skipping menu: cosmetics-pets
[05:08:25] [Server thread/INFO]: [DeluxeMenus] 13 GUI menus loaded!
[05:08:25] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[05:08:25] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[05:08:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[05:08:25] [Server thread/INFO]: [RivalCredits] Enabling RivalCredits v1.0.5
[05:08:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalcredits-0 - Starting...
[05:08:25] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] rivalcredits-0 - Start completed.
[05:08:25] [Server thread/INFO]: [Rival Credits] Successfully connected to the SQLite Database.
[05:08:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rivalcredits [1.0]
[05:08:25] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]:       :::::::::       :::::::::::    :::     :::           :::        :::   
[05:08:25] [Server thread/INFO]:      :+:    :+:          :+:        :+:     :+:         :+: :+:      :+:    
[05:08:25] [Server thread/INFO]:     +:+    +:+          +:+        +:+     +:+        +:+   +:+     +:+     
[05:08:25] [Server thread/INFO]:    +#++:++#:           +#+        +#+     +:+       +#++:++#++:    +#+      
[05:08:25] [Server thread/INFO]:   +#+    +#+          +#+         +#+   +#+        +#+     +#+    +#+       
[05:08:25] [Server thread/INFO]:  #+#    #+#          #+#          #+#+#+#         #+#     #+#    #+#        
[05:08:25] [Server thread/INFO]: ###    ###      ###########        ###           ###     ###    ##########  
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]:       ::::::::       :::::::::       ::::::::::       :::::::::       :::::::::::   :::::::::::       :::::::: 
[05:08:25] [Server thread/INFO]:     :+:    :+:      :+:    :+:      :+:              :+:    :+:          :+:           :+:          :+:    :+:
[05:08:25] [Server thread/INFO]:    +:+             +:+    +:+      +:+              +:+    +:+          +:+           +:+          +:+         
[05:08:25] [Server thread/INFO]:   +#+             +#++:++#:       +#++:++#         +#+    +:+          +#+           +#+          +#++:++#++   
[05:08:25] [Server thread/INFO]:  +#+             +#+    +#+      +#+              +#+    +#+          +#+           +#+                 +#+    
[05:08:25] [Server thread/INFO]: #+#    #+#      #+#    #+#      #+#              #+#    #+#          #+#           #+#          #+#    #+#     
[05:08:25] [Server thread/INFO]: ########       ###    ###      ##########       #########       ###########       ###           ########       
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: ^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^
[05:08:25] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v3.6.0-bSNAPSHOT*
[05:08:25] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.01
[05:08:25] [Server thread/INFO]: [UltimateAutoRestart] 2025.01, a free resource by Norska - Thanks for downloading!
[05:08:25] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[05:08:25] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[05:08:25] [Server thread/INFO]: [ChatColor] Enabling ChatColor v2.7.11
[05:08:25] [Server thread/INFO]: [ChatColor] Enabling ChatColor v2.7.11
[05:08:25] [Server thread/INFO]: [ChatColor] PlaceholderAPI support: Yes
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern candy-cane...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern candy-cane!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern azure...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern azure!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern chroma...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern chroma!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern demon-fire...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern demon-fire!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern golden-beam...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern golden-beam!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern lime...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern lime!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern aqua...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern aqua!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern dark_aqua...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern dark_aqua!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern blue...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern blue!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern dark_blue...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern dark_blue!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern pink...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern pink!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern purple...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern purple!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern white...
[05:08:25] [Server thread/INFO]: [ChatColor] Cannot load color '<>' using 'white' instead, valid formats are: 'f', '&f', 'WHITE', '#FFFFFF'
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern white!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern gray...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern gray!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern dark_gray...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern dark_gray!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern black...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern black!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern monochromatic...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern monochromatic!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern rainbow...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern rainbow_random...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow_random!
[05:08:25] [Server thread/INFO]: [ChatColor] Loading pattern rainbow_gradient...
[05:08:25] [Server thread/INFO]: [ChatColor] Loaded pattern rainbow_gradient!
[05:08:25] [Server thread/INFO]: [me.mattyhd0.chatcolor.lib.hikaricp.HikariDataSource] HikariPool-1 - Starting...
[05:08:25] [Server thread/INFO]: [me.mattyhd0.chatcolor.lib.hikaricp.pool.HikariPool] HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@5c4b95a3
[05:08:25] [Server thread/INFO]: [me.mattyhd0.chatcolor.lib.hikaricp.HikariDataSource] HikariPool-1 - Start completed.
[05:08:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatcolor [1.0]
[05:08:25] [Server thread/INFO]: [SpecializedCrates] Enabling SpecializedCrates v3.5.4
[05:08:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[05:08:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:08:25] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'SpecializedCrates' to create a bStats instance!
[05:08:25] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[05:08:25] [Server thread/WARN]: [NBTAPI] The NBT-API inside SpecializedCrates is located at 'de.tr7zw.nbtapi.utils'!
[05:08:25] [Server thread/WARN]: [NBTAPI] This package name is reserved for the official NBTAPI plugin, and not intended to be used for shading!
[05:08:25] [Server thread/WARN]: [NBTAPI] Please change the relocate to something else. For example: com.example.util.nbtapi
[05:08:25] [Server thread/WARN]: [NBTAPI] #########################################- NBTAPI -#########################################
[05:08:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: specializedcrates [3.5.4]
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: csgppurple
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_2
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: echo
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_3
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_5
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_7
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: tnt_animation
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: roulette
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_1
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: donator
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: mezoth
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: slots
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_9
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_8
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: example_animation
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: nightmare_animation
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: great_box
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: semicircle
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: csgp
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: monthly2
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_6
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: csgo
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: monthly
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: animation_4
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: portal
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: vote
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: lootbox_animation_1
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: [SpecializedCrates] Hologram handler: CMI
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Echo
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Donator
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Zodiac
[05:08:25] [Server thread/INFO]:   Animation
[05:08:25] [Server thread/INFO]:     - Failed to load the CrateType.Inventory.CSGO.final-panel-tick-length value.
[05:08:25] [Server thread/INFO]:         CAUSE: The value does not exist
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Lucky
[05:08:25] [Server thread/INFO]:   Settings
[05:08:25] [Server thread/INFO]:     - Failed to load the 'open.crate-animation' value.
[05:08:25] [Server thread/INFO]:         CAUSE:  luckportal is not a valid animation.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Nightmare
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: MasterCrate
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: BeginnerCrate
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: ExpertCrate
[05:08:25] [Server thread/INFO]:   Settings
[05:08:25] [Server thread/INFO]:     - Failed to set the display type to NPC / MOB
[05:08:25] [Server thread/INFO]:         CAUSE: The 'Citizens' plugin is not installed.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Monthly
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: BasicCrate
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Mezoth
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Cosmetic
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Vote
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Monthly2
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: MineChestExample (Disabled)
[05:08:25] [Server thread/INFO]:   Animation
[05:08:25] [Server thread/INFO]:     - Failed to load the CrateType.Inventory.CSGO.final-panel-tick-length value.
[05:08:25] [Server thread/INFO]:         CAUSE: The value does not exist
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: Kronos
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: MiddleCrate
[05:08:25] [Server thread/INFO]:   Animation
[05:08:25] [Server thread/INFO]:     - Failed to load the CrateType.Inventory.CSGO.final-panel-tick-length value.
[05:08:25] [Server thread/INFO]:         CAUSE: The value does not exist
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: AllCrates
[05:08:25] [Server thread/INFO]:   + Success: there were no issues.
[05:08:25] [Server thread/INFO]: 
[05:08:25] [Server thread/INFO]: 
[05:08:26] [Server thread/INFO]: Crate AllCrates rewards not found.
[05:08:26] [Server thread/INFO]: WARNING: The value 'spawn-protection' is set to 16 in the server.properties file. This WILL cause issues with SpecializedCrates - any crates near spawn will only be openable for OP players. Please go to your server.properties file in the main directory of your server and change spawn-protection: 0.
[05:08:26] [Server thread/INFO]: [FadeCrystals] Enabling FadeCrystals v1
[05:08:26] [Server thread/INFO]: [!] Checking license: 829D-7IZ1-VC6K-LO7J
[05:08:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fadecrystals [1.0]
[05:08:26] [Server thread/INFO]: [!] PlaceholderAPI found. Registered placeholders:
[05:08:26] [Server thread/INFO]: %fadecrystals_used_slots% - The amount of slots used by the player.
[05:08:26] [Server thread/INFO]: %fadecrystals_active_<CrystalID>% - The name of the active crystal.
[05:08:26] [Server thread/INFO]: %fadecrystals_active_<CrystalID>_amount% - The amount of boosts the active crystal has.
[05:08:26] [Server thread/INFO]: %fadecrystals_active_<CrystalID>_enchant% - The enchantment of the active crystal.
[05:08:26] [Server thread/INFO]: %fadecrystals_active_<CrystalID>_name% - The name of the active crystal.
[05:08:26] [Server thread/INFO]: [!] License check passed. Continuing startup.
[05:08:26] [Server thread/INFO]: [!] Registered Command - /fadecubesadmin
[05:08:26] [Server thread/INFO]: [!] Registered Sub Command - /fadecubesadmin givecube
[05:08:26] [Server thread/INFO]: [!] Registered Sub Command - /fadecubesadmin reload
[05:08:26] [Server thread/INFO]: [!] Registered Sub Command - /fadecubesadmin listcubes
[05:08:26] [Server thread/INFO]: [!] Registered Command - /cubes
[05:08:26] [Server thread/INFO]: [Quests] Enabling Quests v5.1.6-b523
[05:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[05:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[05:08:26] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Quests' to create a bStats instance!
[05:08:26] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[05:08:26] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:26] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[05:08:26] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:26] [Server thread/INFO]: [PhantomArmor] Enabling PhantomArmor v1
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]: /$$$$$$$  /$$                             /$$
[05:08:26] [Server thread/INFO]: | $$__  $$| $$                            | $$
[05:08:26] [Server thread/INFO]: | $$  \ $$| $$$$$$$   /$$$$$$  /$$$$$$$  /$$$$$$    /$$$$$$  /$$$$$$/$$$$
[05:08:26] [Server thread/INFO]: | $$$$$$$/| $$__  $$ |____  $$| $$__  $$|_  $$_/   /$$__  $$| $$_  $$_  $$
[05:08:26] [Server thread/INFO]: | $$____/ | $$  \ $$  /$$$$$$$| $$  \ $$  | $$    | $$  \ $$| $$ \ $$ \ $$
[05:08:26] [Server thread/INFO]: | $$      | $$  | $$ /$$__  $$| $$  | $$  | $$ /$$| $$  | $$| $$ | $$ | $$
[05:08:26] [Server thread/INFO]: | $$      | $$  | $$|  $$$$$$$| $$  | $$  |  $$$$/|  $$$$$$/| $$ | $$ | $$
[05:08:26] [Server thread/INFO]: |__/      |__/  |__/ \_______/|__/  |__/   \___/   \______/ |__/ |__/ |__/
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]:        /$$$$$$
[05:08:26] [Server thread/INFO]:        /$$__  $$
[05:08:26] [Server thread/INFO]:        | $$  \ $$  /$$$$$$  /$$$$$$/$$$$   /$$$$$$   /$$$$$$
[05:08:26] [Server thread/INFO]:        | $$$$$$$$ /$$__  $$| $$_  $$_  $$ /$$__  $$ /$$__  $$\
[05:08:26] [Server thread/INFO]:        | $$__  $$| $$  \__/| $$ \ $$ \ $$| $$  \ $$| $$  \__/
[05:08:26] [Server thread/INFO]:        | $$  | $$| $$      | $$ | $$ | $$| $$  | $$| $$
[05:08:26] [Server thread/INFO]:        | $$  | $$| $$      | $$ | $$ | $$|  $$$$$$/| $$
[05:08:26] [Server thread/INFO]:        |__/  |__/|__/      |__/ |__/ |__/ \______/ |__/
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]:                         Developed by f.#0001 <3
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]:  
[05:08:26] [Server thread/INFO]: [!] Checking License: EIYA-ONH0-DWTG-16V3
[05:08:26] [Server thread/INFO]: [!] Valid License Key | Expiry: Permanent
[05:08:26] [Server thread/INFO]: [!] Cached goblin_set Armor Set.
[05:08:26] [Server thread/INFO]: [!] Cached enchanted_set Armor Set.
[05:08:26] [Server thread/INFO]: [!] Cached example_set Armor Set.
[05:08:26] [Server thread/INFO]: [!] Cached shard condition: test_condition
[05:08:26] [Server thread/INFO]: [!] Cached shard condition: test_condition_2
[05:08:26] [Server thread/INFO]: [!] Registered 2x Armor Attributes.
[05:08:26] [Server thread/INFO]: [!] Started Armor Update Task. (Interval: 6s)
[05:08:26] [Server thread/INFO]: [!] Registered PlaceholderAPI Hook.
[05:08:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: phantomarmor [1.0.0]
[05:08:26] [Server thread/INFO]: [!] Registered phantomarmor-exp Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered edprison- Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered edprison-enchant- Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered rivalpets-candy-apply Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered rivalpets-xp Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered rivalpets-upgrade- Set buff type (1ms)
[05:08:26] [Server thread/INFO]: [!] Registered shopgui-sell Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered shopgui-buy Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered vanilla-damage Set buff type (1ms)
[05:08:26] [Server thread/INFO]: [!] Registered vanilla-fishing-speed Set buff type (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered vanilla-experience Set buff type (1ms)
[05:08:26] [Server thread/INFO]: [!] Cached 0x Vanilla Fish Values (0ms)
[05:08:26] [Server thread/INFO]: [!] Cached 0x Vanilla Mob Values (0ms)
[05:08:26] [Server thread/INFO]: [!] Registered Vanilla Buffs
[05:08:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SQLiteHikariCP - Starting...
[05:08:26] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] SQLiteHikariCP - Added connection org.sqlite.jdbc4.JDBC4Connection@2ee80ae2
[05:08:26] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] SQLiteHikariCP - Start completed.
[05:08:26] [Server thread/INFO]: [!] Success! Established a connection to the SQLite Database.
[05:08:26] [Server thread/INFO]: [LiteCommandEditor] Enabling LiteCommandEditor v1.0.0.0-SNAPSHOT-18
[05:08:26] [Server thread/INFO]: [LiteCommandEditor] Plugin properties loaded.
[05:08:26] [Server thread/INFO]: [LiteCommandEditor] Plugin enabling...
[05:08:27] [Server thread/INFO]: [LiteCommandEditor] Enabled Command Listener .
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Initialized NMS :1.21-R0.1-SNAPSHOT
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Configuration settings loaded, language: English
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Loaded 44 JSON components
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Loaded 2 command configurations
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Initialization completed, version v1.0.0.0-SNAPSHOT-18
[05:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: lce [1.0.0]
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Find the PlaceholderAPI and get ready.
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Async threads started.
[05:08:27] [Server thread/INFO]: LiteCommandEditor >>> Plugin successfully enabled 117ms .
[05:08:27] [Server thread/INFO]: [spark] Starting background profiler...
[05:08:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[05:08:27] [Server thread/INFO]: Done preparing level "world" (21.332s)
[05:08:27] [Server thread/INFO]: Running delayed init tasks
[05:08:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[05:08:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[05:08:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.plotsquared.PlotSquaredFeature] Optimizing PlotSquared
[05:08:27] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Plugin 'PlotSquared' v7 found. Using it now.
[05:08:27] [Craft Scheduler Thread - 9 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[05:08:27] [Server thread/INFO]: [AdvancedChat] 1
[05:08:27] [Craft Scheduler Thread - 6 - PlotSquared/INFO]: [PlotSquared/UpdateUtility] Congratulations! You are running the latest PlotSquared version
[05:08:27] [Server thread/INFO]: [AdvancedChat] 6
[05:08:27] [Craft Scheduler Thread - 6 - PlayerVaults/INFO]: [PlayerVaults] We didn't find an update!
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'astral_pickaxe'. Ingredient not found 'iasurvival:ruby'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_astral_pickaxe.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_hammer'. Ingredient not found 'iasurvival:cassiterite_block'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_hammer.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_hammer'. Ingredient not found 'iasurvival:ruby'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_hammer.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_hammer'. Ingredient not found 'iasurvival:ruby_block'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_hammer.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'mysterious_artifact'. Ingredient not found 'iasurvival:chisel'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_mysterious_artifact.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_pickaxe'. Ingredient not found 'iasurvival:cassiterite_block'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_pickaxe.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_pickaxe'. Ingredient not found 'iasurvival:ruby'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_pickaxe.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'demoniac_pickaxe'. Ingredient not found 'iasurvival:ruby_block'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_demoniac_pickaxe.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] [Recipes] 'arcane_ring'. Replacement item not found 'crystal'. File: /contents/iaalchemy/configs/recipes/crafting/recipe_arcane_ring.yml
[05:08:27] [Craft Scheduler Thread - 17 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[05:08:27] [Craft Scheduler Thread - 24 - Quests/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:27] [Craft Scheduler Thread - 11 - ItemsAdder/INFO]: [ItemsAdder] [License] Spigot product licensed to: ImOpaque (87642)
[05:08:27] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder]  
[05:08:27] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] UPDATE available!
[05:08:27] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Current version: 4.0.6
[05:08:27] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder] Online version: 4.0.8
[05:08:27] [Craft Scheduler Thread - 13 - ItemsAdder/INFO]: [ItemsAdder]  
[05:08:27] [Craft Scheduler Thread - 12 - CMILib/INFO]: New version of CMILib was detected. Please update it
[05:08:27] [Craft Scheduler Thread - 13 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] Checking for an update!
[05:08:27] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] Checking for Updates ... 
[05:08:27] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] No new version available
[05:08:27] [Craft Scheduler Thread - 13 - AnimatedScoreboard/INFO]: [AnimatedScoreboard] No new versions found for the plugin!
[05:08:27] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.131
[05:08:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.9.2]
[05:08:27] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[05:08:27] [Craft Scheduler Thread - 9 - AdvancedChat/INFO]: [AdvancedChat] Loaded 2810 swear words.
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Loaded 289 items
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 2/750 REAL_NOTE block IDs
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] Used 193/6608 font_images
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/ERROR]: [ItemsAdder] Item 'iaalchemy:mysterious_amulet' not found for loot 'loots.mobs.witch'. File: /contents/iaalchemy/configs/loots_mobs.yml
[05:08:27] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 19 categories
[05:08:28] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[05:08:28] [Craft Scheduler Thread - 14 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://104.247.112.113:21374/generated.zip
[05:08:28] [Server thread/INFO]: Loaded 1290 recipes
[05:08:28] [Server thread/INFO]: Loaded 1399 advancements
[05:08:28] [Server thread/INFO]: [DeluxeCoinflip] Found and using VAULT economy provider(s).
[05:08:28] [Server thread/INFO]:  » Gift Top has been refreshed!
[05:08:28] [Server thread/INFO]: [PlayerVaults] ** Vaults have already been converted to UUIDs. If this is incorrect, shutdown your server and rename the plugins/PlayerVaults/uuidvaults directory.
[05:08:28] [Server thread/WARN]: [PlotSquared/BukkitPlatform] `PlotWorld` was not properly loaded - PlotSquared will now try to load it properly
[05:08:28] [Server thread/WARN]: [PlotSquared/BukkitPlatform] - Are you trying to delete this world? Remember to remove it from the worlds.yml, bukkit.yml and multiverse worlds.yml
[05:08:28] [Server thread/WARN]: [PlotSquared/BukkitPlatform] - Your world management plugin may be faulty (or non existent)
[05:08:28] [Server thread/WARN]: [PlotSquared/BukkitPlatform] - The named world is not a plot world
[05:08:28] [Server thread/WARN]: [PlotSquared/BukkitPlatform] This message may also be a false positive and could be ignored.
[05:08:28] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:28] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:28] [Server thread/INFO]: A Folder/World already exists with this name!
[05:08:28] [Server thread/INFO]: If you are confident it is a world you can import with /mvimport
[05:08:28] [Server thread/WARN]: [PlotSquared] Task #18 for PlotSquared v7.4.1-Premium generated an exception
java.lang.NullPointerException: Cannot invoke "org.bukkit.World.getGenerator()" because "<local2>" is null
    at plotsquared-bukkit-7.4.1-Premium.jar/com.plotsquared.bukkit.BukkitPlatform.setGenerator(BukkitPlatform.java:1161) ~[plotsquared-bukkit-7.4.1-Premium.jar:?]
    at plotsquared-bukkit-7.4.1-Premium.jar/com.plotsquared.bukkit.BukkitPlatform.lambda$onEnable$0(BukkitPlatform.java:437) ~[plotsquared-bukkit-7.4.1-Premium.jar:?]
    at plotsquared-bukkit-7.4.1-Premium.jar/com.plotsquared.bukkit.util.task.BukkitPlotSquaredTask.runTask(BukkitPlotSquaredTask.java:39) ~[plotsquared-bukkit-7.4.1-Premium.jar:?]
    at plotsquared-bukkit-7.4.1-Premium.jar/com.plotsquared.core.util.task.PlotSquaredTask.run(PlotSquaredTask.java:44) ~[plotsquared-bukkit-7.4.1-Premium.jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[05:08:28] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[05:08:28] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[05:08:28] [Server thread/INFO]: [KixsChatGames Updater] You are running the latest version of KixsChatGames.
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: pinger [1.0.1]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: localtime [1.2]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: math [2.0.2]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: nf [1.6.1]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.7.0]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: utils [1.0.9]
[05:08:28] [Server thread/INFO]: 11 placeholder hook(s) registered!
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[05:08:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[05:08:28] [Server thread/INFO]: [AlonsoTags] [ItemsAdder] ItemsAdder items were updated. Reloading tags/colors..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Forced mode is not enabled. Players can choose the mode they want..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'default' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded default color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'red' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded red color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'green' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded green color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'dark-blue' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-blue color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'purple' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded purple color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'cyan' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded cyan color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'gray' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded gray color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'pink' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded pink color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'lime' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded lime color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'yellow' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded yellow color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'aqua' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded aqua color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'gold' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded gold color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'white' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded white color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'dark-red' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded dark-red color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'black' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded black color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'blue' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded blue color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Loading 'brown' color..
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded brown color!
[05:08:28] [Server thread/INFO]: [AlonsoTags] Successfully loaded 17 colors!
[05:08:28] [Server thread/ERROR]: Could not pass event ItemsAdderLoadDataEvent to ItemsAdder v4.0.6
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at ItemsAdder_4.0.6 (1).jar/dev.lone.itemsadder.Core.OtherPlugins.Citizens.CitizensHook.reload(SourceFile:85) ~[ItemsAdder_4.0.6 (1).jar:?]
    at ItemsAdder_4.0.6 (1).jar/itemsadder.m.cg.a(SourceFile:431) ~[ItemsAdder_4.0.6 (1).jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:40) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-130-b1b5d4c]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at ItemsAdder_4.0.6 (1).jar/itemsadder.m.agi.a(SourceFile:74) ~[ItemsAdder_4.0.6 (1).jar:?]
    at ItemsAdder_4.0.6 (1).jar/itemsadder.m.ag.e(SourceFile:954) ~[ItemsAdder_4.0.6 (1).jar:?]
    at ItemsAdder_4.0.6 (1).jar/itemsadder.m.afc.d(SourceFile:130) ~[ItemsAdder_4.0.6 (1).jar:?]
    at ItemsAdder_4.0.6 (1).jar/itemsadder.m.ag.a(SourceFile:952) ~[ItemsAdder_4.0.6 (1).jar:?]
    at org.bukkit.craftbukkit.scheduler.CraftTask.run(CraftTask.java:86) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at org.bukkit.craftbukkit.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:475) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1226) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 17 more
[05:08:28] [Server thread/INFO]: Done (44.328s)! For help, type "help"
[05:08:28] [Server thread/INFO]: Timings Reset
[05:08:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:28] [Server thread/INFO]: [Quests] Loaded 4 Quest(s), 7 Action(s), 1 Condition(s) and 798 Phrase(s)
[05:08:28] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[05:08:28] [Server thread/INFO]: [AdvancedChat] Successfully hooked into ProtocolLib, WorldGuard, PlaceholderAPI, Vault, LuckPerms, ViaVersion, ItemsAdder.
[05:08:28] [Craft Scheduler Thread - 19 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[05:08:28] [Craft Scheduler Thread - 19 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.102.0 ]================================
[05:08:28] [Server thread/INFO]: [ShopGUIPlus]  
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ItemsAdder.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded 10 main menu items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 18 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 9 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 8 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 18 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 37 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 16 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 shops with total of 164 items.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[05:08:28] [Server thread/INFO]: [ShopGUIPlus]  
[05:08:28] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'new-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'beginner-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'dash-lover-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'rekt-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'knight-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'magic-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-eyes-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-mouth-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'kawaii-kiss-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'king-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'queen-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'robot-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'miner-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'geek-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'idk-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'lenny-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'rich-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'rich-rank-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-love-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-crown-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'dyeable-heart-banner-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'glasses-items-adder-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Tag with identifier 'glasses-items-adder-tag' has invalid item name from ItemsAdder!! Skipping..
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'compressed-custom-items-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] CustomItems plugin wasn't found. Tag with identifier 'compressed-custom-items-tag' will be ignored! Skipping...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'crying-cat-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading '30-bill-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading '100-bill-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'sus-red-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'crewmate-red-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'impostor-black-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'lgbt-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'christmas-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'nerd-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'halloween-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'hacker-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'candy-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'king-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'love-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'supreme-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'halloween-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'amethyst-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'toxic-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'love-instagram-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'love-facebook-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'love-netflix-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Loading 'love-tiktok-hex-tag' tag...
[05:08:30] [Server thread/INFO]: [AlonsoTags] Successfully loaded 43 tags!
[05:08:30] [Server thread/INFO]: [AlonsoTags] [Reload] Loading economy hooks..
[05:08:30] [Server thread/INFO]: [AlonsoTags] No vault hooks queued to be registered. Skipping..
[05:08:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.01]
[05:08:30] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[05:08:30] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[05:08:32] [Craft Scheduler Thread - 23 - RivalPets/INFO]: [!] You are using the Latest Version of Rival Pets v2.0.9