Paste #112583: Startup

Date: 2023/07/21 07:26:49 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[03:32:45] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[03:32:47] [ServerMain/INFO]: Loaded 7 recipes
[03:32:48] [Server thread/INFO]: Starting minecraft server version 1.20.1
[03:32:48] [Server thread/INFO]: Loading properties
[03:32:48] [Server thread/INFO]: This server is running Paper version git-Paper-69 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 6b325cd)
[03:32:48] [Server thread/INFO]: Server Ping Player Sample Count: 12
[03:32:48] [Server thread/INFO]: Using 4 threads for Netty based IO
[03:32:48] [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
[03:32:48] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 4 worker threads, and gen parallelism of 4 threads
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:32:48] [Server thread/INFO]: Default game type: SURVIVAL
[03:32:48] [Server thread/INFO]: Generating keypair
[03:32:48] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[03:32:48] [Server thread/INFO]: Using epoll channel type
[03:32:48] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[03:32:48] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[03:32:49] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[03:32:51] [Server thread/WARN]: Legacy plugin ChatCommandArg v1.1 does not specify an api-version.
[03:32:51] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.9-beta1+2249-223b80c
[03:32:51] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loading 1 libraries... please wait
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/********/multicraft/servers/server292627/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/********/multicraft/servers/server292627/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[03:32:52] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[03:32:52] [Server thread/WARN]: [MarriageMaster] Loading Paper plugin in the legacy plugin loading logic. This is not recommended and may introduce some differences into load order. It's highly recommended you move away from this if you are wanting to use Paper plugins.
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loading 1 libraries... please wait
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/openjdk/nashorn/nashorn-core/15.4/nashorn-core-15.4.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [TownyMenu] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[03:32:52] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/********/multicraft/servers/server292627/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[03:32:52] [Server thread/INFO]: [Not-Too-Expensive] Loading server plugin Not-Too-Expensive v1.1
[03:32:52] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.7.1-SNAPSHOT
[03:32:52] [Server thread/INFO]: [ViaVersion] ViaVersion 4.7.1-SNAPSHOT is now loaded. Registering protocol transformers and injecting...
[03:32:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[03:32:53] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[03:32:53] [Server thread/INFO]: [ViaBackwards] Loading translations...
[03:32:53] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[03:32:53] [Server thread/INFO]: [NBTAPI] Loading server plugin NBTAPI v2.11.3
[03:32:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[03:32:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[03:32:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:32:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Not-Too-Expensive' to create a bStats instance!
[03:32:53] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.7.0
[03:32:53] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.79
[03:32:54] [Thread-12/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[03:32:54] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[03:32:54] [Server thread/INFO]: [RandomMOTD] Loading server plugin RandomMOTD v1.1.0
[03:32:54] [Server thread/INFO]: [AntiVillagerLag] Loading server plugin AntiVillagerLag v2.3.1
[03:32:54] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0-SNAPSHOT-645
[03:32:54] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.20.1) has not yet been tested! Proceed with caution.
[03:32:55] [Server thread/INFO]: [ChatCommandArg] Loading server plugin ChatCommandArg v1.1
[03:32:55] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[03:32:55] [Server thread/INFO]: [PyroLib] Loading server plugin PyroLib v1.2.8
[03:32:55] [Server thread/INFO]: [Insights] Loading server plugin Insights v6.15.0
[03:32:55] [Server thread/INFO]: [Bolt] Loading server plugin Bolt v1.0.503
[03:32:55] [Server thread/INFO]: [FastChunkPregenerator] Loading server plugin FastChunkPregenerator v2.0.6-SNAPSHOT
[03:32:55] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.3.1
[03:32:55] [Server thread/INFO]: [RareMobs] Loading server plugin RareMobs v2.9.1
[03:32:55] [Server thread/INFO]: [DeluxeWithdraw] Loading server plugin DeluxeWithdraw vBuild 16
[03:32:55] [Server thread/INFO]: [Votifier] Loading server plugin Votifier v2.7.3
[03:32:55] [Server thread/INFO]: [PyroWelcomes] Loading server plugin PyroWelcomes v2.5.0
[03:32:55] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.37
[03:32:55] [Server thread/INFO]: [ItemTags] Loading server plugin ItemTags v3.8.0
[03:32:55] [Server thread/INFO]: [Lootin] Loading server plugin Lootin v7.0
[03:32:55] [Server thread/INFO]: [gProtector] Loading server plugin gProtector v2.4
[03:32:55] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[03:32:55] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b59-2278589)
[03:32:55] [Server thread/INFO]: [floodgate] Took 340ms to boot Floodgate
[03:32:55] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.12.5
[03:32:55] [Server thread/INFO]: [ViewDistanceTweaks] Loading server plugin ViewDistanceTweaks v1.5.6
[03:32:55] [Server thread/INFO]: [Elevators] Loading server plugin Elevators v4.0.14
[03:32:55] [Server thread/INFO]: [MoneyPouch] Loading server plugin MoneyPouch v3.6.1
[03:32:55] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[03:32:55] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v13.6.3
[03:32:55] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[03:32:55] [Server thread/INFO]: [DeluxeWithdrawPlayerPointsAddon] Loading server plugin DeluxeWithdrawPlayerPointsAddon vBuild 1b
[03:32:55] [Server thread/INFO]: [PlayerVaults] Loading server plugin PlayerVaults v4.2.14
[03:32:55] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.1
[03:32:55] [Server thread/INFO]: [CrazyVouchers] Loading server plugin CrazyVouchers v2.9.14.5
[03:32:55] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.3
[03:32:55] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.0.1
[03:32:55] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[03:32:55] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[03:32:55] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.6.5-SNAPSHOT-530;9543adc
[03:32:57] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@114d998f]
[03:32:57] [Server thread/INFO]: [TCPShield] Loading server plugin TCPShield v2.6.1
[03:32:57] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.3
[03:32:57] [Server thread/INFO]: [DeluxeWithdrawEXPAddon] Loading server plugin DeluxeWithdrawEXPAddon vBuild 2b
[03:32:57] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9-beta1+2249-223b80c
[03:32:57] [Server thread/INFO]: [CLV] Loading server plugin CyberLevels v0.5.8
[03:32:57] [Server thread/INFO]: [ajParkour] Loading server plugin ajParkour v2.12.10
[03:32:57] [Server thread/INFO]: [MobFarmManager] Loading server plugin MobFarmManager v2.0.4.2
[03:32:57] [Server thread/INFO]: [ReferralSystem] Loading server plugin ReferralSystem v3.2.4
[03:32:57] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v21.3
[03:32:57] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.6-899
[03:32:57] [Server thread/INFO]: [dynmap] version=git-Paper-69 (MC: 1.20.1)
[03:32:57] [Server thread/INFO]: [dynmap] Mod Support API available
[03:32:57] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.20.0
[03:32:57] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.61.1
[03:32:57] [Server thread/INFO]: [PyroMining] Loading server plugin PyroMining v4.4.4
[03:32:57] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.3
[03:32:57] [Server thread/INFO]: [LiteBans] Loading server plugin LiteBans v2.12.4
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.7.0
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[03:32:57] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[03:32:57] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[03:32:57] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[03:32:57] [Server thread/INFO]: [Infiniteannouncements] Loading server plugin Infiniteannouncements v2.3.1
[03:32:57] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v9.14.2
[03:32:57] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[03:32:57] [Server thread/INFO]: [InventorySaver] Loading server plugin InventorySaver v3.8.2-VERSION-1.20
[03:32:57] [Server thread/INFO]: [antiRedstoneClock] Loading server plugin antiRedstoneClock v1.5.0
[03:32:57] [Server thread/WARN]: [antiRedstoneClock] WorldGuard 7 is not supported
[03:32:57] [Server thread/INFO]: [EternalTags] Loading server plugin EternalTags v1.2.0
[03:32:57] [Server thread/INFO]: [ChatFeelings] Loading server plugin ChatFeelings v4.11.1
[03:32:57] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.4.10
[03:32:57] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.8.10
[03:32:57] [Server thread/INFO]: [PyroFishingPro] Loading server plugin PyroFishingPro v4.8.24
[03:32:57] [Server thread/INFO]: [RTP] Loading server plugin RTP v2.0.15
[03:32:57] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.0.0
[03:32:57] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3156)
[03:32:57] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.2.0.1
[03:32:57] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.222
[03:32:57] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[03:32:57] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.4
[03:32:57] [Server thread/INFO]: [UpgradeableSpawners] Loading server plugin UpgradeableSpawners v4.0.0
[03:32:58] [Server thread/INFO]: [InteractionVisualizer] Loading server plugin InteractionVisualizer v1.18.6.0
[03:32:58] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.20.0
[03:32:58] [Server thread/INFO]: [TempFly] Loading server plugin TempFly v3.1.7
[03:32:58] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[03:32:58] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.99.5.0
[03:32:58] [Server thread/INFO]: [SafariNet] Loading server plugin SafariNet v1.15.49-b1-SNAPSHOT
[03:32:58] [Server thread/INFO]: [sleep-most] Loading server plugin sleep-most v5.3.0
[03:32:58] [Server thread/INFO]: [eGlow] Loading server plugin eGlow v3.2.4
[03:32:58] [Server thread/INFO]: [EpicCraftingsPlus] Loading server plugin EpicCraftingsPlus v7.20.1
[03:32:58] [Server thread/INFO]: [StoreStats] Loading server plugin StoreStats v3.30.4
[03:32:58] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.2.19
[03:32:58] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.25.1
[03:32:58] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.0.2
[03:32:58] [Server thread/INFO]: [O'DailyQuests] Loading server plugin ODailyQuests v2.1.0-SNAPSHOT-8
[03:32:58] [Server thread/INFO]: [zAuctionHouseV3] Loading server plugin zAuctionHouseV3 v3.1.3.2
[03:32:58] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.17.1
[03:32:58] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (215 ms).
[03:32:58] [Server thread/INFO]: [Shopkeepers] Loading config.
[03:32:58] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[03:32:58] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[03:32:58] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[03:32:58] [Server thread/INFO]: [CrazyCrates] Loading server plugin CrazyCrates v1.11.16
[03:32:58] [Server thread/INFO]: [TownyMenu] Loading server plugin TownyMenu v1.7.6
[03:32:58] [Server thread/INFO]: [QuickShop] Loading server plugin QuickShop v5.1.2.2
[03:32:58] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Booting up
[03:32:58] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[03:32:58] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[03:32:58] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[03:32:58] [Server thread/INFO]: [QuickShop] Reading the configuration...
[03:32:58] [Server thread/INFO]: [QuickShop] Loading messages translation over-the-air (this may need take a while).
[03:32:58] [Server thread/INFO]: [QuickShop] Translation over-the-air platform selected: Crowdin
[03:32:58] [Server thread/INFO]: [QuickShop] Checking for translation updates, this may need a while...
[03:32:59] [Server thread/INFO]: [QuickShop] Loading up integration modules.
[03:32:59] [Server thread/INFO]: [QuickShop] QuickShop Reremake - Early boot step - Complete
[03:32:59] [Server thread/INFO]: [Dynmap-Towny] Loading server plugin Dynmap-Towny v0.94
[03:32:59] [Server thread/INFO]: [VentureChat] Loading server plugin VentureChat v3.6.0
[03:32:59] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.20.1-43
[03:32:59] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.26.2
[03:32:59] [Server thread/INFO]: [zAuctionHouse-Discord] Loading server plugin zAuctionHouse-Discord v1.1.0
[03:32:59] [Server thread/INFO]: [QSFindItemAddOn] Loading server plugin QSFindItemAddOn v2.0.5.1-RELEASE
[03:32:59] [Server thread/INFO]: [QSFindItemAddOn] A Shop Search AddOn for QuickShop developed by ronsane
[03:32:59] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.13.1
[03:32:59] [Server thread/INFO]: [Rankup] Loading server plugin Rankup v3.14.1
[03:32:59] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.7.2
[03:32:59] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.7.2
[03:32:59] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[03:32:59] [Server thread/INFO]: [ShopGUIPlus] Loading server plugin ShopGUIPlus v1.87.0
[03:32:59] [Server thread/INFO]: [SuperBoosters] Loading server plugin SuperBoosters v1.8.7
[03:32:59] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Loading server plugin ShopGUIPlus-SellGUI v1.1.7
[03:32:59] [Server thread/INFO]: [ItemEdit] Loading server plugin ItemEdit v3.0.13
[03:32:59] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[03:32:59] [Server thread/INFO]: [ItemTag] Loading server plugin ItemTag v3.1.0
[03:32:59] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.5 build 2391
[03:32:59] [Server thread/INFO]: [PlugManX] Loading server plugin PlugManX v2.3.3
[03:32:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[03:32:59] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.79
[03:33:01] [Server thread/INFO]:         __    
[03:33:01] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.79
[03:33:01] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[03:33:01] [Server thread/INFO]: 
[03:33:01] [Server thread/INFO]: [LuckPerms] Loading configuration...
[03:33:02] [Server thread/INFO]: [LuckPerms] Loading storage provider... [YAML]
[03:33:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[03:33:04] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[03:33:05] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 5673ms)
[03:33:05] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[03:33:05] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[03:33:05] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0-SNAPSHOT-645
[03:33:05] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[03:33:05] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[03:33:05] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[03:33:05] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[03:33:05] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[03:33:05] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[03:33:05] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[03:33:06] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[03:33:06] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.6.5-SNAPSHOT-530;9543adc
[03:33:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[03:33:06] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[03:33:06] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[03:33:06] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[03:33:06] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[03:33:07] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.3
[03:33:07] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[03:33:07] [Server thread/WARN]: It seems like you're running on paper.
[03:33:07] [Server thread/WARN]: This may cause issues.
[03:33:07] [Server thread/WARN]: If you encounter any issues, please join my dicord: https://discord.gg/dBhfCzdZxq
[03:33:07] [Server thread/WARN]: Or create an issue on GitHub: https://github.com/TheBlackEntity/PlugMan
[03:33:07] [Server thread/WARN]: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
[03:33:07] [Server thread/INFO]: Preparing level "Vanilla"
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:07] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[03:33:09] [Server thread/INFO]: Time elapsed: 1507 ms
[03:33:09] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[03:33:12] [Server thread/INFO]: Time elapsed: 2632 ms
[03:33:12] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[03:33:13] [Server thread/INFO]: Time elapsed: 1161 ms
[03:33:13] [Server thread/INFO]: [Not-Too-Expensive] Enabling Not-Too-Expensive v1.1
[03:33:13] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.7.1-SNAPSHOT
[03:33:13] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[03:33:13] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.11.3
[03:33:13] [Server thread/INFO]: [NBTAPI] Adding listeners...
[03:33:13] [Server thread/INFO]: [NBTAPI] Gson:
[03:33:13] [Server thread/INFO]: [NBTAPI] Checking bindings...
[03:33:13] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[03:33:13] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[03:33:13] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[03:33:14] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[03:33:14] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.7.0
[03:33:14] [Server thread/INFO]: [RandomMOTD] Enabling RandomMOTD v1.1.0
[03:33:14] [Server thread/INFO]: [RandomMOTD] RandomMOTD v1.1.0 Enabled!
[03:33:14] [Server thread/INFO]: [AntiVillagerLag] Enabling AntiVillagerLag v2.3.1
[03:33:14] [Server thread/INFO]: [ChatCommandArg] Enabling ChatCommandArg v1.1*
[03:33:14] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[03:33:15] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[03:33:15] [Server thread/INFO]: [PyroLib] Enabling PyroLib v1.2.8
[03:33:15] [Server thread/INFO]: [Insights] Enabling Insights v6.15.0
[03:33:16] [Server thread/INFO]: [Insights] Loaded limit 'bed-limit.yml'
[03:33:16] [Server thread/INFO]: [Insights] Loaded limit 'redstone-limit.yml'
[03:33:16] [Server thread/INFO]: [Insights] Loaded limit 'tile-limit.yml'
[03:33:16] [Server thread/WARN]: [Insights] "Insights v6.15.0" has registered a listener for com.destroystokyo.paper.event.block.TNTPrimeEvent on method "public void dev.frankheijden.insights.listeners.PaperEntityListener.onTNTPrime(com.destroystokyo.paper.event.block.TNTPrimeEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [FrankHeijden].
[03:33:16] [Server thread/INFO]: [Insights] Unregistered listener of 'BlockFromToEvent'
[03:33:16] [Server thread/INFO]: [Insights] Unregistered listener of 'LeavesDecayEvent'
[03:33:16] [Server thread/INFO]: [Insights] Unregistered listener of 'FluidLevelChangeEvent'
[03:33:16] [Server thread/INFO]: [Insights] Unregistered listener of 'SpongeAbsorbEvent'
[03:33:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: insights [6.15.0]
[03:33:16] [Server thread/INFO]: [Bolt] Enabling Bolt v1.0.503
[03:33:16] [pool-38-thread-1/INFO]: Loaded 2321 block protections in 32.294 ms
[03:33:16] [pool-38-thread-1/INFO]: Loaded 352 entity protections in 3.689 ms
[03:33:17] [Server thread/INFO]: [FastChunkPregenerator] Enabling FastChunkPregenerator v2.0.6-SNAPSHOT
[03:33:17] [Server thread/INFO]: [FastChunkPregenerator] >> Paper was found.
[03:33:17] [Server thread/INFO]: [FastChunkPregenerator] >> Async chunk loading support is enabled.
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Commands' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen start' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced load' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced free' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced worldinfo' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced totalinfo' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view on' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view off' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen forced view once' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen fillvanilla' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen pause' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen resume' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen cancel' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/WARN]: Plugin 'FastChunkPregenerator' is creating timing 'Command: chunkgen pending' - this is deprecated behavior, please report it to the authors: Gestankbratwurst
[03:33:17] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.3.1
[03:33:17] [Server thread/INFO]: [RareMobs] Enabling RareMobs v2.9.1
[03:33:17] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[03:33:18] [Server thread/INFO]: [DeluxeWithdraw] Enabling DeluxeWithdraw vBuild 16
[03:33:18] [Server thread/INFO]: [DeluxeWithdraw] Build 16, a premium resource by Norska - Thanks for purchasing!
[03:33:19] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[03:33:19] [Server thread/INFO]: [Votifier] Loaded token for website: default
[03:33:19] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[03:33:19] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[03:33:19] [Server thread/INFO]: [PyroWelcomes] Enabling PyroWelcomes v2.5.0
[03:33:19] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /0.0.0.0:8032.
[03:33:19] [Server thread/INFO]: [PyroWelcomes] Hooked into PAPI
[03:33:19] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PyroWelcomes [2.5.0]
[03:33:19] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.37
[03:33:19] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.37-Premium.jar
[03:33:19] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_20_R1 (v1_20)
[03:33:19] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1239
[03:33:19] [Server thread/INFO]: [LibsDisguises] Build Date: 25/06/2023 07:08
[03:33:19] [Server thread/INFO]: [LibsDisguises] Registered to: 634083 (24)
[03:33:19] [Server thread/INFO]: [LibsDisguises] Premium enabled, thank you for supporting Lib's Disguises!
[03:33:32] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[03:33:32] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[03:33:32] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[03:33:32] [Server thread/INFO]: [ItemTags] Enabling ItemTags v3.8.0
[03:33:32] [Server thread/INFO]:  
[03:33:32] [Server thread/INFO]: =============================
[03:33:32] [Server thread/INFO]: ItemTags v3.8.0 by Tweetzy
[03:33:32] [Server thread/INFO]: Developer: Kiran Hart
[03:33:32] [Server thread/INFO]: [FlightCore] Enabling metrics for ItemTags
[03:33:32] [Server thread/INFO]: =============================
[03:33:32] [Server thread/INFO]:  
[03:33:32] [Server thread/INFO]: [Lootin] Enabling Lootin v7.0
[03:33:32] [Server thread/INFO]: [Lootin] [PriLib] Running v1_20_R1 bukkit version and 1.20.1 minecraft version
[03:33:32] [Server thread/INFO]: [Lootin] [ACF] Enabled Asynchronous Tab Completion Support!
[03:33:32] [Server thread/INFO]: [Lootin] Config file reloaded
[03:33:32] [Server thread/INFO]: [Lootin] Found ProtocolLib, registering meta data packet listener...
[03:33:32] [Server thread/INFO]: [Lootin] Enabling bstats...
[03:33:32] [Server thread/INFO]: [gProtector] Enabling gProtector v2.4
[03:33:32] [Server thread/INFO]: [gProtector] Config loaded
[03:33:32] [Server thread/INFO]: [gProtector] Metrics loaded successfully
[03:33:32] [Server thread/INFO]: [gProtector] Server version newer than <1.13>, using new channel format
[03:33:32] [Server thread/INFO]: [gProtector] ViaVersion detected. Enabled compatibility.
[03:33:32] [Server thread/INFO]: [gProtector] Channels listener loaded successfully.
[03:33:32] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b59-2278589)
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.12.5
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
[03:33:32] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 8.05ms
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Enabling ViewDistanceTweaks v1.5.6
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperSimulationDistanceHook for the simulation distance hook.
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperViewDistanceHook for the view distance hook.
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Using PaperTickHook for the tick hook.
[03:33:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: viewdistancetweaks [1]
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Registered expansion for PlaceholderAPI.
[03:33:32] [Server thread/INFO]: [ViewDistanceTweaks] Finished startup.
[03:33:32] [Server thread/INFO]: [Elevators] Enabling Elevators v4.0.14
[03:33:32] [Server thread/INFO]: [MoneyPouch] Enabling MoneyPouch v3.6.1
[03:33:32] [Server thread/INFO]: [MoneyPouch] Your server is running version v1_20_R1.
[03:33:32] [Server thread/INFO]: [MoneyPouch] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[03:33:32] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.6.3
[03:33:32] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9-beta1+2249-223b80c
[03:33:33] [Server thread/INFO]: [ChestSort] Use permissions: true
[03:33:33] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[03:33:33] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[03:33:33] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[03:33:33] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[03:33:33] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[03:33:33] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[03:33:33] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[03:33:33] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[03:33:33] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[03:33:33] [Server thread/INFO]: [ChestSort] Check for updates: true
[03:33:33] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[03:33:33] [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)
[03:33:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestsort [13.6.3]
[03:33:33] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[03:33:33] [Server thread/INFO]: [DeluxeTags] Using standard hex colors format: #aaFF00
[03:33:33] [Server thread/INFO]: [DeluxeTags] 18 tags loaded
[03:33:33] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[03:33:33] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[03:33:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[03:33:33] [Server thread/INFO]: [DeluxeTags] ----------------------------
[03:33:33] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[03:33:33] [Server thread/INFO]: [DeluxeTags]  
[03:33:33] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[03:33:33] [Server thread/INFO]: [DeluxeTags] The latest version
[03:33:33] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[03:33:33] [Server thread/INFO]: [DeluxeTags]  
[03:33:33] [Server thread/INFO]: [DeluxeTags] ----------------------------
[03:33:33] [Server thread/INFO]: [DeluxeWithdrawPlayerPointsAddon] Enabling DeluxeWithdrawPlayerPointsAddon vBuild 1b
[03:33:33] [Server thread/INFO]:  
[03:33:33] [Server thread/INFO]: [DW Addon (PlayerPoints)] Build 1b, a free addon by Norska - Thanks for using!
[03:33:33] [Server thread/INFO]:  
[03:33:33] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.2.14
[03:33:33] [Server thread/INFO]: [PlayerVaults] Added BEDROCK to list of blocked materials.
[03:33:33] [Server thread/INFO]: [PlayerVaults] Added END_PORTAL_FRAME to list of blocked materials.
[03:33:33] [Server thread/INFO]: [PlayerVaults] Loaded! Took 353ms
[03:33:33] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.1
[03:33:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: craftingstore [2.9.1]
[03:33:33] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[03:33:33] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Enabling CrazyVouchers v2.9.14.5
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Loading the Config.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Config.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Loading the Data.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Data.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Loading the Messages.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Successfully loaded Messages.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Loading the VoucherCodes.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Successfully loaded VoucherCodes.yml
[03:33:33] [Server thread/INFO]: [CrazyVouchers] Metrics has been enabled.
[03:33:33] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.3
[03:33:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.3*-=-=-=-=-=-=-=-=-=-*
[03:33:33] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[03:33:33] [Server thread/INFO]: | Command file(s) found : 1
[03:33:33] [Server thread/INFO]: | Config : Ready.
[03:33:33] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[03:33:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[03:33:33] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[03:33:33] [Server thread/INFO]: | Custom commands loaded : 95
[03:33:33] [Server thread/INFO]: | New update available : MyCommand v5.7.4
[03:33:33] [Server thread/INFO]: | 0 (custom) commands in cooldown added.
[03:33:33] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[03:33:33] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[03:33:33] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.0.1
[03:33:34] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[03:33:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [**.**.**.**]
[03:33:34] [Server thread/INFO]: PlaceholderAPI hooked.
[03:33:34] [Server thread/INFO]: Updated (EN) language file. Took 19ms
[03:33:34] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[03:33:34] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[03:33:34] [Server thread/INFO]: [spark] Starting background profiler...
[03:33:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[03:33:35] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[03:33:35] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[03:33:35] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" 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--].
[03:33:35] [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.
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:35] [Server thread/INFO]: Preparing start region for dimension minecraft:resource
[03:33:36] [Server thread/INFO]: Time elapsed: 1368 ms
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:36] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_nether
[03:33:36] [Server thread/INFO]: Time elapsed: 9 ms
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/INFO]: Preparing start region for dimension minecraft:resource_end
[03:33:37] [Server thread/INFO]: Time elapsed: 80 ms
[03:33:37] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[03:33:37] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key DIRT into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key EGG into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRASS_BLOCK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key GRAVEL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key NETHERRACK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SAND into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key SNOWBALL into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STICK into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/ERROR]: [MapSerializer] Could not deserialize key STONE into class net.minecraft.world.item.Item at [entities, spawning, alt-item-despawn-rate, items]
[03:33:37] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[03:33:37] [Server thread/INFO]: Time elapsed: 341 ms
[03:33:37] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[03:33:37] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[03:33:37] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[03:33:37] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[03:33:37] [Server thread/INFO]: [TCPShield] Enabling TCPShield v2.6.1
[03:33:37] [Server thread/INFO]: [TAB] Enabling TAB v4.0.3
[03:33:37] [Server thread/INFO]: [TAB] Server version: 1.20.1 (v1_20_R1)
[03:33:37] [Server thread/INFO]: [TAB] Loaded NMS hook in 30ms
[03:33:38] [Server thread/INFO]: [TAB] Enabled in 215ms
[03:33:38] [Server thread/INFO]: [DeluxeWithdrawEXPAddon] Enabling DeluxeWithdrawEXPAddon vBuild 2b
[03:33:38] [Server thread/INFO]:  
[03:33:38] [Server thread/INFO]: [DW Addon (Experience)] Build 2b, a free addon by Norska - Thanks for using!
[03:33:38] [Server thread/INFO]:  
[03:33:38] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9-beta1+2249-223b80c
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Vanilla'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_nether) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_nether) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_nether) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_nether) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Vanilla_nether'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_the_end) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_the_end) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_the_end) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Vanilla_the_end) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Vanilla_the_end'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Resource'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_Nether) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_Nether) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_Nether) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_Nether) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Resource_Nether'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_End) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_End) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_End) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Resource_End) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Resource_End'
[03:33:38] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[03:33:38] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[03:33:38] [Server thread/INFO]: [WorldGuard] Loading region data...
[03:33:38] [Server thread/INFO]: [CLV] Enabling CyberLevels v0.5.8
[03:33:38] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[03:33:38] [Server thread/INFO]: [CLV] ╭━━━╮╱╱╱╭╮╱╱╱╱╱╱╭╮╱╱╱╱╱╱╱╱╱╱╱╭╮
[03:33:38] [Server thread/INFO]: [CLV] ┃╭━╮┃╱╱╱┃┃╱╱╱╱╱╱┃┃╱╱╱╱╱╱╱╱╱╱╱┃┃
[03:33:38] [Server thread/INFO]: [CLV] ┃┃╰╋╮╭┫╰━┳━━┳━┫┃╱╱╭━━┳╮╭┳━━┫┃╭━━╮
[03:33:38] [Server thread/INFO]: [CLV] ┃┃╭┫┃┃┃╭╮┃┃━┫╭┫┃╭┫┃━┫╰╯┃┃━┫┃┃━━┫
[03:33:38] [Server thread/INFO]: [CLV] ┃╰━╯┃╰━╯┃╰╯┃┃━┫┃┃╰━╯┃┃━╋╮╭┫┃━┫╰╋━━┃
[03:33:38] [Server thread/INFO]: [CLV] ╰━━━┻━╮╭┻━━┻━━┻╯╰━━━┻━━╯╰╯╰━━┻━┻━━╯
[03:33:38] [Server thread/INFO]: [CLV] ╱╱╱╱╭━╯┃  Authors: Kihsomray, CroaBeast
[03:33:38] [Server thread/INFO]: [CLV] ╱╱╱╱╰━━╯  Version: 0.5.8
[03:33:38] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading YAML files...
[03:33:38] [Server thread/INFO]: [CLV] Loaded file config.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded file lang.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded file levels.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded file rewards.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded file earn-exp.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded file anti-abuse.yml.
[03:33:38] [Server thread/INFO]: [CLV] Loaded 6 files in 279ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading exp earning events...
[03:33:38] [Server thread/INFO]: [CLV] Loaded 11 exp earn events in 1ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading anti-abuse...
[03:33:38] [Server thread/INFO]: [CLV] Loaded 4 anti-abuse settings in 0ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading level data...
[03:33:38] [Server thread/INFO]: [CLV] Loaded 3000 level(s) in 7ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading reward data...
[03:33:38] [Server thread/INFO]: [CLV] Loaded 1 reward(s) in 62ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [CLV] Loading leaderboard data...
[03:33:38] [Server thread/INFO]: [CLV] Loaded 10 players in 5ms.
[03:33:38] [Server thread/INFO]: [CLV] 
[03:33:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: clv [0.5.8]
[03:33:38] [Server thread/INFO]: [CLV] Loaded CLV v0.5.8 in 376ms.
[03:33:38] [Server thread/INFO]: [CLV] ―――――――――――――――――――――――――――――――――――――――――――――――
[03:33:38] [Server thread/INFO]: [ajParkour] Enabling ajParkour v2.12.10
[03:33:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajpk [2.12.10]
[03:33:38] [Server thread/INFO]: ajParkour v2.12.10 by ajgeiss0702 has been enabled!
[03:33:38] [Server thread/INFO]: [MobFarmManager] Enabling MobFarmManager v2.0.4.2
[03:33:39] [Server thread/INFO]: MobFarmManager Version 2.0.4.2 has been enabled
[03:33:39] [Server thread/INFO]: [ReferralSystem] Enabling ReferralSystem v3.2.4
[03:33:39] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[03:33:39] [Server thread/INFO]:   ___      __                  _ ___         _             
[03:33:39] [Server thread/INFO]:  | _ \___ / _|___ _ _ _ _ __ _| / __|_  _ __| |_ ___ _ __  
[03:33:39] [Server thread/INFO]:  |   / -_)  _/ -_) '_| '_/ _` | \__ \ || (_-<  _/ -_) '  \ 
[03:33:39] [Server thread/INFO]:  |_|_\___|_| \___|_| |_| \__,_|_|___/\_, /__/\__\___|_|_|_|
[03:33:39] [Server thread/INFO]:                                      |__/                  
[03:33:39] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[03:33:39] [Server thread/INFO]: [ReferralSystem] Plugin Create by PedroJM96.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading Libraries...
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library commons-lang-commons-lang-2.6
[03:33:39] [Server thread/INFO]: [ReferralSystem] commons-lang-commons-lang-2.6 library loaded successfully.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library commons-codec-commons-codec-1.15
[03:33:39] [Server thread/INFO]: [ReferralSystem] commons-codec-commons-codec-1.15 library loaded successfully.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library com.google.code.gson-gson-2.9.0
[03:33:39] [Server thread/INFO]: [ReferralSystem] com.google.code.gson-gson-2.9.0 library loaded successfully.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library org.slf4j-slf4j-api-1.7.25
[03:33:39] [Server thread/INFO]: [ReferralSystem] org.slf4j-slf4j-api-1.7.25 library loaded successfully.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library org.slf4j-slf4j-simple-1.7.25
[03:33:39] [Server thread/INFO]: [ReferralSystem] org.slf4j-slf4j-simple-1.7.25 library loaded successfully.
[03:33:39] [Server thread/INFO]: [ReferralSystem] Loading library com.zaxxer-HikariCP-3.4.1
[03:33:39] [Server thread/INFO]: [ReferralSystem] com.zaxxer-HikariCP-3.4.1 library loaded successfully.
[03:33:40] [Server thread/INFO]: [ReferralSystem] Loading configuration...
[03:33:40] [Server thread/INFO]: [ReferralSystem] Load config.yml
[03:33:40] [Server thread/INFO]: [ReferralSystem] config.yml loaded.
[03:33:40] [Server thread/INFO]: [ReferralSystem] Load messages_EN.yml
[03:33:40] [Server thread/INFO]: [ReferralSystem] messages_EN.yml loaded.
[03:33:40] [Server thread/INFO]: [ReferralSystem] Load claim.yml
[03:33:40] [Server thread/INFO]: [ReferralSystem] claim.yml loaded.
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player command: referral
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: help
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: claim
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: code
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: list
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: reload
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: info
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: top
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: addPoints
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: setPoints
[03:33:40] [Server thread/INFO]: [ReferralSystem] Register player sub-command: admincode
[03:33:40] [Server thread/INFO]: [ReferralSystem] Hooked Vault economy
[03:33:40] [Server thread/INFO]: [ReferralSystem] Hooked PlayerPoints
[03:33:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: referralsystem [3.2.4]
[03:33:40] [Server thread/INFO]: [ReferralSystem] Hooked PlaceholderAPI
[03:33:40] [Server thread/INFO]: [ReferralSystem] Data set to SQLite
[03:33:40] [Server thread/INFO]: [ReferralSystem] Table referralsystem exists.
[03:33:40] [Server thread/INFO]: [ReferralSystem] Loaded database
[03:33:40] [Server thread/INFO]: [ReferralSystem] [id,INTEGER] [name,VARCHAR] [uuid,VARCHAR] [ip,VARCHAR] [code,INT] [referrals,INT] [points,INT] [referring,INT] [claim_bonus,TINYINT] [playtime,BIGINT] [purchases,VARCHAR] [time,BIGINT] 
[03:33:40] [Server thread/INFO]: -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
[03:33:40] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.3
[03:33:40] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[03:33:40] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[03:33:40] [Server thread/INFO]: --------------------
[03:33:40] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[03:33:40] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[03:33:40] [Server thread/INFO]: --------------------
[03:33:40] [Server thread/INFO]: [dynmap] Enabling dynmap v3.6-899
[03:33:40] [Server thread/INFO]: [dynmap] Added 20 custom biome mappings
[03:33:40] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.79 for access control
[03:33:41] [Server thread/INFO]: [dynmap] Opening MySQL database na05-sql.pebblehost.com:3306/customer_292627_dynmap as map store
[03:33:41] [Server thread/INFO]: [dynmap] Connected to MySQL v5.5
[03:33:41] [Server thread/INFO]: [dynmap] Schema version = 6
[03:33:41] [Server thread/INFO]: [dynmap] Mod Support processing completed
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[03:33:43] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[03:33:43] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[03:33:43] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:8076
[03:33:43] [Server thread/INFO]: [dynmap] version 3.6-899 is enabled - core version 3.6-899
[03:33:43] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[03:33:43] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[03:33:43] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[03:33:43] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Vanilla'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'Vanilla_nether'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Vanilla_the_end'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Resource'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'Resource_Nether'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 0 maps of world 'Resource_End'.
[03:33:43] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Spawn'.
[03:33:43] [Server thread/INFO]: [dynmap] Enabled
[03:33:43] [Server thread/INFO]: [Essentials] Enabling Essentials v2.20.0
[03:33:43] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[03:33:43] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[03:33:43] [Server thread/INFO]: [Essentials] No kits found to migrate.
[03:33:43] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[03:33:43] [Server thread/INFO]: [Essentials] Using locale en_US
[03:33:43] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[03:33:43] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[03:33:43] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[03:33:43] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[03:33:43] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.61.1
[03:33:43] [Server thread/INFO]: [PinataParty] Registering hooks...
[03:33:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.61.1]
[03:33:43] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[03:33:43] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[03:33:43] [Server thread/INFO]: [PinataParty] Hooked into Vault
[03:33:43] [Server thread/INFO]: [PinataParty] Registering commands...
[03:33:43] [Server thread/INFO]: [PinataParty] Registering listeners...
[03:33:43] [Server thread/INFO]: [PinataParty] Loading data...
[03:33:43] [Server thread/INFO]: [PinataParty] Starting tasks...
[03:33:43] [Server thread/INFO]: [PinataParty] Starting metrics...
[03:33:43] [Server thread/INFO]: [PinataParty] Plugin registered to 634083 | -1152017021
[03:33:43] [Server thread/INFO]: [PinataParty] Done and enabled in 43.56ms
[03:33:43] [Server thread/INFO]: [PyroMining] Enabling PyroMining v4.4.4
[03:33:44] [Server thread/INFO]: [PyroMining] Hooked into PAPI
[03:33:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PyroMining [4.4.4]
[03:33:44] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.3
[03:33:44] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[03:33:44] [Server thread/INFO]: [HeadDatabase] Economy successfully setup using CURRENCY!
[03:33:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.3]
[03:33:44] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.12.4
[03:33:45] [Server thread/INFO]: [LiteBans] Using system locale (en)
[03:33:45] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[03:33:45] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[03:33:45] [Server thread/INFO]: [LiteBans] Connecting to database...
[03:33:45] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[03:33:45] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[03:33:45] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (118.9 ms).
[03:33:45] [Server thread/INFO]: [LiteBans] Database connection fully initialized (122.6 ms).
[03:33:45] [Server thread/INFO]: [LiteBans] v2.12.4 enabled. Startup took 410 ms.
[03:33:45] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.7.0
[03:33:45] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mcmmo_level_fishing. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mcmmo_level_mining. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for mcmmo_power_level. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for playerpoints_points. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for pyrofishingpro_level. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for pyrofishingpro_totalfishcaught. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for pyromining_level. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for pyrowelcomes_points. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for quests_completed. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_fish_caught. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_hours_played. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mine_block. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] The columns already exist for vault_eco_balance_commas. Canceling updater and bumping DB version.
[03:33:46] [Server thread/INFO]: [ajLeaderboards] Loaded 17 boards
[03:33:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.7.0]
[03:33:46] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[03:33:46] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.7.0 by ajgeiss0702 enabled!
[03:33:46] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[03:33:46] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[03:33:46] [Server thread/WARN]: [DeluxeMenus] command: scoreboardsmenu specified for menu: scoreboards already exists for another menu!
Skipping command: scoreboardsmenu in menu: scoreboards
[03:33:46] [Server thread/INFO]: [DeluxeMenus] 35 GUI menus loaded!
[03:33:46] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[03:33:46] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[03:33:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[03:33:46] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[03:33:46] [Server thread/INFO]:  
[03:33:46] [Server thread/INFO]: ====================================
[03:33:46] [Server thread/INFO]: Plugin name: Infiniteannouncements
[03:33:46] [Server thread/INFO]: Version: 2.3.1
[03:33:46] [Server thread/INFO]: Core version: 0.7.25
[03:33:46] [Server thread/INFO]: ====================================
[03:33:46] [Server thread/INFO]:  
[03:33:46] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[03:33:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: infiniteannouncements [1.0.0]
[03:33:46] [Server thread/INFO]: [AngelChest] Enabling AngelChest v9.14.2
[03:33:46] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[03:33:46] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[03:33:46] [Server thread/INFO]: [AngelChest] No graveyards.yml found, disabling Graveyards feature
[03:33:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: angelchest [GENERIC]
[03:33:46] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[03:33:46] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[03:33:46] [Server thread/INFO]: [InventorySaver] Enabling InventorySaver v3.8.2-VERSION-1.20
[03:33:46] [Server thread/INFO]: [InventorySaver] Configuration file found. Loading configuration file.
[03:33:47] [Server thread/INFO]: [InventorySaver] [History - SQLite] Database connection was successful created.
[03:33:47] [Server thread/INFO]: [antiRedstoneClock] Enabling antiRedstoneClock v1.5.0
[03:33:47] [Server thread/INFO]: [antiRedstoneClock] Enabling Metrics
[03:33:47] [Server thread/INFO]: [antiRedstoneClock] An error occured while trying to enable metrics. Skipping...
[03:33:47] [Server thread/WARN]: [antiRedstoneClock] PlotSquared hasn't been found!
[03:33:47] [Server thread/INFO]: [antiRedstoneClock] Plugin loaded in 8 ms
[03:33:47] [Server thread/INFO]: [EternalTags] Enabling EternalTags v1.2.0
[03:33:47] [Server thread/INFO]: [EternalTags] Initializing using RoseGarden v1.2.1
[03:33:47] [Server thread/INFO]: [EternalTags] Data handler connected using SQLite.
[03:33:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eternaltags [1.2.0]
[03:33:47] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.11.1
[03:33:47] [Server thread/INFO]: [ChatFeelings] Checking repository to maximize support...
[03:33:47] [Server thread/INFO]: [ChatFeelings] Hooking into LiteBans...
[03:33:47] [Server thread/INFO]: [ChatFeelings] Hooking into Essentials...
[03:33:47] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[03:33:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatfeelings [4.11.1]
[03:33:47] [Server thread/INFO]: [GSit] Enabling GSit v1.4.10
[03:33:47] [Server thread/INFO]: [sʏsᴛᴇᴍ] ● The plugin was successfully enabled.
[03:33:47] [Server thread/INFO]: [sʏsᴛᴇᴍ] ● Link with PlaceholderAPI successful!
[03:33:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.4.10]
[03:33:47] [Server thread/INFO]: [sʏsᴛᴇᴍ] ● Link with WorldGuard successful!
[03:33:47] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.10
[03:33:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.10]
[03:33:47] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[03:33:47] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[03:33:47] [Server thread/INFO]: [PremiumVanish] Hooked into dynmap
[03:33:47] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[03:33:47] [Server thread/INFO]: [PyroFishingPro] Enabling PyroFishingPro v4.8.24
[03:33:48] [Server thread/INFO]: ==================================================================================
[03:33:48] [Server thread/INFO]: 
[03:33:48] [Server thread/INFO]: __________                     ___________.__       .__    .__                
[03:33:48] [Server thread/INFO]: \______   \___.__._______  ____\_   _____/|__| _____|  |__ |__| ____    ____  
[03:33:48] [Server thread/INFO]:  |     ___<   |  |\_  __ \/  _ \|    __)  |  |/  ___/  |  \|  |/    \  / ___\ 
[03:33:48] [Server thread/INFO]:  |    |    \___  | |  | \(  <_> )     \   |  |\___ \|   Y  \  |   |  \/ /_/  >
[03:33:48] [Server thread/INFO]:  |____|    / ____| |__|   \____/\___  /   |__/____  >___|  /__|___|  /\___  / 
[03:33:48] [Server thread/INFO]:            \/                       \/            \/     \/        \//_____/  
[03:33:48] [Server thread/INFO]: 
[03:33:48] [Server thread/INFO]: - Loading v4.8.24...
[03:33:48] [Server thread/INFO]: 
[03:33:48] [Server thread/INFO]: - Registered to: 634083
[03:33:48] [Server thread/INFO]: - Successfully hooked into WorldGuard.
[03:33:48] [Server thread/INFO]: - Loaded (125) Custom Fish successfully.
[03:33:48] [Server thread/INFO]: - Loaded (0) fishing baits.
[03:33:48] [Server thread/INFO]: - Successfully hooked into PlaceholderAPI.
[03:33:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: PyroFishingPro [4.8.24]
[03:33:48] [Server thread/INFO]: 
[03:33:48] [Server thread/INFO]: ==================================================================================
[03:33:48] [Server thread/INFO]: 
[03:33:48] [Server thread/INFO]: [RTP] Enabling RTP v2.0.15
[03:33:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rtp [${version}]
[03:33:48] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.0.0
[03:33:48] [Server thread/INFO]: ------------- Jobs -------------
[03:33:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [**.**.**.**]
[03:33:48] [Server thread/INFO]: PlaceholderAPI hooked.
[03:33:49] [Server thread/INFO]: Connected to database (SqLite)
[03:33:49] [Server thread/INFO]: Loaded 8 titles
[03:33:49] [Server thread/INFO]: Loaded 69 protected blocks timers
[03:33:49] [Server thread/INFO]: Loaded 1403 custom item names
[03:33:49] [Server thread/INFO]: Loaded 81 custom entity names
[03:33:49] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[03:33:49] [Server thread/INFO]: Loaded 38 custom enchant names
[03:33:49] [Server thread/INFO]: Loaded 21 custom enchant names
[03:33:49] [Server thread/INFO]: Loaded 16 custom color names
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Enchanter
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Crafter
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Explorer
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Brewer
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Farmer
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Builder
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Hunter
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Digger
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Fisherman
[03:33:49] [Server thread/INFO]: Loaded 1 quests for Miner
[03:33:49] [Server thread/INFO]: Loaded 12 jobs
[03:33:49] [Server thread/INFO]: Loaded 0 boosted items
[03:33:49] [Server thread/INFO]: Loaded 278 furnace for reassigning.
[03:33:49] [Server thread/INFO]: Loaded 59 brewing for reassigning.
[03:33:49] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[03:33:49] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[03:33:49] [Server thread/INFO]: Preloaded 263 players data in 0.02
[03:33:49] [Server thread/INFO]: WorldGuard detected.
[03:33:49] [Server thread/INFO]: mcMMO2.1.222 was found - Enabling capabilities.
[03:33:49] [Server thread/INFO]: Registered McMMO 2.x listener
[03:33:49] [Server thread/INFO]: [Jobs] Loaded 114 block protection entries. 3ms
[03:33:49] [Server thread/INFO]: Loading explorer data
[03:33:49] [Server thread/INFO]: Loaded explorer data (88852) in 220 ms
[03:33:49] [Server thread/INFO]: Plugin has been enabled successfully.
[03:33:49] [Server thread/INFO]: ------------------------------------
[03:33:49] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3156)
[03:33:49] [Server thread/INFO]: [Citizens] Loading external libraries
[03:33:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[03:33:50] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[03:33:50] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[03:33:50] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.2.0.1
[03:33:50] [Server thread/INFO]: [TradeMe] Version 6.2.0.1 has been enabled
[03:33:50] [Server thread/INFO]: [TradeMe] PlayerPoints plugin was found!
[03:33:50] [Server thread/INFO]: [TradeMe] McMMO plugin was found!
[03:33:50] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[03:33:50] [Server thread/INFO]: [TradeMe] Jobs plugin was found!
[03:33:50] [Server thread/INFO]: [TradeMe] JobsPoints feature enabled!
[03:33:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: trademe [**.**.**.**]
[03:33:50] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[03:33:50] [Server thread/INFO]: [TradeMe] Connected to sqlite
[03:33:50] [Server thread/INFO]: [TradeMe] 14 trade logs preloaded
[03:33:50] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.222
[03:33:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcmmo [1.0,0]
[03:33:51] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.4
[03:33:51] [Server thread/INFO]: [PlayerParticles] Initializing using RoseGarden v1.1.0.52-SNAPSHOT
[03:33:51] [Server thread/INFO]: [PlayerParticles] Data handler connected using SQLite.
[03:33:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.4]
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Enabling UpgradeableSpawners v4.0.0
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Version: 4.0.0 Previous: 4.0.0
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Server: 1.20.x running Paper
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Licensed to: 634083
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Experiencing issues or having questions? Join our Discord!
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Discord: https://discord.gg/B4MAJVk
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Wiki: https://github.com/Angeschossen/UpgradeableSpawners/wiki
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners]  
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Using SQLite as database driver.
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Successful connected to SQL database.
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Database is ready.
[03:33:51] [Server thread/INFO]: [UpgradeableSpawners] Entity stacking capability enabled.
[03:33:51] [Server thread/INFO]: [InteractionVisualizer] Enabling InteractionVisualizer v1.18.6.0
[03:33:51] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into OpenInv!
[03:33:51] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into SuperVanish/PremiumVanish!
[03:33:51] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has hooked into Essentials!
[03:33:53] [Server thread/INFO]: [InteractionVisualizer] Loading languages...
[03:33:53] [Server thread/INFO]: [InteractionVisualizer] Opened Sqlite database successfully
[03:33:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactionvisualizer [2.0.0]
[03:33:54] [Server thread/INFO]: [InteractionVisualizer] InteractionVisualizer has been enabled!
[03:33:54] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.20.0
[03:33:54] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[03:33:54] [Server thread/INFO]: [TempFly] Enabling TempFly v3.1.7
[03:33:54] [Server thread/INFO]: [TempFly] Initializing ClipAPI
[03:33:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tempfly [3.1.7]
[03:33:54] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[03:33:54] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[03:33:54] [Server thread/INFO]: [Towny] Enabling Towny v0.99.5.0
[03:33:54] [Server thread/INFO]: ====================      Towny      ========================
[03:33:55] [Server thread/INFO]: [Towny] Successfully loaded translations for 42 languages.
[03:33:55] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[03:33:55] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[03:33:55] [Server thread/INFO]: [Towny] Database: Loaded in 143ms.
[03:33:55] [Server thread/INFO]: [Towny] Database: 100% of residents have stored UUIDs.
[03:33:55] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Cleaning up old backups...
[03:33:55] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[03:33:55] [Server thread/INFO]: [Towny] Plugins found: 
[03:33:55] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Successfully cleaned backups.
[03:33:55] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Making backup...
[03:33:55] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, LuckPerms v5.4.79 via Vault
[03:33:55] [Server thread/INFO]: [Towny]   Chat: LuckPerms v5.4.79 via Vault
[03:33:55] [Server thread/INFO]: [Towny]   Economy: EssentialsX Economy via Vault
[03:33:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced [**.**.**.**]
[03:33:55] [Server thread/INFO]: [Towny]   Add-ons: Dynmap-Towny v0.94, PlaceholderAPI v2.11.3
[03:33:55] [Server thread/WARN]: [Towny]   Warning: EssentialsX Economy has been known to reset
                           town and nation bank accounts on rare occasions.
[03:33:55] [Folia Async Scheduler Thread #7/INFO]: [Towny] Time until a New Day: 8 hours, 26 minutes, 5 seconds
[03:33:55] [Folia Async Scheduler Thread #7/INFO]: [Towny] Checking for updates...
[03:33:55] [Folia Async Scheduler Thread #7/INFO]: [Towny] New update available: **.**.**.** | Current version: 0.99.5.0
[03:33:55] [Folia Async Scheduler Thread #7/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/**.**.**.**
[03:33:55] [Server thread/INFO]: =============================================================
[03:33:55] [Server thread/INFO]: [Towny] Version: 0.99.5.0 - Plugin Enabled
[03:33:55] [Server thread/INFO]: =============================================================
[03:33:55] [Server thread/INFO]: [SafariNet] Enabling SafariNet v1.15.49-b1-SNAPSHOT
[03:33:55] [Server thread/INFO]: [SafariNet] Using v1_20_R1
[03:33:55] [Server thread/INFO]: [SafariNet] [SafariNet] WorldGuard found and using it.
[03:33:55] [Server thread/INFO]: [SafariNet] [SafariNet] Citizens found and using it.
[03:33:55] [Server thread/INFO]: [SafariNet] [SafariNet] Towny found and using it.
[03:33:55] [Server thread/INFO]: [SafariNet] [SafariNet] TradeMe found and using it.
[03:33:55] [Server thread/INFO]: [sleep-most] Enabling sleep-most v5.3.0
[03:33:55] [ForkJoinPool.commonPool-worker-4/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[03:33:55] [Server thread/INFO]: Hooked to PlaceholderAPI
[03:33:55] [Server thread/INFO]: Hooked to GSit
[03:33:55] [Server thread/INFO]: Hooked to Essentials
[03:33:55] [Server thread/INFO]: [sleep-most] Hooked to GSit!
[03:33:55] [Server thread/INFO]: [sleep-most] Hooked to PAPI!
[03:33:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: sleepmost [5.3.0]
[03:33:55] [Server thread/INFO]: [eGlow] Enabling eGlow v3.2.4
[03:33:56] [Server thread/INFO]: [eGlow]: Loading main config.
[03:33:56] [Server thread/INFO]: [eGlow]: Loading messages config.
[03:33:56] [Server thread/INFO]: [eGlow]: Loading CustomEffects config.
[03:33:56] [Server thread/INFO]: [ᴇɢʟᴏᴡ] ● Successfully loaded Playerdata database.
[03:33:56] [Server thread/INFO]: [EpicCraftingsPlus] Enabling EpicCraftingsPlus v7.20.1
[03:33:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: epiccraftings [7.20.1]
[03:33:56] [Server thread/INFO]: [EpicCraftings+] Has been enabled! Version: 7.20.1
[03:33:56] [Server thread/INFO]: [EpicCraftings+] Thanks for using my plugin!  ~Ajneb97
[03:33:56] [Server thread/INFO]: [StoreStats] Enabling StoreStats v3.30.4
[03:33:56] [Server thread/INFO]: [StoreStats] Initializing managers...
[03:33:56] [Server thread/INFO]: [StoreStats] Using Paper Implementation!
[03:33:56] [Server thread/INFO]: [StoreStats] ImplementationManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] DataManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] StoreManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] PaymentManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] DisplayManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] PlaceholdersManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] InventoryManager initialized!
[03:33:56] [Server thread/INFO]: [StoreStats] Registering commands...
[03:33:56] [Server thread/INFO]: [StoreStats] Registering listeners...
[03:33:56] [Server thread/INFO]: [StoreStats] Loading data...
[03:33:56] [Server thread/INFO]: [StoreStats] Registering hooks...
[03:33:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: storestats [3.30.4]
[03:33:56] [Server thread/INFO]: [StoreStats] Hooked into PlaceholderAPI
[03:33:56] [Server thread/INFO]: [StoreStats] Hooked into Citizens
[03:33:56] [Server thread/INFO]: [StoreStats] Starting tasks...
[03:33:56] [Server thread/INFO]: [StoreStats] Using CraftingStore implementation!
[03:33:56] [Server thread/INFO]: [StoreStats] Starting metrics...
[03:33:56] [Server thread/INFO]: [StoreStats] Plugin registered to 634083 | 1844240122
[03:33:56] [Server thread/INFO]: [StoreStats] Done and enabled in 34.60ms
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.2.19
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into mcMMO, WorldGuard, PlaceholderAPI, Towny.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into WorldGuard.
[03:33:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: advancedenchantments [1.0.0]
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into PlaceholderAPI.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Essentials.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into CoreProtect.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into Towny.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[03:33:56] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[03:33:56] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.25.1
[03:33:56] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[03:33:57] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[03:33:57] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[03:33:57] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (EssentialsX Economy)
[03:33:57] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[03:33:57] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[03:33:57] [Server thread/INFO]: [PlayerWarps] Found WorldGuard Addon integrating support...
[03:33:57] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[03:33:57] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[03:33:57] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[03:33:57] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[03:33:57] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.0.2
[03:33:57] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[03:33:57] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[03:33:57] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[03:33:57] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[03:33:57] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[03:33:57] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Loading marriages ...
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Marriages loaded
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Loading priests ...
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Priests loaded
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Loading players ...
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Players loaded
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Writing marriages into cache ...
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Marriages loaded into cache
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Loading homes ...
[03:33:57] [Thread-41/INFO]: [MarriageMaster] Homes loaded
[03:33:57] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[03:33:57] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[03:33:57] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 828 items.
[03:33:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: marriagemaster [**.**.**.**]
[03:33:57] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[03:33:57] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Enabling ODailyQuests v2.1.0-SNAPSHOT-8
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Plugin is starting...
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Checking for update...
[03:33:57] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection conn0: url=jdbc:h2:./plugins/ODailyQuests/database user=ODQ
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Plugin successfully connected to database DATABASE.
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Vault successfully hooked.
[03:33:57] [Server thread/INFO]: [O'DailyQuests] PlayerPoints successfully hooked.
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Citizens successfully hooked.
[03:33:57] [Server thread/WARN]: [O'DailyQuests] HolographicDisplays not detected. Holograms will not work.
[03:33:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: odailyquests [1.0.2]
[03:33:57] [Server thread/INFO]: [O'DailyQuests] PlaceholderAPI successfully hooked.
[03:33:57] [Server thread/INFO]: [O'DailyQuests] HeadDatabase successfully hooked.
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Global Quests array successfully loaded (39).
[03:33:57] [Server thread/INFO]: [O'DailyQuests] Plugin is started!
[03:33:57] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.3.2
[03:33:57] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] === ENABLE START ===
[03:33:57] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Plugin Version V3.1.3.2
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/********/multicraft/servers/server292627/plugins/zAuctionHouseV3/config.json loaded successfully !
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading of 0 price items
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading of 3 tax items
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loaded 4 blacklist items
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Blocks category with 998 materials
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Potions category with 17 materials
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Tools category with 16 materials
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading the Weapons category with 8 materials
[03:33:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [**.**.**.**]
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading 3 inventories
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading 0 commands
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] /home/********/multicraft/servers/server292627/plugins/zAuctionHouseV3/items.json loaded successfully !
[03:33:58] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] === ENABLE DONE (76ms) ===
[03:33:58] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.17.1
[03:33:58] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[03:33:58] [Server thread/INFO]: [Shopkeepers] Loading the data of 1 shopkeepers ...
[03:33:58] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.11.16
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading the events.log
[03:33:58] [Server thread/INFO]: [CrazyCrates] Successfully loaded events.log
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading the messages.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Successfully loaded messages.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading the locations.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Successfully loaded locations.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Vote.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Common.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Summer.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Legendary.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Mystical.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Quest.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /crates/Daily.yml.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Metrics has been enabled.
[03:33:58] [Server thread/INFO]: [CrazyCrates] DecentHolograms support has been enabled.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[03:33:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[03:33:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[03:33:58] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[03:33:58] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[03:33:58] [Server thread/INFO]: [CrazyCrates] All physical crate locations have been loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[03:33:58] [Server thread/INFO]: [CrazyCrates] classic.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] outdoors.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] sea.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] wooden.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] nether.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] soul.nbt was successfully found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[03:33:58] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[03:33:58] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[03:33:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazycrates [1.11.16]
[03:33:58] [Server thread/INFO]: [CrazyCrates] HOLOGRAPHIC_DISPLAYS NOT FOUND
[03:33:58] [Server thread/INFO]: [CrazyCrates] FANCY_HOLOGRAMS NOT FOUND
[03:33:58] [Server thread/INFO]: [CrazyCrates] DECENT_HOLOGRAMS FOUND
[03:33:58] [Server thread/INFO]: [CrazyCrates] CMI NOT FOUND
[03:33:58] [Server thread/INFO]: [CrazyCrates] PLACEHOLDERAPI FOUND
[03:33:58] [Server thread/INFO]: [CrazyCrates] ITEMS_ADDER NOT FOUND
[03:33:58] [Server thread/INFO]: [TownyMenu] Enabling TownyMenu v1.7.6
[03:33:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townymenu [1.7.6]
[03:33:58] [Server thread/INFO]: Enabling Towny Menu maintained by Cobrex
[03:33:58] [Server thread/INFO]: for Towny
[03:33:58] [Server thread/INFO]: [TownyMenu] HeadDatabase Hooked!
[03:33:58] [Server thread/INFO]: [TownyMenu] Towny Hooked!
[03:33:58] [Server thread/INFO]: [DiscordSRV] API listener me.cobrex.TownyMenu.lib.fo.model.DiscordListener$DiscordListenerImpl unsubscribed
[03:33:58] [Server thread/INFO]: [DiscordSRV] API listener me.cobrex.TownyMenu.lib.fo.model.DiscordListener$DiscordListenerImpl subscribed (3 methods)
[03:33:58] [Server thread/INFO]: [QuickShop] Enabling QuickShop v5.1.2.2
[03:33:58] [Server thread/INFO]: [QuickShop] QuickShop Reremake
[03:33:58] [Server thread/INFO]: [QuickShop] Starting plugin self-test, please wait...
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Signature Verify
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Plugin Manifest Check
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Potential Infection Characteristics Check
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Java Runtime Environment Version Test
[03:33:59] [Server thread/INFO]: [QuickShop] Running QuickShop-Reremake on NMS version v1_20_R1 For Minecraft version 1.20.1
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Spigot Based Server Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Old QuickShop Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] ModdedServer Based Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] CoreSupport Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] Virtual DisplayItem Support Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] GameVersion supporting Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] PacketListenerAPI Conflict Test
[03:33:59] [Server thread/INFO]: [QuickShop] [OK] End of life Test
[03:33:59] [Server thread/INFO]: [QuickShop] Reading the configuration...
[03:33:59] [Server thread/INFO]: [QuickShop] Developers: PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), jho5245, Ghost_chu, cakoyo, Ectabro, portlek, log4b0at, Andre601, deadman96385, Vlvxingze, DoctaEnkoda, Mgazul, TiaraRinne, sandtechnology, Starmism, Chris6ix, Rean Schwarzer, mart-r, raphtaliapt, Tim269, creatorfromhell, LoneDev6, judgetread, confuxeon, ibmibmibm, yannicklamprecht, PyvesB, PaulBGD, ORelio, JoschuaSchneider, Starmium, harry0198, efekurbann, tdiant
[03:33:59] [Server thread/INFO]: [QuickShop] Original author: Netherfoam, Timtower, KaiNoMood
[03:33:59] [Server thread/INFO]: [QuickShop] Let's start loading the plugin
[03:33:59] [Server thread/INFO]: [QuickShop] Chat processor selected: Hardcoded BungeeChat Lib
[03:33:59] [Server thread/INFO]: [QuickShop] Loading plugin translations files...
[03:33:59] [Server thread/INFO]: [QuickShop] Game assets server selected: Mojang API
[03:33:59] [Server thread/INFO]: [QuickShop] Loading items translations...
[03:33:59] [Server thread/INFO]: [QuickShop] Loading enchantments translations...
[03:33:59] [Server thread/INFO]: [QuickShop] Loading potions translations...
[03:33:59] [Server thread/INFO]: [QuickShop] Successfully loaded OpenInv support!
[03:33:59] [Server thread/INFO]: [QuickShop] Successfully loaded PlaceHolderAPI support!
[03:33:59] [Server thread/INFO]: [QuickShop] Successfully loaded WorldEdit support!
[03:33:59] [Server thread/INFO]: [QuickShop] Setting up database...
[03:33:59] [Server thread/INFO]: [QuickShop] Checking and updating database columns, it may take a while...
[03:33:59] [Server thread/INFO]: [QuickShop] Finished!
[03:33:59] [Server thread/INFO]: [QuickShop] Selected permission provider: Bukkit
[03:33:59] [Server thread/INFO]: [QuickShop] Registering commands...
[03:33:59] [Server thread/INFO]: [QuickShop] Loaded 1 rules for listener blacklist.
[03:33:59] [Server thread/INFO]: [QuickShop] EventManager selected: QSEventManager
[03:33:59] [Server thread/INFO]: [QuickShop] Fetching shops from the database...If plugin stuck there, check your database connection.
[03:33:59] [Server thread/INFO]: [QuickShop] Loading shops from the database...
[03:33:59] [Server thread/INFO]: [QuickShop] >> Shop Loader Information
[03:33:59] [Server thread/INFO]: [QuickShop] Total           shops: 241
[03:33:59] [Server thread/INFO]: [QuickShop] Valid           shops: 241
[03:33:59] [Server thread/INFO]: [QuickShop] Pending              : 4
[03:33:59] [Server thread/INFO]: [QuickShop] Waiting worlds loaded: 0
[03:33:59] [Server thread/INFO]: [QuickShop] Waiting chunks loaded: 237
[03:33:59] [Server thread/INFO]: [QuickShop] Done! Used 75ms to loaded shops in database.
[03:33:59] [Server thread/INFO]: [QuickShop] Registering listeners...
[03:33:59] [Server thread/INFO]: [QuickShop] Cleaning MsgUtils...
[03:33:59] [Server thread/INFO]: [QuickShop] Cleaning purchase messages from the database that are over a week old...
[03:33:59] [Server thread/INFO]: [QuickShop] Log actions is enabled, actions will log in the qs.log file!
[03:33:59] [Server thread/INFO]: [QuickShop] [Shop Purger] Purge not enabled!
[03:33:59] [Server thread/INFO]: [QuickShop] QuickShop Loaded! 711 ms.
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] Enabling Dynmap-Towny v0.94
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] initializing
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] Towny version 0.99.5.0 found.
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-town will have no effect
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-nation will have no effect
[03:33:59] [Server thread/INFO]: [Dynmap-Towny] version 0.94 is activated
[03:33:59] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.6.0
[03:33:59] [Server thread/INFO]: [VentureChat] - Initializing...
[03:33:59] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[03:33:59] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[03:33:59] [Server thread/INFO]: [VentureChat] - Loading player data
[03:33:59] [Server thread/INFO]: [VentureChat] - Registering Listeners
[03:33:59] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[03:33:59] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[03:33:59] [Server thread/INFO]: [VentureChat] - Enabling Towny Formatting
[03:33:59] [Server thread/INFO]: [VentureChat] - Enabling Jobs Formatting
[03:33:59] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[03:33:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: venturechat [3.6.0]
[03:33:59] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.20.1-43
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] ======= ArmorStandEditor =======
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] Plugin Version: 1.20.1-43
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] Minecraft Version: v1_20_R1
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] ArmorStandEditor is compatible with this version of Minecraft. Loading continuing.
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] SpigotMC: true
[03:33:59] [Server thread/INFO]: [ArmorStandEditor] ================================
[03:33:59] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.2
[03:33:59] [Server thread/INFO]: [PremiumVanish] Hooked into DiscordSRV
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord] Enabling zAuctionHouse-Discord v1.1.0
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] === ENABLE START ===
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] Plugin Version V1.1.0
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] /home/********/multicraft/servers/server292627/plugins/zAuctionHouse-Discord/config.json loaded successfully !
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] /home/********/multicraft/servers/server292627/plugins/zAuctionHouse-Discord/storage.json loaded successfully !
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] /home/********/multicraft/servers/server292627/plugins/zAuctionHouse-Discord/config.json successfully saved !
[03:33:59] [Server thread/INFO]: [zAuctionHouse-Discord v1.1.0] === ENABLE DONE (62ms) ===
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Enabling QSFindItemAddOn v2.0.5.1-RELEASE
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Registering Bukkit event listeners
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Config loaded!
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Registering commands
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Registered /finditem command
[03:34:00] [Server thread/INFO]: [QSFindItemAddOn] Registered /finditemadmin command
[03:34:00] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.13.1
[03:34:00] [pool-118-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (767828469573c2f0fa3ed5a44feb0b2f15f2c02d)
[03:34:00] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[03:34:00] [zDiscord-BOT/INFO]: [net.dv8tion.jda.api.JDA] Login Successful!
[03:34:00] [zDiscord-BOT/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading of the discord bot successfully completed.
[03:34:00] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[03:34:00] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.internal.requests.WebSocketClient] Connected to WebSocket
[03:34:01] [JDA MainWS-ReadThread/INFO]: [net.dv8tion.jda.api.JDA] Finished Loading!
[03:34:01] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[03:34:01] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.13.1
[03:34:01] [Server thread/INFO]: [Rankup] Enabling Rankup v3.14.1
[03:34:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.14.1]
[03:34:01] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.7.2
[03:34:01] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[03:34:01] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[03:34:01] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[03:34:02] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Floodgate!
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into VentureChat!
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has injected into Dynmap!
[03:34:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: interactivechat [**.**.**.**]
[03:34:02] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[03:34:02] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.7.2
[03:34:02] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:ʟᴜxᴘɪxᴇʟ | ᴛᴏᴡɴʏ sᴍᴘ(959156665771491398)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✅︱verify(1069753511446839386)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❌︱muted(1069753916134273205)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📜︱rules(1112777166745255936)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📋︱server-info(1069780310700597298)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💠︱roles(1069763632671494174)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:❗︱alerts(1112444025996333158)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🆑︱updates(1112431946908315718)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:✨︱events(1112442059324932258)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎁︱giveaways(1112773399392043048)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💎︱support-us(1125543837201342494)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📊︱polls(1128836474696122529)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤝︱referrals(1129429705825714236)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎫︱tickets(1069790219789934726)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤔︱questions(1112423173300949053)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡︱suggestions(1112758504609038366)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡︱suggestions-archive(1112759255683059712)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐞︱bugs(1112765614205964389)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐞︱bugs-archive(1112765993341681805)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💬︱general(1069783299230285915)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔓︱off-topic(1118273307855302707)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎮︱mc-chat(1113493622583742625)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖︱bot-spam(1069759615971106856)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎨︱creations(1112773983453065376)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📷︱media(1112774485418983555)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤣︱memes(1117886863085154324)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔢︱counting(1118311672432566385)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔀︱random-facts(1129208499814023259)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮rules』(1116514126898929716)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮punishments』(1057627391700258898)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮inactivity』(1116847045072916480)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮suspects』(1122675373566611566)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮alerts』(1113543390500491345)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮general』(996404629774553088)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮staff-chat』(1117545769587703910)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮spam』(968620329201205368)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮ideas-issues』(1100680820085235777)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮tasks』(1119504261592662016)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮dev』(1125596755816353852)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:test(1125848819385499759)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔮forms』(1127639533861732372)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:global-discord(1118330614744088686)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:helper(1115012370608160891)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderator(1115055278237425684)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:admin(1115055933043781652)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🛒︱trading(1130150759263121418)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💼︱auctions(1130151006156640286)
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console channel ID was invalid, not forwarding console output
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling VentureChat hook
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling dynmap hook
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[03:34:02] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[03:34:02] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[03:34:03] [Server thread/INFO]: [InteractiveChat] Loading languages...
[03:34:03] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[03:34:03] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[03:34:03] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[03:34:03] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[03:34:03] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[03:34:03] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[03:34:03] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.87.0
[03:34:03] [Server thread/INFO]: [SuperBoosters] Enabling SuperBoosters v1.8.7
[03:34:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: superboosters [1.8.7]
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Enabling ShopGUIPlus-SellGUI v1.1.7
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Your server is running version '1_20_R1'.
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] ShopGUIPlus SellGUI
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] Made by Mackenzie Molloy
[03:34:03] [Server thread/INFO]: [ShopGUIPlus Sell GUI] *-*
[03:34:03] [Server thread/INFO]: [ItemEdit] Enabling ItemEdit v3.0.13
[03:34:03] [Server thread/INFO]: [ItemEdit] Hooking into Vault
[03:34:03] [Server thread/INFO]: [ItemEdit] Hooking into PlaceholderApi
[03:34:03] [Server thread/INFO]: [ItemEdit] Hooked into PlaceHolderAPI:
[03:34:03] [Server thread/INFO]: [ItemEdit] placeholders:
[03:34:03] [Server thread/INFO]: [ItemEdit]   %itemedit_amount_<{itemid}>_[{slot}]_[{player}]%
[03:34:03] [Server thread/INFO]: [ItemEdit]     shows how many itemid player has on slot
[03:34:03] [Server thread/INFO]: [ItemEdit]     <{itemid}> for item id on serveritem
[03:34:03] [Server thread/INFO]: [ItemEdit]     [{slot}] for the slot where the item should be counted, by default inventory
[03:34:03] [Server thread/INFO]: [ItemEdit]       Values: inventory, equip, inventoryandequip, hand, offhand, head, chest, legs, feet
[03:34:03] [Server thread/INFO]: [ItemEdit]     [{player}] for the player, by default self
[03:34:03] [Server thread/INFO]: [ItemEdit]     example: %itemedit_amount_{my_item_id}_{hand}%
[03:34:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemedit [1.0]
[03:34:03] [Server thread/INFO]: [ItemEdit] Hooking into ShopGuiPlus
[03:34:03] [Server thread/INFO]: [ShopGUIPlus] Registered item provider 'ServerItem'.
[03:34:03] [Server thread/INFO]: [ItemEdit] # Enabled (took 71 ms)
[03:34:03] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[03:34:03] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[03:34:03] [Server thread/INFO]: [Quests] Your server is running version 1.20
[03:34:03] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[03:34:04] [Server thread/INFO]: [ItemTag] Enabling ItemTag v3.1.0
[03:34:04] [Server thread/INFO]: [ItemTag] Hooking into PlaceholderApi
[03:34:04] [Server thread/INFO]: [ItemTag] Hooked into PlaceHolderAPI:
[03:34:04] [Server thread/INFO]: [ItemTag] placeholders:
[03:34:04] [Server thread/INFO]: [ItemTag]   %itemtag_cooldown_<timeunit>_[cooldownid]%
[03:34:04] [Server thread/INFO]: [ItemTag]     shows how much cooldown has selected cooldownid for player
[03:34:04] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[03:34:04] [Server thread/INFO]: [ItemTag]     [cooldownid] for cooldown type, by default default
[03:34:04] [Server thread/INFO]: [ItemTag]     example: %itemtag_cooldown_s_anid%
[03:34:04] [Server thread/INFO]: [ItemTag]   %itemtag_handcooldown_<timeunit>%
[03:34:04] [Server thread/INFO]: [ItemTag]     shows how much cooldown has player on the item in his hand
[03:34:04] [Server thread/INFO]: [ItemTag]     <timeunit> may be h, s or ms
[03:34:04] [Server thread/INFO]: [ItemTag]     example: %itemtag_handcooldown_s%
[03:34:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: itemtag [1.0]
[03:34:04] [Server thread/INFO]: [ItemTag] # Enabled (took 97 ms)
[03:34:04] [Server thread/INFO]: [Plan] Enabling Plan v5.5 build 2391
[03:34:04] [Server thread/INFO]: [Plan] 
[03:34:04] [Server thread/INFO]: [Plan]            ██▌
[03:34:04] [Server thread/INFO]: [Plan]      ██▌   ██▌
[03:34:04] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[03:34:04] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.5 build 2391
[03:34:04] [Server thread/INFO]: [Plan] 
[03:34:04] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[03:34:04] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[03:34:04] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[03:34:04] [Server thread/INFO]: [Plan] SQLite-database connection established.
[03:34:04] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[03:34:04] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[03:34:04] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[03:34:04] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[03:34:04] [Server thread/INFO]: [Plan] Webserver running on PORT 8090 ( http://**.**.**.**:8090 )
[03:34:04] [Server thread/INFO]: [Plan] Loading server identifying information
[03:34:04] [Server thread/INFO]: [Plan] Server identifier loaded: 136bfa32-05c9-410a-b9cf-62e70166010d
[03:34:04] [Plan Non critical-pool-3/WARN]: [Plan] Downloading GeoLite2 requires accepting GeoLite2 EULA - see 'Data_gathering.Accept_GeoLite2_EULA' in the config.
[03:34:04] [Plan Non critical-pool-3/ERROR]: [Plan] Failed to enable geolocation.
[03:34:04] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[03:34:04] [Server thread/INFO]: [DiscordSRV] API listener net.playeranalytics.extension.discordsrv.DiscordSRVListener subscribed (2 methods)
[03:34:04] [Server thread/INFO]: [Plan] Registered extension: Essentials
[03:34:04] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Floodgate
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Jobs
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Litebans
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: MarriageMaster
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: mcMMO
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: PlaceholderAPI
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Towny
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[03:34:05] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[03:34:05] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[03:34:06] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[03:34:06] [Server thread/INFO]: Running delayed init tasks
[03:34:06] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[03:34:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.6]
[03:34:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[03:34:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[03:34:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.TownyFeature] Plugin 'Towny' found. Using it now.
[03:34:06] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'Towny'
[03:34:06] [Craft Scheduler Thread - 11 - Essentials/INFO]: [Essentials] Fetching version information...
[03:34:06] [Craft Scheduler Thread - 26 - InteractionVisualizer/INFO]: [InteractionVisualizer] Downloading and extracting latest Language files...
[03:34:06] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[03:34:06] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[03:34:06] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[03:34:06] [Craft Scheduler Thread - 17 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[03:34:06] [Craft Scheduler Thread - 25 - StoreStats/INFO]: [StoreStats] Testing Store connection...
[03:34:06] [Craft Scheduler Thread - 25 - StoreStats/INFO]: [StoreStats] Using secret **********************************************kqfx
[03:34:06] [Craft Scheduler Thread - 8 - ChatFeelings/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: https://discord.gg/6ugXPfX
[03:34:06] [Craft Scheduler Thread - 29 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[03:34:06] [Craft Scheduler Thread - 14 - DecentHolograms/INFO]: [DecentHolograms] Loaded 46 holograms!
[03:34:06] [Craft Scheduler Thread - 32 - ShopGUIPlus-SellGUI/INFO]: [ShopGUIPlus Sell GUI] You are running the LATEST release.
[03:34:06] [Craft Scheduler Thread - 9 - ajParkour/INFO]: [ajParkour] You are up to date! (2.12.10)
[03:34:06] [Craft Scheduler Thread - 5 - Plan/INFO]: [Plan] Storing sessions that were preserved before previous shutdown.
[03:34:06] [Craft Scheduler Thread - 34 - ODailyQuests/WARN]: [O'DailyQuests] A new update is available !
[03:34:06] [Craft Scheduler Thread - 34 - ODailyQuests/WARN]: [O'DailyQuests] Current version : 2.1.0-SNAPSHOT-8, Available version : 2.1.0
[03:34:06] [Craft Scheduler Thread - 34 - ODailyQuests/WARN]: [O'DailyQuests] Please download latest version :
[03:34:06] [Craft Scheduler Thread - 34 - ODailyQuests/WARN]: [O'DailyQuests] https://www.spigotmc.org/resources/odailyquests.100990/
[03:34:06] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] Checking for Updates ... 
[03:34:06] [Craft Scheduler Thread - 6 - Plan/INFO]: [Plan] You're using the latest version.
[03:34:06] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (EssentialsX Economy)
[03:34:06] [Craft Scheduler Thread - 38 - ItemEdit/INFO]: [ItemEdit] New Update at https://spigotmc.org/resources/40993
[03:34:06] [Craft Scheduler Thread - 8 - CrazyCrates/INFO]: [CrazyCrates] Plugin is up to date! - v1.11.16
[03:34:06] [Craft Scheduler Thread - 26 - InteractionVisualizer/INFO]: [InteractionVisualizer] Sucessfully downloaded the latest Language files!
[03:34:06] [Craft Scheduler Thread - 34 - Vault/INFO]: [Vault] No new version available
[03:34:06] [Craft Scheduler Thread - 25 - StoreStats/INFO]: [StoreStats] Successfully connected to store:
[03:34:06] [Craft Scheduler Thread - 25 - StoreStats/INFO]: [StoreStats] Name: 'LuxPixels'
[03:34:06] [Craft Scheduler Thread - 25 - StoreStats/INFO]: [StoreStats] URL: 'store.luxpixels.net'
[03:34:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: eglow [3.2.4]
[03:34:07] [Craft Scheduler Thread - 16 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 54218 heads!
[03:34:07] [Craft Scheduler Thread - 31 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.2] New update available. Your version: 3.1.3.2, latest version: 3.1.3.4
[03:34:07] [Craft Scheduler Thread - 31 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.3.2] Download plugin here: https://groupez.dev/resources/1
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[03:34:07] [Craft Scheduler Thread - 16 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[03:34:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[03:34:07] [Server thread/INFO]: [QuickShop] Registering bStats metrics...
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Server version found: git-Paper-69 (MC: 1.20.1)
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Found QuickShop-Reremake
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Unregistered find sub-command for /qs
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Registered finditem sub-command for /qs
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Loaded shops from file
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Found PlayerWarps
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Found Essentials
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Found WorldGuard
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Registering external plugin event listeners
[03:34:07] [Server thread/ERROR]: [QSFindItemAddOn] Failed to register events for class io.myzticbean.finditemaddon.Listeners.PWPlayerWarpRemoveEventListener because com/olziedev/playerwarps/api/events/PlayerWarpRemoveEvent does not exist.
[03:34:07] [Server thread/ERROR]: [QSFindItemAddOn] Failed to register events for class io.myzticbean.finditemaddon.Listeners.PWPlayerWarpCreateEventListener because com/olziedev/playerwarps/api/events/PlayerWarpCreateEvent does not exist.
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Registering tasks
[03:34:07] [Server thread/INFO]: [QSFindItemAddOn] Registering anonymous bStats metrics
[03:34:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.2]
[03:34:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.14.2-3345d07]
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[03:34:07] [Craft Scheduler Thread - 23 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[03:34:07] [Server thread/INFO]: [Quests] 40 task types have been registered.
[03:34:07] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[03:34:08] [Server thread/INFO]: [Quests] 1471 quests have been registered.
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan [5.5 build 2391]
[03:34:09] [Server thread/INFO]: [Citizens] Loaded 16 NPCs.
[03:34:09] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus
[03:34:09] [Server thread/INFO]: [UpgradeableSpawners] [Integrations] Successfully integrated LuckPerms for offline permission lookups.
[03:34:09] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: Towny Type: CLAIMING
[03:34:09] [Server thread/INFO]: [UpgradeableSpawners] Successfully added region provider: WorldGuard Type: SERVER
[03:34:09] [Server thread/INFO]: [UpgradeableSpawners] Successful integrated Vault economy into economy system. Name: EssentialsX Economy
[03:34:09] [Server thread/INFO]: [QuickShop] Using economy system: EssentialsX Economy
[03:34:09] [Server thread/WARN]: [ViaVersion] You are running a development version of the plugin, please report any bugs to GitHub.
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[03:34:09] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion mcmmo. Identifier is already in use.
[03:34:09] [Server thread/WARN]: [PlaceholderAPI] Failed to load expansion mcmmo. Identifier is already in use.
[03:34:09] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion mcmmo due to an unknown issue.
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: multiverse [1.0.1]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.5]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[03:34:09] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.5]
[03:34:09] [Server thread/INFO]: 8 placeholder hook(s) registered!
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Loading inventories in progress...
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory auction !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory buyconfirm !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory removeconfirm !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory expire !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory buying !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory items !
[03:34:09] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory categories !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory sell !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory sellshow !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory category !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory adminremove !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory search !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Successful loading of the inventory show !
[03:34:10] [Server thread/INFO]: [zAuctionHouseV3 v3.1.3.2] Inventories loading complete.
[03:34:10] [Server thread/INFO]: [QSFindItemAddOn] Updating Essentials warps list...
[03:34:10] [Server thread/INFO]: [QSFindItemAddOn] Update complete! Found 23 warps.
[03:34:10] [Server thread/INFO]: Done (82.075s)! For help, type "help"
[03:34:10] [Server thread/INFO]: Timings Reset
[03:34:10] [Craft Scheduler Thread - 7 - QSFindItemAddOn/INFO]: [QSFindItemAddOn] Oh awesome! Plugin is up to date
[03:34:10] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[03:34:10] [Craft Scheduler Thread - 37 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[03:34:11] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[03:34:11] [Craft Scheduler Thread - 24 - InteractionVisualizer/INFO]: [InteractionVisualizer] Loaded all 1 languages!
[03:34:11] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 5178ms or 103 ticks behind
[03:34:11] [Server thread/INFO]: [PyroFishingPro] Loaded (1) Totems successfully.
[03:34:11] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[03:34:11] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[03:34:12] [Craft Scheduler Thread - 25 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.13.1
[03:34:12] [Craft Scheduler Thread - 18 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[03:34:12] [Craft Scheduler Thread - 25 - Insights/INFO]: [Insights] Checking for updates...
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.87.0 ]================================
[03:34:12] [Server thread/INFO]: [ShopGUIPlus]  
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ServerItem.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 8 main menu items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'farming' with 21 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'ores' with 28 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 39 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'drops' with 16 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'flowers' with 26 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'food' with 15 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 6 shops with total of 145 items.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 sounds.
[03:34:12] [Server thread/INFO]: [ShopGUIPlus]  
[03:34:12] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[03:34:13] [Craft Scheduler Thread - 25 - Insights/INFO]: [Insights] We are up-to-date!
[03:34:13] [Craft Scheduler Thread - 18 - Citizens/WARN]: [Citizens] Plugin Citizens v2.0.32-SNAPSHOT (build 3156) generated an exception while executing task 7632
java.lang.NullPointerException: Cannot read the array length because the return value of "com.mojang.authlib.yggdrasil.response.ProfileSearchResultsResponse.getProfiles()" is null
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:59) ~[paper-1.20.1.jar:?]
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44) ~[paper-1.20.1.jar:git-Paper-69]
    at net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134) ~[Citizens.jar:?]
    at net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195) ~[Citizens.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftTask.run(CraftTask.java:101) ~[paper-1.20.1.jar:git-Paper-69]
    at org.bukkit.craftbukkit.v1_20_R1.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57) ~[paper-1.20.1.jar:git-Paper-69]
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22) ~[paper-1.20.1.jar:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) ~[?:?]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[03:34:15] [Server thread/INFO]: [DeluxeWithdraw] Attempting hooks...
[03:34:15] [Server thread/INFO]: [DeluxeWithdraw] Hooked into PlaceholderAPI!
[03:34:15] [Server thread/INFO]: [DeluxeWithdraw] Successfully performed 1 hooks!
[03:34:16] [ForkJoinPool.commonPool-worker-5/INFO]: [UpgradeableSpawners] You're using the latest version.
[03:34:21] [Server thread/INFO]: [MyCommand] found an update for MyCommand. Type /mycommand for more infos.
[03:34:31] [Craft Scheduler Thread - 26 - gProtector/INFO]: [gProtector] Looking for updates...
[03:34:31] [Craft Scheduler Thread - 26 - gProtector/INFO]: [gProtector] No updates available.
[03:35:47] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[03:37:06] [User Authenticator #0/INFO]: UUID of player iMinePixels is 1ad0b031-4fa0-42f0-b487-2e6d8473aa1d
[03:37:06] [Server thread/INFO]: iMinePixels[/**.**.**.**:64742] logged in with entity id 2544 at ([Spawn]-130.97810158818012, 48.0, 93.78858292067544)
[03:37:07] [Server thread/INFO]: (✔) WB, [ᴏᴡɴᴇʀ] minA!
[03:37:07] [Craft Scheduler Thread - 7 - ODailyQuests/INFO]: [O'DailyQuests] iMinePixels's quests have been loaded.
[03:37:10] [Server thread/INFO]: iMinePixels issued server command: /spawn
[03:39:11] [Craft Scheduler Thread - 55 - CyberLevels/INFO]: [CLV] Auto-saved all player data! (50ms)
[03:42:15] [Server thread/INFO]: [Essentials] Created a User for  (76038d34-1927-2639-b0e1-ef60d39f0c7c) for non Bukkit type: net.citizensnpcs.nms.v1_20_R1.entity.EntityHumanNPC$PlayerNPC
[03:44:11] [Craft Scheduler Thread - 48 - CyberLevels/INFO]: [CLV] Auto-saved all player data! (100ms)