Paste #133439: DenizenMetaBot Auto-Repaste Of log From cosmic.creator

Date: 2025/05/18 10:31:58 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[17:19:26] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.7+6-LTS; Eclipse Adoptium Temurin-21.0.7+6) on Linux 5.15.0-130-generic (amd64)
[17:19:26] [ServerMain/INFO]: [bootstrap] Loading Pufferfish 1.21.3-27-HEAD@04bc249 (2024-12-04T01:51:20Z) for Minecraft 1.21.3
[17:19:26] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[17:19:27] [ServerMain/INFO]: [PluginInitializerManager] Initialized 74 plugins
[17:19:27] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - MarriageMaster (2.7.9), RoseStacker (1.5.33), UltimateMobCoins (1.3.0), nightcore (2.7.4)
[17:19:27] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (70):
 - AdvancedPortals (1.0.0), ArmorStandTools (4.4.6), AutomaticBroadcast (1.9.0), AxAFKZone (1.6.3), AxPlayerWarps (1.9.3), AxRewards (3.4.3), AxSellwands (1.9.4), AxTrade (1.16.3), AxVaults (2.7.3), BentoBox (3.3.5), ChatColor2 (1.15.1), ChatGames (1.2.1), ChestSort (14.2.0), Citizens (2.0.35-SNAPSHOT (build 3598)), CitizensCMD (2.7.2), CmdWebhooks (1.1.1), CommandPanels (3.21.8), CrazyAuctions (1.4.2), CrazyVouchers (3.9.0), CyberLevels (0.5.9), DecentHolograms (2.8.16), DeluxeMenus (1.14.0-Release), DiscordSRV (1.29.0), DiscordSRV-LinkChannel (1.2), EpicRename (3.12), Essentials (2.21.1-dev+5-dabe687), EssentialsSpawn (2.21.1-dev+5-dabe687), EternalTags (1.3.3), ExcellentCrates (5.3.1), Exo-TebexSync (1.0.7), FancyGlow (2.1.1), FastAsyncWorldEdit (2.12.2), FreeCoinFlip (1.9), GSit (2.3.2), ImageFrame (1.8.2.0), InfiniteBuckets (1.0), InteractiveChat (4.2.16.0), InvSeePlusPlus (0.29.23-SNAPSHOT), InvSeePlusPlus_Clear (0.29.23-SNAPSHOT), InvSeePlusPlus_Give (0.29.23-SNAPSHOT), ItemEdit (3.7.0), LPC (3.6.0), LiteBans (2.17.1), LuckPerms (5.4.131), MiniMOTD (2.1.3), Multiverse-Core (4.3.14), Nexo (1.5), NexoAddon (1.12.0), OpenInv (5.1.10), PlaceholderAPI (2.11.6), PlayerPoints (3.3.2), ProtocolLib (5.3.0), Quests (3.15.2-b216e2b), QuickShop-Hikari (6.2.0.9-RELEASE-1), ShopGUIPlus (1.104.0), Skript (2.11.0), StoreStats (3.44.0), SuperVanish (6.2.20), TAB (4.1.6), Tebex (2.0.6), TempFly (3.1.7), UltimateAutoRestart (2025.02), Vault (1.7.3-b131), ViaBackwards (5.3.2), ViaRewind (4.0.7), ViaVersion (5.3.2), VoidWorld (1.0), WorldGuard (7.0.12+829a4a4), ajLeaderboards (2.10.1), ajQueue (2.7.0)
[17:19:30] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:19:32] [ServerMain/INFO]: Loaded 1337 recipes
[17:19:32] [ServerMain/INFO]: Loaded 1448 advancements
[17:19:32] [Server thread/INFO]: Starting minecraft server version 1.21.3
[17:19:32] [Server thread/INFO]: Loading properties
[17:19:32] [Server thread/INFO]: This server is running Pufferfish version 1.21.3-27-HEAD@04bc249 (2024-12-04T01:51:20Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[17:19:33] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[17:19:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:19:33] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:19:33] [Server thread/INFO]: [MoonriseCommon] Paper is using 6 worker threads, 1 I/O threads
[17:19:33] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[17:19:33] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:19:33] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (int)
[17:19:33] [Server thread/INFO]: [Pufferfish] Max SIMD vector size on this system is 256 bits (float)
[17:19:33] [Server thread/INFO]: [Pufferfish] SIMD operations detected as functional. Will replace some operations with faster versions.
[17:19:33] [Server thread/INFO]: Default game type: SURVIVAL
[17:19:33] [Server thread/INFO]: Generating keypair
[17:19:33] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:50002
[17:19:33] [Server thread/INFO]: Using epoll channel type
[17:19:33] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:19:33] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loading 5 libraries... please wait
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.27/mysql-connector-java-8.0.27.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.11.4/protobuf-java-3.11.4.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/mariadb/jdbc/mariadb-java-client/3.0.5/mariadb-java-client-3.0.5.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/postgresql/postgresql/42.2.18/postgresql-42.2.18.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/mongodb/mongodb-driver/3.12.12/mongodb-driver-3.12.12.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/mongodb/bson/3.12.12/bson-3.12.12.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/3.12.12/mongodb-driver-core-3.12.12.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[17:19:34] [Server thread/INFO]: [SpigotLibraryLoader] [BentoBox] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loading 2 libraries... please wait
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/mysql/mysql-connector-j/9.1.0/mysql-connector-j-9.1.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/4.26.1/protobuf-java-4.26.1.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/xerial/sqlite-jdbc/3.46.0.0/sqlite-jdbc-3.46.0.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [PlayerPoints] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loading 10 libraries... please wait
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-yaml/4.2.0/configurate-yaml-4.2.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-core/4.2.0/configurate-core-4.2.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/io/leangen/geantyref/geantyref/1.3.16/geantyref-1.3.16.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/net/kyori/option/1.1.0/option-1.1.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jspecify/jspecify/1.0.0/jspecify-1.0.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.49.0/checker-qual-3.49.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.36.0/error_prone_annotations-2.36.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/spongepowered/configurate-extra-kotlin/4.2.0/configurate-extra-kotlin-4.2.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.30/kotlin-stdlib-jdk8-1.5.30.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.5.30/kotlin-stdlib-1.5.30.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.30/kotlin-stdlib-jdk7-1.5.30.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-reflect/1.4.20/kotlin-reflect-1.4.20.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.2/kotlinx-coroutines-core-jvm-1.5.2.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.30/kotlin-stdlib-common-1.5.30.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/commons-io/commons-io/2.18.0/commons-io-2.18.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/com/google/code/gson/gson/2.11.0/gson-2.11.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.17.0/commons-lang3-3.17.0.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/client5/httpclient5/5.4.3/httpclient5-5.4.3.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/core5/httpcore5/5.3.4/httpcore5-5.3.4.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/apache/httpcomponents/core5/httpcore5-h2/5.3.4/httpcore5-h2-5.3.4.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-expression/6.0.8/spring-expression-6.0.8.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-core/6.0.8/spring-core-6.0.8.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/springframework/spring-jcl/6.0.8/spring-jcl-6.0.8.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/glassfish/javax.json/1.1.4/javax.json-1.1.4.jar
[17:19:35] [Server thread/INFO]: [SpigotLibraryLoader] [Nexo] Loaded library /home/container/libraries/org/jetbrains/annotations/26.0.2/annotations-26.0.2.jar
[17:19:36] [Server thread/INFO]: [nightcore] Server version detected as Pufferfish 1.21.3. Using paper-bridge.
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loading 5 libraries... please wait
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] 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
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:19:37] [Server thread/INFO]: [SpigotLibraryLoader] [ItemEdit] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.16.0/adventure-text-serializer-legacy-4.16.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loading 4 libraries... please wait
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[17:19:38] [Server thread/INFO]: [SpigotLibraryLoader] [EternalTags] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[17:19:38] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[17:19:40] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:19:46] [Server thread/WARN]: Legacy plugin VoidWorld v1.0 does not specify an api-version.
[17:19:47] [Server thread/ERROR]: Fatal error trying to convert ajLeaderboards v2.10.1:us/ajg0702/leaderboards/LeaderboardPlugin.class
java.lang.IllegalArgumentException: null
    at org.objectweb.asm.ClassReader.readConst(ClassReader.java:3876) ~[asm-9.7.1.jar:9.7.1]
    at org.objectweb.asm.ClassReader.readCode(ClassReader.java:2425) ~[asm-9.7.1.jar:9.7.1]
    at org.objectweb.asm.ClassReader.readMethod(ClassReader.java:1512) ~[asm-9.7.1.jar:9.7.1]
    at org.objectweb.asm.ClassReader.accept(ClassReader.java:745) ~[asm-9.7.1.jar:9.7.1]
    at org.objectweb.asm.ClassReader.accept(ClassReader.java:425) ~[asm-9.7.1.jar:9.7.1]
    at org.bukkit.craftbukkit.util.Commodore.convert(Commodore.java:229) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.util.CraftMagicNumbers.processClass(CraftMagicNumbers.java:400) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:223) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:171) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    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 org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:80) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:291) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[17:19:47] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load plugin 'ajLeaderboards-2.10.1.jar' in folder 'plugins'
