Paste #117213: log

Date: 2023/11/05 14:30:41 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[21:53:17] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[21:53:20] [ServerMain/INFO]: Loaded 7 recipes
[21:53:21] [Server thread/INFO]: Starting minecraft server version 1.20.2
[21:53:21] [Server thread/INFO]: Loading properties
[21:53:21] [Server thread/INFO]: This server is running Paper version git-Paper-279 (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 274e54b)
[21:53:22] [Server thread/INFO]: Server Ping Player Sample Count: 12
[21:53:22] [Server thread/INFO]: Using 4 threads for Netty based IO
[21:53:22] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[21:53:23] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 3 worker threads, and gen parallelism of 3 threads
[21:53:23] [Server thread/INFO]: Default game type: SURVIVAL
[21:53:23] [Server thread/INFO]: Generating keypair
[21:53:23] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[21:53:24] [Server thread/INFO]: Using epoll channel type
[21:53:24] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[21:53:24] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[21:53:24] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins/CMI-9.6.5.3.jar' in 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'CMI'.
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[21:53:24] [Server thread/ERROR]: [ModernPluginLoadingStrategy] Could not load 'plugins/Jobs5.2.1.2.jar' in 'plugins'
org.bukkit.plugin.UnknownDependencyException: Unknown/missing dependency plugins: [CMILib]. Please download and install these plugins to run 'Jobs'.
    at io.papermc.paper.plugin.entrypoint.strategy.modern.ModernPluginLoadingStrategy.loadProviders(ModernPluginLoadingStrategy.java:82) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.storage.SimpleProviderStorage.enter(SimpleProviderStorage.java:39) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.entrypoint.LaunchEntryPointHandler.enter(LaunchEntryPointHandler.java:36) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.loadPlugins(CraftServer.java:512) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:273) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loading 3 libraries... please wait
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.2/jackson-dataformat-yaml-2.15.2.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/fasterxml/jackson/core/jackson-databind/2.15.2/jackson-databind-2.15.2.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/fasterxml/jackson/core/jackson-annotations/2.15.2/jackson-annotations-2.15.2.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/yaml/snakeyaml/2.0/snakeyaml-2.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/fasterxml/jackson/core/jackson-core/2.15.2/jackson-core-2.15.2.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:53:25] [Server thread/INFO]: [SpigotLibraryLoader] [SchematicBrushReborn] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:53:26] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loading 1 libraries... please wait
[21:53:26] [Server thread/INFO]: [SpigotLibraryLoader] [BigDoors] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/bytebuddy/byte-buddy/1.14.8/byte-buddy-1.14.8.jar
[21:53:26] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loading 15 libraries... please wait
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/lingala/zip4j/zip4j/2.11.5/zip4j-2.11.5.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/flywaydb/flyway-mysql/9.19.4/flyway-mysql-9.19.4.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/flywaydb/flyway-core/9.19.4/flyway-core-9.19.4.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/spongepowered/configurate-yaml/4.1.2/configurate-yaml-4.1.2.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/yaml/snakeyaml/1.28/snakeyaml-1.28.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-legacy/4.13.0/adventure-text-serializer-legacy-4.13.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-nbt/4.13.0/adventure-nbt-4.13.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.0/adventure-text-serializer-gson-legacy-impl-4.13.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jooq/jooq/3.18.4/jooq-3.18.4.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/io/r2dbc/r2dbc-spi/1.0.0.RELEASE/r2dbc-spi-1.0.0.RELEASE.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/reactivestreams/reactive-streams/1.0.3/reactive-streams-1.0.3.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jooq/jooq-codegen/3.18.4/jooq-codegen-3.18.4.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jooq/jooq-meta/3.18.4/jooq-meta-3.18.4.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/jakarta/xml/bind/jakarta.xml.bind-api/3.0.0/jakarta.xml.bind-api-3.0.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/sun/activation/jakarta.activation/2.0.0/jakarta.activation-2.0.0.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-rng-client-api/1.5/commons-rng-client-api-1.5.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-rng-core/1.5/commons-rng-core-1.5.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-rng-sampling/1.5/commons-rng-sampling-1.5.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-rng-simple/1.5/commons-rng-simple-1.5.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/github/ben-manes/caffeine/caffeine/3.1.6/caffeine-3.1.6.jar
[21:53:32] [Server thread/INFO]: [SpigotLibraryLoader] [TradingCards] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/checkerframework/checker-qual/3.33.0/checker-qual-3.33.0.jar
[21:53:33] [Server thread/WARN]: Legacy plugin RankVouchers v3.0 does not specify an api-version.
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loading 4 libraries... please wait
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-api/4.13.0/adventure-api-4.13.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/adventure-key/4.13.0/adventure-key-4.13.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/commons-io/commons-io/2.10.0/commons-io-2.10.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/maven/maven-artifact/3.6.0/maven-artifact-3.6.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [FacilisCommon] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/codehaus/plexus/plexus-utils/3.1.0/plexus-utils-3.1.0.jar
[21:53:33] [Server thread/WARN]: Legacy plugin Invsee v1.0.0 does not specify an api-version.
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loading 11 libraries... please wait
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/googlecode/concurrentlinkedhashmap/concurrentlinkedhashmap-lru/1.4.2/concurrentlinkedhashmap-lru-1.4.2.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/github/ben-manes/caffeine/caffeine/3.0.5/caffeine-3.0.5.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/io/timeandspace/smoothie-map/2.0.2/smoothie-map-2.0.2.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/io/timeandspace/jpsg-core/1.4/jpsg-core-1.4.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/guava/guava/31.0.1-jre/guava-31.0.1-jre.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/zeroturnaround/zt-zip/1.14/zt-zip-1.14.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/slf4j/slf4j-api/1.6.6/slf4j-api-1.6.6.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/it/unimi/dsi/fastutil/8.5.6/fastutil-8.5.6.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/org/ow2/asm/asm/9.2/asm-9.2.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/rhino/js/1.7R2/js-1.7R2.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/bsf/bsf/2.4.0/bsf-2.4.0.jar
[21:53:33] [Server thread/INFO]: [SpigotLibraryLoader] [Iris] Loaded library /home/minecraft/multicraft/servers/server806648/libraries/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar
[21:53:33] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.104
[21:53:34] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.5
[21:53:34] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[21:53:34] [Server thread/INFO]: [DeluxeHub] Loading server plugin DeluxeHub v3.5.5
[21:53:34] [Server thread/INFO]: [EnchantsSquared] Loading server plugin EnchantsSquared v2.5.7
[21:53:34] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
[21:53:36] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@67d20873]
[21:53:36] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+17-79449ef
[21:53:36] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.1-SNAPSHOT-673
[21:53:38] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[21:53:38] [Server thread/INFO]: [IridiumSkyblock] Loading server plugin IridiumSkyblock v4.0.7
[21:53:40] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.33-SNAPSHOT (build 3219)
[21:53:40] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[21:53:40] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+17-79449ef
[21:53:40] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.99.6.0
[21:53:40] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
[21:53:40] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[21:53:40] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[21:53:40] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[21:53:40] [Server thread/INFO]: [SaberFactions] Loading server plugin Factions v1.6.9.5-4.1.3-STABLE
[21:53:40] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.224
[21:53:40] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[21:53:40] [Server thread/INFO]: [TownyChat] Loading server plugin TownyChat v0.109
[21:53:40] [Server thread/INFO]: [LoneLibs] Loading server plugin LoneLibs v1.0.27
[21:53:40] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[21:53:40] [Server thread/INFO]: [GCore] Loading server plugin GCore v8.48.0
[21:53:40] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.11
[21:53:40] [Server thread/INFO]: [SchematicBrushReborn] Debug logger initialized. Log Level: INFO
[21:53:40] [Server thread/INFO]: [SchematicBrushReborn] Loading server plugin SchematicBrushReborn v2.5.3
[21:53:40] [Server thread/INFO]: [SchematicBrushReborn] Registered entry of type yaml with de.eldoria.schematicbrush.storage.YamlStorage at Storage Registry
[21:53:40] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.4
[21:53:40] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v13.6.4
[21:53:40] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[21:53:40] [Server thread/INFO]: [JEXT] Loading server plugin JukeboxExtendedReborn v1.2.8
[21:53:40] [Server thread/INFO]: [squaremap] Loading server plugin squaremap v1.2.1
[21:53:40] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.2
[21:53:40] [Server thread/INFO]: [NashornJs] Loading server plugin NashornJs v1.1.3
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name nashorn
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name Nashorn
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name js
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name JS
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name JavaScript
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name javascript
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name ECMAScript
[21:53:40] [Server thread/INFO]: [NashornJs] Registered Nashorn engine with name ecmascript
[21:53:40] [Server thread/INFO]: [BigDoors] Loading server plugin BigDoors vAlpha 0.1.8.48
[21:53:40] [Server thread/INFO]: [ItemsAdder] Loading server plugin ItemsAdder v3.6.2-beta-r2
[21:53:41] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[21:53:41] [Server thread/INFO]: [BedWars] Loading server plugin BedWars v0.2.30
[21:53:41] [Server thread/INFO]: [TradingCards] Loading server plugin TradingCards v5.7.19
[21:53:41] [Server thread/INFO]: [WESV] Loading server plugin WorldEditSelectionVisualizer v2.1.5
[21:53:41] [Server thread/INFO]: [GSlotMachine] Loading server plugin GSlotMachine v3.1.1
[21:53:41] [Server thread/INFO]: [GWarp] Loading server plugin GWarp v[2.13.0.2]
[21:53:41] [Server thread/INFO]: [Colored Signs] Loading server plugin ColoredSigns v6.2.1.212
[21:53:41] [Server thread/INFO]: [GPFlags] Loading server plugin GPFlags v5.12.9
[21:53:41] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.7
[21:53:41] [Server thread/INFO]: [TNTRun] Loading server plugin TNTRun v2.4.5-SNAPSHOT
[21:53:41] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[21:53:41] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.3
[21:53:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[21:53:41] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in NBTAPI. The NBT-API will try to work as good as it can! Some functions may not work!
[21:53:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[21:53:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'LuckPerms' to create a bStats instance!
[21:53:41] [Server thread/INFO]: [BetterRTPAddons] Loading server plugin BetterRTPAddons v1.8.8
[21:53:41] [Server thread/INFO]: [GridSelector] Debug logger initialized. Log Level: INFO
[21:53:41] [Server thread/INFO]: [GridSelector] Loading server plugin GridSelector v1.3.0
[21:53:41] [Server thread/INFO]: [EggWars] Loading server plugin EggWars v6.1.2
[21:53:41] [Server thread/INFO]: [YamipaPlugin] Loading server plugin YamipaPlugin v1.2.11
[21:53:41] [Server thread/INFO]: [AdvancedKeep] Loading server plugin AdvancedKeep v2.0.1
[21:53:41] [Server thread/INFO]: [AdvancedKeep] [Integration] Hooked to WorldGuard
[21:53:41] [Server thread/INFO]: [CrateReloaded] Loading server plugin CrateReloaded v2.3.1
[21:53:41] [Server thread/INFO]: [Skywars] Loading server plugin Skywars v5.6.22
[21:53:41] [Server thread/INFO]: [LWC] Loading server plugin LWC v2.3.1
[21:53:41] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v11.1.1
[21:53:41] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.4.1
[21:53:41] [Server thread/INFO]: [ZombieApocalypse] Loading server plugin ZombieApocalypse v1.4.8
[21:53:41] [Server thread/INFO]: [JukeLooper] Loading server plugin JukeLooper v2.5
[21:53:41] [Server thread/INFO]: [HeadHunterPlugin] Loading server plugin HeadHunterPlugin v2.0.7
[21:53:41] [Server thread/INFO]: [RankVouchers] Loading server plugin RankVouchers v3.0
[21:53:41] [Server thread/INFO]: [GreetingPlugin] Loading server plugin GreetingPlugin v2.0-SNAPSHOT
[21:53:41] [Server thread/INFO]: [Waypoints] Loading server plugin Waypoints v4.2.0
[21:53:41] [Thread-12/WARN]: [NBTAPI] [NBTAPI] The NBT-API in 'NBTAPI' seems to be outdated!
[21:53:41] [Thread-12/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.11.3' Newest Version: 2.12.1'
[21:53:41] [Thread-12/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[21:53:42] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[21:53:42] [Server thread/INFO]: [TreeAssist] Loading server plugin TreeAssist v7.3.49
[21:53:42] [Server thread/INFO]: [TreeAssist] Loading main config file: /config.yml
[21:53:42] [Server thread/INFO]: [MusicBox] Loading server plugin MusicBox v2.0.13
[21:53:42] [Server thread/INFO]: [Guilds] Loading server plugin Guilds v3.5.7.0
[21:53:42] [Server thread/INFO]: [Guilds] Loading Libraries...
[21:53:42] [Server thread/INFO]: [Guilds] Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
[21:53:43] [Server thread/INFO]: [Guilds] Loaded libraries in 0.873 seconds
[21:53:43] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.4
[21:53:43] [Server thread/INFO]: [BigDoorsOpener] Debug logger initialized. Log Level: INFO
[21:53:43] [Server thread/INFO]: [BigDoorsOpener] Loading server plugin BigDoorsOpener v2.5.2
[21:53:43] [Server thread/INFO]: [LPC] Loading server plugin LPC v3.6.0
[21:53:43] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[21:53:43] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[21:53:43] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[21:53:43] [Server thread/INFO]: [Images] Loading server plugin Images v2.3.1
[21:53:43] [Server thread/INFO]: [FacilisCommon] Loading server plugin FacilisCommon v1.0.2-SNAPSHOT
[21:53:43] [Server thread/INFO]: [Invsee] Loading server plugin Invsee v1.0.0
[21:53:43] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.5.1
[21:53:43] [Server thread/INFO]: [Iris] Loading server plugin Iris v2.8.0-1.20.1
[21:53:43] [Server thread/INFO]: [Arcade] Loading server plugin Arcade v1.55
[21:53:43] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.5
[21:53:43] [Server thread/INFO]: [FishRewards] Loading server plugin FishRewards v1.2.4
[21:53:43] [Server thread/INFO]: [Vanillahungergames] Loading server plugin Vanillahungergames v2.4
[21:53:43] [Server thread/INFO]: [NotBounties] Loading server plugin NotBounties v1.12.1
[21:53:43] [Server thread/INFO]: [ImageOnMap] Loading server plugin ImageOnMap v4.2.2
[21:53:43] [Server thread/INFO]: [VoxelSniper] Loading server plugin VoxelSniper v8.12.4
[21:53:43] [Server thread/INFO]: [UltimateShop] Loading server plugin UltimateShop v1.7.7
[21:53:43] [Server thread/INFO]: [TavernBard] Loading server plugin TavernBard v1.2
[21:53:43] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[21:53:43] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.104
[21:53:45] [Server thread/INFO]:         __    
[21:53:45] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.104
[21:53:45] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[21:53:45] [Server thread/INFO]: 
[21:53:45] [Server thread/INFO]: [LuckPerms] Loading configuration...
[21:53:46] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[21:53:47] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[21:53:48] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[21:53:49] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5819ms)
[21:53:49] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[21:53:49] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[21:53:49] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[21:53:49] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[21:53:49] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[21:53:49] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.8.2-SNAPSHOT-581;186d24b
[21:53:49] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[21:53:49] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[21:53:49] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[21:53:50] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[21:53:50] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R2.PaperweightFaweAdapter as the Bukkit adapter
[21:53:52] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.1-SNAPSHOT-673
[21:53:52] [Server thread/INFO]: [LoneLibs] Enabling LoneLibs v1.0.27
[21:53:52] [Server thread/INFO]: [squaremap] Enabling squaremap v1.2.1
[21:53:52] [ForkJoinPool.commonPool-worker-1/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 24 build(s) out of date.
You are running build 581, the latest version is build 605.
Update at https://www.spigotmc.org/resources/13932/
[21:53:54] [Server thread/INFO]: [io.undertow] starting server: Undertow - 2.3.8.Final
[21:53:54] [Server thread/INFO]: [org.xnio] XNIO version 3.8.8.Final
[21:53:54] [Server thread/INFO]: [org.xnio.nio] XNIO NIO Implementation Version 3.8.8.Final
[21:53:55] [Server thread/INFO]: [org.jboss.threads] JBoss Threads version 3.5.0.Final
[21:53:55] [Server thread/INFO]: [squaremap] Internal webserver running on 0.0.0.0:8080
[21:53:55] [Server thread/INFO]: [NashornJs] Enabling NashornJs v1.1.3
[21:53:55] [Server thread/INFO]: [LWC] Enabling LWC v2.3.1
[21:53:55] [Server thread/INFO]: [LWC] Connecting to SQLite
[21:53:55] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v11.1.1
[21:53:56] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[21:53:56] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[21:53:56] [Server thread/INFO]: [TerraformGenerator] Detected version: v1_20_R2, number: 20.2
[21:53:56] [Server thread/INFO]: [Iris] Enabling Iris v2.8.0-1.20.1
[21:53:56] [Server thread/INFO]: [Iris] [STDOUT] [Iris]: Locating NMS Binding for v1_20_R2
[21:53:56] [Server thread/WARN]: Nag author(s): '[cyberpwn, NextdoorPsycho, Vatuu]' of 'Iris v2.8.0-1.20.1' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[21:53:56] [Server thread/INFO]: [Iris] [STDOUT] [Iris]: Craftbukkit v1_20_R2  NMSBinding1X Successfully Bound
[21:53:56] [Server thread/INFO]: [Iris] [STDOUT] [Iris]: Note: Some features of Iris may not work the same since you are on an unsupported version of Minecraft.
[21:53:56] [Server thread/INFO]: [Iris] [STDOUT] [Iris]: Note: If this is a new version, expect an update soon.
[21:53:57] [Server thread/INFO]: [Iris]: Loading ExternalDataProvider...
[21:53:57] [Server thread/INFO]: [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
[21:53:57] [Server thread/INFO]: [Iris]: ============================================
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: Iris is not compatible with this version of Minecraft.
Please use 1.20.1 or use an older version of Iris.
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: =
[21:53:57] [Server thread/INFO]: [Iris]: ============================================
[21:53:57] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[21:53:57] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[21:53:57] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[21:53:58] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[21:53:58] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.5
[21:53:58] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[21:53:58] [Server thread/WARN]: It seems like you're running on paper.
[21:53:58] [Server thread/WARN]: This may cause issues.
[21:53:58] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[21:53:58] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[21:53:58] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[21:53:58] [Server thread/INFO]: Preparing level "lobby"
[21:53:59] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[21:53:59] [Server thread/INFO]: Time elapsed: 371 ms
[21:54:00] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[21:54:00] [Server thread/INFO]: Time elapsed: 107 ms
[21:54:00] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[21:54:00] [Server thread/INFO]: Time elapsed: 123 ms
[21:54:00] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.5
[21:54:01] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[21:54:01] [Server thread/INFO]: [DeluxeHub] Enabling DeluxeHub v3.5.5
[21:54:01] [Server thread/INFO]: [DeluxeHub]  _   _            _          _    _ 
[21:54:01] [Server thread/INFO]: [DeluxeHub] | \ |_ |  | | \/ |_ |_| | | |_)   _)
[21:54:01] [Server thread/INFO]: [DeluxeHub] |_/ |_ |_ |_| /\ |_ | | |_| |_)   _)
[21:54:01] [Server thread/INFO]: [DeluxeHub] 
[21:54:01] [Server thread/INFO]: [DeluxeHub] Version: 3.5.5
[21:54:01] [Server thread/INFO]: [DeluxeHub] Author: ItsLewizzz
[21:54:01] [Server thread/INFO]: [DeluxeHub] 
[21:54:01] [Server thread/INFO]: [DeluxeHub]  Hooked into PlaceholderAPI
[21:54:01] [Server thread/INFO]: [DeluxeHub] Loaded custom menu 'serverselector'.
[21:54:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[21:54:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[21:54:02] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DeluxeHub' to create a bStats instance!
[21:54:02] [Server thread/INFO]: [DeluxeHub] Loaded 15 plugin modules.
[21:54:02] [Server thread/INFO]: [DeluxeHub] 
[21:54:02] [Server thread/INFO]: [DeluxeHub] Successfully loaded in 1026ms
[21:54:02] [Server thread/INFO]: [EnchantsSquared] Enabling EnchantsSquared v2.5.7
[21:54:02] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+17-79449ef
[21:54:04] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[21:54:04] [Server thread/INFO]: [Essentials] No kits found to migrate.
[21:54:04] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[21:54:04] [Server thread/INFO]: [Essentials] Using locale en_US
[21:54:04] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[21:54:04] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[21:54:04] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[21:54:04] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[21:54:04] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby) Fire spread is UNRESTRICTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) TNT ignition is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lighters are PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lava fire is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_nether) Fire spread is UNRESTRICTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_nether'
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_the_end) TNT ignition is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Lighters are PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Lava fire is PERMITTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] (lobby_the_end) Fire spread is UNRESTRICTED.
[21:54:05] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_the_end'
[21:54:05] [Server thread/INFO]: [WorldGuard] Loading region data...
[21:54:05] [Server thread/INFO]: [IridiumSkyblock] Enabling IridiumSkyblock v4.0.7
[21:54:06] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock
[21:54:09] [Server thread/INFO]: Time elapsed: 3092 ms
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) TNT ignition is PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lighters are PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Lava fire is PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock) Fire spread is UNRESTRICTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock'
[21:54:09] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_nether
[21:54:09] [Server thread/INFO]: Time elapsed: 193 ms
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) TNT ignition is PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lighters are PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Lava fire is PERMITTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_nether) Fire spread is UNRESTRICTED.
[21:54:09] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_nether'
[21:54:09] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_the_end
[21:54:10] [Server thread/INFO]: Time elapsed: 434 ms
[21:54:10] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) TNT ignition is PERMITTED.
[21:54:10] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lighters are PERMITTED.
[21:54:10] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Lava fire is PERMITTED.
[21:54:10] [Server thread/INFO]: [WorldGuard] (IridiumSkyblock_the_end) Fire spread is UNRESTRICTED.
[21:54:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'IridiumSkyblock_the_end'
[21:54:12] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'IridiumSkyblock_the_end'
[21:54:12] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'IridiumSkyblock_the_end'
[21:54:12] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'IridiumSkyblock_the_end'
[21:54:12] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'IridiumSkyblock_the_end' in 0.01s
[21:54:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[21:54:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[21:54:12] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'IridiumSkyblock' to create a bStats instance!
[21:54:12] [Server thread/INFO]: Preparing start region for dimension minecraft:iridiumskyblock_the_end
[21:54:12] [Server thread/INFO]: Time elapsed: 231 ms
[21:54:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iridiumskyblock [4.0.7]
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] Successfully registered Placeholders for PlaceholderAPI.
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] 
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] IridiumSkyblock Enabled!
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] 
[21:54:13] [Server thread/INFO]: [IridiumSkyblock] -------------------------------
[21:54:13] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.33-SNAPSHOT (build 3219)
[21:54:13] [Server thread/INFO]: [Citizens] Loading external libraries
[21:54:13] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[21:54:13] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[21:54:13] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[21:54:13] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[21:54:13] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[21:54:15] [Server thread/INFO]: Preparing start region for dimension minecraft:survival_world_end
[21:54:15] [Server thread/INFO]: Time elapsed: 704 ms
[21:54:15] [Server thread/INFO]: [WorldGuard] (survival_world_end) TNT ignition is PERMITTED.
[21:54:15] [Server thread/INFO]: [WorldGuard] (survival_world_end) Lighters are PERMITTED.
[21:54:15] [Server thread/INFO]: [WorldGuard] (survival_world_end) Lava fire is PERMITTED.
[21:54:15] [Server thread/INFO]: [WorldGuard] (survival_world_end) Fire spread is UNRESTRICTED.
[21:54:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_world_end'
[21:54:16] [Server thread/INFO]: Preparing start region for dimension minecraft:survival_world_nether
[21:54:16] [Server thread/INFO]: Time elapsed: 212 ms
[21:54:16] [Server thread/INFO]: [WorldGuard] (survival_world_nether) TNT ignition is PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (survival_world_nether) Lighters are PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (survival_world_nether) Lava fire is PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (survival_world_nether) Fire spread is UNRESTRICTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_world_nether'
[21:54:16] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby_test
[21:54:16] [Server thread/INFO]: Time elapsed: 105 ms
[21:54:16] [Server thread/INFO]: [WorldGuard] (lobby_test) TNT ignition is PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (lobby_test) Lighters are PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (lobby_test) Lava fire is PERMITTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] (lobby_test) Fire spread is UNRESTRICTED.
[21:54:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_test'
[21:54:17] [Server thread/INFO]: Preparing start region for dimension minecraft:world
[21:54:17] [Server thread/INFO]: Time elapsed: 285 ms
[21:54:17] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[21:54:17] [Server thread/INFO]: Preparing start region for dimension minecraft:world_the_end
[21:54:17] [Server thread/INFO]: Time elapsed: 167 ms
[21:54:17] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[21:54:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[21:54:18] [Server thread/INFO]: Preparing start region for dimension minecraft:world_nether
[21:54:18] [Server thread/INFO]: Time elapsed: 182 ms
[21:54:18] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[21:54:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[21:54:18] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[21:54:18] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[21:54:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[21:54:20] [Server thread/INFO]: [TerraformGenerator] Detected world: survival_world, commencing injection... 
[21:54:20] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[21:54:20] [Server thread/INFO]: Preparing start region for dimension minecraft:survival_world
[21:54:20] [Server thread/INFO]: Time elapsed: 758 ms
[21:54:20] [Server thread/INFO]: [TerraformGenerator] survival_world loaded.
[21:54:20] [Server thread/INFO]: [WorldGuard] (survival_world) TNT ignition is PERMITTED.
[21:54:20] [Server thread/INFO]: [WorldGuard] (survival_world) Lighters are PERMITTED.
[21:54:20] [Server thread/INFO]: [WorldGuard] (survival_world) Lava fire is PERMITTED.
[21:54:20] [Server thread/INFO]: [WorldGuard] (survival_world) Fire spread is UNRESTRICTED.
[21:54:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival_world'
[21:54:21] [Server thread/INFO]: [Multiverse-Core] 13 - World(s) loaded.
[21:54:21] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[21:54:21] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[21:54:21] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+17-79449ef
[21:54:21] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[21:54:21] [Server thread/INFO]: [Towny] Enabling Towny v0.99.6.0
[21:54:21] [Server thread/INFO]: ====================      Towny      ========================
[21:54:26] [Server thread/INFO]: [Towny] Successfully loaded translations for 42 languages.
[21:54:26] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[21:54:26] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[21:54:27] [Server thread/INFO]: [Towny] Database: Loaded in 247ms.
[21:54:27] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
[21:54:27] [ForkJoinPool.commonPool-worker-2/INFO]: [Towny] Cleaning up old backups...
[21:54:27] [ForkJoinPool.commonPool-worker-2/INFO]: [Towny] Successfully cleaned backups.
[21:54:27] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Making backup...
[21:54:27] [Folia Async Scheduler Thread #0/INFO]: [Towny] Time until a New Day: 14 hours, 5 minutes, 33 seconds
[21:54:27] [Folia Async Scheduler Thread #1/INFO]: [Towny] Checking for updates...
[21:54:27] [Folia Async Scheduler Thread #1/INFO]: [Towny] New update available: 0.100.0.2 | Current version: 0.99.6.0
[21:54:27] [Folia Async Scheduler Thread #1/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.0.2
[21:54:27] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[21:54:27] [Server thread/INFO]: [Towny] Plugins found: 
[21:54:27] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.104 via Vault
[21:54:27] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.104 via Vault
[21:54:27] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
[21:54:27] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: townyadvanced [0.99.6.0]
[21:54:27] [Server thread/INFO]: [Towny]   Add-ons: TownyChat v0.109, PlaceholderAPI v2.11.5
[21:54:27] [Server thread/INFO]: [Towny]   Warning: EssentialsX Economy has been known to reset
                           town and nation bank accounts on rare occasions.
[21:54:28] [Server thread/INFO]: =============================================================
[21:54:28] [Server thread/INFO]: [Towny] Version: 0.99.6.0 - Plugin Enabled
[21:54:28] [Server thread/INFO]: =============================================================
[21:54:28] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.1-${CI_COMMIT_SHORT_SHA}
[21:54:28] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[21:54:29] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.2)...
[21:54:29] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic mcMMO Support has been enabled!
[21:54:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mythic [5.0.0]
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[21:54:30] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[21:54:30] [Server thread/INFO]: [MythicMobs] Base directory /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/SavedData
[21:54:30] [Server thread/INFO]: [MythicMobs] Module directory /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/SavedData/worlds
[21:54:32] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:54:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:54:33] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[21:54:33] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[21:54:33] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.4.1 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[21:54:33] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[21:54:33] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[21:54:33] [Server thread/INFO]: [GriefPrevention] 1 total claims loaded.
[21:54:34] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[21:54:34] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[21:54:34] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[21:54:35] [Server thread/INFO]: [GriefPrevention] Boot finished.
[21:54:35] [Server thread/INFO]: [SaberFactions] Enabling Factions v1.6.9.5-4.1.3-STABLE
[21:54:35] [Server thread/INFO]: [SaberFactions] === ENABLE START ===
[21:54:35] [Server thread/INFO]: [SaberFactions] Loaded 1 players
[21:54:35] [Server thread/INFO]: [SaberFactions] Loaded 3 Factions
[21:54:35] [Server thread/INFO]: [SaberFactions] Loading board from disk
[21:54:35] [Server thread/INFO]: [SaberFactions] Loaded 0 board locations
[21:54:35] [Server thread/INFO]: [SaberFactions] Economy integration through Vault plugin successful.
[21:54:35] [Server thread/INFO]: [SaberFactions] NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
[21:54:35] [Server thread/INFO]: [SaberFactions] CoreX Integration Starting!
[21:54:35] [Server thread/INFO]: [SaberFactions] Enabling 15 CoreX Features...
[21:54:35] [Server thread/INFO]: [SaberFactions] Loaded 1 timers into list!
[21:54:36] [Server thread/INFO]: [SaberFactions] Internal Factions Top Being Used. NOTE: Very Basic
[21:54:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: factionsuuid [1.6.9.5-4.1.3-STABLE]
[21:54:36] [Server thread/INFO]: [SaberFactions] Successfully registered placeholders with PlaceholderAPI.
[21:54:36] [Server thread/INFO]: [SaberFactions] === ENABLE DONE (Took 1,130.296ms) ===
[21:54:36] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.224
[21:54:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: mcmmo [1.0,0]
[21:54:37] [Server thread/INFO]: [TownyChat] Enabling TownyChat v0.109
[21:54:37] [Server thread/INFO]: [TownyChat] Towny version 0.99.6.0 found.
[21:54:37] [Server thread/INFO]: [TownyChat] Default Channel set to general
[21:54:37] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[21:54:37] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[21:54:37] [Server thread/INFO]: [Multiverse-Portals] Found FastAsyncWorldEdit. Using it for selections.
[21:54:37] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[21:54:37] [Server thread/INFO]: [GCore] Enabling GCore v8.48.0
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[21:54:37] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[21:54:37] [Server thread/INFO]: [GCore-8.48.0] Found server version MC_1_20_R2
[21:54:37] [Server thread/INFO]: [GCore-8.48.0] Loading materials...
[21:54:38] [Server thread/INFO]: [GCore-8.48.0] Loading sounds...
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Loading particles...
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled currency VAULT
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled currency XP_LEVEL
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled currency XP
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Loading texts...
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Text durationformatdays doesn't exist in default files (not even in en_US)
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Loaded 1 missing text from default lang for generic.yml : durationFormatDays
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled integration for Citizens
[21:54:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gcore [1.0.0]
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled integration for PlaceholderAPI
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled integration for MythicMobs
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Initializing worker and caches
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Enabled NPC manager with ProtocolLib
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Registering integrations
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Initializing tasks and listeners
[21:54:39] [Server thread/INFO]: [GCore-8.48.0] Successfully enabled
[21:54:39] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.11
[21:54:39] [Server thread/INFO]: [BetterRTP] Cooldown = 600
[21:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.11]
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Enabling SchematicBrushReborn v2.5.3
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Locale plugins/SchematicBrushReborn/messages/messages_en_US.properties is up to date.
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Registered entry of type storage with de.eldoria.schematicbrush.schematics.SchematicBrushCache at Schematic Registry
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Path: plugins/SchematicBrushReborn/schematics does not exists. Skipping watch service registration.
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Path: plugins/WorldEdit/schematics does not exists. Skipping watch service registration.
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Metrics enabled. Thank you <3
[21:54:40] [Server thread/INFO]: [SchematicBrushReborn] Enabled. Required 185 ms.
[21:54:40] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.4
[21:54:40] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[21:54:40] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.6.4
[21:54:40] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[21:54:40] [Server thread/INFO]: [ChestSort] Use permissions: true
[21:54:40] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[21:54:40] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[21:54:40] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[21:54:40] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[21:54:40] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[21:54:40] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[21:54:40] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[21:54:40] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[21:54:40] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[21:54:40] [Server thread/INFO]: [ChestSort] Check for updates: true
[21:54:40] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[21:54:40] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[21:54:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chestsort [13.6.4]
[21:54:40] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[21:54:40] [Server thread/INFO]: [JEXT] Enabling JukeboxExtendedReborn v1.2.8
[21:54:40] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] New version of SchematicBrushReborn available.
[21:54:40] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
[21:54:40] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
[21:54:40] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] Download the new version via Discord: https://www.spigotmc.org/resources/98499/
[21:54:40] [Server thread/INFO]: [JEXT] Discs.json file not found please provide it in the plugin directory
[https://github.com/spartacus04/jext-reborn/wiki/How-to-set-up-the-plugin]
[21:54:40] [Server thread/WARN]: java.io.FileNotFoundException: discs.json file not found!
[21:54:40] [Server thread/WARN]:     at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.config.ConfigManager$Companion.load(ConfigManager.kt:75)
[21:54:40] [Server thread/WARN]:     at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.load(Jext.kt:67)
[21:54:40] [Server thread/WARN]:     at JEXT-Reborn_1.2.8.jar//me.spartacus04.jext.Jext.onEnable(Jext.kt:35)
[21:54:40] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281)
[21:54:40] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189)
[21:54:40] [Server thread/WARN]:     at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104)
[21:54:40] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507)
[21:54:40] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644)
[21:54:40] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555)
[21:54:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627)
[21:54:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424)
[21:54:40] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:308)
[21:54:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1086)
[21:54:40] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315)
[21:54:40] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[21:54:40] [Server thread/INFO]: [JEXT] Disabling JukeboxExtendedReborn v1.2.8
[21:54:40] [Server thread/INFO]: [JEXT] Disabled Jukebox Extended Reborn, Mi Re Do!
[21:54:40] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.2
[21:54:40] [DiscordSRV - Initialization/ERROR]: [DiscordSRV] No bot token has been set in the config; a bot token is required to connect to Discord.
[21:54:40] [Server thread/INFO]: [BigDoors] Enabling BigDoors vAlpha 0.1.8.48
[21:54:40] [Server thread/INFO]: [BigDoors] Power Block Types:
[21:54:41] [Server thread/INFO]: [BigDoors]  - GOLD_BLOCK
[21:54:41] [Server thread/INFO]: [BigDoors] Blacklisted materials:
[21:54:41] [Server thread/INFO]: [BigDoors]  - BEDROCK
[21:54:41] [Server thread/INFO]: [BigDoors]  - END_PORTAL
[21:54:41] [Server thread/INFO]: [BigDoors]  - END_PORTAL_FRAME
[21:54:41] [Server thread/INFO]: [BigDoors]  - NETHER_PORTAL
[21:54:41] [Server thread/INFO]: [BigDoors] No materials Whitelisted!
[21:54:41] [Server thread/INFO]: [BigDoors] DestroyListed materials:
[21:54:41] [Server thread/INFO]: [BigDoors]  - LAVA
[21:54:41] [Server thread/INFO]: [BigDoors]  - WATER
[21:54:41] [Server thread/INFO]: [BigDoors]  - SNOW
[21:54:41] [Server thread/INFO]: [BigDoors]  - FERN
[21:54:41] [Server thread/INFO]: [BigDoors]  - GRASS
[21:54:41] [Server thread/INFO]: [BigDoors]  - TALL_GRASS
[21:54:41] [Server thread/INFO]: [BigDoors]  - SEAGRASS
[21:54:41] [Server thread/INFO]: [BigDoors]  - TALL_SEAGRASS
[21:54:41] [pool-116-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[21:54:41] [Server thread/WARN]: [BigDoors] mcMMO detected! All ores are blacklisted to avoid item duplication! This can be overridden in the config.
[21:54:41] [Server thread/INFO]: [BigDoors] Enabling stats! Thanks, it really helps!
[21:54:41] [Server thread/INFO]: [BigDoors] Successfully hooked into "WorldGuard"!
[21:54:41] [Server thread/INFO]: [BigDoors] Successfully hooked into "Towny"!
[21:54:41] [Server thread/INFO]: [BigDoors] Successfully hooked into "GriefPrevention"!
[21:54:41] [Server thread/INFO]: [ItemsAdder] Enabling ItemsAdder v3.6.2-beta-r2
[21:54:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[21:54:41] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R2' loaded!
[21:54:41] [Server thread/INFO]: [ItemsAdder] 
  ___  ___        __        __   __   ___  __      ItemsAdder 3.6.2-beta-r2
|  |  |__   |\/| /__`  /\  |  \ |  \ |__  |__)     LoneLibs 1.0.27
|  |  |___  |  | .__/ /--\ |__/ |__/ |___ |  \     Paper git-Paper-279 (MC: 1.20.2)
                                               
[21:54:41] [Server thread/INFO]: [ItemsAdder] [Host] Starting self-host webserver on port: 3645
[21:54:42] [Server thread/INFO]: [Iris]: Enabled ExternalDataProvider for ItemsAdder.
[21:54:42] [Server thread/INFO]: [ItemsAdder] Registered Citizens NPC Trait: customentity
[21:54:42] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[21:54:42] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[21:54:42] [Server thread/INFO]: [BedWars] Enabling BedWars v0.2.30
[21:54:42] [Server thread/INFO]: [BedWars] Successfully loaded messages for BedWars! Language: English
[21:54:42] [Server thread/INFO]: [BedWars] Loading statistics from YAML-File ...
[21:54:42] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: bedwars [0.2.30]
[21:54:42] [Server thread/INFO]: =====================  by ScreamingSandals <Misat11, Iamceph, Pronze>
[21:54:42] [Server thread/INFO]: + Screaming BedWars +  Version: 0.2.30 FREE
[21:54:42] [Server thread/INFO]: =====================  STABLE VERSION
[21:54:42] [Server thread/INFO]: [BW] Found Vault
[21:54:42] [Server thread/INFO]: Everything is loaded! If you like our work, consider visiting our Patreon! <3
[21:54:42] [Server thread/INFO]: https://www.patreon.com/screamingsandals
[21:54:42] [Server thread/INFO]: [TradingCards] Enabling TradingCards v5.7.19
[21:54:42] [Server thread/WARN]: [TradingCards] Tried getting children from a non class object, returning empty list.
[21:54:42] [Server thread/WARN]: [TradingCards] Tried getting children from a non class object, returning empty list.
[21:54:43] [Server thread/INFO]: [TradingCards] Loading general.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading chances.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading messages.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading storage.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading advanced.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Using storage YAML
[21:54:43] [Server thread/INFO]: [TradingCards] Loading decks.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading packs.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading rarities.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading series.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading custom-types.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading cards.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading cards.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading upgrades.yml
[21:54:43] [Server thread/WARN]: [TradingCards] Could not get the type for goat_horn reason: null
[21:54:43] [Server thread/WARN]: [TradingCards] Defaulting to passive.
[21:54:43] [Server thread/INFO]: [TradingCards] Loading player-blacklist.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Loading world-blacklist.yml
[21:54:43] [Server thread/INFO]: [TradingCards] Vault hook successful!
[21:54:43] [Server thread/INFO]: [TradingCards] Initializing managers...
[21:54:43] [Server thread/INFO]: [TradingCards] Loaded RarityManager.
[21:54:43] [Server thread/INFO]: [TradingCards] Loaded DropTypeManager.
[21:54:43] [Server thread/INFO]: [TradingCards] Loaded SeriesManager.
[21:54:43] [Server thread/INFO]: [TradingCards] Loaded 136 cards.
[21:54:43] [Server thread/INFO]: [TradingCards] Loaded CardManager.
[21:54:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R2! Trying to find NMS support
[21:54:43] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_20_R2) is not supported by this NBT-API Version(2.11.3) located in TradingCards. The NBT-API will try to work as good as it can! Some functions may not work!
[21:54:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[21:54:43] [Server thread/ERROR]: Error occurred while enabling TradingCards v5.7.19 (Is it up to date?)
net.tinetwork.tradingcards.nbt.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
    at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.nbt.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.nbt.NBTCompound.getType(NBTCompound.java:1016) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.nbt.NBTCompound.addCompound(NBTCompound.java:669) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.nbt.NBTCompound.getOrCreateCompound(NBTCompound.java:709) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:115) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.generatePack(BoosterPackManager.java:88) ~[TradingCards-5.7.19.jar:?]
    at com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$3(LocalLoadingCache.java:183) ~[?:?]
    at com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2685) ~[?:?]
    at java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1916) ~[?:?]
    at com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2683) ~[?:?]
    at com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2666) ~[?:?]
    at com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:112) ~[?:?]
    at com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:58) ~[?:?]
    at com.github.benmanes.caffeine.cache.LocalLoadingCache.loadSequentially(LocalLoadingCache.java:82) ~[?:?]
    at com.github.benmanes.caffeine.cache.LocalLoadingCache.getAll(LocalLoadingCache.java:65) ~[?:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.preLoadItemStackCache(BoosterPackManager.java:70) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.managers.impl.BoosterPackManager.<init>(BoosterPackManager.java:41) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.initManagers(TradingCards.java:258) ~[TradingCards-5.7.19.jar:?]
    at net.tinetwork.tradingcards.tradingcardsplugin.TradingCards.onEnable(TradingCards.java:157) ~[TradingCards-5.7.19.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at net.tinetwork.tradingcards.nbt.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[TradingCards-5.7.19.jar:?]
    ... 31 more
[21:54:43] [Server thread/INFO]: [TradingCards] Disabling TradingCards v5.7.19
[21:54:43] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.1.5
[21:54:43] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[21:54:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: wesv [2.1.5]
[21:54:43] [Server thread/INFO]: [WESV] PlaceholderAPI extension successfully registered.
[21:54:43] [Server thread/INFO]: [GSlotMachine] Enabling GSlotMachine v3.1.1
[21:54:43] [Server thread/INFO]: [GSlotMachine-migration] Already processed v2 -> v3 (config)
[21:54:43] [Server thread/INFO]: [GSlotMachine-migration] Already processed v2 -> v3 (data)
[21:54:43] [Server thread/INFO]: [GSlotMachine-3.1.1] Successfully loaded 1 machine type : default
[21:54:43] [Server thread/INFO]: [GSlotMachine-3.1.1] Loading texts...
[21:54:43] [Server thread/INFO]: [GSlotMachine-3.1.1] Successfully enabled
[21:54:43] [Server thread/INFO]: [GWarp] Enabling GWarp v[2.13.0.2]
[21:54:43] [Server thread/INFO]: [GWarp] The Plugin was successfully enabled.
[21:54:43] [Server thread/INFO]: [Colored Signs] Enabling ColoredSigns v6.2.1.212
[21:54:43] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.12.9
[21:54:44] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[21:54:44] [Server thread/INFO]: [GPFlags] Finished loading data.
[21:54:45] [Server thread/INFO]: [GPFlags] Successfully loaded in 1.11 seconds
[21:54:45] [Server thread/INFO]: [TAB] Enabling TAB v4.0.7
[21:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tab [4.0.7]
[21:54:45] [Server thread/INFO]: [TAB] Enabled in 271ms
[21:54:45] [Server thread/INFO]: [TNTRun] Enabling TNTRun v2.4.5-SNAPSHOT
[21:54:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: tntrun [2.4.5-SNAPSHOT]
[21:54:45] [Server thread/INFO]: [TNTRun] Initialization finished. Consider donating: https://buymeacoffee.com/despical
[21:54:45] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[21:54:46] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[21:54:46] [Server thread/INFO]: [spark] Starting background profiler...
[21:54:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: spark [1.10.34]
[21:54:46] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[21:54:46] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.3
[21:54:46] [Server thread/INFO]: [NBTAPI] Adding listeners...
[21:54:46] [Server thread/INFO]: [NBTAPI] Gson:
[21:54:46] [Server thread/INFO]: [NBTAPI] Checking bindings...
[21:54:46] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[21:54:46] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[21:54:46] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[21:54:46] [Server thread/WARN]: [NBTAPI] Error during 'EqualsTest' test!
de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.getType(NBTCompound.java:1016) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.addCompound(NBTCompound.java:669) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest.test(EqualsTest.java:25) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@2fd26360
    at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
    ... 17 more
[21:54:46] [Server thread/WARN]: [NBTAPI] Error during 'EmptyItemTest' test!
de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTReflectionUtil.getData(NBTReflectionUtil.java:635) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.getBoolean(NBTCompound.java:438) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.tests.items.EmptyItemTest.test(EmptyItemTest.java:16) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: object is not an instance of declaring class
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?]
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
    ... 16 more
[21:54:46] [Server thread/WARN]: [NBTAPI] Error during 'ItemMergingTest' test!
de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.tests.items.ItemMergingTest.test(ItemMergingTest.java:22) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@52ae6dcf
    at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
    ... 16 more
[21:54:46] [Server thread/WARN]: [NBTAPI] Error during 'DirectApplyTest' test!
de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyTest.test(DirectApplyTest.java:17) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@27e68ac8
    at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
    ... 16 more
[21:54:46] [Server thread/WARN]: [NBTAPI] Error during 'DirectApplyMetaTest' test!
de.tr7zw.nbtapi.NbtApiException: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:358) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTReflectionUtil.setData(NBTReflectionUtil.java:615) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.NBTCompound.setString(NBTCompound.java:115) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.tests.items.DirectApplyMetaTest.test(DirectApplyMetaTest.java:18) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:205) ~[item-nbt-api-plugin-2.11.3.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[paper-1.20.2.jar:git-Paper-279]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:644) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:555) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.IllegalArgumentException: java.lang.ClassCastException@60e8aa19
    at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) ~[?:?]
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?]
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?]
    at de.tr7zw.nbtapi.utils.nmsmappings.ReflectionMethod.run(ReflectionMethod.java:355) ~[item-nbt-api-plugin-2.11.3.jar:?]
    ... 16 more
[21:54:46] [Server thread/INFO]: [NBTAPI] EqualsTest: [?]Error while calling the method 'getTagType(java.lang.String)', loaded: true, Enum: COMPOUND_GET_TYPE, Passed Class: class java.lang.Boolean
[21:54:46] [Server thread/INFO]: [NBTAPI] DirectApplyMetaTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
[21:54:46] [Server thread/INFO]: [NBTAPI] EmptyItemTest: [?]Error while calling the method 'getBoolean(java.lang.String)', loaded: true, Enum: COMPOUND_GET_BOOLEAN, Passed Class: class java.lang.Boolean
[21:54:46] [Server thread/INFO]: [NBTAPI] DirectApplyTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
[21:54:46] [Server thread/INFO]: [NBTAPI] ItemMergingTest: [?]Error while calling the method 'putString(java.lang.String,java.lang.String)', loaded: true, Enum: COMPOUND_SET_STRING, Passed Class: class java.lang.Boolean
[21:54:46] [Server thread/WARN]: [NBTAPI] WARNING! This version of NBT-API seems to be broken with your Spigot version! Plugins that don't check properly may throw Exeptions, crash or have unexpected behaviors!
[21:54:46] [Server thread/INFO]: [BetterRTPAddons] Enabling BetterRTPAddons v1.8.8
[21:54:46] [Server thread/INFO]: [GridSelector] Enabling GridSelector v1.3.0
[21:54:46] [Server thread/INFO]: [GridSelector] Initializing message blocker. Whitelisted terms: [GS]
[21:54:46] [Server thread/INFO]: [GridSelector] Detected Chat signing support
[21:54:46] [Server thread/INFO]: [GridSelector] Locale plugins/GridSelector/messages/messages_en_US.properties is up to date.
[21:54:46] [Server thread/INFO]: [SchematicBrushReborn] Registered entry of type grid with de.eldoria.gridselector.schematics.GridSchematics at Schematic Registry
[21:54:46] [Server thread/INFO]: [GridSelector] Enabled. Required 130 ms.
[21:54:46] [Server thread/INFO]: [EggWars] Enabling EggWars v6.1.2
[21:54:46] [Server thread/INFO]: [EggWars] Loading data for languages...
[21:54:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: EggWars [6.1.2]
[21:54:47] [Server thread/INFO]: [EggWars] Loading data for kits...
[21:54:47] [Server thread/INFO]: [EggWars] Loading data for token types...
[21:54:47] [Server thread/INFO]: [EggWars] Loading data for generators...
[21:54:47] [Server thread/INFO]: [EggWars] Loading data for main trades...
[21:54:47] [Server thread/INFO]: [YamipaPlugin] Enabling YamipaPlugin v1.2.11
[21:54:47] [Server thread/INFO]: [YamipaPlugin] Enabled image animation support
[21:54:47] [Server thread/INFO]: [YamipaPlugin] No placed fake images configuration file found
[21:54:47] [Server thread/INFO]: [AdvancedKeep] Enabling AdvancedKeep v2.0.1
[21:54:47] [Server thread/INFO]: [AdvancedKeep] [ACF] Enabled Asynchronous Tab Completion Support!
[21:54:47] [Server thread/INFO]: [CrateReloaded] Enabling CrateReloaded v2.3.1
[21:54:47] [Server thread/INFO]: [CrateReloaded] Spigot Version: 1_20_R2
[21:54:47] [Server thread/INFO]: [CrateReloaded] Plugin is not enabled: HolographicDisplays
[21:54:47] [Server thread/INFO]: [CrateReloaded] Provider: Vault
[21:54:47] [Server thread/INFO]: [CrateReloaded] Provider: EffectLib
[21:54:47] [Server thread/INFO]: [CrateReloaded] Crate Configurations (1): crate.yml 
[21:54:47] [Server thread/INFO]: [Skywars] Enabling Skywars v5.6.22
[21:54:47] [Server thread/ERROR]: [Skywars] Could not find support for this CraftBukkit version: v1_20_R2. Now disabling the plugin!
[21:54:47] [Server thread/INFO]: [Skywars] Check for updates at https://gcnt.net/download/skywars
[21:54:47] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.4.1
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[21:54:48] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.4.1-RELEASE (commit c5c2a02)
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_20 (expected version: 1.20.2)
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Entity registry is not vanilla, skipping unfreeze and refreeze
[21:54:48] [Server thread/INFO]: [UltraCosmetics] Loaded NMS support
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultracosmetics [3.4.1]
[21:55:00] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[21:55:00] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:EssentialsX Economy for economy.
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] Hooked into ChestSort
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] Hooked into Towny
[21:55:00] [Server thread/INFO]: [UltraCosmetics] 
[21:55:00] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 12779ms!
[21:55:00] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[21:55:00] [Server thread/INFO]: [ZombieApocalypse] Enabling ZombieApocalypse v1.4.8
[21:55:00] [Server thread/INFO]: [ZombieApocalypse] Configuration has been successfully loaded!
[21:55:00] [Server thread/INFO]: [ZombieApocalypse] If you really love this project, you could consider donating to help me keep this project alive! https://paypal.me/3ricL
[21:55:00] [Server thread/INFO]: [JukeLooper] Enabling JukeLooper v2.5
[21:55:00] [Server thread/INFO]: [HeadHunterPlugin] Enabling HeadHunterPlugin v2.0.7
[21:55:00] [Server thread/INFO]: [RankVouchers] Enabling RankVouchers v3.0*
[21:55:00] [Server thread/INFO]: [RankVouchers] ---------------------------
[21:55:00] [Server thread/INFO]: [RankVouchers] ---------------------------
[21:55:00] [Server thread/INFO]: [RankVouchers] Hooked into PlaceholderAPI!
[21:55:00] [Server thread/INFO]: [RankVouchers] Hooked into WorldGuard!
[21:55:00] [Server thread/INFO]: [RankVouchers]  
[21:55:00] [Server thread/INFO]: [RankVouchers] Developed by Setups.io.
[21:55:00] [Server thread/INFO]: [RankVouchers] Ready!
[21:55:00] [Server thread/INFO]: [RankVouchers]  
[21:55:00] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: 
[21:55:00] [Server thread/INFO]: [RankVouchers] [ACF] Minecraft Version: 1.20
[21:55:00] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers help' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers reload' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers give' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers giveall' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers list' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers create' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/WARN]: Plugin 'RankVouchers' is creating timing 'Command: rankvouchers remove' - this is deprecated behavior, please report it to the authors: 
[21:55:01] [Server thread/INFO]: [GreetingPlugin] Enabling GreetingPlugin v2.0-SNAPSHOT
[21:55:01] [Server thread/INFO]: [GreetingPlugin] Greeting Plugin has been enabled.
[21:55:01] [Server thread/INFO]: [Waypoints] Enabling Waypoints v4.2.0
[21:55:01] [Server thread/INFO]: [Waypoints] Found squaremap plugin
[21:55:01] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[21:55:01] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[21:55:01] [Server thread/INFO]: [TreeAssist] Enabling TreeAssist v7.3.49
[21:55:01] [Server thread/INFO]: [TreeAssist] sending full Metrics! You can deactivate this in the config.yml
[21:55:01] [Server thread/INFO]: [TreeAssist] debugging: off
[21:55:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ta [0.0.1]
[21:55:01] [Thread-34/INFO]: [TreeAssist] Checking for updates...
[21:55:01] [Server thread/INFO]: [MusicBox] Enabling MusicBox v2.0.13
[21:55:01] [Server thread/INFO]: [Guilds] Enabling Guilds v3.5.7.0
[21:55:02] [Server thread/INFO]:   ________ 
[21:55:02] [Server thread/INFO]:  /  _____/ 
[21:55:02] [Server thread/INFO]: /   \  ___   Guilds v3.5.7.0
[21:55:02] [Server thread/INFO]: \    \_\  \  Server Version: git-Paper-279 (MC: 1.20.2)
[21:55:02] [Server thread/INFO]:  \______  /
[21:55:02] [Server thread/INFO]:         \/ 
[21:55:02] [Server thread/INFO]: [Guilds] Economy Found: EssentialsX Economy
[21:55:02] [Server thread/INFO]: [Guilds] Permissions Found: LuckPerms
[21:55:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: guilds [2.1]
[21:55:03] [Server thread/INFO]: [Guilds] [ACF] Enabled Asynchronous Tab Completion Support!
[21:55:04] [ForkJoinPool.commonPool-worker-3/INFO]: [Guilds] Your version of Guilds (3.5.7.0) is up to date!
[21:55:04] [Server thread/INFO]: [Guilds] Ready to go! That only took 1716ms
[21:55:04] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.4
[21:55:04] [Server thread/INFO]: [PlayerParticles] Initializing using RoseGarden v1.1.0.52-SNAPSHOT
[21:55:04] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[21:55:04] [TaskChainAsyncQueue Thread 0/INFO]: [Guilds] Features
- Added initial support for 1.20.X

Bug Fixes
- Fixed a bug related to banking commands

Notes
- Currently dealing with some real life stuff, hope to be back soon.

[21:55:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: playerparticles [8.4]
[21:55:04] [Server thread/INFO]: [BigDoorsOpener] Enabling BigDoorsOpener v2.5.2
[21:55:05] [Server thread/INFO]: [BigDoorsOpener] Enabled. Required 72 ms.
[21:55:05] [Server thread/INFO]: [LPC] Enabling LPC v3.6.0
[21:55:05] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[21:55:05] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[21:55:05] [Server thread/INFO]: [DeluxeMenus] 3 GUI menus loaded!
[21:55:05] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[21:55:05] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[21:55:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.13.7-Release]
[21:55:05] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[21:55:05] [Server thread/INFO]: [Images] Enabling Images v2.3.1
[21:55:05] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[21:55:05] [Server thread/INFO]: [FacilisCommon] Enabling FacilisCommon v1.0.2-SNAPSHOT
[21:55:05] [Server thread/INFO]: [Invsee] Enabling Invsee v1.0.0*
[21:55:05] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.5.1
[21:55:06] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[21:55:06] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[21:55:06] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R2
[21:55:06] [Server thread/ERROR]: [AuctionHouse] Error! This plugin only supports Spigot versions 1.20.x!
[21:55:06] [Server thread/ERROR]: [AuctionHouse] Plugin will be disabled!
[21:55:06] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.5.1
[21:55:06] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[21:55:06] [Server thread/INFO]: [Arcade] Enabling Arcade v1.55
[21:55:06] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[21:55:06] [Server thread/INFO]: Arcade only works for: 
[21:55:06] [Server thread/INFO]:  - 1.20.1
[21:55:06] [Server thread/INFO]: =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[21:55:06] [Server thread/INFO]: [FishRewards] Enabling FishRewards v1.2.4
[21:55:06] [Server thread/INFO]: [FishRewards] A new plugin update is available. Download link: https://www.spigotmc.org/resources/111966/
[21:55:06] [Server thread/INFO]: [FishRewards] loaded 3 packs
[21:55:06] [Server thread/WARN]: Plugin Vanillahungergames v2.4 tried to register permission 'admin' but it's already registered
[21:55:06] [Server thread/INFO]: [Vanillahungergames] Enabling Vanillahungergames v2.4
[21:55:06] [Server thread/INFO]: [NotBounties] Enabling NotBounties v1.12.1
[21:55:06] [Server thread/INFO]: Using Vault as currency!
[21:55:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: notbounties [1.12.1]
[21:55:06] [Server thread/INFO]: Database not connected, using internal storage
[21:55:06] [Server thread/INFO]: [ImageOnMap] Enabling ImageOnMap v4.2.2
[21:55:06] [Server thread/INFO]: [ImageOnMap] Loaded 0 player map files.
[21:55:06] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v8.12.4
[21:55:08] [Server thread/INFO]: [VoxelSniper] Registered 70 Sniper Brushes with 136 handles.
[21:55:08] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[21:55:08] [Thread-39/INFO]: Checking for updates...
[21:55:08] [Server thread/INFO]: [UltimateShop] Enabling UltimateShop v1.7.7
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: crops1.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: baits.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: crops.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: logs.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: drops.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: ores.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded shop: blocks.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Loaded menu: main.yml!
[21:55:08] [Server thread/INFO]: [UltimateShop] Hooking into PlaceholderAPI...
[21:55:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ultimateshop [1.0.0]
[21:55:08] [Server thread/INFO]: [UltimateShop] Finished hook!
[21:55:08] [Server thread/INFO]: [UltimateShop] Plugin is loaded. Author: PQguanfang.
[21:55:08] [Server thread/INFO]: [TavernBard] Enabling TavernBard v1.2
[21:55:08] [Server thread/INFO]: [TavernBard] MythicMobs detected. Support enabled!
[21:55:10] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[21:55:10] [Server thread/INFO]: Running delayed init tasks
[21:55:10] [Craft Scheduler Thread - 6 - Essentials/INFO]: [Essentials] Fetching version information...
[21:55:10] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [License] Store product licensed to: darkclone9 (353993)
[21:55:10] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[21:55:10] [Craft Scheduler Thread - 10 - DecentHolograms/INFO]: [DecentHolograms] Loaded 5 holograms!
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[21:55:10] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[21:55:10] [Server thread/INFO]: [Iris]: Server type & version: git-Paper-279 (MC: 1.20.2)
[21:55:10] [ForkJoinPool.commonPool-worker-2/INFO]: [squaremap] Fetching version information...
[21:55:10] [Server thread/INFO]: [Iris]: Bukkit version: 1.20.2-R0.1-SNAPSHOT
[21:55:10] [Server thread/INFO]: [Iris]: Java version: 17
[21:55:10] [Server thread/INFO]: [Iris]: Custom Biomes: 0
[21:55:10] [Server thread/INFO]: [Iris]: Version Information: git-Paper-279 (MC: 1.20.2) | 1.20.2-R0.1-SNAPSHOT
[21:55:10] [Server thread/INFO]: [Iris]: ============================================
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] Checking for Updates ... 
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Craft Scheduler Thread - 10 - UltraCosmetics/INFO]: [UltraCosmetics] You are running the latest version on Spigot.
[21:55:10] [Server thread/INFO]: [Iris]: Iris is not compatible with this version of Minecraft.
Please use 1.20.1 or use an older version of Iris.
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Server thread/INFO]: [Iris]: =
[21:55:10] [Server thread/INFO]: [Iris]: ============================================
[21:55:10] [Server thread/INFO]: [Iris]: We recommend using Purpur for the best experience with Iris.
[21:55:10] [Server thread/INFO]: [Iris]: Purpur is a fork of Paper that is optimized for performance and stability.
[21:55:10] [Server thread/INFO]: [Iris]: Plugins that work on Spigot / Paper work on Purpur.
[21:55:10] [Server thread/INFO]: [Iris]: You can download it here: https://purpurmc.org
[21:55:10] [Server thread/INFO]: [Iris]: Custom Dimensions: 1
[21:55:10] [Server thread/INFO]: [Iris]:   overworld v3700
[21:55:11] [Craft Scheduler Thread - 11 - Vault/INFO]: [Vault] No new version available
[21:55:11] [Craft Scheduler Thread - 9 - Waypoints/INFO]: [Waypoints] The version v4.3.0 for Waypoints is available.
Checkout the release here: https://github.com/Sytm/waypoints/releases/tag/v4.3.0
[21:55:11] [Server thread/INFO]: [Iris]: 

            @@@@@@@@@@@@@@@@@
         @@&&&&&&&&&&&&&&&   .(((()))).                     
        @@@&&&&&&&&&&&&&  .((((((())))))).                  
        @@@&&&&&&&&&&&&  ((((((((()))))))))                @
        @@@&&&&@@@@@&    ((((((((-)))))))))               @@
        @@@&&            ((((((({ }))))))))            &&@@@     Iris
        @@               ((((((((-)))))))))    &@@@@@&&&&@@@     by Volmit Software
        @                ((((((((()))))))))  &&&&&&&&&&&&@@@     v2.8.0-1.20.1
                          '((((((()))))))'  &&&&&&&&&&&&&@@@
                             '(((())))'   &&&&&&&&&&&&&&&@@
                                       @@@@@@@@@@@@@@@@@

[21:55:11] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[21:55:11] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] You're 2 EssentialsX dev build(s) out of date!
[21:55:11] [Craft Scheduler Thread - 6 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[21:55:11] [Server thread/INFO]: [TownyChat] -******* TownyChat enabled *******-
[21:55:11] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.26.2
[21:55:11] [Server thread/INFO]: [BigDoors] Checking for updates...
[21:55:11] [Server thread/INFO]: [ItemsAdder] [Pack] Extracting internal contents from .jar
[21:55:11] [Server thread/INFO]: [ItemsAdder] [Pack] DONE extracting internal contents from .jar
[21:55:11] [ForkJoinPool.commonPool-worker-2/INFO]: [BigDoors] No new updates available.
[21:55:13] [Server thread/WARN]: [ItemsAdder] Custom entities 'fast_packets_creation' is disabled. This might cause stuttering animations. More info: https://a.devs.beer/ia-delaypackets
[21:55:14] [Server thread/INFO]: Loaded 7 recipes
[21:55:15] [Server thread/INFO]: [Citizens] Loaded 2 NPCs.
[21:55:15] [Server thread/INFO]: [SchematicBrushReborn] Post startup done. Required 35 ms.
[21:55:15] [Server thread/INFO]: [GridSelector] Post startup done. Required 0 ms.
[21:55:15] [Server thread/INFO]: [Multiverse-Inventories] First run!
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Hooked into Big Doors successfully.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] World Guard found. Trying to get a hook.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Hooked into world guard successfully.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Placeholder API found. Enabling placeholder usage.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] MythicMobs found. Enabling mythic mobs listener.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Config is up to date.
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Config loaded!
[21:55:15] [Server thread/INFO]: [BigDoorsOpener] Java 15 or newer detected. Searching for external Engine.
[21:55:15] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] New version of SchematicBrushReborn available.
[21:55:15] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] New Version: 2.5.5. Published 9 days ago! 2023.10.27 09:01
[21:55:15] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] Current version: 2.5.3 Published 142 days ago! 2023.06.16 12:20
[21:55:15] [EldoUtilititesUpdateChecker/INFO]: [SchematicBrushReborn] Download the new version via Discord: https://discord.gg/zRW9Vpu
[21:55:16] [Server thread/INFO]: [BigDoorsOpener] OpenJDK Nashorn script engine started.
[21:55:16] [Server thread/INFO]: [BigDoorsOpener] Locale plugins/BigDoorsOpener/messages/messages_en_US.properties is up to date.
[21:55:16] [Server thread/INFO]: [BigDoorsOpener] Locale plugins/BigDoorsOpener/messages/messages_de_DE.properties is up to date.
[21:55:16] [Server thread/INFO]: [BigDoorsOpener] Metrics enabled. Thank you very much!
[21:55:16] [Server thread/INFO]: [BigDoorsOpener] Post startup done. Required 1134 ms.
[21:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.1]
[21:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[21:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[21:55:16] [Server thread/INFO]: 3 placeholder hook(s) registered!
[21:55:16] [Server thread/INFO]: [IridiumSkyblock] You are using the latest version of IridiumSkyblock.
[21:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iris [2.8.0-1.20.1]
[21:55:16] [Server thread/INFO]: Done (115.268s)! For help, type "help"
[21:55:16] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 6123ms or 122 ticks behind
[21:55:16] [Server thread/INFO]: Timings Reset
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Loaded 344 items
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 0/188 REAL block IDs
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 29/750 REAL_NOTE block IDs
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 0/63 REAL_TRANSPARENT block IDs
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 0/127 REAL_WIRE block IDs
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 0/14 FIRE block IDs
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] Used 587/6608 font_images
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded 29 categories
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Init] Loaded successfully.
[21:55:17] [Craft Scheduler Thread - 15 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Checking resourcepack url... 
[21:55:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: img [1.0.1]
[21:55:18] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: iaplayerstat [1.0.1]
[21:55:18] [Server thread/INFO]: [ItemsAdder] Reloading ItemsAdder Custom Entities Citizens NPCs
[21:55:18] [Server thread/INFO]: [Mythic] Reloading plugin...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Packs...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Items...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Skills...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/minecraft/multicraft/servers/server806648/plugins/MythicMobs/stats.yml
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[21:55:19] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 8 mobs.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[21:55:19] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[21:55:19] [Server thread/INFO]: [Mythic] Mythic has finished reloading!
[21:55:19] [Server thread/INFO]: [MythicMobs] Mythic has finished reloading!
[21:55:20] [Craft Scheduler Thread - 9 - ItemsAdder/INFO]: [ItemsAdder] [Pack] Resourcepack URL (self-host): http://147.135.70.77:3645/generated.zip
[21:55:20] [Craft Scheduler Thread - 5 - ZombieApocalypse/INFO]: [ZombieApocalypse] Checking for updates...
[21:55:20] [Craft Scheduler Thread - 5 - ZombieApocalypse/INFO]: [ZombieApocalypse] You are running the latest version.
[21:55:21] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: Checking Data Packs...
[21:55:22] [Craft Scheduler Thread - 20 - EggWars/INFO]: [EggWars] Checking plugin version...
[21:55:22] [Craft Scheduler Thread - 20 - EggWars/INFO]: [EggWars] No updates found
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: Data Packs Setup!
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: ===================================================================================
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: Pack overworld has 94 custom biome(s). 
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: Your server version does not yet support datapacks for iris.
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: The world will generate these biomes as backup biomes.
[21:55:23] [Craft Scheduler Thread - 15 - Iris/INFO]: [Iris]: ====================================================================================
[21:55:23] [Craft Scheduler Thread - 15 - Images/INFO]: [Images] Loaded 0 images...
[21:55:25] [Server thread/WARN]: [NotBounties] Task #4967 for NotBounties v1.12.1 generated an exception
java.lang.IndexOutOfBoundsException: Index 0 out of bounds for length 0
    at jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64) ~[?:?]
    at jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70) ~[?:?]
    at jdk.internal.util.Preconditions.checkIndex(Preconditions.java:266) ~[?:?]
    at java.util.Objects.checkIndex(Objects.java:359) ~[?:?]
    at java.util.ArrayList.get(ArrayList.java:427) ~[?:?]
    at me.jadenp.notbounties.NotBounties$3.run(NotBounties.java:744) ~[NotBounties-LATEST-[1.12.1].jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.2.jar:git-Paper-279]
    at org.bukkit.craftbukkit.v1_20_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:480) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.tickChildren(MinecraftServer.java:1470) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.dedicated.DedicatedServer.tickChildren(DedicatedServer.java:446) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1379) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1156) ~[paper-1.20.2.jar:git-Paper-279]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-279]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[21:56:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[21:56:05] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[21:56:53] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[21:56:53] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[21:57:42] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[21:57:42] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[21:58:31] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[21:58:31] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[21:59:19] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[21:59:19] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:00:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:00:08] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:00:22] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5033ms or 100 ticks behind
[22:00:56] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:00:56] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:01:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:01:45] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:02:33] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:02:33] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:03:08] [Server thread/INFO]: Saving is already turned on
[22:03:08] [Server thread/INFO]: Saving the game (this may take a moment!)
[22:03:08] [Server thread/INFO]: Saved the game
[22:03:22] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:03:22] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:04:11] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:04:11] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:04:59] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:04:59] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:05:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:05:48] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:06:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:06:36] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:07:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:07:25] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:08:13] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:08:13] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:09:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:09:02] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:09:51] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:09:51] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:10:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:10:39] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:11:28] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:11:28] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:12:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:12:16] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:13:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:13:05] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:13:12] [Server thread/INFO]: Saving is already turned on
[22:13:12] [Server thread/INFO]: Saving the game (this may take a moment!)
[22:13:12] [Server thread/INFO]: Saved the game
[22:13:54] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:13:54] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:14:42] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:14:42] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:15:31] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:15:31] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:16:19] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:16:19] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:17:08] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:17:08] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:17:56] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:17:56] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:18:45] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:18:45] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:19:34] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:19:34] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:20:22] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:20:22] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:21:11] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:21:11] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:21:59] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:21:59] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:22:48] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:22:48] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:23:15] [Server thread/INFO]: Saving is already turned on
[22:23:15] [Server thread/INFO]: Saving the game (this may take a moment!)
[22:23:15] [Server thread/INFO]: Saved the game
[22:23:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:23:36] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:24:25] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:24:25] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:25:14] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:25:14] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:26:02] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:26:02] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:26:51] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:26:51] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:27:39] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:27:39] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:28:28] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:28:28] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:29:16] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:29:16] [Server thread/INFO]: There are 0 out of maximum 120 players online.
[22:30:05] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /list 
[22:30:05] [Server thread/INFO]: There are 0 out of maximum 120 players online.