Paste #128354: AuthenticHUmans Startuplog

Date: 2024/11/20 16:39:29 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[00:26:08] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 6.1.0-26-amd64 (amd64)
[00:26:08] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.1-131-ver/1.21.1@84281ce (2024-10-31T17:43:44Z) for Minecraft 1.21.1
[00:26:09] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[00:26:10] [ServerMain/INFO]: [PluginInitializerManager] Initialized 60 plugins
[00:26:10] [ServerMain/INFO]: [PluginInitializerManager] Paper plugins (4):
 - AdvancedKits (1.18.7), BKCommonLib (1.21.1-v1), MarriageMaster (2.7.7), Minepacks (2.4.31.4-T20240629215752)
[00:26:10] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (56):
 - AdvancedRegionMarket (3.5.3), AntiDrop (2.2.3), ArmorStandEditor (1.21.1-47.2), BetterRTP (3.6.13), CMI (9.7.7.10), CMILib (1.5.2.2), Chunky (1.4.28), Citizens (2.0.36-SNAPSHOT (build 3637)), ConsoleSpamFix (1.10.0), CoreProtect (22.4), CraftingStore (2.9.3), DecentHolograms (2.8.12), DeluxeMenus (1.14.0-Release), DiscordSRV (1.28.0), EpicRename (3.12), ExcellentCrates (5.3.5), ExcellentEnchants (4.3.0), ExecutableBlocks (5.24.11.13), ExecutableItems (7.24.11.13), GPFlags (5.13.6), GSit (1.11.2), GriefPrevention (16.18.4), HeadDatabase (4.20.4), HexNicks (2.2.2), Infiniteannouncements (2.5.0), Interactions (2.7.2), Jobs (5.2.4.5), LuckPerms (5.4.131), MdMotd (1.9), ModelEngine (R4.0.7), MySQL (3.6), My_Worlds (1.21.1-v1), NexEngine (2.2.12), NoMobGriefing (3.0.3), Oraxen (1.184.0), PlaceholderAPI (2.11.6), PlayerWarps (7.7.1), ProtocolLib (5.3.0), Quests (5.1.4-b507), SCore (5.24.11.13), TabList (5.7.7), UltimateAutoRestart (2024.07), Vault (1.7.3-CMI), ViaBackwards (5.1.1), ViaVersion (5.1.1), VoidGen (2.2.1), VotifierPlus (1.3), VotingPlugin (6.17.2), Vulcan (2.9.1), WorldBorder (1.2), WorldEdit (7.3.8+6939-7d32b45), WorldGuard (7.0.12+829a4a4), ajStartCommands (2.0.3), dtlTradersPlus (6.4.30), nightcore (2.7.2), zAuctionHouseV3 (3.2.2.7)