org.bukkit.plugin.InvalidPluginException: java.lang.ClassFormatError: Illegal local variable table start_pc 72 in method 'void us.ajg0702.leaderboards.LeaderboardPlugin.onEnable()'
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:129) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:35) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:116) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:38) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:40) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.loadPlugins(CraftServer.java:561) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:291) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassFormatError: Illegal local variable table start_pc 72 in method 'void us.ajg0702.leaderboards.LeaderboardPlugin.onEnable()'
    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 org.bukkit.plugin.java.PluginClassLoader.<init>(PluginClassLoader.java:80) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.provider.type.spigot.SpigotPluginProvider.createInstance(SpigotPluginProvider.java:125) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    ... 9 more
[17:19:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[17:19:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[17:19:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Unable to create a bStats instance!!
[17:19:50] [Server thread/INFO]: [UltimateMobCoins] Loaded 10 prizes for the mobcoin spinner!
[17:19:50] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.3.2
[17:19:50] [Server thread/INFO]: [ViaVersion] ViaVersion 5.3.2 is now loaded. Registering protocol transformers and injecting...
[17:19:50] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[17:19:50] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[17:19:50] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:19:50] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[17:19:51] [Server thread/INFO]: [ViaRewind] Registering protocols...
[17:19:51] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[17:19:51] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[17:19:51] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.2
[17:19:51] [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/
**********************************************
[17:19:53] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2d226cd3]
[17:19:53] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[17:19:53] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.3) has not yet been tested! Proceed with caution.
[17:19:53] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[17:19:53] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[17:19:53] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3598)
[17:19:53] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.17.1
[17:19:53] [Server thread/INFO]: [BentoBox] Loading server plugin BentoBox v3.3.5
[17:19:53] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.1-dev+5-dabe687
[17:19:53] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.3.2
[17:19:53] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.4.7
[17:19:53] [Server thread/INFO]: [Nexo] Loading server plugin Nexo v1.5
[17:19:53] [Server thread/INFO]: [Nexo] Loading libraries...
[17:19:53] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-api/1.8.5-SNAPSHOT/creative-api-1.8.5-SNAPSHOT.jar
[17:19:53] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-server/1.8.5-SNAPSHOT/creative-server-1.8.5-SNAPSHOT.jar
[17:19:53] [Server thread/INFO]: [Nexo] Downloaded library https://repo.nexomc.com/snapshots/team/unnamed/creative-serializer-minecraft/1.8.5-SNAPSHOT/creative-serializer-minecraft-1.8.5-SNAPSHOT.jar
[17:19:54] [Server thread/INFO]: [Nexo] Downloaded library https://repo.triumphteam.dev/snapshots/dev/triumphteam/triumph-gui/3.2.0-SNAPSHOT/triumph-gui-3.2.0-20250128.122847-2.jar
[17:19:54] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.14
[17:19:54] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.20
[17:19:54] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.11.0
[17:19:54] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.3.2
[17:19:54] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.104.0
[17:19:54] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[17:19:54] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.16
[17:19:54] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.4
[17:19:54] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.23-SNAPSHOT
[17:19:54] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v4.0.7
[17:19:54] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v14.2.0
[17:19:54] [Server thread/INFO]: [RoseStacker] Loading server plugin RoseStacker v1.5.33
[17:19:54] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[17:19:54] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[17:19:54] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[17:19:54] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.7.0
[17:19:54] [Server thread/INFO]: [AxPlayerWarps] Loading server plugin AxPlayerWarps v1.9.3
[17:19:54] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[17:19:54] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v5.1.10
[17:19:54] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.9-RELEASE-1
[17:19:54] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[17:19:54] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[17:19:54] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 23ms
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 69ms
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 297ms
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 460ms
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 1959ms
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[17:19:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[17:19:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[17:19:56] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[17:19:56] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[17:19:56] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[17:19:56] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[17:19:56] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[17:19:57] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[17:19:57] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[17:19:57] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[17:19:57] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[17:19:57] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (3552ms). Waiting for enable...
[17:19:57] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.16.0
[17:19:57] [Server thread/INFO]: [EternalTags] Loading server plugin EternalTags v1.3.3
[17:19:57] [Server thread/INFO]: [EternalTags] Initializing using RoseGarden v1.4.7-SNAPSHOT
[17:19:57] [Server thread/INFO]: [CitizensCMD] Loading server plugin CitizensCMD v2.7.2
[17:19:57] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.9
[17:19:57] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.15.2-b216e2b
[17:19:57] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.1
[17:19:57] [Server thread/INFO]: [AutomaticBroadcast] Loading server plugin AutomaticBroadcast v1.9.0
[17:19:57] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[17:19:57] [Server thread/INFO]: [ChatColor2] Loading server plugin ChatColor2 v1.15.1
[17:19:57] [Server thread/INFO]: [ajQueue] Loading server plugin ajQueue v2.7.0
[17:19:57] [Server thread/INFO]: [AxTrade] Loading server plugin AxTrade v1.16.3
[17:19:57] [Server thread/INFO]: [NexoAddon] Loading server plugin NexoAddon v1.12.0
[17:19:57] [Server thread/WARN]: [NexoAddon] 
[17:19:57] [Server thread/WARN]: [NexoAddon] PacketEvents not found. Some features remain disabled!
[17:19:57] [Server thread/WARN]: [NexoAddon] 
[17:19:57] [Server thread/INFO]: [InvSee++_Give] Loading server plugin InvSeePlusPlus_Give v0.29.23-SNAPSHOT
[17:19:57] [Server thread/INFO]: [AxRewards] Loading server plugin AxRewards v3.4.3
[17:19:57] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2025.02
[17:19:57] [Server thread/INFO]: [AxVaults] Loading server plugin AxVaults v2.7.3
[17:19:58] [Server thread/INFO]: [CrazyAuctions] Loading server plugin CrazyAuctions v1.4.2
[17:19:58] [Server thread/INFO]: [AdvancedPortals] Loading server plugin AdvancedPortals v1.0.0
[17:19:58] [Server thread/INFO]: [VoidWorld] Loading server plugin VoidWorld v1.0
[17:19:58] [Server thread/INFO]: [GSit] Loading server plugin GSit v2.3.2
[17:19:58] [Server thread/INFO]: [Tebex] Loading server plugin Tebex v2.0.6
[17:19:58] [Server thread/INFO]: [FreeCoinFlip] Loading server plugin FreeCoinFlip v1.9
[17:19:58] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.9
[17:19:58] [Server thread/INFO]: [InvSee++_Clear] Loading server plugin InvSeePlusPlus_Clear v0.29.23-SNAPSHOT
[17:19:58] [Server thread/INFO]: [ArmorStandTools] Loading server plugin ArmorStandTools v4.4.6
[17:19:58] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[17:19:58] [Server thread/INFO]: [AxAFKZone] Loading server plugin AxAFKZone v1.6.3
[17:19:58] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v3.9.0
[17:19:58] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[17:19:58] [Server thread/INFO]: [AxSellwands] Loading server plugin AxSellwands v1.9.4
[17:19:58] [Server thread/INFO]: [DiscordSRV-LinkChannel] Loading server plugin DiscordSRV-LinkChannel v1.2
[17:19:58] [Server thread/INFO]: [Exo-TebexSync] Loading server plugin Exo-TebexSync v1.0.7
[17:19:58] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
[17:19:58] [Server thread/INFO]: [InfiniteBuckets] Loading server plugin InfiniteBuckets v1.0
[17:19:58] [Server thread/INFO]: [FancyGlow] Loading server plugin FancyGlow v2.1.1
[17:19:58] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.1-dev+5-dabe687
[17:19:58] [Server thread/INFO]: [CmdWebhooks] Loading server plugin CmdWebhooks v1.1.1
[17:19:58] [Server thread/INFO]: [ImageFrame] Loading server plugin ImageFrame v1.8.2.0
[17:19:58] [Server thread/INFO]: [CommandPanels] Loading server plugin CommandPanels v3.21.8
[17:19:58] [Server thread/INFO]: [StoreStats] Loading server plugin StoreStats v3.44.0
[17:19:58] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.3
[17:19:58] [Server thread/INFO]: [UltimateMobCoins] Loading server plugin UltimateMobCoins v1.3.0
[17:19:58] [Server thread/INFO]: [UltimateMobCoins] Successfully loaded WorldGuard hook!
[17:19:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:19:58] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[17:19:59] [Server thread/INFO]:         __    
[17:19:59] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[17:19:59] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[17:19:59] [Server thread/INFO]: 
[17:19:59] [Server thread/INFO]: [LuckPerms] Loading configuration...
[17:19:59] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[17:20:00] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[17:20:00] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[17:20:02] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[17:20:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[17:20:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[17:20:05] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 7690ms)
[17:20:05] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[17:20:05] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[17:20:05] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:20:06] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[17:20:06] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[17:20:06] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.2
[17:20:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:20:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:20:06] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:20:06] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[17:20:06] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_3.PaperweightFaweAdapter as the Bukkit adapter
[17:20:06] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[17:20:06] [Server thread/INFO]: [BentoBox] Enabling BentoBox v3.3.5
[17:20:07] [Server thread/INFO]: [BentoBox] Loading Settings from config.yml...
[17:20:07] [Server thread/INFO]: [BentoBox] Saving default panels...
[17:20:07] [Server thread/INFO]: [BentoBox] Loading addons...
[17:20:08] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/BentoBox/addons/Border-4.5.0.jar'...
[17:20:08] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/BentoBox/addons/Border-4.5.0.jar' in 102ms.
[17:20:08] [Server thread/INFO]: [BentoBox-Border] Loading server plugin BentoBox-Border v4.5.0
[17:20:08] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Remapping plugin 'plugins/BentoBox/addons/Boxed-2.8.2.jar'...
[17:20:08] [Paper Plugin Remapper Thread - 2/INFO]: [PluginRemapper] Done remapping plugin 'plugins/BentoBox/addons/Boxed-2.8.2.jar' in 102ms.
[17:20:08] [Server thread/INFO]: [BentoBox-Boxed] Loading server plugin BentoBox-Boxed v2.8.2
[17:20:08] [Server thread/INFO]: [BentoBox] Loaded 3 addons.
[17:20:08] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.3.2
[17:20:08] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[17:20:08] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.4
[17:20:08] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[17:20:08] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[17:20:08] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[17:20:08] [Server thread/INFO]: [nightcore] Time zone set as America/New_York
[17:20:08] [Server thread/INFO]: [nightcore] Plugin loaded in 87 ms!
[17:20:08] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v4.0.7
[17:20:08] [Server thread/INFO]: [VoidWorld] Enabling VoidWorld v1.0*
[17:20:08] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:20:08] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:20:08] [Server thread/WARN]: Whilst this makes it possible to use Velocity, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[17:20:08] [Server thread/WARN]: Please see https://docs.papermc.io/velocity/security for further information.
[17:20:08] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:20:08] [Server thread/INFO]: Preparing level "world"
[17:20:08] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:08] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:20:09] [Paper Common Worker #3/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[17:20:09] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:09] [Paper Common Worker #3/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 267.9ms
[17:20:09] [Server thread/INFO]: Preparing spawn area: 22%
[17:20:09] [Server thread/INFO]: Time elapsed: 846 ms
[17:20:09] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.3.2
[17:20:09] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.2-1.21.3 (768)
[17:20:09] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[17:20:09] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[17:20:09] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[17:20:09] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[17:20:09] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[17:20:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[17:20:09] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:20:10] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[17:20:10] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:20:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3598)
[17:20:10] [Server thread/INFO]: [Citizens] Loading external libraries
[17:20:10] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[17:20:10] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cn: [[cn.
[17:20:10] [Server thread/ERROR]: [Citizens] Could not fetch NMS field cn: [[null.
[17:20:10] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.35-SNAPSHOT (build 3598) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R1/boss/CraftBossBar
    at Citizens-2.0.35-b3598.jar/net.citizensnpcs.nms.v1_21_R1.util.NMSImpl.<clinit>(NMSImpl.java:2667) ~[Citizens-2.0.35-b3598.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) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at Citizens-2.0.35-b3598.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[Citizens-2.0.35-b3598.jar:?]
    at Citizens-2.0.35-b3598.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[Citizens-2.0.35-b3598.jar:?]
    at Citizens-2.0.35-b3598.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:373) ~[Citizens-2.0.35-b3598.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:328) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R1.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:199) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:166) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[17:20:10] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3598)
