Paste #105271: more stuff

Date: 2023/01/11 19:02:21 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


[02:33:31] [ServerMain/INFO]: Building unoptimized datafixer
[02:33:33] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[02:33:35] [ServerMain/INFO]: Loaded 7 recipes
[02:33:36] [Server thread/INFO]: Starting minecraft server version 1.19.3
[02:33:36] [Server thread/INFO]: Loading properties
[02:33:36] [Server thread/INFO]: This server is running Paper version git-Paper-346 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: d5f1ffc)
[02:33:36] [Server thread/INFO]: Server Ping Player Sample Count: 12
[02:33:36] [Server thread/INFO]: Using 4 threads for Netty based IO
[02:33:36] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[02:33:36] [Server thread/INFO]: Default game type: SURVIVAL
[02:33:36] [Server thread/INFO]: Generating keypair
[02:33:37] [Server thread/INFO]: Starting Minecraft server on *:25575
[02:33:37] [Server thread/INFO]: Using epoll channel type
[02:33:37] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[02:33:37] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[02:33:37] [Server thread/ERROR]: Ambiguous plugin name `LuckPerms' for files `plugins/LuckPerms.jar' and `plugins/LuckPerms-Bukkit-5.4.49.jar' in `plugins'
[02:33:37] [Server thread/ERROR]: Ambiguous plugin name `BuycraftX' for files `plugins/BuycraftX (1).jar' and `plugins/BuycraftX.jar' in `plugins'
[02:33:37] [Server thread/ERROR]: Ambiguous plugin name `ViaVersion' for files `plugins/ViaVersion-4.5.0.jar' and `plugins/ViaVersion.jar' in `plugins'
[02:33:37] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[02:33:43] [Server thread/WARN]: Legacy plugin Playtimes v1.4.4 does not specify an api-version.
[02:33:43] [Server thread/WARN]: Legacy plugin Bounty v1.8 does not specify an api-version.
[02:33:43] [Server thread/INFO]: [NexEngine] Loading 1 libraries... please wait
[02:33:43] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[02:33:43] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[02:33:44] [Server thread/WARN]: Legacy plugin CoinFlipper v2.92 does not specify an api-version.
[02:33:44] [Server thread/INFO]: [ChatFilter] Loading ChatFilter v2.0.13
[02:33:44] [Server thread/INFO]: [Chunky] Loading Chunky v1.3.52
[02:33:44] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[02:33:44] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[02:33:44] [Server thread/INFO]: [Playtimes] Loading Playtimes v1.4.4
[02:33:44] [Server thread/INFO]: [Analyse] Loading Analyse v1.1.12
[02:33:44] [Server thread/INFO]: [PlayerStats] Loading PlayerStats v1.7.2
[02:33:44] [Server thread/INFO]: [InfiniteScoreboard] Loading InfiniteScoreboard v1.2.1
[02:33:44] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.0
[02:33:44] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.0 is now loaded, injecting!
[02:33:44] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[02:33:44] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[02:33:44] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[02:33:44] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[02:33:44] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[02:33:44] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[02:33:44] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[02:33:44] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[02:33:44] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[02:33:44] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[02:33:44] [Server thread/INFO]: [Bounty] Loading Bounty v1.8
[02:33:44] [Server thread/INFO]: [MinehutPlugin] Loading MinehutPlugin v1.0-SNAPSHOT
[02:33:44] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.30
[02:33:45] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b607
[02:33:45] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[02:33:46] [Server thread/INFO]: [Vulcan] Loading Vulcan v2.7.0
[02:33:46] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.3.2
[02:33:46] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[02:33:46] [Server thread/INFO]: [LPC] Loading LPC v3.2.0
[02:33:46] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.2
[02:33:46] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.0-dev+232-b84207f
[02:33:46] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.3.0
[02:33:46] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.4.11-SNAPSHOT-322;79c23e0
[02:33:47] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@2e5a4cef]
[02:33:47] [Server thread/INFO]: [Vouchers] Loading Vouchers v3.7.0
[02:33:47] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v2.1.3
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.1
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[02:33:47] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[02:33:47] [Server thread/INFO]: [CrazyAuctions] Loading CrazyAuctions v1.2.16-RELEASE
[02:33:47] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-Release
[02:33:47] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[02:33:47] [Server thread/INFO]: [TAB] Loading TAB v3.2.1
[02:33:47] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.7 build-10/12/2022
[02:33:47] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[02:33:47] [Server thread/INFO]: [BetterTeams] Loading BetterTeams v4.5.0
[02:33:47] [Server thread/INFO]: [BetterTeams] Checking if the file config.yml is up to date
[02:33:47] [Server thread/INFO]: [BetterTeams] File is up to date
[02:33:47] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.24-SNAPSHOT (build 1605)
[02:33:47] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.2
[02:33:48] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (299 ms).
[02:33:48] [Server thread/WARN]: [Shopkeepers] Incompatible server version: v1_19_R2 (mappings: 1afe2ffe8a9d7fc510442a168b3d4338)
[02:33:48] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'compatibility mode'.
[02:33:48] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[02:33:48] [Server thread/INFO]: [Shopkeepers] Loading config.
[02:33:48] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[02:33:48] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[02:33:48] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[02:33:48] [Server thread/INFO]: [ExcellentCrates] Loading ExcellentCrates v4.0.6
[02:33:48] [Server thread/INFO]: [LifestealCore] Loading LifestealCore vBuild 6c
[02:33:48] [Server thread/INFO]: [PvPManager] Loading PvPManager v3.10.9
[02:33:48] [Server thread/INFO]: [Wild] Loading Wild v4.4.5-SNAPSHOT
[02:33:48] [Server thread/INFO]: [Skript] Loading Skript v2.6.3
[02:33:48] [Server thread/INFO]: [RoseStacker] Loading RoseStacker v1.4.15
[02:33:48] [Server thread/INFO]: [VeinMiner] Loading VeinMiner v1.17.10
[02:33:48] [Server thread/INFO]: [VeinMiner] Found WorldGuard. Registering custom region flag.
[02:33:48] [Server thread/INFO]: [CoinFlipper] Loading CoinFlipper v2.92
[02:33:48] [Server thread/INFO]: [skript-gui] Loading skript-gui v1.3
[02:33:48] [Server thread/INFO]: [CitizensCMD] Loading CitizensCMD v2.6.7
[02:33:48] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.0
[02:33:48] [Server thread/INFO]: [EconomyShopGUI] Loading EconomyShopGUI v5.1.2
[02:33:48] [Server thread/INFO]: [Sellwand] Loading Sellwand v1.5.3
[02:33:48] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[02:33:48] [Server thread/INFO]: true
[02:33:48] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[02:33:48] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.30
[02:33:49] [Server thread/INFO]:         __    
[02:33:49] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.30
[02:33:49] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[02:33:49] [Server thread/INFO]: 
[02:33:49] [Server thread/INFO]: [LuckPerms] Loading configuration...
[02:33:49] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[02:33:50] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[02:33:50] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[02:33:51] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2750ms)
[02:33:51] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b607
[02:33:51] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[02:33:51] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.0-dev+232-b84207f which is not a depend or softdepend of this plugin.
[02:33:51] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[02:33:51] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[02:33:51] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[02:33:51] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[02:33:51] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.4.11-SNAPSHOT-322;79c23e0
[02:33:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[02:33:51] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[02:33:51] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[02:33:51] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[02:33:51] [Server thread/WARN]: java.lang.NoSuchFieldException: l
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_17_R1_2.PaperweightPlatformAdapter.<clinit>(PaperweightPlatformAdapter.java:94)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:33:51] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.world.level.chunk.Chunk.d(net.minecraft.world.level.block.entity.TileEntity)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredMethod(Class.java:2675)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_18_R2.PaperweightPlatformAdapter.<clinit>(PaperweightPlatformAdapter.java:151)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:33:51] [Server thread/WARN]: java.lang.NoSuchFieldException: l
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.getDeclaredField(Class.java:2610)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.impl.fawe.BukkitAdapter_1_17.<clinit>(BukkitAdapter_1_17.java:101)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName0(Native Method)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Class.forName(Class.java:375)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.adapter.BukkitImplLoader.loadAdapter(BukkitImplLoader.java:170)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.loadAdapter(WorldEditPlugin.java:361)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.setupPreWorldData(WorldEditPlugin.java:232)
[02:33:51] [Server thread/WARN]:     at FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar//com.sk89q.worldedit.bukkit.WorldEditPlugin.onEnable(WorldEditPlugin.java:205)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[02:33:51] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[02:33:51] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:274)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[02:33:51] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[02:33:51] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:33:51] [Server thread/WARN]: 
**********************************************
** This FastAsyncWorldEdit version does not fully support your version of Bukkit.
** You can fix this by:
** - Updating your server version (Check /version to see how many versions you are behind)
** - Updating FAWE
**
** When working with blocks or undoing, chests will be empty, signs
** will be blank, and so on. There will be no support for entity
** and block property-related functions.
**********************************************

[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=0]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=1]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=2]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=3]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=4]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=5]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=6]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=7]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=8]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=9]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=10]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=11]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=12]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=13]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=14]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:sign[rotation=15]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=north]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=south]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=west]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:wall_sign[facing=east]. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown block: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this block.
[02:33:52] [Server thread/ERROR]: Unknown item: minecraft:grass_path. Neither the DataFixer nor defaulting worked to recognize this item.
[02:33:52] [Server thread/ERROR]: Unknown item: minecraft:sign. Neither the DataFixer nor defaulting worked to recognize this item.
[02:33:52] [Server thread/ERROR]: Unknown item: minecraft:rose_red. Neither the DataFixer nor defaulting worked to recognize this item.
[02:33:52] [Server thread/ERROR]: Unknown item: minecraft:cactus_green. Neither the DataFixer nor defaulting worked to recognize this item.
[02:33:52] [Server thread/ERROR]: Unknown item: minecraft:dandelion_yellow. Neither the DataFixer nor defaulting worked to recognize this item.
[02:33:52] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 17 build(s) out of date.
You are running build 322, the latest version is build 339.
Update at https://www.spigotmc.org/resources/13932/
[02:33:52] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.7 build-10/12/2022
[02:33:52] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[02:33:52] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[02:33:52] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[02:33:52] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[02:33:52] [Server thread/INFO]: [NexEngine] Plugin loaded in 75 ms!
[02:33:52] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[02:33:53] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[02:33:53] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[02:33:53] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[02:33:53] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[02:33:53] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[02:33:53] [Server thread/INFO]: Preparing level "world"
[02:33:53] [Server thread/WARN]: Failed to load biomes via adapter (not present). Will load via bukkit
[02:33:53] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[02:33:53] [Server thread/INFO]: Time elapsed: 120 ms
[02:33:53] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[02:33:53] [Server thread/INFO]: Time elapsed: 51 ms
[02:33:53] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[02:33:53] [Server thread/INFO]: Time elapsed: 14 ms
[02:33:53] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.13
[02:33:54] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[02:33:54] [Server thread/INFO]: [ChatFilter] 55 Enabled word filters.
[02:33:54] [Server thread/INFO]: [ChatFilter] 2 Enabled advertising filters.
[02:33:54] [Server thread/INFO]: [ChatFilter] 352 whitelisted items.
[02:33:54] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.52
[02:33:54] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[02:33:54] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.0 which is not a depend or softdepend of this plugin.
[02:33:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[02:33:54] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[02:33:54] [Server thread/INFO]: [BuycraftX] Validating your server key...
[02:33:54] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[02:33:54] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[02:33:54] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[02:33:55] [Server thread/INFO]: [Playtimes] Enabling Playtimes v1.4.4*
[02:33:55] [Server thread/INFO]: You are using an older version of PlayTimes!
[02:33:55] [Server thread/INFO]: Download the newest version here:
[02:33:55] [Server thread/INFO]: https://www.spigotmc.org/resources/58858/
[02:33:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PlayTimes [1.4.4]
[02:33:55] [Server thread/INFO]: [PlayTimes] PlaceholdersAPI Hooked!
[02:33:55] [Server thread/INFO]: [PlayTimes] Successfully loaded.
[02:33:55] [Server thread/INFO]: [Analyse] Enabling Analyse v1.1.12
[02:33:55] [Server thread/INFO]: [Analyse] Linked Analyse to 2WarSmp.
[02:33:55] [Server thread/INFO]: [PlayerStats] Enabling PlayerStats v1.7.2
[02:33:55] [ReloadThread-1/INFO]: [PlayerStats] ReloadThread loaded 2 offline players: 1ms
[02:33:55] [Server thread/INFO]: [PlayerStats] Enabled PlayerStats!
[02:33:55] [Server thread/INFO]: [InfiniteScoreboard] Enabling InfiniteScoreboard v1.2.1
[02:33:55] [Server thread/INFO]:  
[02:33:55] [Server thread/INFO]: ====================================
[02:33:55] [Server thread/INFO]: Plugin name: InfiniteScoreboard
[02:33:55] [Server thread/INFO]: Version: 1.2.1
[02:33:55] [Server thread/INFO]: Core version: 0.7.25
[02:33:55] [Server thread/INFO]: ====================================
[02:33:55] [Server thread/INFO]:  
[02:33:55] [Server thread/INFO]: [InfiniteScoreboard] Loaded locale "en_US"
[02:33:55] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.0
[02:33:55] [Server thread/INFO]: [Bounty] Enabling Bounty v1.8*
[02:33:55] [Server thread/WARN]: [Bounty] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[02:33:55] [Server thread/INFO]: [MinehutPlugin] Enabling MinehutPlugin v1.0-SNAPSHOT
[02:33:56] [Server thread/INFO]: [Vulcan] Enabling Vulcan v2.7.0
[02:33:56] [Server thread/INFO]: [Vulcan] Server Version: 1.19 detected!
[02:33:56] [Server thread/INFO]: [Vulcan] BStats enabled!
[02:33:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Vulcan [2.7.0]
[02:33:56] [Server thread/INFO]: [Vulcan] PlaceholderAPI found. Enabling hook!
[02:33:56] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.3.2
[02:33:57] [Server thread/INFO]: [LPC] Enabling LPC v3.2.0
[02:33:57] [Server thread/INFO]: [LPC] Hooked into PlaceholderAPI.
[02:33:57] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.2
[02:33:57] [Server thread/ERROR]: Error occurred while enabling DecentHolograms v2.7.2 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at eu.decentsoftware.holograms.api.DecentHolograms.enable(DecentHolograms.java:58) ~[DecentHolograms-2.7.2.jar:?]
    at eu.decentsoftware.holograms.api.DecentHologramsAPI.onEnable(DecentHologramsAPI.java:20) ~[DecentHolograms-2.7.2.jar:?]
    at eu.decentsoftware.holograms.plugin.DecentHologramsPlugin.onEnable(DecentHologramsPlugin.java:23) ~[DecentHolograms-2.7.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "eu.decentsoftware.holograms.api.utils.reflect.Version.getMinor()" because "eu.decentsoftware.holograms.api.utils.reflect.Version.CURRENT" is null
    at eu.decentsoftware.holograms.api.utils.reflect.Version.afterOrEqual(Version.java:64) ~[DecentHolograms-2.7.2.jar:?]
    at eu.decentsoftware.holograms.api.nms.NMS.<clinit>(NMS.java:40) ~[DecentHolograms-2.7.2.jar:?]
    ... 14 more
[02:33:57] [Server thread/INFO]: [DecentHolograms] Disabling DecentHolograms v2.7.2
[02:33:57] [Server thread/ERROR]: Error occurred while disabling DecentHolograms v2.7.2 (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "eu.decentsoftware.holograms.api.nms.PacketListener.destroy()" because "this.packetListener" is null
    at eu.decentsoftware.holograms.api.DecentHolograms.disable(DecentHolograms.java:94) ~[DecentHolograms-2.7.2.jar:?]
    at eu.decentsoftware.holograms.api.DecentHologramsAPI.onDisable(DecentHologramsAPI.java:28) ~[DecentHolograms-2.7.2.jar:?]
    at eu.decentsoftware.holograms.plugin.DecentHologramsPlugin.onDisable(DecentHologramsPlugin.java:37) ~[DecentHolograms-2.7.2.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:33:57] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.0-dev+232-b84207f
[02:33:57] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[02:33:57] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[02:33:57] [Server thread/INFO]: [Essentials] No kits found to migrate.
[02:33:57] [Server thread/INFO]: [Essentials] Loaded 36837 items from items.json.
[02:33:57] [Server thread/INFO]: [Essentials] Using locale en_US
[02:33:57] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[02:33:57] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[02:33:57] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[02:33:57] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[02:33:57] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.3.0
[02:33:57] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[02:33:57] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.pool.PoolBase] HikariPool-1 - Driver does not support get/set network timeout for connections. (feature not supported)
[02:33:57] [Server thread/INFO]: [me.leoko.advancedban.shaded.com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[02:33:57] [Server thread/INFO]: 
 
[]=====[Enabling AdvancedBan]=====[]
| Information:
|   Name: AdvancedBan
|   Developer: Leoko
|   Version: 2.3.0
|   Storage: HSQLDB (local)
| Support:
|   Github: https://github.com/DevLeoko/AdvancedBan/issues
|   Discord: https://discord.gg/ycDG6rS
| Twitter: @LeokoGar
| Update:
|   You have the newest version
[]================================[]
 
[02:33:57] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.7.0
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]: =============================
[02:33:57] [Server thread/INFO]: Vouchers v3.7.0 by Tweetzy
[02:33:57] [Server thread/INFO]: Developer: Kiran Hart
[02:33:57] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[02:33:57] [Server thread/INFO]: =============================
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.1.3
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]: __________________________________________________________
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]:                        TradeSystem [2.1.3]
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]: Status:
[02:33:57] [Server thread/INFO]:  
[02:33:57] [Server thread/INFO]: MC-Version: 1.19.3 (R0.1-SNAPSHOT, Paper)
[02:33:57] [Server thread/INFO]:  
[02:33:58] [Server thread/INFO]:   > Loading sounds
[02:33:58] [Server thread/INFO]:   > Loading blacklist
[02:33:58] [Server thread/INFO]:     ...got 3 blocked item(s)
[02:33:58] [Server thread/INFO]:   > Loading layouts
[02:33:58] [Server thread/INFO]:     ...got 4 layout(s)
[02:33:58] [Server thread/INFO]:   > Database logging is disabled
[02:33:58] [Server thread/INFO]:  
[02:33:58] [Server thread/INFO]: Finished (260ms)
[02:33:58] [Server thread/INFO]:  
[02:33:58] [Server thread/INFO]: __________________________________________________________
[02:33:58] [Server thread/INFO]:  
[02:33:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.1]
[02:33:58] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.1
[02:33:58] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[02:33:58] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[02:33:58] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[02:33:58] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[02:33:58] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[02:33:58] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[02:33:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.1]
[02:33:58] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[02:33:58] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[02:33:58] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.1 by ajgeiss0702 enabled!
[02:33:58] [Server thread/INFO]: [CrazyAuctions] Enabling CrazyAuctions v1.2.16-RELEASE
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the config.yml
[02:33:58] [Server thread/WARN]: Nag author(s): '[BadBones69]' of 'CrazyAuctions' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded config.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Data.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Data.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Messages.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Messages.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Loading the Test-File.yml
[02:33:58] [Server thread/INFO]: [CrazyAuctions] [STDOUT] [CrazyAuctions] Successfully loaded Test-File.yml
[02:33:58] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[02:33:58] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[02:33:59] [Server thread/INFO]: [DeluxeMenus] 1 GUI menus loaded!
[02:33:59] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[02:33:59] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[02:33:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[02:33:59] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[02:33:59] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[02:33:59] [Server thread/INFO]: [TAB] Loaded NMS hook in 29ms
[02:33:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.2.1]
[02:33:59] [Server thread/INFO]: [TAB] Enabled in 73ms
[02:33:59] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[02:33:59] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[02:33:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[02:33:59] [Server thread/INFO]: [WorldGuard] Loading region data...
[02:33:59] [Server thread/INFO]: [BetterTeams] Enabling BetterTeams v4.5.0
[02:33:59] [Server thread/INFO]: [BetterTeams] Checking if the file messages.yml is up to date
[02:33:59] [Server thread/INFO]: [BetterTeams] File is up to date
[02:33:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterTeams [4.5.0]
[02:33:59] [Server thread/INFO]: Display team name config value: prefix
[02:33:59] [Server thread/INFO]: Loading below name. Type: PREFIX
[02:33:59] [Server thread/INFO]: teamManagement declared: com.booksaw.betterTeams.events.MCTeamManagement@32f78262
[02:33:59] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.24-SNAPSHOT (build 1605)
[02:33:59] [Server thread/INFO]: [Citizens] Could not fetch NMS field modifiers: [[modifiers.
[02:33:59] [Server thread/ERROR]: [Citizens] v2.0.24-SNAPSHOT (build 1605) is not compatible with Minecraft v1_19_R2 - try upgrading or downgrading Citizens. Disabling.
[02:33:59] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.24-SNAPSHOT (build 1605)
[02:33:59] [Server thread/ERROR]: [NexEngine] Plugin NexEngine v2.2.7 build-10/12/2022 has failed to register events for class su.nexmedia.engine.hooks.external.citizens.CitizensHook because net/citizensnpcs/api/event/NPCLeftClickEvent does not exist.
[02:33:59] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.2
[02:33:59] [Server thread/INFO]: [Shopkeepers] Loading the data of 3 shopkeepers ...
[02:33:59] [Server thread/INFO]: [Shopkeepers] The save file's data version has changed from '3|2|3120' to '3|2|3218'. The saved data of all shopkeepers is updated.
[02:33:59] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.0.6
[02:33:59] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[02:33:59] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with DecentHolograms!
[02:33:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.0.6]
[02:33:59] [Server thread/INFO]: [ExcellentCrates] Successfully hooked with PlaceholderAPI!
[02:33:59] [Server thread/ERROR]: Error occurred while enabling ExcellentCrates v4.0.6 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/event/NPCClickEvent
    at su.nightexpress.excellentcrates.ExcellentCrates.registerHooks(ExcellentCrates.java:126) ~[ExcellentCrates-4.0.6 (3).jar:?]
    at su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:183) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78) ~[NexEngine (3).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.event.NPCClickEvent
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 14 more
[02:33:59] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.0.6
[02:33:59] [Server thread/ERROR]: Error occurred while disabling ExcellentCrates v4.0.6 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/TraitInfo
    at su.nexmedia.engine.hooks.external.citizens.CitizensHook.unregisterTraits(CitizensHook.java:86) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:233) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine (3).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.TraitInfo
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 16 more
[02:33:59] [Server thread/INFO]: [LifestealCore] Enabling LifestealCore vBuild 6c
[02:33:59] [Server thread/INFO]: [LifestealCore] Build 6c, a premium resource by Norska - Thanks for purchasing!
[02:33:59] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.10.9
[02:34:00] [Server thread/INFO]: [PvPManager] Loaded 7391 players from users file
[02:34:00] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[02:34:00] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[02:34:00] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[02:34:00] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[02:34:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.10.9]
[02:34:00] [Server thread/INFO]: [PvPManager] PvPManager Enabled (256 ms)
[02:34:00] [Server thread/INFO]: [Wild] Enabling Wild v4.4.5-SNAPSHOT
[02:34:00] [Server thread/INFO]: [Skript] Enabling Skript v2.6.3
[02:34:00] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[02:34:00] [Thread-22/INFO]: [Skript] A new version of Skript is available: 2.6.4 (you're currently running 2.6.3)
[02:34:00] [Thread-22/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar>https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar
[02:34:05] [Server thread/INFO]: [Skript] Loaded 153613 aliases in 5355ms
[02:34:06] [Server thread/INFO]: [Skript]  ~ created by & ? Peter G?ttinger aka Njol ~
[02:34:06] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.4.15
[02:34:06] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.1.0.42-SNAPSHOT
[02:34:06] [Server thread/INFO]: [RoseStacker] Data handler connected using SQLite.
[02:34:06] [Server thread/ERROR]: Error occurred while enabling RoseStacker v1.4.15 (Is it up to date?)
dev.rosewood.rosestacker.lib.rosegarden.RosePlugin$ManagerNotFoundException: Failed to load StackSettingManager
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.getManager(RosePlugin.java:216) ~[RoseStacker-1.4.15.jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.reload(RosePlugin.java:175) ~[RoseStacker-1.4.15.jar:?]
    at dev.rosewood.rosestacker.RoseStacker.reload(RoseStacker.java:123) ~[RoseStacker-1.4.15.jar:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.onEnable(RosePlugin.java:104) ~[RoseStacker-1.4.15.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "dev.rosewood.rosestacker.stack.settings.EntityStackSettings.getEntityTypeData()" because the return value of "dev.rosewood.rosestacker.manager.StackSettingManager.getEntityStackSettings(org.bukkit.entity.EntityType)" is null
    at dev.rosewood.rosestacker.stack.settings.SpawnerStackSettings.setDefaults(SpawnerStackSettings.java:80) ~[RoseStacker-1.4.15.jar:?]
    at dev.rosewood.rosestacker.stack.settings.SpawnerStackSettings.<init>(SpawnerStackSettings.java:34) ~[RoseStacker-1.4.15.jar:?]
    at dev.rosewood.rosestacker.manager.StackSettingManager.lambda$reload$2(StackSettingManager.java:145) ~[RoseStacker-1.4.15.jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at dev.rosewood.rosestacker.manager.StackSettingManager.reload(StackSettingManager.java:144) ~[RoseStacker-1.4.15.jar:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.getManager(RosePlugin.java:213) ~[RoseStacker-1.4.15.jar:?]
    ... 15 more
[02:34:06] [Server thread/INFO]: [RoseStacker] Disabling RoseStacker v1.4.15
[02:34:06] [Server thread/INFO]: [VeinMiner] Enabling VeinMiner v1.17.10
[02:34:06] [Server thread/INFO]: [VeinMiner] Registering events
[02:34:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: veinminer [1.17.10]
[02:34:06] [Server thread/INFO]: [VeinMiner] Registering commands
[02:34:06] [Server thread/INFO]: [VeinMiner] Vault found. Attempting to enable economy support...
[02:34:06] [Server thread/INFO]: [VeinMiner] Economy found! Hooked successfully.
[02:34:06] [Server thread/INFO]: [VeinMiner] Enabling Plugin Metrics
[02:34:06] [Server thread/INFO]: [VeinMiner] Thanks for enabling Metrics! The anonymous stats are appreciated
[02:34:06] [Server thread/INFO]: [VeinMiner] Loading configuration options to local memory
[02:34:06] [Server thread/INFO]: [VeinMiner] Performing an update check!
[02:34:06] [Server thread/INFO]: [CoinFlipper] Enabling CoinFlipper v2.92*
[02:34:06] [Server thread/INFO]: [CoinFlipper] [STDOUT] [CoinFlipper] Connecting to SQLite...
[02:34:06] [Server thread/WARN]: Nag author(s): '[gronnmann]' of 'CoinFlipper' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[02:34:06] [Thread-23/INFO]: [VeinMiner] An update is available! VeinMiner 2.0.0 may be downloaded on SpigotMC
[02:34:07] [Server thread/INFO]: [skript-gui] Enabling skript-gui v1.3
[02:34:07] [Server thread/INFO]: [Skript] Missing version in default.lang
[02:34:07] [Server thread/INFO]: [CitizensCMD] Enabling CitizensCMD v2.6.7
[02:34:07] [Server thread/INFO]: [CitizensCMD] CitizensCMD 2.6.7
[02:34:07] [Server thread/INFO]: [CitizensCMD] by Mateus Moreira @LichtHund & Maintained by HexedHero
[02:34:07] [Server thread/INFO]: [CitizensCMD] Using English messages!
[02:34:07] [Server thread/ERROR]: [CitizensCMD] Plugin CitizensCMD v2.6.7 has failed to register events for class me.mattstudios.citizenscmd.listeners.NPCClickListener because net/citizensnpcs/api/event/NPCRightClickEvent does not exist.
[02:34:07] [Server thread/ERROR]: [CitizensCMD] Plugin CitizensCMD v2.6.7 has failed to register events for class me.mattstudios.citizenscmd.listeners.NPCListener because net/citizensnpcs/api/event/NPCCloneEvent does not exist.
[02:34:07] [Server thread/INFO]: [CitizensCMD] Using PlaceholderAPI!
[02:34:07] [Server thread/INFO]: [CitizensCMD] Using Vault!
[02:34:07] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.0
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v5.1.2
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Using lang-en.yml as language file.
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Shops.yml has been found!
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Sections.yml has been found!
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Successfully hooked into Vault
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Using minecraft version 1.19.3...
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Spawner provider set to ROSESTACKER in config
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] RoseStacker found, integrating...
[02:34:07] [Server thread/WARN]: [EconomyShopGUI] Could not integrate with RoseStacker
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Using plugin default spawners...
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Debug mode is enabled.
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Updating Shop settings...
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Loading all items...
[02:34:07] [Server thread/WARN]: [EconomyShopGUI] The place of shop Random in the main shop-inventory has automatically been changed to '5' because it was already used or could not be found.
[02:34:07] [Server thread/WARN]: [EconomyShopGUI] The place of shop Meats in the main shop-inventory has automatically been changed to '6' because it was already used or could not be found.
[02:34:07] [Server thread/INFO]: [EconomyShopGUI] Initialized - Took 108ms to complete
[02:34:07] [Server thread/INFO]: [Sellwand] Enabling Sellwand v1.5.3
[02:34:07] [Server thread/INFO]:  
[02:34:07] [Server thread/INFO]: ====================================
[02:34:07] [Server thread/INFO]: Plugin name: Sellwand
[02:34:07] [Server thread/INFO]: Version: 1.5.3
[02:34:07] [Server thread/INFO]: Core version: 0.7.25
[02:34:07] [Server thread/INFO]: ====================================
[02:34:07] [Server thread/INFO]:  
[02:34:07] [Server thread/INFO]: [Sellwand] Loaded locale "en_US"
[02:34:08] [pool-60-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (819b02508abe8879cfc2a513fc6cea383b70b5c5)
[02:34:08] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[02:34:08] [Server thread/INFO]: Running delayed init tasks
[02:34:08] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] ?6Fetching version information...
[02:34:08] [Craft Scheduler Thread - 18 - PvPManager/INFO]: [PvPManager] Checking for updates...
[02:34:08] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[02:34:08] [Thread-36/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.0-dev+232-b84207f which is not a depend or softdepend of this plugin.
[02:34:08] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[02:34:08] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[02:34:08] [Thread-38/WARN]: [PvPManager] The updater could not find any files for the project id 63773
[02:34:08] [Craft Scheduler Thread - 19 - Vault/INFO]: [Vault] Checking for Updates ... 
[02:34:08] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[02:34:08] [Craft Scheduler Thread - 18 - PvPManager/INFO]: [PvPManager] No update found
[02:34:08] [Craft Scheduler Thread - 19 - Vault/INFO]: [Vault] No new version available
[02:34:08] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[02:34:08] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[02:34:08] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[02:34:08] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[02:34:08] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://jo0001.github.io/ViaSetup
[02:34:08] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[02:34:08] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[02:34:08] [Server thread/INFO]: [Skript] Loading variables...
[02:34:08] [Craft Scheduler Thread - 11 - Essentials/WARN]: [Essentials] ?6Unable to check your version! Self-built? Build information: ?cid:'INVALID' branch:'INVALID' isDev:false?6.
[02:34:08] [Server thread/INFO]: [Skript] Loaded 4314 variables in 0.0 seconds
[02:34:08] [Server thread/INFO]: [Skript] Line 7: (spawn.sk)
[02:34:08] [Server thread/INFO]:     indentation error: expected 4 spaces, but found 3 spaces
[02:34:08] [Server thread/INFO]:     Line: teleport player to location(-874.459, 78, 676.477, world "world", 88.5, 5.6)
[02:34:08] [Server thread/INFO]:  
[02:34:08] [JDA MainWS-WriteThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[02:34:08] [Server thread/INFO]: [Skript] Loaded 9 scripts with a total of 3 triggers and 6 commands in 0.17 seconds
[02:34:08] [Server thread/INFO]: [Skript] Finished loading.
[02:34:08] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[02:34:08] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.5.1, you're on: 4.5.0
[02:34:08] [Server thread/INFO]: Done (32.166s)! For help, type "help"
[02:34:08] [Server thread/INFO]: Timings Reset
[02:34:09] [Craft Scheduler Thread - 7 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:34:09] [Craft Scheduler Thread - 7 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:34:09] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:2war smp S5(1001282582622765096)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:discord-rules(1015783342819516469)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator-only(1015783342819516470)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-104(1058894784388923492)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:announcements(1001582399186030722)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???server-info(1001583217956098079)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???payouts(1051234633301360660)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???webstore(1001585082479419403)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???partnerships(1001609648224358400)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???purchases(1024829397376704562)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???boost(1020691976183627806)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???game-chat(1055264646724067418)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???warnings(1001585881909563423)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???welcome(1014690839697567814)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???goodbye(1001610336077631609)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???reaction-roles(1001611723620491344)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???promotions-demotions(1014722177704153108)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???staff-apps(1001610597688934522)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???general(1001282582622765099)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???commands(1001587193120301126)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???music(1001611101349363732)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???team-recruitment(1016836153946685490)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???support-report(1001612159043784775)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???submit-suggestion(1024476094239342612)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:???suggestions(1024476200804032595)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:verification(1001621378308509816)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:audit-log(1001621549876514927)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:transcripts(1024106376156434472)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:just-staff-stuff(1001621592536784946)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:everyone-staff-stuff(1025829944842014851)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-107(1059921205529944144)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-109(1062883638947102831)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:no-mic(1062907562862858250)
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[02:34:09] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[02:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.0]
[02:34:11] [Server thread/INFO]: [LifestealCore] Attempting hooks...
[02:34:11] [Server thread/INFO]: [LifestealCore] Hooked into PlaceholderAPI!
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: lifesteal [Build 6c]
[02:34:11] [Server thread/INFO]: [LifestealCore] Hooked into WorldGuard!
[02:34:11] [Craft Scheduler Thread - 21 - Sellwand/INFO]: Hooked EconomyShopGUI as item price. (Config: EconomyShopGUI, Hook name: EconomyShopGUI)
[02:34:11] [Server thread/INFO]: [LifestealCore] Successfully performed 2 hooks!
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[02:34:11] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion protocolvanish due to a missing plugin: ProtocolVanish
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerlist [2.1]
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: servertime [1.0]
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: math [1.4.1]
[02:34:11] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[02:34:11] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.artemis.the.gr8.playerstats.api.PlayerStats from PlayerStats v1.7.2 which is not a depend or softdepend of this plugin.
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerstats [1.2.0]
[02:34:11] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend or softdepend of this plugin.
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[02:34:11] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.30 which is not a depend or softdepend of this plugin.
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[02:34:11] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[02:34:11] [Server thread/INFO]: 10 placeholder hook(s) registered!
[02:34:13] [Server thread/INFO]:  
[02:34:13] [Server thread/INFO]:  [LifestealCore] New update available!
[02:34:13] [Server thread/INFO]:  Current version: Build 6c with latest being Build 7!
[02:34:13] [Server thread/INFO]:  
[02:34:13] [Server thread/INFO]:  SpigotMC -> https://norska.dev/r/spigot/lsc/
[02:34:13] [Server thread/INFO]:  Polymart -> https://norska.dev/r/polymart/lsc/
[02:34:13] [Server thread/INFO]:  
[02:34:13] [User Authenticator #0/INFO]: UUID of player WoolOrange70164 is 6bc4b8af-3d81-4117-b53f-f71d26462e19
[02:34:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4045cbe4[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@5906d1d]},legacy=false] (/173.240.0.217:40050): You are not whitelisted on this server!
[02:34:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4045cbe4[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@5906d1d]},legacy=false] (/173.240.0.217:40050): You are not whitelisted on this server!
[02:34:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@4045cbe4[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@5906d1d]},legacy=false] (/173.240.0.217:40050) lost connection: You are not whitelisted on this server!
[02:34:23] [User Authenticator #0/INFO]: UUID of player WoolOrange70164 is 6bc4b8af-3d81-4117-b53f-f71d26462e19
[02:34:24] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1f37023c[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@4f26a2e5]},legacy=false] (/173.240.0.217:40052): You are not whitelisted on this server!
[02:34:24] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1f37023c[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@4f26a2e5]},legacy=false] (/173.240.0.217:40052): You are not whitelisted on this server!
[02:34:24] [Server thread/INFO]: com.mojang.authlib.GameProfile@1f37023c[id=6bc4b8af-3d81-4117-b53f-f71d26462e19,name=WoolOrange70164,properties={textures=[com.mojang.authlib.properties.Property@4f26a2e5]},legacy=false] (/173.240.0.217:40052) lost connection: You are not whitelisted on this server!
[02:34:31] [User Authenticator #0/INFO]: UUID of player DaltonsMC is 01b4762e-038d-4adf-afb7-892f3e817e62
[02:34:31] [Server thread/INFO]: DaltonsMC[/55.15.131.113:52816] logged in with entity id 161 at ([world]93.28794508718964, 70.0, -793.2952192083704)
[02:34:31] [Server thread/INFO]: (+) DaltonsMC
[02:34:31] [pool-27-thread-1/WARN]: Exception in thread "pool-27-thread-1" java.lang.reflect.InaccessibleObjectException: Unable to make field private final int java.lang.Integer.value accessible: module java.base does not "opens java.lang" to unnamed module @1ab13584
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_L(Vulcan__i.java:588)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.lambda$getField$2(Vulcan__i.java:575)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_j(Vulcan__i.java:575)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_x(Vulcan__i.java:289)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.readInt(Vulcan__i.java:195)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan_hO.Vulcan_Q(Vulcan_hO.java:55)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_nN.Vulcan_x(Vulcan_nN.java:925)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_nN.Vulcan__t(Vulcan_nN.java:910)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_mH.Vulcan_x(Vulcan_mH.java:50)
[02:34:31] [pool-27-thread-1/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_n_.lambda$onPacketPlaySend$1(Vulcan_n_.java:70)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[02:34:31] [pool-27-thread-1/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:34:31] [pool-27-thread-2/WARN]: Exception in thread "pool-27-thread-2" java.lang.reflect.InaccessibleObjectException: Unable to make field private final int java.lang.Integer.value accessible: module java.base does not "opens java.lang" to unnamed module @1ab13584
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:354)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.lang.reflect.AccessibleObject.checkCanSetAccessible(AccessibleObject.java:297)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.lang.reflect.Field.checkCanSetAccessible(Field.java:178)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.lang.reflect.Field.setAccessible(Field.java:172)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_L(Vulcan__i.java:588)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.lambda$getField$2(Vulcan__i.java:575)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_j(Vulcan__i.java:575)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.Vulcan_x(Vulcan__i.java:289)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan__i.readInt(Vulcan__i.java:195)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//io.github.repooper.packetevents.packetwrappers.Vulcan_hO.Vulcan_Q(Vulcan_hO.java:55)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_nN.Vulcan_x(Vulcan_nN.java:925)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_nN.Vulcan__t(Vulcan_nN.java:910)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_mH.Vulcan_x(Vulcan_mH.java:50)
[02:34:31] [pool-27-thread-2/WARN]:     at Vulcan-2.7.0.jar//me.frep.vulcan.spigot.Vulcan_n_.lambda$onPacketPlaySend$1(Vulcan_n_.java:70)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
[02:34:31] [pool-27-thread-2/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[02:34:33] [Server thread/ERROR]: [com.fastasyncworldedit.bukkit.FaweBukkit] Persistent Brushes Failed
java.lang.NullPointerException: null
    at com.google.gson.internal.$Gson$Preconditions.checkNotNull($Gson$Preconditions.java:47) ~[gson-2.10.jar:?]
    at com.fastasyncworldedit.bukkit.util.ItemUtil.<init>(ItemUtil.java:32) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.fastasyncworldedit.bukkit.FaweBukkit.getItemUtil(FaweBukkit.java:146) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.fastasyncworldedit.bukkit.util.BukkitItemStack.getNativeItem(BukkitItemStack.java:37) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1161) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.sk89q.worldedit.LocalSession.getTool(LocalSession.java:1154) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.fastasyncworldedit.bukkit.listener.BrushListener.onPlayerMove(BrushListener.java:61) ~[FastAsyncWorldEdit-Bukkit-2.4.11-SNAPSHOT-322.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor21.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:80) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:git-Paper-346]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:672) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleMovePlayer(ServerGamePacketListenerImpl.java:1593) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundMovePlayerPacket.handle(ServerboundMovePlayerPacket.java:29) ~[?:?]
    at net.minecraft.network.protocol.game.ServerboundMovePlayerPacket$Rot.handle(ServerboundMovePlayerPacket.java:114) ~[?:?]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$1(PacketUtils.java:51) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[?:?]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1445) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1173) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:34:37] [Server thread/INFO]: DaltonsMC issued server command: /vers
[02:34:39] [Server thread/INFO]: DaltonsMC issued server command: /version
[02:34:50] [Server thread/INFO]: DaltonsMC issued server command: /pl
[02:35:08] [Craft Scheduler Thread - 31 - BuycraftX/INFO]: [BuycraftX] Sending 1 analytic events
[02:35:55] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload ExcellentCrates
[02:35:55] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.5
[02:35:55] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[02:35:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.5]
[02:35:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[02:35:56] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@3e435590
[02:35:56] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[02:35:56] [Server thread/ERROR]: Error occurred while enabling ExcellentCrates v4.1.5 (Is it up to date?)
java.lang.NoSuchMethodError: 'void su.nexmedia.engine.config.ConfigManager.extractResources(java.lang.String)'
    at su.nightexpress.excellentcrates.key.KeyManager.onLoad(KeyManager.java:33) ~[ExcellentCrates-4.1.5.jar:?]
    at su.nexmedia.engine.api.manager.AbstractManager.setup(AbstractManager.java:21) ~[NexEngine (3).jar:?]
    at su.nightexpress.excellentcrates.ExcellentCrates.enable(ExcellentCrates.java:54) ~[ExcellentCrates-4.1.5.jar:?]
    at su.nexmedia.engine.NexPlugin.loadManagers(NexPlugin.java:213) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.onEnable(NexPlugin.java:78) ~[NexEngine (3).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.load(PluginUtil.java:309) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.load(PluginUtil.java:267) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.reload(PluginUtil.java:393) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.command.ReloadCommand.execute(ReloadCommand.java:122) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.PlugManCommandHandler.onCommand(PlugManCommandHandler.java:95) ~[PlugManX.jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:35:56] [Server thread/INFO]: [ExcellentCrates] Disabling ExcellentCrates v4.1.5
[02:35:56] [Server thread/ERROR]: Error occurred while disabling ExcellentCrates v4.1.5 (Is it up to date?)
java.lang.NoClassDefFoundError: eu/decentsoftware/holograms/api/holograms/Hologram
    at su.nightexpress.excellentcrates.hooks.hologram.HologramHandlerDecent.shutdown(HologramHandlerDecent.java:39) ~[ExcellentCrates-4.1.5.jar:?]
    at su.nightexpress.excellentcrates.ExcellentCrates.disable(ExcellentCrates.java:82) ~[ExcellentCrates-4.1.5.jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:226) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine (3).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:375) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.load(PluginUtil.java:309) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.load(PluginUtil.java:267) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.reload(PluginUtil.java:393) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.command.ReloadCommand.execute(ReloadCommand.java:122) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.PlugManCommandHandler.onCommand(PlugManCommandHandler.java:95) ~[PlugManX.jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: eu.decentsoftware.holograms.api.holograms.Hologram
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 38 more
[02:35:58] [Server thread/INFO]: DaltonsMC issued server command: /pl
[02:36:02] [Server thread/INFO]: DaltonsMC issued server command: /excellentcrates
[02:36:02] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Unhandled exception executing 'excellentcrates' in su.nexmedia.engine.command.CommandRegister(excellentcrates)
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:165) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    at su.nightexpress.excellentcrates.command.KeyCommand.getDescription(KeyCommand.java:44) ~[ExcellentCrates-4.1.5.jar:?]
    at su.nexmedia.engine.api.command.AbstractCommand.lambda$replacePlaceholders$1(AbstractCommand.java:68) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.command.list.HelpSubCommand.onExecute(HelpSubCommand.java:44) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.command.AbstractCommand.execute(AbstractCommand.java:181) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.command.GeneralCommand.onCommand(GeneralCommand.java:86) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.command.CommandRegister.execute(CommandRegister.java:121) ~[NexEngine (3).jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    ... 22 more
[02:36:08] [Craft Scheduler Thread - 27 - TradeSystem/INFO]: -----< TradeSystem >-----
[02:36:08] [Craft Scheduler Thread - 27 - TradeSystem/INFO]: New update available [New Year's Update].
[02:36:08] [Craft Scheduler Thread - 27 - TradeSystem/INFO]: Download it on

https://www.spigotmc.org/resources/58434/update?update=485432

[02:36:08] [Craft Scheduler Thread - 27 - TradeSystem/INFO]: ------------------------
[02:36:09] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:36:09] [Craft Scheduler Thread - 4 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:38:09] [Craft Scheduler Thread - 5 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:38:09] [Craft Scheduler Thread - 5 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:38:12] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload NexEngine
[02:38:12] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.7 build-10/12/2022
[02:38:12] [Server thread/ERROR]: Error occurred while disabling NexEngine v2.2.7 build-10/12/2022 (Is it up to date?)
java.lang.BootstrapMethodError: java.lang.IllegalStateException: zip file closed
    at su.nightexpress.excellentcrates.hooks.hologram.HologramHandlerDecent.shutdown(HologramHandlerDecent.java:41) ~[ExcellentCrates-4.0.6 (3).jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at su.nexmedia.engine.hooks.HookManager.shutdown(HookManager.java:35) ~[NexEngine (3).jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at su.nexmedia.engine.hooks.HookManager.onShutdown(HookManager.java:31) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.api.manager.AbstractManager.shutdown(AbstractManager.java:28) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexEngine.disable(NexEngine.java:110) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:226) ~[NexEngine (3).jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:84) ~[NexEngine (3).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.unload(PluginUtil.java:465) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.reload(PluginUtil.java:392) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.command.ReloadCommand.execute(ReloadCommand.java:122) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.PlugManCommandHandler.onCommand(PlugManCommandHandler.java:95) ~[PlugManX.jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalStateException: zip file closed
    at java.util.zip.ZipFile.ensureOpen(ZipFile.java:831) ~[?:?]
    at java.util.zip.ZipFile.getEntry(ZipFile.java:330) ~[?:?]
    at java.util.jar.JarFile.getEntry(JarFile.java:518) ~[?:?]
    at java.util.jar.JarFile.getJarEntry(JarFile.java:473) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.findClass(PluginClassLoader.java:189) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:587) ~[?:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:129) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 40 more
[02:38:12] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[02:38:12] [Server thread/INFO]: Downloading https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.pom
[02:38:12] [Server thread/INFO]: Downloading https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[02:38:12] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[02:38:12] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[02:38:12] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[02:38:12] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.8 build-29/12/2022
[02:38:12] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[02:38:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[02:38:12] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[02:38:12] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[02:38:12] [Server thread/INFO]: [NexEngine] Plugin loaded in 51 ms!
[02:38:14] [Server thread/INFO]: DaltonsMC issued server command: /pl
[02:38:59] [pool-10-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 3ms
[02:40:09] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:40:09] [Craft Scheduler Thread - 40 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:42:08] [Server thread/INFO]: 
[02:42:08] [Server thread/INFO]:  Do /buy for our server store!
[02:42:08] [Server thread/INFO]: All purchases support the server!
[02:42:08] [Server thread/INFO]: 
[02:42:08] [Server thread/INFO]: Do /discord for our server discord!
[02:42:08] [Server thread/INFO]: 
[02:42:09] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:42:09] [Craft Scheduler Thread - 41 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:43:59] [pool-10-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 9ms
[02:44:09] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:44:09] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:46:09] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:46:09] [Craft Scheduler Thread - 15 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:48:09] [Craft Scheduler Thread - 52 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:48:10] [Craft Scheduler Thread - 52 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:48:59] [pool-10-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 1ms
[02:50:08] [Server thread/INFO]: 
[02:50:08] [Server thread/INFO]:  Do /buy for our server store!
[02:50:08] [Server thread/INFO]: All purchases support the server!
[02:50:08] [Server thread/INFO]: 
[02:50:08] [Server thread/INFO]: Do /discord for our server discord!
[02:50:08] [Server thread/INFO]: 
[02:50:10] [Craft Scheduler Thread - 60 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:50:10] [Craft Scheduler Thread - 60 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:52:10] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:52:10] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:53:59] [pool-10-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 2ms
[02:54:10] [Craft Scheduler Thread - 59 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:54:10] [Craft Scheduler Thread - 59 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:55:06] [Server thread/INFO]: DaltonsMC issued server command: /citizens
[02:55:06] [Server thread/ERROR]: null
org.bukkit.command.CommandException: Cannot execute command 'citizens' in plugin Citizens v2.0.24-SNAPSHOT (build 1605) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[02:55:08] [Server thread/INFO]: DaltonsMC issued server command: /pl
[02:56:10] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:56:10] [Craft Scheduler Thread - 65 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:58:08] [Server thread/INFO]: 
[02:58:08] [Server thread/INFO]:  Do /buy for our server store!
[02:58:08] [Server thread/INFO]: All purchases support the server!
[02:58:08] [Server thread/INFO]: 
[02:58:08] [Server thread/INFO]: Do /discord for our server discord!
[02:58:08] [Server thread/INFO]: 
[02:58:10] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[02:58:10] [Craft Scheduler Thread - 58 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[02:58:13] [Server thread/INFO]: Automatic saving is now disabled
[02:58:33] [Server thread/INFO]: Automatic saving is now enabled
[02:58:59] [pool-10-thread-1/INFO]: [LifestealCore] [Scheduled Save] Saved data to file... 1ms
[03:00:10] [Craft Scheduler Thread - 50 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[03:00:10] [Craft Scheduler Thread - 50 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[03:00:58] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload DecentHolograms
[03:00:58] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.9
[03:00:59] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[03:00:59] [Craft Scheduler Thread - 69 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[03:00:59] [Craft Scheduler Thread - 69 - DecentHolograms/INFO]: [DecentHolograms] Loaded 11 holograms!
[03:01:04] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload NexEngine
[03:01:04] [Server thread/INFO]: [NexEngine] Disabling NexEngine v2.2.8 build-29/12/2022
[03:01:04] [Server thread/ERROR]: Error occurred while disabling NexEngine v2.2.8 build-29/12/2022 (Is it up to date?)
java.lang.NoClassDefFoundError: net/citizensnpcs/api/trait/TraitInfo
    at su.nexmedia.engine.hooks.external.citizens.CitizensHook.unregisterTraits(CitizensHook.java:84) ~[NexEngine (5).jar:?]
    at su.nexmedia.engine.NexPlugin.unloadManagers(NexPlugin.java:223) ~[NexEngine (5).jar:?]
    at su.nexmedia.engine.NexPlugin.onDisable(NexPlugin.java:82) ~[NexEngine (5).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.unload(PluginUtil.java:465) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.util.PluginUtil.reload(PluginUtil.java:392) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.command.ReloadCommand.execute(ReloadCommand.java:122) ~[PlugManX.jar:?]
    at com.rylinaux.plugman.PlugManCommandHandler.onCommand(PlugManCommandHandler.java:95) ~[PlugManX.jar:?]
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:45) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:155) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.dispatchCommand(CraftServer.java:929) ~[paper-1.19.3.jar:git-Paper-346]
    at org.bukkit.craftbukkit.v1_19_R2.command.BukkitCommandWrapper.run(BukkitCommandWrapper.java:64) ~[paper-1.19.3.jar:git-Paper-346]
    at com.mojang.brigadier.CommandDispatcher.execute(CommandDispatcher.java:264) ~[paper-1.19.3.jar:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:313) ~[?:?]
    at net.minecraft.commands.Commands.performCommand(Commands.java:297) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performChatCommand(ServerGamePacketListenerImpl.java:2286) ~[?:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$20(ServerGamePacketListenerImpl.java:2248) ~[?:?]
    at net.minecraft.util.thread.BlockableEventLoop.lambda$submitAsync$0(BlockableEventLoop.java:59) ~[?:?]
    at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1341) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1318) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1311) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1289) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1177) ~[paper-1.19.3.jar:git-Paper-346]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-346]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: net.citizensnpcs.api.trait.TraitInfo
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:177) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:124) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?]
    ... 34 more
[03:01:04] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[03:01:04] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[03:01:04] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[03:01:04] [Server thread/INFO]: [NexEngine] Loaded library /home/minecraft/server/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[03:01:04] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.8 build-29/12/2022
[03:01:04] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[03:01:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[03:01:04] [Server thread/INFO]: [NexEngine] Successfully hooked with EssentialsX Economy economy
[03:01:04] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[03:01:04] [Server thread/INFO]: [NexEngine] Plugin loaded in 38 ms!
[03:01:07] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload ExcellentCrates
[03:01:07] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v4.1.5
[03:01:07] [Server thread/INFO]: [ExcellentCrates] Powered by: NexEngine
[03:01:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: excellentcrates [4.1.5]
[03:01:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Starting...
[03:01:07] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-2 - Added connection org.sqlite.jdbc4.JDBC4Connection@6db58697
[03:01:07] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-2 - Start completed.
[03:01:07] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crate keys.
[03:01:08] [Server thread/INFO]: [ExcellentCrates] Loaded 0 crate menus.
[03:01:08] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 385 ms!
[03:01:08] [Craft Scheduler Thread - 61 - ExcellentCrates/INFO]: [ExcellentCrates] Auto-save: Saved 1 online users | 0 offline users.
[03:01:08] [Server thread/INFO]: [ExcellentCrates] Loaded 7 crates.
[03:01:14] [Server thread/INFO]: DaltonsMC issued server command: /plugman reload RoseStacker
[03:01:14] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.3
[03:01:14] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.1.0.50-SNAPSHOT
[03:01:14] [Server thread/INFO]: [RoseStacker] Data handler connected using SQLite.
[03:01:14] [Server thread/INFO]: [RoseStacker] Paper's new chunk system detected, using it to spawn entities
[03:01:15] [Server thread/INFO]: [RoseStacker] Hijacking world RandomSources to allow async mob creation...
[03:01:15] [Server thread/INFO]: [RoseStacker] Detected server API version as v1_19_R2
[03:01:15] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rosestacker [1.5.3]
[03:01:15] [Craft Scheduler Thread - 58 - RoseStacker/INFO]: [RoseStacker] Fetched 125 translation locales.
[03:01:16] [Server thread/INFO]: DaltonsMC issued server command: /pl