[00:26:16] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:26:20] [ServerMain/INFO]: Loaded 1290 recipes
[00:26:20] [ServerMain/INFO]: Loaded 1399 advancements
[00:26:20] [Server thread/INFO]: Starting minecraft server version 1.21.1
[00:26:20] [Server thread/INFO]: Loading properties
[00:26:21] [Server thread/INFO]: This server is running Paper version 1.21.1-131-ver/1.21.1@84281ce (2024-10-31T17:43:44Z) (Implementing API version 1.21.1-R0.1-SNAPSHOT)
[00:26:22] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[00:26:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:26:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:26:22] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[00:26:22] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 2 worker threads, and population gen parallelism of 2 threads
[00:26:22] [Server thread/INFO]: Default game type: SURVIVAL
[00:26:22] [Server thread/INFO]: Generating keypair
[00:26:22] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[00:26:22] [Server thread/INFO]: Using epoll channel type
[00:26:22] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[00:26:22] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[00:26:23] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loading 5 libraries... please wait
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/ch/ethz/globis/phtree/phtree/2.8.1/phtree-2.8.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/org/joml/joml/1.10.8/joml-1.10.8.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/it/unimi/dsi/fastutil/8.5.15/fastutil-8.5.15.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-platform-bukkit/4.3.3/adventure-platform-bukkit-4.3.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-platform-api/4.3.3/adventure-platform-api-4.3.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.3/adventure-text-serializer-bungeecord-4.3.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-platform-facet/4.3.3/adventure-platform-facet-4.3.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-platform-viaversion/4.3.3/adventure-platform-viaversion-4.3.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Citizens] Loaded library /server/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loading 3 libraries... please wait
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [ModelEngine] Loaded library /server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[00:26:24] [Server thread/INFO]: [Minepacks] PCGF-PluginLib not installed. Switching to standalone mode!
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /server/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[00:26:24] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loading 10 libraries... please wait
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/springframework/spring-expression/6.0.6/spring-expression-6.0.6.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/springframework/spring-core/6.0.6/spring-core-6.0.6.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/springframework/spring-jcl/6.0.6/spring-jcl-6.0.6.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/joml/joml/1.10.5/joml-1.10.5.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-minimessage/4.17.0/adventure-text-minimessage-4.17.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-api/4.17.0/adventure-api-4.17.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-key/4.17.0/adventure-key-4.17.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-plain/4.17.0/adventure-text-serializer-plain-4.17.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-ansi/4.17.0/adventure-text-serializer-ansi-4.17.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/ansi/1.0.3/ansi-1.0.3.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-platform-bukkit/4.3.4/adventure-platform-bukkit-4.3.4.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-platform-api/4.3.4/adventure-platform-api-4.3.4.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.4/adventure-text-serializer-bungeecord-4.3.4.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-gson/4.13.1/adventure-text-serializer-gson-4.13.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-platform-facet/4.3.4/adventure-platform-facet-4.3.4.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/net/kyori/adventure-platform-viaversion/4.3.4/adventure-platform-viaversion-4.3.4.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/org/apache/commons/commons-lang3/3.14.0/commons-lang3-3.14.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [Oraxen] Loaded library /server/libraries/gs/mclo/java/2.2.1/java-2.2.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /server/libraries/com/zaxxer/HikariCP/6.0.0/HikariCP-6.0.0.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /server/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /server/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[00:26:25] [Server thread/INFO]: [nightcore] Server version detected as Paper 1.21.1.
[00:26:25] [Server thread/INFO]: [nightcore] [Core Components] ENTITY_ID_GENERATOR: Loaded
[00:26:25] [Server thread/INFO]: [nightcore] [Core Components] ITEM_NBT_COMPRESSOR: Loaded
[00:26:25] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loading 2 libraries... please wait
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[00:26:25] [Server thread/INFO]: [SpigotLibraryLoader] [NexEngine] Loaded library /server/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[00:26:26] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[00:26:38] [Server thread/WARN]: Legacy plugin ajStartCommands v2.0.3 does not specify an api-version.
[00:26:38] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.1.1
[00:26:38] [Server thread/INFO]: [ViaVersion] ViaVersion 5.1.1 is now loaded. Registering protocol transformers and injecting...
[00:26:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[00:26:39] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[00:26:39] [Server thread/INFO]: [ViaBackwards] Loading translations...
[00:26:39] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[00:26:40] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[00:26:40] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-CMI
[00:26:40] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[00:26:40] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.8+6939-7d32b45
[00:26:42] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@319c394a]
[00:26:42] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[00:26:42] [Server thread/INFO]: [BKCommonLib] Loading server plugin BKCommonLib v1.21.1-v1
[00:26:49] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[00:26:49] [Server thread/INFO]: [My_Worlds] Loading server plugin My_Worlds v1.21.1-v1
[00:26:49] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.20.4
[00:26:49] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.36-SNAPSHOT (build 3637)
[00:26:49] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[00:26:49] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[00:26:49] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.2
[00:26:49] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[00:26:49] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.3
[00:26:49] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.1.1
[00:26:49] [Server thread/INFO]: [ModelEngine] Loading server plugin ModelEngine vR4.0.7
[00:26:49] [Server thread/INFO]: [SCore] Loading server plugin SCore v5.24.11.13
[00:26:49] [Server thread/INFO]: [Minepacks] Loading server plugin Minepacks v2.4.31.4-T20240629215752
[00:26:49] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.7.10
[00:26:49] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.11.2
[00:26:50] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.17.2
[00:26:50] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.4.5
[00:26:50] [Server thread/INFO]: [Oraxen] Loading server plugin Oraxen v1.184.0
[00:26:50] [Server thread/INFO]: [ExecutableItems] Loading server plugin ExecutableItems v7.24.11.13
[00:26:50] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.7.2
[00:26:50] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.2
[00:26:50] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.28.0
[00:26:50] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.7
[00:26:50] [Server thread/INFO]: [NexEngine] Loading server plugin NexEngine v2.2.12
[00:26:50] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.21.1-47.2
[00:26:50] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.3
[00:26:50] [Server thread/INFO]: [NoMobGriefing] Loading server plugin NoMobGriefing v3.0.3
[00:26:50] [Server thread/INFO]: [AdvancedRegionMarket] Loading server plugin AdvancedRegionMarket v3.5.3
[00:26:50] [Server thread/INFO]: [dtlTradersPlus] Loading server plugin dtlTradersPlus v6.4.30
[00:26:50] [Server thread/INFO]: [TabList] Loading server plugin TabList v5.7.7
[00:26:50] [Server thread/INFO]: [Interactions] Loading server plugin Interactions v2.7.2
[00:26:50] [Server thread/INFO]: [Vulcan] Loading server plugin Vulcan v2.9.1
[00:26:50] [Server thread/INFO]: [Quests] Loading server plugin Quests v5.1.4-b507
[00:26:50] [Server thread/INFO]: [MySQL] Loading server plugin MySQL v3.6
[00:26:50] [Server thread/INFO]: [MdMotd] Loading server plugin MdMotd v1.9
[00:26:50] [Server thread/INFO]: [AntiDrop] Loading server plugin AntiDrop v2.2.3
[00:26:50] [Server thread/INFO]: [HexNicks] Loading server plugin HexNicks v2.2.2
[00:26:50] [Server thread/INFO]: [GPFlags] Loading server plugin GPFlags v5.13.6
[00:26:50] [Server thread/INFO]: [ConsoleSpamFix] Loading server plugin ConsoleSpamFix v1.10.0
[00:26:50] [Server thread/INFO]: [AdvancedKits] Loading server plugin AdvancedKits v1.18.7
[00:26:50] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.2.2.7
[00:26:50] [Server thread/INFO]: [ExecutableBlocks] Loading server plugin ExecutableBlocks v5.24.11.13
[00:26:50] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.5.0
[00:26:50] [Server thread/INFO]: [EpicRename] Loading server plugin EpicRename v3.12
[00:26:50] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v7.7.1
[00:26:51] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[00:26:51] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.5
[00:26:51] [Server thread/INFO]: [ExcellentEnchants] Loading server plugin ExcellentEnchants v4.3.0
[00:26:51] [Server thread/INFO]: [UltimateAutoRestart] Loading server plugin UltimateAutoRestart v2024.07
[00:26:51] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[00:26:51] [Server thread/INFO]: [ajStartCommands] Loading server plugin ajStartCommands v2.0.3
[00:26:51] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[00:26:51] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.0-Release
[00:26:51] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[00:26:51] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:26:51] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[00:26:53] [Server thread/INFO]:         __    
[00:26:53] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[00:26:53] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[00:26:53] [Server thread/INFO]: 
[00:26:53] [Server thread/INFO]: [LuckPerms] Loading configuration...
[00:26:54] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[00:26:55] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[00:26:56] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[00:26:56] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5587ms)
[00:26:56] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[00:26:56] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[00:26:57] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[00:26:57] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[00:26:57] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[00:26:57] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[00:26:57] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.8+6939-7d32b45
[00:26:57] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:26:57] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:26:57] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[00:26:58] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.21.1-v1
[00:26:58] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Paper (1.21.1-131-84281ce | mojmap) : (Unknown) (Minecraft 1.21.1)
[00:26:59] [Server thread/INFO]: [BKCommonLib.Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[00:27:00] [Server thread/INFO]: [BKCommonLib] [RegionChangeTracker] Region block changes will be notified from WorldEdit (>= v7.0.0)
[00:27:01] [Server thread/INFO]: [BKCommonLib] Every feature break in Bukkit makes my feature list longer.
[00:27:01] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.21.1-v1 (build: 1795) enabled! (2.943s)
[00:27:01] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR4.0.7
[00:27:01] [Server thread/INFO]: [nightcore] Enabling nightcore v2.7.2
[00:27:01] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[00:27:01] [Server thread/INFO]: [nightcore] Found economy provider: CMIEconomy
[00:27:01] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[00:27:02] [Server thread/INFO]: [nightcore] [DEBUG] Inject post-loading code...
[00:27:02] [Server thread/INFO]: [nightcore] Plugin loaded in 116 ms!
[00:27:02] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.12
[00:27:02] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[00:27:02] [Server thread/WARN]: [NexEngine] ==================================
[00:27:02] [Server thread/WARN]: [NexEngine] WARNING: You're running an outdated/deprecated server version (Unknown)!
[00:27:02] [Server thread/WARN]: [NexEngine] Support for this version will be dropped soon.
[00:27:02] [Server thread/WARN]: [NexEngine] Please, upgrade your server to at least 1.18.2.
[00:27:02] [Server thread/WARN]: [NexEngine] ==================================
[00:27:02] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[00:27:02] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[00:27:02] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[00:27:02] [Server thread/INFO]: [NexEngine] Plugin loaded in 75 ms!
[00:27:02] [Server thread/INFO]: [ConsoleSpamFix] Enabling ConsoleSpamFix v1.10.0
[00:27:02] [Server thread/INFO]: [ConsoleSpamFix] Server version detected: 1.21.1
[00:27:02] [Server thread/INFO]: [ConsoleSpamFix] Loading the config file...
[00:27:02] [Server thread/INFO]: [ConsoleSpamFix] Config file loaded!
[00:27:02] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix loaded successfully!
[00:27:02] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[00:27:02] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Enabling ExcellentEnchants v4.3.0
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Powered by nightcore
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Loaded 4 rarities.
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: auto_reel
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_catch
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: seasoned_angler
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: survivalist
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_drowned
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: river_master
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blast_mining
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_breaking
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_misfortune
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: divine_touch
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: haste
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lucky_miner
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: replanter
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: silk_chest
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: smelter
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: telekinesis
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: treasure_hunter
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: tunnel
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: veinminer
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bane_of_netherspawn
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: blindness
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusion
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cutter
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_death
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: decapitator
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: double_strike
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exhaust
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: exp_hunter
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_aspect
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: infernus
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: nimble
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: paralyze
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cure
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rage
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rocket
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: scavenger
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: surprise
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: swiper
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: temper
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thrifty
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: thunder
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampire
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: venom
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: village_defender
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: wither
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: aquaman
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bunny_hop
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: cold_steel
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ice_shield
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: elemental_protection
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: fire_shield
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flame_walker
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hardened
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: night_vision
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: regrowth
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: saturation
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: self_destruction
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: rebound
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: stopping_force
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sonic
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: bomber
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: confusing_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: dragonfire_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: electrified_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ender_bow
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: explosive_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: lingering
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: flare
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: ghast
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: hover
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: sniper
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: poisoned_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: vampiric_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: withered_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_arrows
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: darkness_cloak
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_fragility
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: curse_of_mediocrity
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: soulbound
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Registered enchantment: restore
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Enchantments Registered: 80
[00:27:02] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:27:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentenchants [4.3.0]
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] [DEBUG] Inject post-loading code...
[00:27:02] [Server thread/INFO]: [ExcellentEnchants] Plugin loaded in 677 ms!
[00:27:02] [Server thread/INFO]: Preparing level "world"
[00:27:05] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:27:07] [Server thread/INFO]: Time elapsed: 1543 ms
[00:27:07] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:27:08] [Server thread/INFO]: Time elapsed: 730 ms
[00:27:08] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:27:08] [Server thread/INFO]: Time elapsed: 320 ms
[00:27:08] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.1.1
[00:27:08] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[00:27:08] [Server thread/INFO]: [BKCommonLib] ViaVersion detected, will use it to detect player game versions
[00:27:08] [Server thread/INFO]: [ModelEngine] [S] Compatibility applied: ViaVersion
[00:27:08] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[00:27:09] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[00:27:09] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[00:27:09] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[00:27:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[00:27:09] [Server thread/INFO]: [WorldGuard] Loading region data...
[00:27:09] [Server thread/INFO]: [My_Worlds] Enabling My_Worlds v1.21.1-v1
[00:27:09] [Server thread/INFO]: [My_Worlds] Loading world 'Spawn'
[00:27:10] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[00:27:10] [Server thread/INFO]: Time elapsed: 203 ms
[00:27:10] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[00:27:10] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[00:27:10] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[00:27:10] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[00:27:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[00:27:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: myworlds [1.21.1-v1]
[00:27:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mw [1.21.1-v1]
[00:27:10] [Server thread/INFO]: [My_Worlds] PlaceholderAPI integration enabled
[00:27:10] [Server thread/INFO]: [My_Worlds] My_Worlds version 1.21.1-v1 (build: 312) enabled! (0.963s)
[00:27:10] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.20.4
[00:27:10] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[00:27:10] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[00:27:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hdb [4.20.4]
[00:27:10] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.36-SNAPSHOT (build 3637)
[00:27:11] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[00:27:11] [Server thread/ERROR]: [Citizens] Could not fetch NMS field ck: [[static final field has no write access: net.minecraft.world.entity.animal.armadillo.Armadillo.SCARE_DISTANCE_VERTICAL/double/putStatic, from class net.citizensnpcs.util.NMS (unnamed module @155c33f2).
[00:27:11] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.36-SNAPSHOT (build 3637) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_21_R2/boss/CraftBossBar
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.nms.v1_21_R2.util.NMSImpl.<clinit>(NMSImpl.java:2720) ~[Citizens-2.0.36-b3637.jar:?]
    at java.base/java.lang.Class.forName0(Native Method) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:534) ~[?:?]
    at java.base/java.lang.Class.forName(Class.java:513) ~[?:?]
    at io.papermc.reflectionrewriter.runtime.AbstractDefaultRulesReflectionProxy.forName(AbstractDefaultRulesReflectionProxy.java:68) ~[reflection-rewriter-runtime-0.0.3.jar:?]
    at io.papermc.paper.pluginremap.reflect.PaperReflectionHolder.forName(Unknown Source) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.util.SpigotUtil.lambda$getMinecraftPackage$1(SpigotUtil.java:171) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.util.SpigotUtil.getMinecraftPackage(SpigotUtil.java:176) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:322) ~[Citizens-2.0.36-b3637.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_21_R2.boss.CraftBossBar
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 21 more
[00:27:11] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.36-SNAPSHOT (build 3637)
[00:27:11] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[00:27:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[00:27:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[00:27:11] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[00:27:11] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[00:27:11] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[00:27:11] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[00:27:11] [Server thread/INFO]: --------------------
[00:27:11] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[00:27:11] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[00:27:11] [Server thread/INFO]: --------------------
[00:27:11] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.2
[00:27:11] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 79145 heads!
[00:27:12] [Folia Async Scheduler Thread #0/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[00:27:13] [Server thread/INFO]: CMI hooked.
[00:27:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.2]
[00:27:13] [Server thread/INFO]: PlaceholderAPI hooked.
[00:27:13] [Server thread/INFO]: Updated (EN) language file. Took 47ms
[00:27:13] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[00:27:13] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[00:27:13] [Server thread/INFO]: [GriefPrevention] 5 total claims loaded.
[00:27:13] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[00:27:13] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[00:27:13] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[00:27:13] [Server thread/INFO]: [GriefPrevention] Boot finished.
[00:27:13] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.3
[00:27:13] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[00:27:13] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.1.1
[00:27:13] [Server thread/INFO]: [SCore] Enabling SCore v5.24.11.13
[00:27:14] [Server thread/INFO]: ================ SCore ================
[00:27:14] [Server thread/INFO]: SCore is running on Folia
[00:27:14] [Server thread/INFO]: SCore is running on Paper or fork
[00:27:14] [Server thread/INFO]: SCore Version of the server 1.21.1-131-84281ce (MC: 1.21.1) !
[00:27:14] [Server thread/INFO]: SCore ExecutableItems hooked !  (7.24.11.13) Load After
[00:27:14] [Server thread/INFO]: SCore ExecutableBlocks hooked !  (5.24.11.13) Load After
[00:27:14] [Server thread/INFO]: SCore PlaceholderAPI hooked !  (2.11.6)  Load Before
[00:27:14] [Server thread/INFO]: SCore WorldGuard hooked !  (7.0.12+829a4a4)  Load Before
[00:27:14] [Server thread/INFO]: SCore Vault hooked !  (1.7.3-CMI)  Load Before
[00:27:14] [Server thread/INFO]: SCore GriefPrevention hooked !  (16.18.4)  Load Before
[00:27:14] [Server thread/INFO]: SCore CoreProtect hooked !  (22.4)  Load Before
[00:27:14] [Server thread/INFO]: SCore ProtocolLib hooked !
[00:27:14] [Server thread/INFO]: SCore Locale setup: EN
[00:27:14] [Server thread/INFO]: SCore HeadDatabase hooked !  (4.20.4)  Load Before
[00:27:14] [Server thread/INFO]: SCore DecentHolograms hooked !  (2.8.12)  Load Before
[00:27:14] [Server thread/INFO]: SCore CMI hooked !  (9.7.7.10) Load After
[00:27:14] [Server thread/INFO]: SCore Oraxen hooked !  (1.184.0) Load After
[00:27:14] [Server thread/INFO]: SCore WorldEdit hooked !  (7.3.8+6939-7d32b45)  Load Before
[00:27:14] [Server thread/INFO]: SCore Language of the editor setup on EN
[00:27:14] [Server thread/INFO]: SCore Language for in-game messages setup on EN
[00:27:14] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[00:27:14] [Server thread/INFO]: SCore Connection to the db...
[00:27:14] [Server thread/INFO]: SCore will connect to the database hosted: In Local
[00:27:14] [Server thread/INFO]: SCore Creating table SecurityOP if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table Commands if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table Cooldowns if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table Commands Player if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table Commands Entity if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table Commands Block if not exists...
[00:27:14] [Server thread/INFO]: SCore Creating table UsePerDay if not exists...
[00:27:14] [Server thread/INFO]: SCore SCore loaded 1 variables from local files !
[00:27:14] [Server thread/INFO]: SCore SCore loaded 0 delayed commands saved
[00:27:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: SCore [1.0.0]
[00:27:14] [Server thread/INFO]: ================ SCore ================
[00:27:14] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.31.4-T20240629215752
[00:27:14] [Server thread/INFO]: [Minepacks] Starting Minepacks in standalone mode!
[00:27:14] [Server thread/INFO]: [Minepacks] Config file successfully loaded.
[00:27:15] [Server thread/WARN]: [Minepacks] Paper support is experimental! Use at your own risk!
[00:27:15] [Server thread/WARN]: [Minepacks] No guarantee for data integrity! Backup constantly!
[00:27:15] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english  Author: GeorgH93
[00:27:15] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting...
[00:27:15] [Server thread/INFO]: [at.pcgamingfreaks.MinepacksStandalone.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed.
[00:27:15] [Server thread/INFO]: [Minepacks] Item name language file successfully loaded. Language: english  Author: GeorgH93
[00:27:15] [Server thread/INFO]: [Minepacks] Loading item translations ...
[00:27:15] [Server thread/INFO]: [Minepacks] Finished loading item translations for 826 items.
[00:27:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: minepacks [2.4.31.4-T20240629215752]
[00:27:15] [Server thread/INFO]: [Minepacks] PlaceholderAPI hook was successfully registered!
[00:27:15] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :) 
[00:27:15] [Server thread/INFO]: [CMI] Enabling CMI v9.7.7.10
[00:27:15] [Server thread/INFO]: _______________________________________________________
[00:27:15] [Server thread/INFO]:  
[00:27:15] [Server thread/INFO]:  ██████╗███╗   ███╗██╗
[00:27:15] [Server thread/INFO]: ██╔════╝████╗ ████║██║
[00:27:15] [Server thread/INFO]: ██║     ██╔████╔██║██║
[00:27:15] [Server thread/INFO]: ██║     ██║╚██╔╝██║██║
[00:27:15] [Server thread/INFO]: ╚██████╗██║ ╚═╝ ██║██║
[00:27:15] [Server thread/INFO]:  ╚═════╝╚═╝     ╚═╝╚═╝
[00:27:15] [Server thread/INFO]: _______________________________________________________
[00:27:15] [Server thread/INFO]: Integrating PaperSpigot async methods
[00:27:15] [Server thread/INFO]: Vault found. (Loaded: true)
[00:27:15] [Server thread/INFO]: Citizens found. (Loaded: false)
[00:27:15] [Server thread/INFO]: Loaded (67) 67 Enabled and 0 Disabled modules into memory. Took 133ms
[00:27:15] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[00:27:15] [Server thread/INFO]: Initialized Cipher256 AES
[00:27:15] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 66ms
[00:27:15] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 4ms
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (world1) name
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (resource_nether) name
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (resource_normal) name
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (resource_world) name
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (buildworld) name
[00:27:16] [Server thread/INFO]: (RandomTeleportation) Can't find world with (Resourceworld) name
[00:27:16] [Server thread/INFO]: 3.46.0 data base type detected
[00:27:16] [Server thread/INFO]: Loaded (-) SqLite into memory. Took 172ms
[00:27:16] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy
[00:27:16] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[00:27:16] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[00:27:16] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[00:27:16] [Server thread/INFO]: Loaded (145) custom mob heads into memory. Took 15ms
[00:27:16] [Server thread/INFO]: Initializing BungeeCord
[00:27:16] [Server thread/INFO]: Loaded (5) kits into memory. Took 10ms
[00:27:16] [Server thread/INFO]: Loaded (7) ranks into memory. Took 13ms
[00:27:16] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 2ms
[00:27:16] [Server thread/INFO]: Loaded (54) player data into memory. Took 27ms
[00:27:16] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 0ms
[00:27:16] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[00:27:17] [Server thread/WARN]: org.bukkit.configuration.InvalidConfigurationException: while parsing a block mapping
[00:27:17] [Server thread/WARN]:  in 'reader', line 19, column 1:
[00:27:17] [Server thread/WARN]:     CustomAlias:
[00:27:17] [Server thread/WARN]:     ^
[00:27:17] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
[00:27:17] [Server thread/WARN]:  in 'reader', line 38, column 2:
[00:27:17] [Server thread/WARN]:      joinleave on:
[00:27:17] [Server thread/WARN]:      ^
[00:27:17] [Server thread/WARN]: 
[00:27:17] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:112)
[00:27:17] [Server thread/WARN]:     at org.bukkit.configuration.file.FileConfiguration.load(FileConfiguration.java:160)
[00:27:17] [Server thread/WARN]:     at CMILib1.5.2.2.jar//net.Zrips.CMILib.FileHandler.ConfigReader.getyml(ConfigReader.java:270)
[00:27:17] [Server thread/WARN]:     at CMILib1.5.2.2.jar//net.Zrips.CMILib.FileHandler.ConfigReader.<init>(ConfigReader.java:49)
[00:27:17] [Server thread/WARN]:     at CMI-9.7.7.10.jar//com.Zrips.CMI.Modules.Alias.AliasManager.load(AliasManager.java:567)
[00:27:17] [Server thread/WARN]:     at CMI-9.7.7.10.jar//com.Zrips.CMI.CMI.onEnable(CMI.java:1590)
[00:27:17] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288)
[00:27:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202)
[00:27:17] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109)
[00:27:17] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520)
[00:27:17] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:1583)
[00:27:17] [Server thread/WARN]: Caused by: while parsing a block mapping
[00:27:17] [Server thread/WARN]:  in 'reader', line 19, column 1:
[00:27:17] [Server thread/WARN]:     CustomAlias:
[00:27:17] [Server thread/WARN]:     ^
[00:27:17] [Server thread/WARN]: expected <block end>, but found '<block mapping start>'
[00:27:17] [Server thread/WARN]:  in 'reader', line 38, column 2:
[00:27:17] [Server thread/WARN]:      joinleave on:
[00:27:17] [Server thread/WARN]:      ^
[00:27:17] [Server thread/WARN]: 
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingKey.produce(ParserImpl.java:654)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:161)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:57)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:43)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:136)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:116)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:330)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:369)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:348)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:323)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:209)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:131)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:157)
[00:27:17] [Server thread/WARN]:     at org.yaml.snakeyaml.Yaml.compose(Yaml.java:575)
[00:27:17] [Server thread/WARN]:     at org.bukkit.configuration.file.YamlConfiguration.loadFromString(YamlConfiguration.java:105)
[00:27:17] [Server thread/WARN]:     ... 17 more
[00:27:17] [Server thread/INFO]: Failed to load CustomAlias.yml! Backup have been saved into plugins/CMILib/FileBackups/2024-11-21 00-27-17 CustomAlias.yml
[00:27:17] [Server thread/INFO]: Can't read CustomAlias.yml file in CustomAlias directory
[00:27:17] [Server thread/INFO]: Loaded (0) custom alias into memory. Took 4ms
[00:27:17] [Server thread/INFO]: Loaded (-) Registered events into memory. Took 165ms
[00:27:17] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 4ms
[00:27:17] [Server thread/INFO]: Loaded (EN) language file into memory. Took 133ms
[00:27:17] [Server thread/INFO]: Loaded (245) worth values into memory. Took 63ms
[00:27:17] [Server thread/INFO]: VaultPermissions found. (Loaded: true)
[00:27:17] [Server thread/INFO]: PlaceholderAPI found. (Loaded: true)
[00:27:17] [Server thread/INFO]: Jobs found. (Loaded: false)
[00:27:17] [Server thread/INFO]: Loaded (4) schedules into memory. Took 9ms
[00:27:17] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 0ms
[00:27:17] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 1ms
[00:27:17] [Server thread/INFO]: Version 9.7.7.10 has been enabled
[00:27:17] [Server thread/INFO]: _______________________________________________________
[00:27:17] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[00:27:17] [Server thread/INFO]: [GSit] Enabling GSit v1.11.2
[00:27:17] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[00:27:17] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[00:27:17] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[00:27:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.11.2]
[00:27:17] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[00:27:17] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.17.2
[00:27:17] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[00:27:17] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[00:27:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[00:27:17] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[00:27:18] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[00:27:18] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.17.2
[00:27:18] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.4.5
[00:27:18] [Server thread/INFO]: ------------- Jobs -------------
[00:27:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: jobsr [5.2.4.5]
[00:27:18] [Server thread/INFO]: PlaceholderAPI hooked.
[00:27:18] [Server thread/INFO]: Connected to database (SqLite)
[00:27:18] [Server thread/INFO]: Loaded 8 titles
[00:27:19] [Server thread/INFO]: Loaded 4 restricted areas!
[00:27:19] [Server thread/INFO]: Loaded 85 protected blocks timers
[00:27:19] [Server thread/INFO]: Loaded 1481 custom item names
[00:27:19] [Server thread/INFO]: Loaded 84 custom entity names
[00:27:19] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[00:27:19] [Server thread/INFO]: Loaded 122 custom enchant names
[00:27:19] [Server thread/INFO]: Loaded 46 custom enchant names
[00:27:19] [Server thread/INFO]: Loaded 16 custom color names
[00:27:19] [Server thread/INFO]: Update shops items icon section and use 'ItemStack' instead
[00:27:19] [Server thread/INFO]: Loaded 4 shop items
[00:27:19] [Server thread/INFO]: Update Smelter jobs gui item section to use `ItemStack` instead of `Item` sections format. More information inside _EXAMPLE job file
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_1!
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_2!
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_3!
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_4!
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: tall_fern!
[00:27:19] [Server thread/INFO]: Job Florist has an invalid Break type property: lilly_pad!
[00:27:19] [Server thread/INFO]: Job Miner has an invalid Break type property: tuft!
[00:27:19] [Server thread/INFO]: Job Miner has an invalid Break type property: amethyst!
[00:27:19] [Server thread/INFO]: Job Diver has an invalid Break type property: bubbe_coral!
[00:27:19] [Server thread/INFO]: Loaded 14 jobs
[00:27:19] [Server thread/INFO]: Loaded 0 boosted items
[00:27:19] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[00:27:19] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[00:27:19] [Server thread/INFO]: Preloaded 29 players data in 0.02
[00:27:19] [Server thread/INFO]: Registering listeners...
[00:27:19] [Server thread/INFO]: Listeners registered successfully
[00:27:19] [Server thread/INFO]: Plugin has been enabled successfully.
[00:27:19] [Server thread/INFO]: ------------------------------------
[00:27:19] [Server thread/INFO]: [Oraxen] Enabling Oraxen v1.184.0
[00:27:19] [Server thread/INFO]: Oraxen | Version v1_21_R1 has been detected.
[00:27:19] [Server thread/INFO]: Oraxen | Oraxen will use the NMSHandler for this version.
[00:27:19] [Server thread/INFO]: Oraxen | Papers block-updates.disable-noteblock-updates is not enabled.
[00:27:19] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with noteblocks
[00:27:19] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[00:27:19] [Server thread/INFO]: Oraxen | Papers block-updates.disable-tripwire-updates is not enabled.
[00:27:19] [Server thread/INFO]: Oraxen | It is recommended to enable this setting for improved performance and prevent bugs with tripwires
[00:27:19] [Server thread/INFO]: Oraxen | Otherwise Oraxen needs to listen to very taxing events, which also introduces some bugs
[00:27:20] [Server thread/INFO]: Oraxen | The texture specified for logo is larger than the supported size.
[00:27:20] [Server thread/INFO]: Oraxen | The maximum image size is 256x256. Anything bigger will break all your glyphs.
[00:27:20] [Server thread/INFO]: Oraxen | It has been temporarily set to a placeholder-image. You should edit this in the glyph config.
[00:27:20] [Server thread/INFO]: Oraxen | emerald_helmet is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | emerald_chestplate is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | emerald_leggings is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | emerald_boots is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_helmet is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_chestplate is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_leggings is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_boots is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | ruby_helmet is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | ruby_chestplate is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | ruby_leggings is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | ruby_boots is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | example_sword is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | legendary_hammer is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_pickaxe is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | bedrock_pickaxe is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | onyx_hammer is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | orax_hammer is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | fire_hammer is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | glass_sword is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | obsidian_sword is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | blood_sword is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | octavia_sword is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | dagger is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:20] [Server thread/INFO]: Oraxen | katana is using deprecated Durability-Mechanic...
[00:27:20] [Server thread/INFO]: Oraxen | It is heavily advised to swap to the new `durability`-property on 1.20.5+ servers...
[00:27:21] [Server thread/INFO]: Oraxen | Slicing gui-textures to 1.20.2-format...
[00:27:21] [Server thread/INFO]: Oraxen | Successfully sliced gui-textures for 1.20.2
[00:27:21] [Server thread/INFO]: Oraxen | The height of carnivoret_armor_layer_2.png is greater than 32px.
[00:27:21] [Server thread/INFO]: Oraxen | Since it is not an animated armor-file, this will potentially break other armor sets.
[00:27:21] [Server thread/INFO]: Oraxen | Adjust the CustomArmor.shader_settings.armor_resolution setting to fix this issue.
[00:27:21] [Server thread/INFO]: Oraxen | If it is meant to be an animated armor-file, make sure it ends with _a.png or _a_e.png if emissive
[00:27:21] [Server thread/INFO]: Oraxen | The height of carnivoret_armor_layer_1.png is greater than 32px.
[00:27:21] [Server thread/INFO]: Oraxen | Since it is not an animated armor-file, this will potentially break other armor sets.
[00:27:21] [Server thread/INFO]: Oraxen | Adjust the CustomArmor.shader_settings.armor_resolution setting to fix this issue.
[00:27:21] [Server thread/INFO]: Oraxen | If it is meant to be an animated armor-file, make sure it ends with _a.png or _a_e.png if emissive
[00:27:21] [Server thread/INFO]: Oraxen | Converting global lang file to individual language files...
[00:27:21] [Server thread/INFO]: Oraxen | Verifying formatting for textures and models...
[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/baby_walle_icon.json: nocsy/baby_walle_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/baby_walle_icon.json: nocsy/baby_walle_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/elitecreatures/elven_elf_weapon/elven_chestplate.json: elitecreatures:elven_elf_weapon/elven_layer_1_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/nocsy_halloween_bat_icon.json: nocsy/nocsy_halloween_bat_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/toffy/phoenix/toffy_phoenix_lvl2_signal.json: modelengine:entity/toffy_phoenix_lvl2_signal
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/toffy/phoenix/toffy_phoenix_lvl2_signal.json: modelengine:entity/toffy_phoenix_lvl2_signal
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/elitecreatures/elven_elf_weapon/elven_leggings.json: elitecreatures:elven_elf_weapon/elven_layer_2_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/nocsy_fairy_drakonin_baby_icon.json: nocsy/nocsy_fairy_drakonin_baby_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/nocsy_fairy_drakonin_baby_icon.json: nocsy/nocsy_fairy_drakonin_baby_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/utah_raptor_icon.json: nocsy/utahraptor_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/utah_raptor_icon.json: nocsy/utahraptor_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/elitecreatures/elven_elf_weapon/elven_boots.json: elitecreatures:elven_elf_weapon/elven_layer_1_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/nocsy_fairy_drakonin_icon.json: nocsy/nocsy_fairy_drakonin_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Found invalid texture-path inside model-file assets/minecraft/models/item/nocsy/nocsy/nocsy_fairy_drakonin_icon.json: nocsy/nocsy_fairy_drakonin_icon
[00:27:21] [Server thread/INFO]: Oraxen | Verify that you have a texture in said path.

[00:27:21] [Server thread/INFO]: Oraxen | Pack contains malformed texture(s) and/or model(s)
[00:27:21] [Server thread/INFO]: Oraxen | These need to be fixed, otherwise the resourcepack will be broken

[00:27:21] [Server thread/INFO]: Oraxen | Generating atlas-file for 1.19.3+ Resource Pack format
[00:27:21] [Server thread/INFO]: Oraxen | Attempting to exclude malformed textures from atlas-file
[00:27:22] [Server thread/INFO]: 
[00:27:22] [Server thread/INFO]: Oraxen | Attempting to merge imported font files...
[00:27:22] [Server thread/INFO]: Oraxen | Merged 2 duplicate font files into a final assets/minecraft/font/default.json
[00:27:22] [Server thread/INFO]: Oraxen | The imported font files have not been deleted.
[00:27:22] [Server thread/INFO]: Oraxen | If anything seems wrong, there might be conflicting unicodes assigned.
[00:27:22] [Server thread/INFO]: 
[00:27:22] [Server thread/INFO]: Oraxen | Successfully loaded on Ubuntu 24.04 LTS (noble)
[00:27:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: oraxen [1.184.0]
[00:27:22] [Server thread/INFO]: Oraxen | Plugin "PlaceholderAPI" detected, enabling hooks
[00:27:22] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v7.24.11.13
[00:27:22] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[00:27:22] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld in the option disableItemsPerWorld
[00:27:22] [Server thread/ERROR]: [ExecutableItems] Invalid world: myWorld2 in the option disableItemsPerWorld
[00:27:23] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material with groups value of material from config, value: GRASS (Item: Prem_Nature_Boots) >> Materials with groups available: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
[00:27:24] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Material + GROUPS value of blocks from config, value: GRASS (Item: Prem_Grass_Cutter).(detailedBlocks) >> Check the wiki if you want the list of materials and groups
[00:27:24] [Server thread/INFO]: ExecutableItems ERROR, Couldn't load the Option value of option from config, value: IF THE RELOAD VARIABLE IS EQUALS TO 1, THIS ACTIVATOR WILL KEEP MOVING 10 AMMO FROM STORAGE TO THE MAIN AMMO STORAGE PER SECOND UNTIL AMMO REACHES 80 OR HIGHER (Item: Prem_Reloadable_Gun) >> Options available: https://docs.ssomar.com/
[00:27:24] [Server thread/INFO]: ExecutableItems Amount of Executable Items configurations loaded: 179
[00:27:24] [Server thread/INFO]: ExecutableItems Items with display conditions :  
[00:27:24] [Server thread/INFO]: ========*======== ExecutableItems ========*========
[00:27:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableItems [1.0.0]
[00:27:24] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.2
[00:27:24] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.28.0
[00:27:24] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.7
[00:27:25] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[00:27:25] [pool-77-thread-1/WARN]: [DiscordSRV] 

The current build of DiscordSRV is outdated by 29 commits! Get the latest build at your favorite distribution center.

Spigot: https://www.spigotmc.org/resources/discordsrv.18494/
Github: https://github.com/DiscordSRV/DiscordSRV/releases
Direct Download: https://get.discordsrv.com

[00:27:25] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[00:27:25] [Server thread/INFO]: [MarriageMaster] Successful linked with Minepacks v2.4.31.4-T20240629215752!
[00:27:25] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[00:27:25] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[00:27:25] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Loading marriages ...
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Marriages loaded
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Loading priests ...
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Priests loaded
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Loading players ...
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Players loaded
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Loading marriages into cache ...
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Marriages loaded into cache
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Loading homes ...
[00:27:25] [Thread-26/INFO]: [MarriageMaster] Homes loaded
[00:27:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: marriagemaster [2.7.7]
[00:27:25] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[00:27:25] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.21.1-47.2
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] ======= ArmorStandEditor =======
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] Plugin Version: v1.20.2-44.1
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] Minecraft Version: 1.21.1
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] ArmorStandEditor is compatible with this version of Minecraft. Loading continuing.
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] SpigotMC: true
[00:27:25] [Server thread/INFO]: Registering Scoreboards required for Glowing Effects
[00:27:25] [Server thread/INFO]: [ArmorStandEditor] ================================
[00:27:25] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[00:27:25] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.3
[00:27:25] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[00:27:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: craftingstore [2.9.3]
[00:27:25] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[00:27:25] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[00:27:25] [Server thread/INFO]: [NoMobGriefing] Enabling NoMobGriefing v3.0.3
[00:27:25] [Server thread/INFO]: [NoMobGriefing] ***NoMobGriefing plugin by PinkNeonDino has been enabled.***
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.5.3
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.20 adapter
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[00:27:26] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[00:27:26] [Server thread/INFO]: [dtlTradersPlus] Enabling dtlTradersPlus v6.4.30
[00:27:26] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Welcome to dtlTradersPlus v6.4.30!
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Trying to hook into any Vault supported plugin...
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Vault found! Trying to hook...
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Found economy plugin: CMIEconomy
[00:27:26] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Loaded 1 guis from the guis config!
[00:27:26] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.36-SNAPSHOT (build 3637)
[00:27:26] [Server thread/WARN]: Enabled plugin with unregistered ConfiguredPluginClassLoader Citizens v2.0.36-SNAPSHOT (build 3637)
[00:27:26] [Server thread/ERROR]: [Citizens] Citizens implementation changed, disabling plugin.
[00:27:26] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.36-SNAPSHOT (build 3637)
[00:27:26] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[00:27:26] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[00:27:26] [Server thread/ERROR]: Could not pass event PluginDisableEvent to BKCommonLib v1.21.1-v1
java.lang.IllegalStateException: zip file closed
    at java.base/java.util.zip.ZipFile.ensureOpen(ZipFile.java:846) ~[?:?]
    at java.base/java.util.zip.ZipFile.getEntry(ZipFile.java:338) ~[?:?]
    at java.base/java.util.jar.JarFile.getEntry(JarFile.java:516) ~[?:?]
    at java.base/java.util.jar.JarFile.getJarEntry(JarFile.java:471) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:209) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:593) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:169) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:144) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SpigotPluginClassLoaderGroup.lookupClass(SpigotPluginClassLoaderGroup.java:43) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.entrypoint.classloader.group.SimpleListPluginClassLoaderGroup.getClassByName(SimpleListPluginClassLoaderGroup.java:37) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.entrypoint.classloader.group.LockingClassLoaderGroup.getClassByName(LockingClassLoaderGroup.java:34) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:187) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-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 BKCommonLib-1.21.1-v1-1795.jar/com.bergerkiller.bukkit.common.internal.regionchangetracker.WorldEditHandlerV1.isSupported(WorldEditHandlerV1.java:33) ~[BKCommonLib-1.21.1-v1-1795.jar:?]
    at BKCommonLib-1.21.1-v1-1795.jar/com.bergerkiller.bukkit.common.internal.regionchangetracker.RegionChangeTracker$Handler.refresh(RegionChangeTracker.java:133) ~[BKCommonLib-1.21.1-v1-1795.jar:?]
    at BKCommonLib-1.21.1-v1-1795.jar/com.bergerkiller.bukkit.common.internal.regionchangetracker.RegionChangeTracker.refreshHandlers(RegionChangeTracker.java:85) ~[BKCommonLib-1.21.1-v1-1795.jar:?]
    at BKCommonLib-1.21.1-v1-1795.jar/com.bergerkiller.bukkit.common.internal.regionchangetracker.RegionChangeTracker.access$000(RegionChangeTracker.java:24) ~[BKCommonLib-1.21.1-v1-1795.jar:?]
    at BKCommonLib-1.21.1-v1-1795.jar/com.bergerkiller.bukkit.common.internal.regionchangetracker.RegionChangeTracker$1.onPluginBeforeDisable(RegionChangeTracker.java:66) ~[BKCommonLib-1.21.1-v1-1795.jar:?]
    at com.destroystokyo.paper.event.executor.MethodHandleEventExecutor.execute(MethodHandleEventExecutor.java:44) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:235) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:114) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:550) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.Citizens.onImplementationChanged(Citizens.java:380) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.CitizensAPI.setImplementation(CitizensAPI.java:193) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:318) ~[Citizens-2.0.36-b3637.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at dtlTradersPlus-6.4.30.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:217) ~[dtlTradersPlus-6.4.30.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[00:27:26] [Server thread/ERROR]: Error occurred while enabling Citizens v2.0.36-SNAPSHOT (build 3637) (Is it up to date?)
java.lang.NullPointerException: null
    at java.base/java.io.Reader.<init>(Reader.java:168) ~[?:?]
    at java.base/java.io.InputStreamReader.<init>(InputStreamReader.java:123) ~[?:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.util.Translator.getBaseTranslations(Translator.java:93) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.util.Translator.<init>(Translator.java:26) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.api.util.Translator.setInstance(Translator.java:147) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.Citizens.setupTranslator(Citizens.java:473) ~[Citizens-2.0.36-b3637.jar:?]
    at Citizens-2.0.36-b3637.jar/net.citizensnpcs.Citizens.onEnable(Citizens.java:320) ~[Citizens-2.0.36-b3637.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at dtlTradersPlus-6.4.30.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:217) ~[dtlTradersPlus-6.4.30.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Hooking into Citizens!
[00:27:26] [Server thread/ERROR]: Error occurred while enabling dtlTradersPlus v6.4.30 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/CitizensAPI
    at dtlTradersPlus-6.4.30.jar/com.degitise.minevid.dtlTraders.utils.citizens.CitizensHook.<init>(CitizensHook.java:27) ~[dtlTradersPlus-6.4.30.jar:?]
    at dtlTradersPlus-6.4.30.jar/com.degitise.minevid.dtlTraders.Main.onEnable(Main.java:221) ~[dtlTradersPlus-6.4.30.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:641) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:590) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:753) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:515) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1214) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:329) ~[paper-1.21.1.jar:1.21.1-131-84281ce]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.CitizensAPI
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:197) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:164) ~[paper-mojangapi-1.21.1-R0.1-SNAPSHOT.jar:?]
    at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:526) ~[?:?]
    ... 14 more