[17:20:10] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.17.1
[17:20:10] [Server thread/INFO]: [LiteBans] Using system locale (en)
[17:20:10] [Server thread/INFO]: [LiteBans] Loaded 2 templates from templates.yml!
[17:20:11] [Server thread/INFO]: [LiteBans] Loading: h2 1.4.197
[17:20:11] [Server thread/INFO]: [LiteBans] Connecting to database...
[17:20:11] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (107.8 ms).
[17:20:11] [Server thread/INFO]: [LiteBans] Database connection fully initialized (110.9 ms).
[17:20:11] [Server thread/INFO]: [LiteBans] v2.17.1 enabled. Startup took 112 ms.
[17:20:11] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.1-dev+5-dabe687
[17:20:11] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[17:20:11] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[17:20:11] [Server thread/INFO]: [Essentials] No kits found to migrate.
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Material Tag Provider as the provider for MaterialTagProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.13+ Spawn Egg Provider as the provider for SpawnEggProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Tick Count Provider as the provider for TickCountProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.14+ Sign Data Provider as the provider for SignDataProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.12.2+ Player Locale Provider as the provider for PlayerLocaleProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.20.5+ Banner Data Provider as the provider for BannerDataProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Container Provider as the provider for ContainerProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.11+ Item Unbreakable Provider as the provider for ItemUnbreakableProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.21.4+ Sync Commands Provider as the provider for SyncCommandsProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.21+ InventoryView Interface ABI Provider as the provider for InventoryViewProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Biome Key Provider as the provider for BiomeKeyProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Server State Provider as the provider for ServerStateProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.17.1+ World Info Provider as the provider for WorldInfoProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.20.6+ Potion Meta Provider as the provider for PotionMetaProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Serialization Provider as the provider for SerializationProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.8.3+ Spawner Item Provider as the provider for SpawnerItemProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Reflection Online Mode Provider as the provider for OnlineModeProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Paper Known Commands Provider as the provider for KnownCommandsProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected Reflection Formatted Command Alias Provider as the provider for FormattedCommandAliasProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.14.4+ Persistent Data Container Provider as the provider for PersistentDataProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.20.4+ Damage Event Provider as the provider for DamageEventProvider
[17:20:11] [Server thread/INFO]: [Essentials] Selected 1.12+ Spawner Block Provider as the provider for SpawnerBlockProvider
[17:20:11] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[17:20:11] [Server thread/INFO]: [Essentials] Using locale en_US
[17:20:11] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[17:20:12] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[17:20:12] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[17:20:12] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[17:20:12] [Server thread/INFO]: [Nexo] Enabling Nexo v1.5
[17:20:12] [Server thread/INFO]: NEXO ➠ NMS-Version v1_21_R2 has been detected.
[17:20:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: nexo [1.5]
[17:20:12] [Server thread/INFO]: NEXO ➠ Plugin "PlaceholderAPI" detected, enabling hooks
[17:20:12] [Server thread/INFO]: NEXO ➠ Plugin "WorldGuard" detected, enabling hooks
[17:20:12] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.14
[17:20:12] [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--].
[17:20:12] [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.
[17:20:12] [ForkJoinPool.commonPool-worker-4/INFO]: NEXO ➠ Skipped downloading DefaultPack as it is up to date!
[17:20:12] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: boxed_world/bentobox
[17:20:12] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:20:12] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:12] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world
[17:20:12] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:12] [Server thread/INFO]: Time elapsed: 52 ms
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world) TNT ignition is PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world) Lighters are PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world) Lava fire is PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world) Fire spread is UNRESTRICTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world'
[17:20:12] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:12] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world/seed_nether
[17:20:12] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:12] [Server thread/INFO]: Time elapsed: 73 ms
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world/seed_nether) TNT ignition is PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world/seed_nether) Lighters are PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world/seed_nether) Lava fire is PERMITTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] (boxed_world/seed_nether) Fire spread is UNRESTRICTED.
[17:20:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world/seed_nether'
[17:20:13] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:13] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world_nether
[17:20:13] [Server thread/INFO]: Preparing spawn area: 100%
[17:20:13] [Server thread/INFO]: Time elapsed: 4 ms
[17:20:13] [Server thread/INFO]: [WorldGuard] (boxed_world_nether) TNT ignition is PERMITTED.
[17:20:13] [Server thread/INFO]: [WorldGuard] (boxed_world_nether) Lighters are PERMITTED.
[17:20:13] [Server thread/INFO]: [WorldGuard] (boxed_world_nether) Lava fire is PERMITTED.
[17:20:13] [Server thread/INFO]: [WorldGuard] (boxed_world_nether) Fire spread is UNRESTRICTED.
[17:20:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world_nether'
[17:20:13] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: boxed_world_nether/bentobox
[17:20:13] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[17:20:13] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:14] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world/seed
[17:20:14] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:14] [Server thread/INFO]: Time elapsed: 123 ms
[17:20:14] [Server thread/INFO]: [WorldGuard] (boxed_world/seed) TNT ignition is PERMITTED.
[17:20:14] [Server thread/INFO]: [WorldGuard] (boxed_world/seed) Lighters are PERMITTED.
[17:20:14] [Server thread/INFO]: [WorldGuard] (boxed_world/seed) Lava fire is PERMITTED.
[17:20:14] [Server thread/INFO]: [WorldGuard] (boxed_world/seed) Fire spread is UNRESTRICTED.
[17:20:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world/seed'
[17:20:14] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[17:20:14] [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.
[17:20:14] [Server thread/INFO]: [Multiverse-Core] Version 4.3.14 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:20:14] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.20
[17:20:14] [Server thread/INFO]: [SuperVanish] Hooked into PaperSpigot for server list ping support
[17:20:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: supervanish [6.2.20]
[17:20:14] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[17:20:14] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[17:20:14] [Server thread/INFO]: [Skript] Enabling Skript v2.11.0
[17:20:14] [ForkJoinPool.commonPool-worker-4/INFO]: [Skript] A new version of Skript is available: 2.11.1 (you're currently running 2.11.0)
[17:20:14] [ForkJoinPool.commonPool-worker-4/INFO]: Download it at: https://github.com/SkriptLang/Skript/releases/download/2.11.1/Skript-2.11.1.jar
[17:20:15] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[17:20:15] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.3.2
[17:20:15] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.104.0
[17:20:15] [Server thread/WARN]: [ShopGUIPlus] Error occurred when loading specialElements > balance  (config.yml), item not loaded: No item specified
[17:20:15] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[17:20:15] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.16
[17:20:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.3! Trying to find NMS support
[17:20:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R2' loaded!
[17:20:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[17:20:15] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.23-SNAPSHOT
[17:20:15] [Server thread/INFO]: [ChestSort] Enabling ChestSort v14.2.0
[17:20:15] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.12+829a4a4
[17:20:15] [Server thread/INFO]: [ChestSort] Use permissions: true
[17:20:15] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[17:20:15] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[17:20:15] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[17:20:15] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[17:20:15] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[17:20:15] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[17:20:15] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[17:20:15] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[17:20:15] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[17:20:15] [Server thread/INFO]: [ChestSort] Check for updates: true
[17:20:15] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[17:20:15] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[17:20:15] [pool-74-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[17:20:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [14.2.0]
[17:20:15] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.33
[17:20:15] [ForkJoinPool.commonPool-worker-4/INFO]: [Skript] Loaded 5420 aliases in 639ms
[17:20:16] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[17:20:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: rosestacker [1.5.33]
[17:20:16] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[17:20:16] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[17:20:16] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[17:20:16] [Server thread/INFO]: [DeluxeMenus] 22 GUI menus loaded!
[17:20:16] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[17:20:16] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[17:20:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[17:20:16] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[17:20:16] [Server thread/INFO]: [TempFly] Attempting to initialize (BSkyBlock) hook...
[17:20:16] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[17:20:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tempfly [3.1.7]
[17:20:16] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.7.0
[17:20:16] [Server thread/INFO]: [ItemEdit] Hooking into MiniMessageAPI see https://webui.advntr.dev/
[17:20:16] [Server thread/INFO]: [ItemEdit] Selected Storage Type: YAML
[17:20:16] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[17:20:16] [Server thread/INFO]: [ItemEdit] Hooking into PlaceHolderAPI
[17:20:16] [Server thread/INFO]: [ItemEdit] placeholders:
[17:20:16] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[17:20:16] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[17:20:16] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[17:20:16] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[17:20:16] [Server thread/INFO]: [ItemEdit]       Values: inventory (include offhand), equip (include offhand), inventoryandequip (include offhand), hand, offhand, head, chest, legs, feet
[17:20:16] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[17:20:16] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[17:20:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: itemedit [1.0]
[17:20:16] [Server thread/INFO]: [ItemEdit] Hooking into ShopGuiPlus
[17:20:16] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'ServerItem'.
[17:20:16] [Server thread/INFO]: [ItemEdit] # Enabled (took 98 ms)
[17:20:16] [Server thread/INFO]: [AxPlayerWarps] Enabling AxPlayerWarps v1.9.3
[17:20:17] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:💻┃console(1305153995815387156)
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 3ms
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[17:20:17] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[17:20:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axplayerwarps [1.0.0]
[17:20:17] [Server thread/INFO]: [AxPlayerWarps] Hooked into Vault!
[17:20:17] [Server thread/INFO]: [AxPlayerWarps] Hooked into PlayerPoints!
[17:20:18] [Server thread/INFO]: [AxPlayerWarps] Loaded plugin! Using H2 database to store data!
[17:20:18] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[17:20:18] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[17:20:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[17:20:18] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[17:20:18] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[17:20:18] [Server thread/INFO]: [OpenInv] Enabling OpenInv v5.1.10
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.9-RELEASE-1
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Displays. Attempting to initialize packet factory...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[17:20:18] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[17:20:18] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:20:19] [Server thread/ERROR]: [cc.carm.lib.easysql.hikari.pool.HikariPool] HikariPool-1 - Exception during pool initialization.
org.h2.jdbc.JdbcSQLNonTransientConnectionException: File corrupted while reading record: "/home/container/plugins/QuickShop-Hikari/shops.mv.db". Possible solution: use the recovery tool [90030-214]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.getJdbcSQLException(DbException.java:678) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.getJdbcSQLException(DbException.java:477) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.get(DbException.java:212) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.convertMVStoreException(Store.java:166) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.<init>(Store.java:145) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Database.<init>(Database.java:324) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:92) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:222) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.createSession(Engine.java:201) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.SessionRemote.connectEmbeddedOrServer(SessionRemote.java:338) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:122) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.Driver.connect(Driver.java:59) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:121) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newConnection(PoolBase.java:364) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.<init>(HikariPool.java:115) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.HikariDataSource.<init>(HikariDataSource.java:81) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.setupDatabase(QuickShop.java:1096) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.initDatabase(QuickShop.java:887) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:754) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:105) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:328) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.h2.mvstore.MVStoreException: Double mark: f/4 [2-3, 9-10, 1d-] [2.1.214/6]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.DataUtils.newMVStoreException(DataUtils.java:1004) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.FreeSpaceBitSet.markUsed(FreeSpaceBitSet.java:184) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.FileStore.markUsed(FileStore.java:344) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore.readStoreHeader(MVStore.java:1052) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore.<init>(MVStore.java:463) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore$Builder.open(MVStore.java:4082) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.<init>(Store.java:136) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    ... 30 more
[17:20:19] [Server thread/ERROR]: [QuickShop-Hikari] Error when connecting to the database
cc.carm.lib.easysql.hikari.pool.HikariPool$PoolInitializationException: Failed to initialize pool: File corrupted while reading record: "/home/container/plugins/QuickShop-Hikari/shops.mv.db". Possible solution: use the recovery tool [90030-214]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.throwPoolInitializationException(HikariPool.java:596) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.checkFailFast(HikariPool.java:582) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.<init>(HikariPool.java:115) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.HikariDataSource.<init>(HikariDataSource.java:81) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.setupDatabase(QuickShop.java:1096) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.initDatabase(QuickShop.java:887) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:754) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:105) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:328) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: org.h2.jdbc.JdbcSQLNonTransientConnectionException: File corrupted while reading record: "/home/container/plugins/QuickShop-Hikari/shops.mv.db". Possible solution: use the recovery tool [90030-214]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.getJdbcSQLException(DbException.java:678) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.getJdbcSQLException(DbException.java:477) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.message.DbException.get(DbException.java:212) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.convertMVStoreException(Store.java:166) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.<init>(Store.java:145) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Database.<init>(Database.java:324) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:92) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:222) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.createSession(Engine.java:201) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.SessionRemote.connectEmbeddedOrServer(SessionRemote.java:338) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:122) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.Driver.connect(Driver.java:59) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:121) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newConnection(PoolBase.java:364) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    ... 18 more
Caused by: org.h2.mvstore.MVStoreException: Double mark: f/4 [2-3, 9-10, 1d-] [2.1.214/6]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.DataUtils.newMVStoreException(DataUtils.java:1004) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.FreeSpaceBitSet.markUsed(FreeSpaceBitSet.java:184) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.FileStore.markUsed(FileStore.java:344) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore.readStoreHeader(MVStore.java:1052) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore.<init>(MVStore.java:463) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.MVStore$Builder.open(MVStore.java:4082) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.mvstore.db.Store.<init>(Store.java:136) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Database.<init>(Database.java:324) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:92) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.openSession(Engine.java:222) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.Engine.createSession(Engine.java:201) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.engine.SessionRemote.connectEmbeddedOrServer(SessionRemote.java:338) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.jdbc.JdbcConnection.<init>(JdbcConnection.java:122) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/org.h2.Driver.connect(Driver.java:59) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:121) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newConnection(PoolBase.java:364) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:206) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:476) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/cc.carm.lib.easysql.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    ... 18 more
[17:20:19] [Server thread/ERROR]: [QuickShop-Hikari] Error connecting to the database!
[17:20:19] [Server thread/ERROR]: [QuickShop-Hikari] Please make sure your database service is running.
[17:20:19] [Server thread/ERROR]: [QuickShop-Hikari] and check the configuration in your config.yml
[17:20:19] [Server thread/ERROR]: [QuickShop-Hikari] Failed to setup database, please check the logs for more information!
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Disabling QuickShop-Hikari v6.2.0.9-RELEASE-1
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the shutdown sequence
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] QuickShop is finishing remaining work, this may need a while...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Shutting down error reporter...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Cleaning up display manager...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Stopping log watcher...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Shutting down scheduled timers...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari] Shutting down 3rd-party integrations...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Cleaning up resources...
[17:20:19] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete (4ms)
[17:20:19] [Server thread/ERROR]: Error occurred while enabling QuickShop-Hikari v6.2.0.9-RELEASE-1 (Is it up to date?)
java.lang.IllegalStateException: Failed to setup database
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.initDatabase(QuickShop.java:890) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShop.onEnable(QuickShop.java:754) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at QuickShop-Hikari-6.2.0.9-RELEASE-1.jar/com.ghostchu.quickshop.QuickShopBukkit.onEnable(QuickShopBukkit.java:105) ~[QuickShop-Hikari-6.2.0.9-RELEASE-1.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[pufferfish-api-1.21.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:328) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[pufferfish-1.21.3.jar:1.21.3-27-04bc249]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[17:20:19] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.16.0
[17:20:19] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[17:20:19] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[17:20:19] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[17:20:19] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[17:20:19] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[17:20:19] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[17:20:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.16.0]
[17:20:20] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[17:20:20] [Server thread/INFO]: [EternalTags] Enabling EternalTags v1.3.3
[17:20:20] [Server thread/INFO]: [EternalTags] Data handler connected using SQLite.
[17:20:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: eternaltags [1.3.3]
[17:20:20] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.7.2
[17:20:20] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.7.2
[17:20:20] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[17:20:20] [Server thread/INFO]: [CitizensCMD] Using English messages!
[17:20:20] [Server thread/ERROR]: [CitizensCMD] Failed to register events for class me.mattstudios.citizenscmd.listeners.NPCClickListener because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[17:20:20] [Server thread/ERROR]: [CitizensCMD] Failed to register events for class me.mattstudios.citizenscmd.listeners.NPCListener because net/citizensnpcs/api/event/NPCCloneEvent does not exist.
[17:20:20] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[17:20:20] [Server thread/INFO]: [CitizensCMD] Using Vault!
[17:20:20] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.9
[17:20:21] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[17:20:21] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[17:20:21] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[17:20:21] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[17:20:21] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[17:20:21] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Loading marriages ...
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Marriages loaded
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Loading priests ...
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Priests loaded
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Loading players ...
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Players loaded
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Loading marriages into cache ...
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Marriages loaded into cache
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Loading homes ...
[17:20:21] [Thread-84/INFO]: [MarriageMaster] Homes loaded
[17:20:21] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[17:20:21] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[17:20:21] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 826 items.
[17:20:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.9]
[17:20:21] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[17:20:21] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[17:20:21] [Server thread/INFO]: [Quests] Enabling Quests v3.15.2-b216e2b
[17:20:21] [Server thread/INFO]: [Quests] Running server scheduler: FoliaServerScheduler
[17:20:21] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[17:20:21] [Server thread/INFO]: [Quests] Your server is running version 1.21
[17:20:21] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.1
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Using Internal hologram handler.
[17:20:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[17:20:21] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@2feb817f
[17:20:21] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[17:20:21] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crate keys.
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Loaded 3 crates.
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[17:20:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.1]
[17:20:21] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 468 ms!
[17:20:21] [Server thread/INFO]: [AutomaticBroadcast] Enabling AutomaticBroadcast v1.9.0
[17:20:21] [Server thread/INFO]:    _____  _____
[17:20:21] [Server thread/INFO]:   |  _  || __  |  AutomaticBroadcast
[17:20:21] [Server thread/INFO]:   |     || __ -|    Version 1.9.0
[17:20:21] [Server thread/INFO]:   |__|__||_____|      by Pandaaa
[17:20:21] [Server thread/INFO]: 
[17:20:21] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[17:20:21] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[17:20:21] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[17:20:21] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[17:20:21] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[17:20:21] [Server thread/INFO]: RENAME ➠ Prefix set to: 'RENAME ➠ '
[17:20:21] [Server thread/INFO]: RENAME ➠ Plugin Enabled!
[17:20:21] [Server thread/INFO]: [ChatColor2] Enabling ChatColor2 v1.15.1
[17:20:22] [Server thread/INFO]: CHATCOLOR ➠ ChatColor 2 Version 1.15.1 has been enabled.
[17:20:22] [Server thread/INFO]: CHATCOLOR ➠ Current update: GUI rework & additional features! (+Bug fixes)
[17:20:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cc [1.15.1]
[17:20:22] [Server thread/INFO]: CHATCOLOR ➠ PlaceholderAPI has been hooked.
[17:20:22] [Server thread/INFO]: CHATCOLOR ➠ Metrics is enabled for this plugin. Stats sent to https://bstats.org/plugin/bukkit/ChatColor2
[17:20:22] [Server thread/INFO]: [ajQueue] Enabling ajQueue v2.7.0
[17:20:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajqueue [2.7.0]
[17:20:22] [Server thread/INFO]: [ajQueue] Registered PlaceholderAPI placeholders
[17:20:22] [Server thread/INFO]: [ajQueue] Spigot side enabled! v2.7.0
[17:20:22] [Server thread/INFO]: [AxTrade] Enabling AxTrade v1.16.3
[17:20:22] [Server thread/INFO]: [AxTrade] Hooked into Vault!
[17:20:22] [Server thread/INFO]: [AxTrade] Hooked into PlayerPoints!
[17:20:22] [Server thread/INFO]: [AxTrade] Loaded plugin!
[17:20:23] [Server thread/INFO]: [NexoAddon] Enabling NexoAddon v1.12.0
[17:20:23] [Server thread/INFO]: [NexoAddon] [ACF] Enabled Asynchronous Tab Completion Support!
[17:20:23] [Server thread/INFO]: [NexoAddon] NexoAddon enabled!
[17:20:23] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.29.23-SNAPSHOT
[17:20:23] [Server thread/INFO]: [AxRewards] Enabling AxRewards v3.4.3
[17:20:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axrewards [1.0.0]
[17:20:23] [Server thread/INFO]: [AxRewards] Hooked into PlaceholderAPI!
[17:20:24] [Server thread/INFO]: [AxRewards] Loaded plugin! Using H2 database to store data!
[17:20:24] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2025.02
[17:20:24] [Server thread/INFO]: [UltimateAutoRestart] 2025.02, a free resource by Norska - Thanks for downloading!
[17:20:24] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[17:20:24] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[17:20:24] [Server thread/INFO]: [AxVaults] Enabling AxVaults v2.7.3
[17:20:25] [Server thread/INFO]: [AxVaults] Loaded plugin!
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Enabling CrazyAuctions v1.4.2
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Loading the config.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Successfully loaded config.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Loading the messages.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Successfully loaded messages.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Loading the test-file.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Successfully loaded test-file.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Loading the data.yml
[17:20:25] [Server thread/INFO]: [CrazyAuctions] Successfully loaded data.yml
[17:20:25] [Server thread/INFO]: [AdvancedPortals] Enabling AdvancedPortals v1.0.0
[17:20:25] [Server thread/INFO]: [AdvancedPortals] BLOCK_PORTAL_TRAVEL found
[17:20:25] [Server thread/INFO]: [AdvancedPortals] Modern forwarding detected. Enabling proxy features.
[17:20:25] [Server thread/INFO]: [AdvancedPortals] Warning! To avoid vulnerabilities we have disabled proxy messages by default. To enable full proxy features, please change EnableProxySupport in the config.yml and ensure you have the plugin installed on the proxy.
[17:20:25] [Server thread/INFO]: Advanced portals have been successfully enabled!
[17:20:25] [Server thread/INFO]: [GSit] Enabling GSit v2.3.2
[17:20:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [2.3.2]
[17:20:25] [Server thread/INFO]: [WorldGuard] Registering session handler dev.geco.gsit.link.worldguard.RegionFlagHandler
[17:20:25] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[17:20:25] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[17:20:25] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[17:20:25] [Server thread/INFO]: [Tebex] Enabling Tebex v2.0.6
[17:20:25] [Server thread/INFO]: [FreeCoinFlip] Enabling FreeCoinFlip v1.9
[17:20:25] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.9
[17:20:25] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:20:25] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[17:20:25] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[17:20:25] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[17:20:25] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[17:20:25] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[17:20:25] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[17:20:25] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[17:20:25] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.9
[17:20:25] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading YAML files...
[17:20:25] [Server thread/INFO]: [CLV] Loaded file config.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[17:20:25] [Server thread/INFO]: [CLV] Loaded 6 files in 20ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading exp earning events...
[17:20:25] [Server thread/INFO]: [CLV] Loaded 0 exp earn events in 1ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading anti-abuse...
[17:20:25] [Server thread/INFO]: [CLV] Loaded 2 anti-abuse settings in 1ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading level data...
[17:20:25] [Server thread/INFO]: [CLV] Loaded 25 level(s) in 0ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading reward data...
[17:20:25] [Server thread/INFO]: [CLV] Loaded 2 reward(s) in 1ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [CLV] Loading leaderboard data...
[17:20:25] [Server thread/INFO]: [CLV] Loaded 10 players in 2ms.
[17:20:25] [Server thread/INFO]: [CLV] 
[17:20:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: clv [0.5.9]
[17:20:25] [Server thread/INFO]: [CLV] Loaded CLV v0.5.9 in 46ms.
[17:20:25] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[17:20:25] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.29.23-SNAPSHOT
[17:20:25] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.6
[17:20:25] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[17:20:25] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[17:20:25] [Server thread/INFO]: [AxAFKZone] Enabling AxAFKZone v1.6.3
[17:20:25] [OkHttp https://plugin.tebex.io/.../INFO]: [Tebex] Connected to BoxSMP - Minecraft (Offline/Geyser) server.
[17:20:26] [Server thread/INFO]: ╠ Loaded zone afkhut_spawn!
[17:20:26] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v3.9.0
[17:20:26] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[17:20:26] [Server thread/INFO]: [AxSellwands] Enabling AxSellwands v1.9.4
[17:20:27] [Server thread/INFO]: [AxSellwands] Hooked into Vault!
[17:20:27] [Server thread/INFO]: [AxSellwands] Hooked into ShopGUIPlus!
[17:20:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: axsellwands [1.0.0]
[17:20:27] [Server thread/INFO]: [AxSellwands] Hooked into WorldGuard!
[17:20:27] [Server thread/INFO]: [AxSellwands] Hooked into BentoBox!
[17:20:27] [Server thread/INFO]: [AxSellwands] Loaded plugin!
[17:20:27] [Server thread/INFO]: [DiscordSRV-LinkChannel] Enabling DiscordSRV-LinkChannel v1.2
[17:20:27] [Server thread/INFO]: [DiscordSRV] API listener com.gelevla.discordsrvlinkchannel.DiscordSRVListener subscribed (3 methods)
[17:20:27] [Server thread/INFO]: [DiscordSRV-LinkChannel] DiscordSRV-LinkChannel addon has been enabled!
[17:20:27] [Server thread/INFO]: [Exo-TebexSync] Enabling Exo-TebexSync v1.0.7
[17:20:27] [Server thread/INFO]: 
_____    _                ____                   
|_   _|__| |__   _____  __/ ___| _   _ _ __   ___ 
  | |/ _ \ '_ \ / _ \ \/ /\___ \| | | | '_ \ / __||
  | |  __/ |_) |  __/>  <  ___) | |_| | | | | (__ 
  |_|\___|_.__/ \___/_/\_\|____/ \__, |_| |_|\___|
                                 |___/            

Plugin Information:
 • Version: 1.0.7
 • Author(s): ExoraStudios

Server Information:
 • Software: Pufferfish
 • Version: 1.21.3-R0.1-SNAPSHOT

Discord Mode is set to BOT. We will be using JDA for it. If you experience performance issues, we recommend using the WEBHOOK option instead.


[17:20:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tebexsync [1.0.0]
[17:20:27] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
[17:20:27] [Server thread/INFO]: [TAB] Failed to initialize minecraft fields for sending entity packets due to a compatibility error. No fallback solution was found. This will result in: 
#1: Unlimited nametag mode not working and being replaced with regular nametags
[17:20:27] [Server thread/INFO]: [TAB] Failed to initialize minecraft fields for tablist entry management due to a compatibility error. Using fallback solution using Bukkit API. This will result in: 
#1: Layout feature will not work
#2: Prevent-spectator-effect feature will not work
#3: Ping spoof feature will not work
#4: Tablist formatting missing anti-override
#5: Tablist formatting not supporting relational placeholders
[17:20:27] [Server thread/INFO]: [TAB] Please update the plugin to a version with native support for your server version for optimal experience. This plugin version was made for 1.5 - 1.21.
[17:20:27] [Server thread/INFO]: [TAB] Loaded NMS hook in 29ms
[17:20:27] [TebexSync-ASYNC-Processing 1/WARN]: [net.dv8tion.jda.api.JDA] Automatically disabled CacheFlags due to missing intents
[17:20:27] [TebexSync-ASYNC-Processing 1/WARN]: [net.dv8tion.jda.api.JDA] Disabled CacheFlag.SCHEDULED_EVENTS (missing GatewayIntent.SCHEDULED_EVENTS)
[17:20:27] [TebexSync-ASYNC-Processing 1/WARN]: [net.dv8tion.jda.api.JDA] You can manually disable these flags to remove this warning by using disableCache(CacheFlag.SCHEDULED_EVENTS) on your JDABuilder
[17:20:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.1.6]
[17:20:28] [Server thread/INFO]: [TAB] Enabled in 209ms
[17:20:28] [Server thread/INFO]: [InfiniteBuckets] Enabling InfiniteBuckets v1.0
[17:20:28] [Server thread/INFO]: [FancyGlow] Enabling FancyGlow v2.1.1
[17:20:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: fancyglow [1.2.0]
[17:20:28] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.1-dev+5-dabe687
[17:20:28] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[17:20:28] [Server thread/INFO]: [CmdWebhooks] Enabling CmdWebhooks v1.1.1
[17:20:28] [Server thread/INFO]: [CmdWebhooks] [STDOUT] [CmdWebhook] Invalid webhook
[17:20:28] [Server thread/WARN]: Nag author(s): '[OllieJW]' of 'CmdWebhooks v1.1.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[17:20:28] [Server thread/INFO]: [ImageFrame] Enabling ImageFrame v1.8.2.0
[17:20:28] [TebexSync-ASYNC-Processing 1/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[17:20:28] [Server thread/INFO]: [ImageFrame] ImageFrame has hooked into ViaVersion!
[17:20:28] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[17:20:29] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[17:20:29] [TebexSync-ASYNC-Processing 1/INFO]: [Exo-TebexSync] Bot has successfully started!
[17:20:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: imageframe [1.0.0]
[17:20:30] [Server thread/INFO]: [ImageFrame] ImageFrame has been Enabled!
[17:20:30] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.21.8
[17:20:30] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.8 Plugin Loading...
[17:20:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: commandpanels [1.0.0]
[17:20:31] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.21.8 Plugin Loaded!
[17:20:31] [Server thread/INFO]: [StoreStats] Enabling StoreStats v3.44.0
[17:20:31] [Server thread/INFO]: [StoreStats] Initializing managers...
[17:20:31] [Server thread/INFO]: [StoreStats] Using Paper Implementation!
[17:20:31] [Server thread/INFO]: [StoreStats] ImplementationManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] DataManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] StoreManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] PaymentManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] DisplayManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] PlaceholdersManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] InventoryManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] DecentHologramsManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] ZNPCPlusManager not initialized due to missing ZNPCPlus!
[17:20:31] [Server thread/INFO]: [StoreStats] FancyNPCsManager not initialized due to missing FancyNpcs!
[17:20:31] [Server thread/INFO]: [StoreStats] BroadcastManager initialized!
[17:20:31] [Server thread/INFO]: [StoreStats] Registering commands...
[17:20:31] [Server thread/INFO]: [StoreStats] Registering listeners...
[17:20:31] [Server thread/INFO]: [StoreStats] Loading data...
[17:20:31] [Server thread/INFO]: [StoreStats] Registering hooks...
[17:20:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: storestats [3.44.0]
[17:20:31] [Server thread/INFO]: [StoreStats] Hooked into PlaceholderAPI
[17:20:31] [Server thread/INFO]: [StoreStats] Citizens not found, Citizens NPC types won't work! Download and install it from https://www.spigotmc.org/resources/13811/
[17:20:31] [Server thread/INFO]: [StoreStats] Starting tasks...
[17:20:31] [Server thread/INFO]: [StoreStats] Using Tebex implementation!
[17:20:31] [Server thread/INFO]: [StoreStats] Starting metrics...
[17:20:31] [Server thread/INFO]: [StoreStats] Plugin registered to 645003 | -909420361
[17:20:31] [Server thread/INFO]: [StoreStats] Done and enabled in 49.75ms
[17:20:31] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.3
[17:20:31] [Server thread/INFO]: [UltimateMobCoins] Enabling UltimateMobCoins v1.3.0
[17:20:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] UltimateMobCoins-pool - Starting...
[17:20:31] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] UltimateMobCoins-pool - Added connection org.sqlite.jdbc4.JDBC4Connection@7cee3b81
[17:20:31] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] UltimateMobCoins-pool - Start completed.
[17:20:31] [Server thread/INFO]: [UltimateMobCoins] Loaded 80 mobcoin drops
[17:20:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimatemobcoins [1.3.0]
[17:20:32] [Server thread/INFO]: [UltimateMobCoins] Successfully loaded Vault hook! (EssentialsX Economy)
[17:20:32] [Server thread/INFO]: [UltimateMobCoins] Successfully loaded RoseStacker hook!
[17:20:32] [Server thread/WARN]: Could not register alias sell because it contains commands that do not exist: economyshopgui:sellall $1-
[17:20:32] [Server thread/WARN]: Could not register alias box upgrades because it contains illegal characters
[17:20:32] [Server thread/WARN]: Could not register alias box upgrade because it contains illegal characters
[17:20:32] [Server thread/INFO]: [spark] Starting background profiler...
[17:20:32] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:20:32] [Server thread/INFO]: Done preparing level "world" (23.991s)
[17:20:32] [Server thread/INFO]: Running delayed init tasks
[17:20:32] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Testing Store connection...
[17:20:32] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Store secret invalid or connection issues!
[17:20:32] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Please set your Store secret key in the config.yml and restart/reload!
[17:20:32] [Craft Scheduler Thread - 66 - StoreStats/INFO]: [StoreStats] Plugin will work as normal but will not be able to get your store information!
[17:20:32] [Craft Scheduler Thread - 18 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[17:20:32] [Craft Scheduler Thread - 36 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[17:20:32] [Craft Scheduler Thread - 20 - Essentials/INFO]: [Essentials] Fetching version information...
[17:20:32] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[17:20:32] [Craft Scheduler Thread - 67 - StoreStats/INFO]: [StoreStats] v3.45.1 is available! You are running v3.44.0!
[17:20:32] [Craft Scheduler Thread - 67 - StoreStats/INFO]: [StoreStats] Download it here: https://www.spigotmc.org/resources/80000/
[17:20:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:20:32] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:20:32] [Craft Scheduler Thread - 24 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: 
- https://www.spigotmc.org/resources/96927/
- https://modrinth.com/plugin/decentholograms
[17:20:32] [Server thread/INFO]: [BentoBox] Hooking with Vault...
[17:20:32] [Server thread/INFO]: [BentoBox] Hooking with PlaceholderAPI...
[17:20:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bentobox [3.3.5]
[17:20:32] [Server thread/INFO]: [BentoBox] Enabling game mode addons...
[17:20:32] [Server thread/INFO]: [BentoBox] Enabling Boxed (2.8.2)...
[17:20:32] [Server thread/INFO]: [BentoBox] [Boxed] Creating Boxed Seed world ...
[17:20:32] [Craft Scheduler Thread - 22 - DecentHolograms/INFO]: [DecentHolograms] Loaded 19 holograms!
[17:20:32] [Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] Checking for Updates ... 
[17:20:32] [Craft Scheduler Thread - 73 - Vault/INFO]: [Vault] No new version available
[17:20:32] [Craft Scheduler Thread - 27 - RoseStacker/INFO]: [RoseStacker] Fetched 135 translation locales.
[17:20:33] [Craft Scheduler Thread - 68 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[17:20:33] [Craft Scheduler Thread - 68 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.1.3, which is 3 versions outdated.
[17:20:33] [Craft Scheduler Thread - 68 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.1.6 from GitHub at the link below:
[17:20:33] [Craft Scheduler Thread - 68 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.1.6
[17:20:34] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 10% done
[17:20:35] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 20% done
[17:20:36] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 30% done
[17:20:37] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 40% done
[17:20:38] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 50% done
[17:20:39] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 60% done
[17:20:40] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 70% done
[17:20:41] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 80% done
[17:20:42] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 90% done
[17:20:43] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed's NORMAL 100% done
[17:20:43] [Server thread/INFO]: [BentoBox] [Boxed] Creating Boxed Seed Nether world ...
[17:20:44] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 10% done
[17:20:45] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 20% done
[17:20:46] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 30% done
[17:20:46] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 40% done
[17:20:47] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 50% done
[17:20:48] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 60% done
[17:20:48] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 70% done
[17:20:49] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 80% done
[17:20:50] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 90% done
[17:20:51] [Server thread/INFO]: [BentoBox] [Boxed] Pregenerating seed chunks for boxed_world/seed_nether's NETHER 100% done
[17:20:51] [Server thread/ERROR]: No key layers in MapLike[{}]
[17:20:51] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:52] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world/bentobox
[17:20:52] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:52] [Server thread/INFO]: Time elapsed: 263 ms
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world/bentobox) TNT ignition is PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world/bentobox) Lighters are PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world/bentobox) Lava fire is PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world/bentobox) Fire spread is UNRESTRICTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world/bentobox'
[17:20:52] [Server thread/ERROR]: No key layers in MapLike[{}]
[17:20:52] [Server thread/ERROR]: [MapSerializer] Could not deserialize key grass into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]: Missing value in Registry[ResourceKey[minecraft:root / minecraft:item] (Stable)] with key minecraft:grass
[17:20:52] [Server thread/INFO]: Preparing start region for dimension minecraft:boxed_world_nether/bentobox
[17:20:52] [Server thread/INFO]: Preparing spawn area: 0%
[17:20:52] [Server thread/INFO]: Time elapsed: 176 ms
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world_nether/bentobox) TNT ignition is PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world_nether/bentobox) Lighters are PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world_nether/bentobox) Lava fire is PERMITTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] (boxed_world_nether/bentobox) Fire spread is UNRESTRICTED.
[17:20:52] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'boxed_world_nether/bentobox'
[17:20:52] [Server thread/WARN]: [BentoBox] [Boxed] Boxed normally requires the InvSwitcher addon for per-world Advancements.
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded 27 structure todos.
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded bee.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded pillager.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded polar_bear.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded axolotl.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded allay.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded parrot.nbt
[17:20:52] [Server thread/INFO]: [BentoBox] [Boxed] Loaded frog.nbt
[17:20:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: boxed [2.8.2]
[17:20:52] [Server thread/INFO]: [BentoBox] Enabling other addons...
[17:20:52] [Server thread/INFO]: [BentoBox] Enabling Border (4.5.0)...
[17:20:52] [Server thread/INFO]: [BentoBox] [Border] Border hooking into Boxed
[17:20:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: border [4.5.0]
[17:20:52] [Server thread/INFO]: [BentoBox] Enabling ControlPanel (1.14.0)...
[17:20:52] [Server thread/INFO]: [BentoBox] Loading control panels...
[17:20:52] [Server thread/INFO]: [BentoBox] Addons successfully enabled.
[17:20:52] [Server thread/INFO]: [BentoBox] Loading islands from database...
[17:20:52] [Server thread/INFO]: [BentoBox] Hooking with Multiverse-Core...
[17:20:52] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world' - Env: NORMAL - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:52] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world/bentobox' - Env: NORMAL - Type: FLAT & seed: 602103456450
[17:20:52] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world_nether' - Env: NETHER - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:52] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world_nether/bentobox' - Env: NETHER - Type: FLAT & seed: 602103456450
[17:20:52] [Server thread/INFO]: 
  ____             _        ____
 |  _ \           | |      |  _ \             by tastybento and Poslovitch
 | |_) | ___ _ __ | |_ ___ | |_) | _____  __  2017 - 2023
 |  _ < / _ \ '_ \| __/ _ \|  _ < / _ \ \/ /
 | |_) |  __/ | | | || (_) | |_) | (_) >  <   v3.3.5
 |____/ \___|_| |_|\__\___/|____/ \___/_/\_\  Loaded in 21624ms.