[00:27:26] [Server thread/INFO]: [dtlTradersPlus] Disabling dtlTradersPlus v6.4.30
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Saving shops before shutting down...
[00:27:26] [Server thread/INFO]: dtlTradersPlus> Shops Saved!
[00:27:26] [Server thread/INFO]: [TabList] Enabling TabList v5.7.7
[00:27:26] [Server thread/INFO]: [TabList] Found PlaceholderAPI version: 2.11.6
[00:27:26] [Server thread/INFO]: [TabList] v5.7.7 on v1_21_1 (99ms)
[00:27:26] [Server thread/INFO]: [Interactions] Enabling Interactions v2.7.2
[00:27:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactions [2.7.2]
[00:27:26] [Server thread/INFO]: [Interactions]Has been enabled! Version: 2.7.2
[00:27:26] [Server thread/INFO]: [Interactions]Thanks for using my plugin!   ~Ajneb97
[00:27:26] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.9.1
[00:27:27] [Server thread/INFO]: [Vulcan] GSit found. Enabling hook!
[00:27:27] [Server thread/INFO]: [Vulcan] BStats enabled!
[00:27:27] [Server thread/INFO]: [Vulcan] Registered GSit Listener!
[00:27:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: Vulcan [2.9.1]
[00:27:27] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[00:27:27] [Server thread/INFO]: [Quests] Enabling Quests v5.1.4-b507
[00:27:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[00:27:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[00:27:27] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Quests' to create a bStats instance!
[00:27:27] [Server thread/WARN]: [Quests] There are new language phrases in /lang/en-US/strings_new.yml for the current version! You must transfer them to, or regenerate, strings.yml to remove this warning!
[00:27:27] [Server thread/INFO]: [Quests] Loaded language en-US. Translations via Crowdin
[00:27:27] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:27] [Server thread/INFO]: [Quests] Loading storage implementation: YAML
[00:27:27] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:27] [Server thread/INFO]: [MySQL] Enabling MySQL v3.6
[00:27:27] [Server thread/INFO]: Config Error: Host is blank
[00:27:27] [Server thread/INFO]: [MdMotd] Enabling MdMotd v1.9
[00:27:27] [Server thread/INFO]: [AntiDrop] Enabling AntiDrop v2.2.3
[00:27:27] [Server thread/INFO]: [ItemUtil] Invalid material 'WOOL' @ specific-items.redwool
[00:27:27] [Server thread/INFO]: [HexNicks] Enabling HexNicks v2.2.2
[00:27:27] [Server thread/INFO]: [HexNicks] Running on PaperMC server software.
[00:27:27] [Server thread/INFO]: [HexNicks] Successfully loaded nicknames from Json storage.
[00:27:27] [Server thread/INFO]: [HexNicks] Hooking into PlaceholderAPI...
[00:27:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: hexnicks [2.2.2]
[00:27:27] [Server thread/INFO]: [HexNicks] Hooking into Vault...
[00:27:27] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.13.6
[00:27:28] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[00:27:28] [Server thread/INFO]: [GPFlags] Finished loading data.
[00:27:28] [Server thread/INFO]: [GPFlags] Successfully loaded in 0.74 seconds
[00:27:28] [Server thread/INFO]: [AdvancedKits] Enabling AdvancedKits v1.18.7
[00:27:28] [Server thread/INFO]: [AdvancedKits] Loading library boosted-yaml
[00:27:28] [Server thread/INFO]: [AdvancedKits] Loading library YamlAssist
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library gson
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library XSeries
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library fast-uuid
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-platform-bukkit
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-platform-api
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-api
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-key
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-bungeecord
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-legacy
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-nbt
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library examination-api
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library examination-string
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library annotations
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-gson
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-serializer-gson-legacy-impl
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-platform-facet
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-platform-viaversion
[00:27:29] [Server thread/INFO]: [AdvancedKits] Loading library adventure-text-minimessage
[00:27:29] [Server thread/INFO]: [AdvancedKits] [NBTAPI] Found Minecraft: 1.21.1! Trying to find NMS support
[00:27:29] [Server thread/INFO]: [AdvancedKits] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully connected to the YAML database!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID EXP!
[00:27:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedkits [1.18.7]
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (EXPANSION)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into PlaceholderAPI (PLACEHOLDER)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VAULT!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Vault (ECONOMY) [CMIEconomy]!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into HeadDatabase (ITEM)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Oraxen (ITEM)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID JOBS!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into Jobs (ECONOMY)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID CMI!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into CMI (ECONOMY)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully registered economy with ID VOTINGPLUGIN!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully hooked into VotingPlugin (ECONOMY)!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Enabled asynchronous tab completion support with PaperSpigot!
[00:27:29] [Server thread/INFO]: [AdvancedKits] Successfully enabled in 871 ms!
[00:27:29] [/INFO]: [AdvancedKits] There is not a new update available.
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.2.2.7
[00:27:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: zauctionhouse [3.2.2.7]
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] === ENABLE START ===
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Plugin Version V3.2.2.7
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading of 4 price items
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] /server/plugins/zAuctionHouseV3/blacklistplayers.json loaded successfully !
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loaded config.yml
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading of 3 tax items
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loaded 4 blacklist items
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loaded 0 whitelist items
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading the Examples category with 0 materials
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading the Blocks category with 0 materials
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading the Potions category with 0 materials
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading the Tools category with 0 materials
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading the Weapons category with 0 materials
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading 3 inventories
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading 0 commands
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Start backup task, next backup at 00:00
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Backup created: /server/plugins/zAuctionHouseV3/backup/items_backup_2024-11-21-12-27-29.json
[00:27:29] [Server thread/WARN]: [zAuctionHouseV3] You use json storage, we advise you to use MYSQL storage instead!
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] /server/plugins/zAuctionHouseV3/items.json loaded successfully !
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Register VAULT economy with name vault
[00:27:29] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] === ENABLE DONE (166ms) ===
[00:27:29] [Server thread/INFO]: [ExecutableBlocks] Enabling ExecutableBlocks v5.24.11.13
[00:27:29] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[00:27:30] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Hut) >> Options available: https://docs.ssomar.com/
[00:27:30] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test) >> Options available: https://docs.ssomar.com/
[00:27:30] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Test2) >> Options available: https://docs.ssomar.com/
[00:27:30] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Prem_Target) >> Options available: https://docs.ssomar.com/
[00:27:30] [Server thread/INFO]: ExecutableBlocks ERROR, Couldn't load the Option value of option from config, value: NULL (Block: Free_Mine) >> Options available: https://docs.ssomar.com/
[00:27:30] [Server thread/INFO]: ExecutableBlocks Amount of Executable Blocks configurations loaded: 23
[00:27:30] [Server thread/INFO]: ExecutableBlocks There are: 2 ExecutableBlock placed configs to load.
[00:27:30] [Server thread/INFO]: ExecutableBlocks 0/2 blocks loaded.
[00:27:30] [Server thread/INFO]: ExecutableBlocks 1/2 blocks loaded.
[00:27:30] [Server thread/INFO]: ExecutableBlocks 2 ExecutableBlock(s)Placed loaded !
[00:27:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ExecutableBlocks [1.0.0]
[00:27:30] [Server thread/INFO]: ========*======== ExecutableBlocks ========*========
[00:27:30] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.5.0
[00:27:30] [Server thread/INFO]: [Infiniteannouncements] [DEBUG] Registered command: InfiniteAnnouncements
[00:27:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: infiniteannouncements [1.0.0]
[00:27:30] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.12
[00:27:30] [Server thread/INFO]: [EpicRename] Version: 3.12 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[00:27:30] [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
[00:27:30] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[00:27:30] [Server thread/INFO]: [EpicRename] Economy is enabled in the config.
[00:27:30] [Server thread/INFO]: [ChosenCraft] Prefix set to: '[ChosenCraft] '
[00:27:30] [Server thread/INFO]: [ChosenCraft] Plugin Enabled!
[00:27:30] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v7.7.1
[00:27:31] [Server thread/INFO]: [PlayerWarps] This plugin is licensed to AuthenticHuman (1906351) from Spigot!
[00:27:31] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[00:27:32] [Server thread/INFO]: [PlayerWarps] Found 24 config files to load!
[00:27:33] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[00:27:33] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (CMIEconomy)
[00:27:33] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[00:27:33] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[00:27:33] [Server thread/INFO]: [PlayerWarps] Found XP Currency integrating support...
[00:27:33] [Server thread/INFO]: [PlayerWarps] Found Item Currency integrating support...
[00:27:33] [Server thread/INFO]: [PlayerWarps] Found Vault Currency integrating support...
[00:27:33] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[00:27:33] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[00:27:33] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[00:27:33] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.5
[00:27:33] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[00:27:33] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[00:27:33] [Server thread/WARN]: [ExcellentCrates] EconomyBridge is not installed. Crate open cost feature will be disabled.
[00:27:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:27:33] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@511ecdc7
[00:27:33] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:27:33] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[00:27:34] [Server thread/INFO]: [ExcellentCrates] Loaded 9 crate keys.
[00:27:34] [Server thread/INFO]: [ExcellentCrates] Loaded 8 rarities!
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'No key id in MapLike[{amount:12.5d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_damage",uuid:[I;1137549780,1544964343,-1235549768,-752580345]}]; No key id in MapLike[{amount:-3.0d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_speed",uuid:[I;-1258956170,1924154074,-1630845345,1074255247]}] missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:-3.0d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_speed",uuid:[I;-1258956170,1924154074,-1630845345,1074255247]},{amount:12.5d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_damage",uuid:[I;1137549780,1544964343,-1235549768,-752580345]}]}}'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'No key id in MapLike[{amount:12.5d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_damage",uuid:[I;1137549780,1544964343,-1235549768,-752580345]}]; No key id in MapLike[{amount:-3.0d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_speed",uuid:[I;-1258956170,1924154074,-1630845345,1074255247]}] missed input: {"minecraft:attribute_modifiers":{modifiers:[{amount:-3.0d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_speed",uuid:[I;-1258956170,1924154074,-1630845345,1074255247]},{amount:12.5d,name:"&eDefault name",operation:"add_value",slot:"mainhand",type:"minecraft:generic.attack_damage",uuid:[I;1137549780,1544964343,-1235549768,-752580345]}]}}'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/ERROR]: Tried to load invalid item: 'Unknown registry key in ResourceKey[minecraft:root / minecraft:item]: minecraft:scute'
[00:27:34] [Server thread/INFO]: [ExcellentCrates] Loaded 9 crates.
[00:27:34] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[00:27:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.5]
[00:27:34] [Server thread/INFO]: [ExcellentCrates] [DEBUG] Inject post-loading code...
[00:27:34] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1585 ms!
[00:27:34] [Server thread/INFO]: [UltimateAutoRestart] Enabling UltimateAutoRestart v2024.07
[00:27:35] [Server thread/INFO]: [UltimateAutoRestart] 2024.07, a free resource by Norska - Thanks for downloading!
[00:27:35] [Server thread/INFO]: [UltimateAutoRestart] Join www.norska.dev/discord/ for support!
[00:27:35] [Server thread/INFO]: [UltimateAutoRestart] Attempting hooks...
[00:27:35] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[00:27:35] [Server thread/INFO]: [BetterRTP] Cooldown = 60
[00:27:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[00:27:35] [Server thread/INFO]: [ajStartCommands] Enabling ajStartCommands v2.0.3*
[00:27:35] [Server thread/INFO]: ajStartCommands v2.0.3 by ajgeiss0702 has been enabled!
[00:27:35] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[00:27:35] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.0-Release
[00:27:35] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[00:27:36] [Server thread/WARN]: [DeluxeMenus] Material for item: glass in menu: basics_menu is not valid!
Skipping item: glass
[00:27:36] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[00:27:36] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[00:27:36] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[00:27:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.0-Release]
[00:27:36] [Server thread/INFO]: [spark] Starting background profiler...
[00:27:36] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:27:36] [Server thread/INFO]: Done preparing level "world" (34.100s)
[00:27:36] [Server thread/INFO]: Running delayed init tasks
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] [Importing models]
[00:27:36] [Craft Scheduler Thread - 4 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing Rocky.bbmodel.
[00:27:36] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[00:27:36] [Craft Scheduler Thread - 10 - VotingPlugin/INFO]: [VotingPlugin] CMI found, loading hook
[00:27:36] [Craft Scheduler Thread - 10 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[00:27:36] [Server thread/INFO]: [CMI] Permission plugin: LuckPerms5.4.131
[00:27:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmi [9.7.7.10]
[00:27:36] [Server thread/INFO]: [CMI] PlaceholderAPI hooked.
[00:27:36] [Server thread/INFO]: WorldGuard detected.
[00:27:36] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (Vault)
[00:27:36] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (LuckPerms)
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:36] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing baby_walle.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing capybara_angelic.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing fairy_seed.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing fall_dragon.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_baby_icebear.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_baby_werewolf.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_chibi_dark_mage.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_chibi_fox.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_corgi.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_death_spirit_ball.bbmodel.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Importing nocsy_fairy_drakonin.bbmodel.
[00:27:37] [Craft Scheduler Thread - 17 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.2.2.7] No update available.
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] 
[00:27:37] [Craft Scheduler Thread - 5 - ModelEngine/INFO]: [ModelEngine] [A] Resource pack zipped.
[00:27:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.28.0]
[00:27:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pw [7.7.1]
[00:27:38] [Server thread/INFO]: 0 placeholder hook(s) registered!
[00:27:38] [Server thread/INFO]: Done (90.265s)! For help, type "help"
[00:27:38] [Server thread/INFO]: Timings Reset
[00:27:38] [Server thread/INFO]: [CMI] DiscordSRV found. (Loaded: true)
[00:27:38] [Craft Scheduler Thread - 13 - Oraxen/INFO]: Oraxen | Automatic upload of the resource pack is enabled, uploading...
[00:27:38] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (2 methods)
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Loading inventories in progress...
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory auction !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory buyconfirm !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory removeconfirm !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory expire !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory buying !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory items !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory categories !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory sell !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory sellshow !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory category !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory adminremove !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory search !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Successful loading of the inventory show !
[00:27:38] [Server thread/INFO]: [zAuctionHouseV3 v3.2.2.7] Inventories loading complete.
[00:27:38] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[00:27:38] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:38] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:38] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:38] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:38] [Server thread/INFO]: [Quests] Loaded 4 Quest(s), 7 Action(s), 1 Condition(s) and 798 Phrase(s)
[00:27:38] [Server thread/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateautorestart [2024.07]
[00:27:40] [Server thread/INFO]: [UltimateAutoRestart] Hooked into PlaceholderAPI!
[00:27:40] [Server thread/INFO]: [UltimateAutoRestart] Successfully performed 1 hooks!
[00:27:40] [Craft Scheduler Thread - 13 - Oraxen/INFO]: Oraxen | Resourcepack uploaded to http://atlas.oraxen.com:8080/pack.zip?id=fb7bbe854e4730da0f7d219152245ed3b91f0b08 in 2347 ms
[00:27:41] [User Authenticator #0/INFO]: UUID of player AuthenticHuman is a908157e-1cfc-4327-9334-528584452dd4
[00:27:41] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[00:27:41] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[00:27:41] [Server thread/INFO]: Registering listeners...
[00:27:41] [Server thread/INFO]: Listeners registered successfully
[00:27:41] [Jobs-BufferedPaymentThread/INFO]: Buffered payment thread shutdown.
[00:27:41] [Jobs-DatabaseSaveTask/INFO]: Database save task shutdown!
[00:27:41] [Server thread/INFO]: Closing existing database connection...
[00:27:41] [Server thread/INFO]: Closed
[00:27:41] [Server thread/INFO]: Connected to database (SqLite)
[00:27:41] [Craft Scheduler Thread - 6 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.3
[00:27:41] [Server thread/INFO]: Loaded 8 titles
[00:27:41] [Server thread/INFO]: Loaded 4 restricted areas!
[00:27:41] [Server thread/INFO]: Loaded 85 protected blocks timers
[00:27:42] [Server thread/INFO]: Loaded 1481 custom item names
[00:27:42] [Server thread/INFO]: Loaded 84 custom entity names
[00:27:42] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[00:27:42] [Server thread/INFO]: Loaded 122 custom enchant names
[00:27:42] [Server thread/INFO]: Loaded 46 custom enchant names
[00:27:42] [Server thread/INFO]: Loaded 16 custom color names
[00:27:42] [Server thread/INFO]: Loaded 4 shop items
[00:27:42] [Server thread/INFO]: Job Diver has an invalid Break type property: bubbe_coral!
[00:27:42] [Server thread/INFO]: Job Miner has an invalid Break type property: tuft!
[00:27:42] [Server thread/INFO]: Job Miner has an invalid Break type property: amethyst!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_1!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_2!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_3!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: cherry_petals_4!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: tall_fern!
[00:27:42] [Server thread/INFO]: Job Florist has an invalid Break type property: lilly_pad!
[00:27:42] [Server thread/INFO]: Loaded 14 jobs
[00:27:42] [Server thread/INFO]: Loaded 0 boosted items
[00:27:42] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[00:27:42] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[00:27:42] [Server thread/INFO]: Your command has been performed.
[00:27:42] [ForkJoinPool.commonPool-worker-2/WARN]: [Quests] Citizens was detected, but is not enabled! Fix Citizens to allow linkage.
[00:27:42] [Server thread/INFO]: [VotingPlugin] Login: AuthenticHuman (a908157e-1cfc-4327-9334-528584452dd4)
[00:27:43] [Server thread/INFO]: [DiscordSRV] Player AuthenticHuman joined with silent joining permission, not sending a join message
[00:27:43] [Server thread/INFO]: AuthenticHuman joined the game
[00:27:44] [Server thread/INFO]: AuthenticHuman[/         ip         ] logged in with entity id 1880 at ([world]-58.53343638536729, 135.1390800995193, 15.401930116045632)
[00:27:44] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2544ms or 50 ticks behind
[00:27:49] [Craft Scheduler Thread - 27 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.17.2
[00:27:59] [Server thread/INFO]: AuthenticHuman issued server command: /joinleave off
[00:32:48] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 9355ms or 187 ticks behind