[17:20:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerpoints [3.3.2]
[17:20:52] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[17:20:53] [Server thread/INFO]: NEXO ➠ PackServer set to POLYMATH
[17:20:53] [Server thread/INFO]: NEXO ➠ forest_wolf_armor is using invalid material CHAINMAIL_ARMOR, defaulting to PAPER...
[17:20:53] [Server thread/INFO]: NEXO ➠ forest_horse_armor is using invalid material CHAINMAIL_HORSE_ARMOR, defaulting to PAPER...
[17:20:53] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Generating resourcepack...
[17:20:53] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Importing DefaultPack...
[17:20:53] [Server thread/INFO]: [Skript] Loading variables...
[17:20:53] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Importing external-pack Text Effects by Akis.zip...
[17:20:53] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[17:20:53] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[17:20:53] [Server thread/INFO]: [Skript] Loaded 4 scripts with a total of 22 structures in 0.41 seconds
[17:20:53] [Server thread/INFO]: [Skript] Finished loading.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Registered spawners support for RoseStacker.
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.104.0 ]================================
[17:20:53] [Server thread/INFO]: [ShopGUIPlus]  
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Need help using ShopGUI+? Join our Discord Support server!
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] https://discord.brcdev.net/
[17:20:53] [Server thread/INFO]: [ShopGUIPlus]  
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for Nexo.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ServerItem.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Using RoseStacker for spawners support.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded 8 main menu items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'miscellaneous' with 9 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 18 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'armor' with 24 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 8 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 18 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 12 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'tools' with 15 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'dyes' with 16 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 19 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded 9 shops with total of 139 items.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[17:20:53] [Server thread/INFO]: [ShopGUIPlus]  
[17:20:53] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: playerlist [3.0.8]
[17:20:53] [Server thread/INFO]: Vanish Placeholders - Hooked into SuperVanish or PremiumVanish
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vanish [1.2]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: spark [1.0]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[17:20:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[17:20:53] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playerstats due to a missing plugin: PlayerStats
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[17:20:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: formatter [2.8.0]
[17:20:53] [Server thread/INFO]: 11 placeholder hook(s) registered! 2 placeholder hook(s) have an update available.
[17:20:53] [Server thread/INFO]: [BentoBox] Added world Boxed (NORMAL)
[17:20:53] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Validating ResourcePack files...
[17:20:53] [Server thread/INFO]: Done (88.456s)! For help, type "help"
[17:20:53] [Craft Scheduler Thread - 23 - BentoBox/INFO]: [BentoBox] Loaded Blueprint Bundle 'default' for Boxed.
[17:20:54] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Texture boxclash:item/misc/balance.png has bad resolution-ratio 22x22
[17:20:54] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Textures not using ^2 will lower mipmap-level, causing blurry visuals
[17:20:54] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Recommend converting it to a resolution in ^2, 2x2, 4x4, 8x8, 16x16, 32x32...
[17:20:54] [Craft Scheduler Thread - 23 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'island' for Boxed
[17:20:54] [Craft Scheduler Thread - 23 - BentoBox/INFO]: [BentoBox] Loaded blueprint 'nether' for Boxed
[17:20:54] [Server thread/INFO]: [BentoBox] [Boxed] Registering Boxed worlds with other plugins (if applicable)...
[17:20:54] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world/seed' - Env: NORMAL - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:54] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world' - Env: NORMAL - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:54] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world/seed_nether' - Env: NETHER - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:54] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'boxed_world_nether' - Env: NETHER - Type: NORMAL & seed: 602103456450 & generator: BentoBox
[17:20:54] [Server thread/WARN]: [BentoBox] No Regenerator found for v1_21_3_R0_1_SNAPSHOT, falling back to Bukkit API.
[17:20:54] [Server thread/INFO]: [BentoBox] All blueprints loaded.
[17:20:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: quests [3.15.2-b216e2b]
[17:20:54] [Server thread/INFO]: [Quests] Successfully hooked into Essentials economy.
[17:20:54] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[17:20:54] [Server thread/INFO]: [Quests] 47 task types have been registered.
[17:20:54] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[17:20:54] [Craft Scheduler Thread - 20 - Essentials/WARN]: [Essentials] You're 13 EssentialsX dev build(s) out of date!
[17:20:54] [Craft Scheduler Thread - 20 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[17:20:54] [Server thread/INFO]: [Quests] 42 quests have been registered.
[17:20:54] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[17:20:54] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[17:20:54] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ Finished generating resourcepack!

[17:20:54] [Craft Scheduler Thread - 51 - ImageFrame/INFO]: [ImageFrame] Data loading completed! Loaded 1 ImageMaps!
[17:20:54] [ForkJoinPool.commonPool-worker-13/INFO]: NEXO ➠ ResourcePack has been uploaded to https://atlas.nexomc.com/pack.zip?id=b333db9dd144a6173349ea648c91b3ebf5b94bbf
[17:20:55] [Craft Scheduler Thread - 27 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[17:20:55] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2502ms or 50 ticks behind
[17:20:55] [Craft Scheduler Thread - 32 - BentoBox/INFO]: [BentoBox] Downloading data from GitHub...
[17:20:55] [Craft Scheduler Thread - 32 - BentoBox/INFO]: [BentoBox] Updating the Catalog...
[17:20:57] [Craft Scheduler Thread - 63 - AxSellwands/INFO]: SELLWANDS ➠ There is a new version of AxSellwands available! (current: 1.9.4 | latest: 1.9.5)
[17:20:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2025.02]
[17:20:57] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[17:20:57] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[17:20:58] [Craft Scheduler Thread - 32 - BentoBox/INFO]: [BentoBox] Updating Contributors information...
[17:20:58] [Craft Scheduler Thread - 32 - BentoBox/INFO]: [BentoBox] Gathering contribution data for: BentoBoxWorld/BentoBox, BentoBoxWorld/Boxed, BentoBoxWorld/ControlPanel
[17:20:59] [Server thread/INFO]:  
[17:20:59] [Server thread/INFO]:  [UltimateAutoRestart] New update available!
[17:20:59] [Server thread/INFO]:  Current version: 2025.02 with latest being 2025.04!
[17:20:59] [Server thread/INFO]:  
[17:20:59] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/uar/
[17:20:59] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/uar/
[17:20:59] [Server thread/INFO]:  BuiltByBit -> https://norska.dev/r/bbb/uar/
[17:20:59] [Server thread/INFO]:  
[17:21:01] [Craft Scheduler Thread - 32 - BentoBox/INFO]: [BentoBox] Successfully downloaded data from GitHub.
[17:22:20] [Server thread/INFO]: Server Plugins (76):
[17:22:20] [Server thread/INFO]: Paper Plugins:
[17:22:20] [Server thread/INFO]:  - MarriageMaster, nightcore, RoseStacker, UltimateMobCoins
[17:22:20] [Server thread/INFO]: Bukkit Plugins:
[17:22:20] [Server thread/INFO]:  - AdvancedPortals, ajLeaderboards, ajQueue, ArmorStandTools, AutomaticBroadcast, AxAFKZone, AxPlayerWarps, AxRewards, AxSellwands, AxTrade
[17:22:20] [Server thread/INFO]:  AxVaults, BentoBox, BentoBox-Border, BentoBox-Boxed, ChatColor2, ChatGames, ChestSort, Citizens, CitizensCMD, CmdWebhooks
[17:22:20] [Server thread/INFO]:  CommandPanels, CrazyAuctions, CrazyVouchers, CyberLevels, DecentHolograms, DeluxeMenus, DiscordSRV, DiscordSRV-LinkChannel, EpicRename, Essentials
[17:22:20] [Server thread/INFO]:  EssentialsSpawn, EternalTags, ExcellentCrates, Exo-TebexSync, FancyGlow, FastAsyncWorldEdit, FreeCoinFlip, GSit, ImageFrame, InfiniteBuckets
[17:22:20] [Server thread/INFO]:  InteractiveChat, InvSeePlusPlus, InvSeePlusPlus_Clear, InvSeePlusPlus_Give, ItemEdit, LiteBans, LPC, LuckPerms, MiniMOTD, Multiverse-Core
[17:22:20] [Server thread/INFO]:  Nexo, NexoAddon, OpenInv, PlaceholderAPI, PlayerPoints, ProtocolLib, Quests, QuickShop-Hikari, ShopGUIPlus, Skript
[17:22:20] [Server thread/INFO]:  StoreStats, SuperVanish, TAB, Tebex, TempFly, UltimateAutoRestart, Vault, ViaBackwards, ViaRewind, ViaVersion
[17:22:20] [Server thread/INFO]:  *VoidWorld, WorldGuard
[17:22:28] [User Authenticator #0/WARN]: [LuckPerms] Processing login for K1NG_DUCKY took 1129ms.
[17:22:28] [User Authenticator #0/INFO]: UUID of player K1NG_DUCKY is 6151ef39-c823-45ec-a800-5f520249a6c2
[17:22:31] [Server thread/WARN]: [TempFly] The BskyBlock hook encountered a problem. It will now disable!
[17:22:32] [Server thread/INFO]: [DiscordSRV] Player K1NG_DUCKY joined with silent joining permission, not sending a join message
[17:22:32] [Server thread/INFO]: K1NG_DUCKY[/86.145.62.208:39150] logged in with entity id 761 at ([world]5.054654858882105, 94.0, 48.14526514243822)
[17:22:32] [Server thread/INFO]: K1NG_DUCKY has connected.
[17:22:41] [Server thread/INFO]: K1NG_DUCKY issued server command: /n rl
[17:22:41] [Server thread/INFO]: NEXO ➠ NMS-Version v1_21_R2 has been detected.
[17:22:41] [Server thread/INFO]: NEXO ➠ PackServer set to POLYMATH
[17:22:41] [Server thread/INFO]: NEXO ➠ forest_wolf_armor is using invalid material CHAINMAIL_ARMOR, defaulting to PAPER...
[17:22:41] [Server thread/INFO]: NEXO ➠ forest_horse_armor is using invalid material CHAINMAIL_HORSE_ARMOR, defaulting to PAPER...
[17:22:41] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Skipped downloading DefaultPack as it is up to date!
[17:22:41] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Generating resourcepack...
[17:22:41] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Importing DefaultPack...
[17:22:41] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Importing external-pack Text Effects by Akis.zip...
[17:22:42] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Validating ResourcePack files...
[17:22:42] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Texture boxclash:item/misc/balance.png has bad resolution-ratio 22x22
[17:22:42] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Textures not using ^2 will lower mipmap-level, causing blurry visuals
[17:22:42] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Recommend converting it to a resolution in ^2, 2x2, 4x4, 8x8, 16x16, 32x32...
[17:22:42] [ForkJoinPool.commonPool-worker-11/INFO]: NEXO ➠ Finished generating resourcepack!

[17:22:42] [ForkJoinPool.commonPool-worker-2/INFO]: NEXO ➠ ResourcePack has been uploaded to https://atlas.nexomc.com/pack.zip?id=b333db9dd144a6173349ea648c91b3ebf5b94bbf
[17:22:45] [Server thread/INFO]: K1NG_DUCKY issued server command: /box
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1182.5979661941815,y=68.0,z=2367.528054106462,pitch=6.2999954,yaw=88.499985} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=6.2999954,yaw=88.499985}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1182.749421936599,y=68.0,z=2367.530628213728,pitch=6.2999954,yaw=88.499985} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=6.2999954,yaw=88.499985}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1182.9300307841288,y=68.0,z=2367.5347329040483,pitch=6.4499955,yaw=87.599976} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=6.2999954,yaw=88.499985}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1183.0286432263342,y=68.0,z=2367.5347329040483,pitch=7.049996,yaw=86.24996} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=6.4499955,yaw=87.599976}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1183.111883579682,y=68.0,z=2367.5347329040483,pitch=10.199995,yaw=81.44993} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=8.099997,yaw=84.44994}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1183.3106972070802,y=68.0,z=2367.351412243681,pitch=34.050003,yaw=46.19989} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=33.449997,yaw=47.9999}
[17:22:49] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1183.3672832681757,y=68.0,z=2367.300000011921,pitch=34.350006,yaw=45.449883} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=34.050003,yaw=46.19989}
[17:23:03] [Server thread/INFO]: K1NG_DUCKY issued server command: /box-upgrade
[17:23:08] [Server thread/INFO]: K1NG_DUCKY issued server command: /box-upgrade
[17:23:58] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.0727548450675,y=68.0,z=2367.300000011921,pitch=31.650028,yaw=38.54985} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=31.650028,yaw=38.699852}
[17:23:58] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.4038412537866,y=68.0,z=2367.300000011921,pitch=31.950027,yaw=37.949844} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=31.800028,yaw=38.39985}
[17:23:59] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.699999988079,y=68.0,z=2367.5743535343404,pitch=33.600044,yaw=24.749811} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=33.450043,yaw=25.949808}
[17:23:59] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.699999988079,y=68.0,z=2367.729986584665,pitch=33.600044,yaw=23.549814} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=33.600044,yaw=24.749811}
[17:23:59] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.699999988079,y=68.0,z=2367.905005758431,pitch=33.600044,yaw=23.249815} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=33.600044,yaw=23.549814}
[17:23:59] [Server thread/WARN]: [BentoBox] [Boxed] K1NG_DUCKY tried to teleport outside of their box from Location{world=CraftWorld{name=boxed_world},x=-1184.699999988079,y=68.0,z=2368.0812303812004,pitch=33.600044,yaw=23.099815} to Location{world=CraftWorld{name=boxed_world},x=-1184.0,y=68.0,z=2368.0,pitch=33.600044,yaw=23.099815}
[17:25:54] [Craft Scheduler Thread - 67 - CyberLevels/INFO]: [CLV] Successfully auto-saved all player data (51ms).
[17:30:54] [Craft Scheduler Thread - 105 - CyberLevels/INFO]: [CLV] Successfully auto-saved all player data (49ms).