Paste #105921: Unnamed Server Log Paste

Date: 2023/02/02 07:26:04 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[15:23:10] [ServerMain/INFO]: Building unoptimized datafixer
[15:23:11] [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'
[15:23:13] [ServerMain/INFO]: Loaded 7 recipes
[15:23:13] [Server thread/INFO]: Starting minecraft server version 1.19.3
[15:23:13] [Server thread/INFO]: Loading properties
[15:23:13] [Server thread/INFO]: This server is running Paper version git-Paper-376 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 1719345)
[15:23:14] [Server thread/INFO]: Server Ping Player Sample Count: 12
[15:23:14] [Server thread/INFO]: Using 4 threads for Netty based IO
[15:23:14] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[15:23:14] [Server thread/INFO]: Default game type: SURVIVAL
[15:23:14] [Server thread/INFO]: Generating keypair
[15:23:14] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:10151
[15:23:14] [Server thread/INFO]: Using epoll channel type
[15:23:14] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[15:23:14] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[15:23:14] [Server thread/ERROR]: Ambiguous plugin name `AlonsoTags' for files `plugins/AlonsoTags-v2.0.7-BETA.jar' and `plugins/AlonsoTags-v2.0.7-BETA (1).jar' in `plugins'
[15:23:14] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.4.1.jar' and `plugins/CMILib1.2.4.0.jar' in `plugins'
[15:23:14] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.4.3.jar' and `plugins/CMILib1.2.4.1.jar' in `plugins'
[15:23:14] [Server thread/ERROR]: Ambiguous plugin name `PinataParty' for files `plugins/PinataParty-2.59.0.jar' and `plugins/PinataParty-2.56.0.jar' in `plugins'
[15:23:14] [Server thread/ERROR]: Ambiguous plugin name `CMILib' for files `plugins/CMILib1.2.3.7 (2).jar' and `plugins/CMILib1.2.4.3.jar' in `plugins'
[15:23:14] [Server thread/WARN]: [ViaVersion] Invalid blocked version protocol found in config: '<1.19'
[15:23:15] [Server thread/INFO]: [NexEngine] Loading 2 libraries... please wait
[15:23:15] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[15:23:15] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[15:23:15] [Server thread/INFO]: [NexEngine] Loaded library /home/container/libraries/it/unimi/dsi/fastutil/8.5.11/fastutil-8.5.11.jar
[15:23:16] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[15:23:16] [Server thread/INFO]: [PlayerLandsX] Loading PlayerLandsX v1.0.0
[15:23:16] [Server thread/INFO]: [FarmLimiter] Loading FarmLimiter v1.5.3
[15:23:16] [Server thread/INFO]: [VoteMayor] Loading VoteMayor v1.0-SNAPSHOT
[15:23:16] [Server thread/INFO]: [VillagerTradeLimiter] Loading VillagerTradeLimiter v1.5.8
[15:23:16] [Server thread/INFO]: [MasterCooldowns] Loading MasterCooldowns v1.5
[15:23:16] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v4.5.1
[15:23:16] [Server thread/INFO]: [ViaVersion] ViaVersion 4.5.1 is now loaded, injecting!
[15:23:16] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[15:23:16] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[15:23:16] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[15:23:16] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[15:23:16] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[15:23:16] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[15:23:16] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[15:23:16] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[15:23:16] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[15:23:16] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[15:23:16] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.10.0
[15:23:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:23:16] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at de.tr7zw.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[15:23:16] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:23:16] [Server thread/INFO]: [JoinServer] Loading JoinServer v1.0-SNAPSHOT
[15:23:16] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v4.5.1
[15:23:16] [Server thread/INFO]: [ViaBackwards] Loading translations...
[15:23:16] [Thread-7/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package de.tr7zw.nbtapi' seems to be outdated!
[15:23:16] [Thread-7/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.1'
[15:23:16] [Thread-7/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[15:23:17] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[15:23:17] [Via-Mappingloader-11/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[15:23:17] [Via-Mappingloader-11/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[15:23:18] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.52
[15:23:18] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[15:23:19] [Server thread/INFO]: [VoidGen] Loading VoidGen v2.2.1
[15:23:19] [Server thread/INFO]: [spark] Loading spark v1.9.42
[15:23:19] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.8
[15:23:19] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.3
[15:23:19] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b612
[15:23:20] [Via-Mappingloader-11/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[15:23:20] [Via-Mappingloader-11/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[15:23:20] [Via-Mappingloader-5/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[15:23:20] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[15:23:20] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[15:23:20] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[15:23:20] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[15:23:20] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[15:23:20] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[15:23:20] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[15:23:21] [Server thread/INFO]: [TutorialCreator] Loading TutorialCreator v1.24.0
[15:23:21] [Server thread/INFO]: [Vouchers] Loading Vouchers v2.9.10-SNAPSHOT
[15:23:21] [Server thread/INFO]: [PersonalPhantoms] Loading PersonalPhantoms v1.1.0
[15:23:21] [Server thread/INFO]: [EliteArmor] Loading EliteArmor v6.6.0
[15:23:21] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-CMI
[15:23:21] [Server thread/INFO]: [Rankup] Loading Rankup v3.13.3
[15:23:21] [Server thread/INFO]: [EpicRename] Loading EpicRename v3.11
[15:23:21] [Server thread/INFO]: [NexEngine] Loading NexEngine v2.2.8 build-19/01/2023
[15:23:21] [Server thread/INFO]: [ChatManager] Loading ChatManager v3.7.7
[15:23:21] [Server thread/INFO]: [GamePoints] Loading GamePoints v1.3.5
[15:23:21] [Server thread/INFO]: [PinataParty] Loading PinataParty v2.59.0
[15:23:21] [Server thread/INFO]: [HeadDatabase] Loading HeadDatabase v4.17.0
[15:23:21] [Server thread/INFO]: [CommandPanels] Loading CommandPanels v3.18.2.0
[15:23:21] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.10.3
[15:23:21] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v4.3.1-b861
[15:23:21] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v2.5.2-SNAPSHOT-346;214954b
[15:23:21] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@4b704045]
[15:23:21] [Server thread/INFO]: [AlonsoTags] Loading AlonsoTags v2.0.7-BETA
[15:23:21] [Server thread/INFO]: [PermissionPortals] Loading PermissionPortals v0.1.0
[15:23:21] [Server thread/INFO]: [ajLeaderboards] Loading ajLeaderboards v2.6.2
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[jar-relocator]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, jar-relocator]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[asm-commons]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, asm-commons]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[gson]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, gson]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[HikariCP]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, HikariCP]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[slf4j-api]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, slf4j-api]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for {0}[h2]
[15:23:22] [Server thread/INFO]: [ajLeaderboards] Checksum {0} for {1}[matched, h2]
[15:23:22] [Server thread/INFO]: [DeluxeMenus] Loading DeluxeMenus v1.13.6-Release
[15:23:22] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[15:23:22] [Server thread/INFO]: [TAB] Loading TAB v3.2.1
[15:23:22] [Server thread/INFO]: [Infiniteannouncements] Loading Infiniteannouncements v2.3.1
[15:23:22] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.7+216b061
[15:23:22] [Server thread/INFO]: [GSit] Loading GSit v1.2.8
[15:23:22] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[15:23:22] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.1
[15:23:22] [Server thread/INFO]: [Skript] Loading Skript v2.6.3
[15:23:22] [Server thread/INFO]: [DecentHolograms] Loading DecentHolograms v2.7.9
[15:23:22] [Server thread/INFO]: [RTP] Loading RTP v1.3.24
[15:23:22] [Server thread/INFO]: [EvenMoreFish] Loading EvenMoreFish v1.6.8
[15:23:22] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2900)
[15:23:22] [Server thread/INFO]: [Shopkeepers] Loading Shopkeepers v2.16.2
[15:23:22] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (199 ms).
[15:23:22] [Server thread/WARN]: [Shopkeepers] Incompatible server version: v1_19_R2 (mappings: 1afe2ffe8a9d7fc510442a168b3d4338)
[15:23:22] [Server thread/WARN]: [Shopkeepers] Shopkeepers is trying to run in 'compatibility mode'.
[15:23:22] [Server thread/INFO]: [Shopkeepers] Check for updates at: https://dev.bukkit.org/projects/shopkeepers/
[15:23:22] [Server thread/INFO]: [Shopkeepers] Loading config.
[15:23:22] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[15:23:22] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[15:23:22] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[15:23:22] [Server thread/INFO]: [DiscordSRV] Loading DiscordSRV v1.26.0
[15:23:22] [Server thread/INFO]: [ProtectionStones] Loading ProtectionStones v2.10.3
[15:23:22] [Server thread/INFO]: [StreakRewards] Loading StreakRewards v2.2.7
[15:23:22] [Server thread/INFO]: [ArmorStandTools] Loading ArmorStandTools v4.4.4
[15:23:22] [Server thread/INFO]: [ArmorStandTools] Registered custom WorldGuard flag: ast
[15:23:22] [Server thread/INFO]: [DiscoverAreas] Loading DiscoverAreas v1.7.0-SNAPSHOT
[15:23:22] [Server thread/INFO]: [CrazyEnvoys] Loading CrazyEnvoys v1.4.18
[15:23:22] [Server thread/INFO]: [NoChatReports] Loading NoChatReports v1.0.5
[15:23:22] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.3.7
[15:23:22] [Server thread/INFO]: [Jobs] Loading Jobs v5.1.0.1
[15:23:22] [Server thread/INFO]: [CMI] Loading CMI v9.3.0.5
[15:23:22] [Server thread/INFO]: [InteractiveChat] Loading InteractiveChat v4.2.5.6
[15:23:22] [Server thread/INFO]: [zAuctionHouseV3] Loading zAuctionHouseV3 v3.1.0.4
[15:23:22] [Server thread/INFO]: [ArtMap] Loading ArtMap v3.9.8
[15:23:22] [Server thread/INFO]: [VillagerMarket] Loading VillagerMarket v1.11.3
[15:23:22] [Server thread/INFO]: [DailyShop] Loading DailyShop v3.9.1
[15:23:22] [Server thread/INFO]: [RoseStacker] Loading RoseStacker v1.5.1
[15:23:22] [Server thread/INFO]: [SCore] Loading SCore v3.6.7
[15:23:22] [Server thread/INFO]: [ExecutableItems] Loading ExecutableItems v5.6.7
[15:23:22] [Server thread/INFO]: [ShopGUIPlus] Loading ShopGUIPlus v1.80.1
[15:23:22] [Server thread/INFO]: [WildChests] Loading WildChests v2022.7-b81
[15:23:22] [Server thread/INFO]: [WildChests] Data version: 3218
[15:23:22] [Server thread/INFO]: [WildChests] The plugin doesn't support your minecraft version.
[15:23:22] [Server thread/INFO]: [WildChests] Please try a different version.
[15:23:22] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[15:23:22] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.52
[15:23:23] [Server thread/INFO]:         __    
[15:23:23] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.52
[15:23:23] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[15:23:23] [Server thread/INFO]: 
[15:23:23] [Server thread/INFO]: [LuckPerms] Loading configuration...
[15:23:23] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[15:23:23] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[15:23:23] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[15:23:24] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[15:23:25] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[15:23:25] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[15:23:25] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2901ms)
[15:23:25] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[15:23:25] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[15:23:25] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[15:23:25] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI
[15:23:25] [Server thread/WARN]: [Vault] Loaded class com.Zrips.CMI.Modules.Economy.Economy from CMI v9.3.0.5 which is not a depend or softdepend of this plugin.
[15:23:25] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting
[15:23:25] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[15:23:25] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI
[15:23:25] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[15:23:25] [Server thread/INFO]: [NexEngine] Enabling NexEngine v2.2.8 build-19/01/2023
[15:23:25] [Server thread/INFO]: [NexEngine] Loaded NMS version: V1_19_R2
[15:23:25] [Server thread/INFO]: [NexEngine] Seems like we have Paper based fork here...
[15:23:25] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms permissions
[15:23:25] [Server thread/INFO]: [NexEngine] Successfully hooked with CMIEconomy economy
[15:23:25] [Server thread/INFO]: [NexEngine] Successfully hooked with LuckPerms chat
[15:23:25] [Server thread/INFO]: [NexEngine] Plugin loaded in 38 ms!
[15:23:25] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.2-SNAPSHOT-346;214954b
[15:23:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[15:23:25] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[15:23:25] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[15:23:25] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[15:23:25] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[15:23:26] [Server thread/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 2 build(s) out of date.
You are running build 346, the latest version is build 348.
Update at https://www.spigotmc.org/resources/13932/
[15:23:26] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[15:23:26] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[15:23:26] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[15:23:26] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[15:23:26] [Server thread/INFO]: Preparing level "world"
[15:23:27] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[15:23:27] [Server thread/INFO]: Time elapsed: 95 ms
[15:23:27] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[15:23:27] [Server thread/INFO]: Time elapsed: 78 ms
[15:23:27] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[15:23:27] [Server thread/INFO]: Time elapsed: 29 ms
[15:23:27] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[15:23:27] [Server thread/WARN]: [PlaceholderAPI] Loaded class com.viaversion.viaversion.api.type.Type from ViaVersion v4.5.1 which is not a depend or softdepend of this plugin.
[15:23:27] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[15:23:27] [Server thread/INFO]: [PlayerLandsX] Enabling PlayerLandsX v1.0.0
[15:23:27] [Server thread/INFO]: PlayerLandsXLoop Constructed Successfully.
[15:23:27] [Server thread/INFO]: [FarmLimiter] Enabling FarmLimiter v1.5.3
[15:23:27] [Server thread/INFO]: [VoteMayor] Enabling VoteMayor v1.0-SNAPSHOT
[15:23:28] [Server thread/WARN]: [VoteMayor] Could not save messages.yml to plugins/VoteMayor/messages.yml because messages.yml already exists.
[15:23:28] [Server thread/INFO]: [VoteMayor] There is no vote going on.
[15:23:28] [Server thread/WARN]: [VoteMayor] Loaded class me.clip.placeholderapi.expansion.PlaceholderExpansion from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[15:23:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vote [1.0.0]
[15:23:28] [Server thread/INFO]: [VillagerTradeLimiter] Enabling VillagerTradeLimiter v1.5.8
[15:23:28] [Server thread/INFO]: Connected to database!
[15:23:28] [Server thread/INFO]: [VillagerTradeLimiter] VillagerTradeLimiter is running!
[15:23:28] [Server thread/INFO]: [MasterCooldowns] Enabling MasterCooldowns v1.5
[15:23:28] [Server thread/INFO]: [MasterCooldowns] No cooldowns found.
[15:23:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mcd [1.5]
[15:23:28] [Server thread/INFO]: [MasterCooldowns] PlaceholderAPI hook enabled.
[15:23:28] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.5.1
[15:23:28] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.10.0
[15:23:28] [Server thread/INFO]: [NBTAPI] Adding listeners...
[15:23:28] [Server thread/INFO]: [NBTAPI] Gson:
[15:23:28] [Server thread/INFO]: [NBTAPI] Checking bindings...
[15:23:28] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[15:23:28] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[15:23:28] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[15:23:28] [Server thread/WARN]: [NBTAPI] Error during 'RemovingKeys' test!
java.lang.ClassCastException: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
    at de.tr7zw.nbtapi.NBTReflectionUtil.getKeys(NBTReflectionUtil.java:588) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.NBTCompound.getKeys(NBTCompound.java:542) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.tests.compounds.RemovingKeys.test(RemovingKeys.java:46) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:190) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-376]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:23:28] [Server thread/WARN]: [NBTAPI] Error during 'ListTest' test!
java.lang.ClassCastException: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
    at de.tr7zw.nbtapi.NBTReflectionUtil.getKeys(NBTReflectionUtil.java:588) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.NBTCompound.getKeys(NBTCompound.java:542) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.tests.compounds.ListTest.test(ListTest.java:53) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:190) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-376]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:23:28] [Server thread/WARN]: [NBTAPI] Error during 'EqualsTest' test!
java.lang.ClassCastException: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
    at de.tr7zw.nbtapi.NBTReflectionUtil.getKeys(NBTReflectionUtil.java:588) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.NBTCompound.getKeys(NBTCompound.java:542) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.NBTCompound.equals(NBTCompound.java:839) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.tests.compounds.EqualsTest.test(EqualsTest.java:31) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at de.tr7zw.nbtapi.plugin.NBTAPI.onEnable(NBTAPI.java:190) ~[item-nbt-api-plugin-2.10.0 (2).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-376]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[15:23:28] [Server thread/INFO]: [NBTAPI] EqualsTest: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
[15:23:28] [Server thread/INFO]: [NBTAPI] ListTest: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
[15:23:28] [Server thread/INFO]: [NBTAPI] RemovingKeys: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
[15:23:28] [Server thread/WARN]: [NBTAPI] WARNING! This version of NBT-API seems to be broken with your Spigot version! Plugins that don't check properly may throw Exeptions, crash or have unexpected behaviors!
[15:23:28] [Server thread/INFO]: [JoinServer] Enabling JoinServer v1.0-SNAPSHOT
[15:23:28] [Server thread/WARN]: [JoinServer] Could not save messages.yml to plugins/JoinServer/messages.yml because messages.yml already exists.
[15:23:28] [Server thread/WARN]: [JoinServer] Could not save joinmessage.yml to plugins/JoinServer/joinmessage.yml because joinmessage.yml already exists.
[15:23:28] [Server thread/WARN]: [JoinServer] Could not save database.yml to plugins/JoinServer/database.yml because database.yml already exists.
[15:23:28] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.5.1
[15:23:28] [Server thread/INFO]: [spark] Enabling spark v1.9.42
[15:23:28] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[15:23:28] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.42]
[15:23:28] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[15:23:28] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[15:23:28] [Server thread/INFO]: [BuycraftX] Validating your server key...
[15:23:29] [Server thread/WARN]: [BuycraftX] Your server and webstore online mode settings are mismatched. Unless you are using a proxy and server combination (such as BungeeCord/Spigot or LilyPad/Connect) that corrects UUIDs, then you may experience issues with packages not applying.
[15:23:29] [Server thread/WARN]: [BuycraftX] If you have verified that your set up is correct, you can suppress this message by setting is-bungeecord=true in your BuycraftX config.properties.
[15:23:29] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[15:23:29] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[15:23:34] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.3
[15:23:34] [Server thread/INFO]: [Votifier] Loaded token for website: default
[15:23:34] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[15:23:34] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[15:23:34] [Server thread/INFO]: [TutorialCreator] Enabling TutorialCreator v1.24.0
[15:23:34] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /[0:0:0:0:0:0:0:0%0]:10351.
[15:23:35] [Server thread/INFO]: [TutorialCreator] [STDOUT] [TutorialCreator] TutorialCreator loads the config...
[15:23:35] [Server thread/WARN]: Nag author(s): '[Freeforever24]' of 'TutorialCreator' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[15:23:35] [Server thread/INFO]: [TutorialCreator] [STDOUT] [TutorialCreator] TutorialCreator successfully loaded ProtocolLib.
[15:23:35] [Server thread/INFO]: [TutorialCreator] [STDOUT] [TutorialCreator] TutorialCreator loaded 2 Tutorials.
[15:23:35] [Server thread/INFO]: [TutorialCreator] [STDOUT] [TutorialCreator] TutorialCreator by Freeforever24 started!
[15:23:35] [Server thread/INFO]: [Vouchers] Enabling Vouchers v2.9.10-SNAPSHOT
[15:23:35] [Server thread/INFO]: [Vouchers] Loading the Config.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Successfully loaded Config.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Loading the Data.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Successfully loaded Data.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Loading the Messages.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Successfully loaded Messages.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Loading the VoucherCodes.yml
[15:23:35] [Server thread/INFO]: [Vouchers] Successfully loaded VoucherCodes.yml
[15:23:35] [Server thread/WARN]: [Vouchers] Metrics was automatically enabled.
[15:23:35] [Server thread/WARN]: [Vouchers] Please add Toggle-Metrics: false to the top of your Config.yml
[15:23:35] [Server thread/WARN]: [Vouchers] https://github.com/Crazy-Crew/Vouchers/blob/main/Config.yml
[15:23:35] [Server thread/WARN]: [Vouchers] An example if confused is linked above.
[15:23:35] [Server thread/INFO]: [PersonalPhantoms] Enabling PersonalPhantoms v1.1.0
[15:23:35] [Server thread/INFO]: [PersonalPhantoms] -----------------------
[15:23:35] [Server thread/INFO]: [PersonalPhantoms] PersonalPhantoms v1.1.0
[15:23:35] [Server thread/INFO]: [PersonalPhantoms] By srnyx
[15:23:35] [Server thread/INFO]: [PersonalPhantoms] -----------------------
[15:23:35] [Server thread/INFO]: [EliteArmor] Enabling EliteArmor v6.6.0
[15:23:36] [Server thread/INFO]: [EliteArmor] [ACF] Enabled Asynchronous Tab Completion Support!
[15:23:36] [Server thread/INFO]: [Rankup] Enabling Rankup v3.13.3
[15:23:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rankup [3.13.3]
[15:23:36] [Server thread/INFO]: [EpicRename] Enabling EpicRename v3.11
[15:23:36] [Server thread/INFO]: [EpicRename] [CheckServerVersion] Server running 1.16 or newer. Hex color code support has been enabled.
[15:23:36] [Server thread/INFO]: [EpicRename] Version: 3.11 MC Version: ONE_DOT_SIXTEEN_OR_NEWER
[15:23:36] [Server thread/INFO]: [EpicRename] This plugin is Copyright (c) 2022 Justin "JustBru00" Brubaker. This plugin is licensed under the MPL v2.0. You can view a copy of the MPL v2.0 license at: http://bit.ly/2eMknxx
[15:23:36] [Server thread/INFO]: [EpicRename] Starting to enable plugin...
[15:23:36] [Server thread/INFO]: [EpicRename] Prefix set to: '[EpicRename] '
[15:23:36] [Server thread/INFO]: [EpicRename] Plugin Enabled!
[15:23:36] [Server thread/INFO]: [ChatManager] Enabling ChatManager v3.7.7
[15:23:36] [Server thread/INFO]: [ChatManager] Hooked into: PlaceholderAPI v2.11.2
[15:23:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chatmanager [3.7.7]
[15:23:36] [Server thread/INFO]: [ChatManager] Hooked into: Vault v1.7.3-CMI
[15:23:36] [Server thread/INFO]: [ChatManager] Hooked into: LuckPerms v5.4.52
[15:23:36] [Server thread/INFO]: [ChatManager] Plugin is up to date - v3.7.7
[15:23:36] [Server thread/INFO]: [ChatManager] Metrics disabled in the bStats config.
[15:23:36] [Server thread/INFO]: =========================
[15:23:36] [Server thread/INFO]: Chat Manager
[15:23:36] [Server thread/INFO]: Version 3.7.7
[15:23:36] [Server thread/INFO]: Author: H1DD3NxN1NJA
[15:23:36] [Server thread/INFO]: =========================
[15:23:36] [Server thread/INFO]: [GamePoints] Enabling GamePoints v1.3.5
[15:23:36] [Server thread/INFO]: [GamePoints] Powered by: NexEngine
[15:23:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gamepoints [1.3.5]
[15:23:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Starting...
[15:23:36] [Server thread/INFO]: [com.zaxxer.hikari.pool.HikariPool] HikariPool-1 - Added connection org.sqlite.jdbc4.JDBC4Connection@3f0c0bb9
[15:23:36] [Server thread/INFO]: [com.zaxxer.hikari.HikariDataSource] HikariPool-1 - Start completed.
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'key_vote' in 'keys' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'key_daily' in 'keys' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'key_donor' in 'keys' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'rank_vip' in 'perks' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'rank_vip_plus' in 'perks' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'rank_mvp' in 'perks' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'money_5000' in 'claimblocks' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'money_15000' in 'claimblocks' store!
[15:23:36] [Server thread/ERROR]: [GamePoints] Invalid product preview for 'money_30000' in 'claimblocks' store!
[15:23:36] [Server thread/INFO]: [GamePoints] Stores Loaded: 3
[15:23:36] [Server thread/INFO]: [GamePoints] Plugin loaded in 62 ms!
[15:23:36] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.59.0
[15:23:37] [Server thread/INFO]: [PinataParty] Registering hooks...
[15:23:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.59.0]
[15:23:37] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[15:23:37] [Server thread/INFO]: [PinataParty] Hooked into Votifier
[15:23:37] [Server thread/INFO]: [PinataParty] Hooked into Vault
[15:23:37] [Server thread/INFO]: [PinataParty] Registering commands...
[15:23:37] [Server thread/INFO]: [PinataParty] Registering listeners...
[15:23:37] [Server thread/INFO]: [PinataParty] Loading data...
[15:23:37] [Server thread/INFO]: [PinataParty] Starting tasks...
[15:23:37] [Server thread/INFO]: [PinataParty] Starting metrics...
[15:23:37] [Server thread/INFO]: [PinataParty] Plugin registered to 1227700 | -1789704661
[15:23:37] [Server thread/INFO]: [PinataParty] Done and enabled in 21.86ms
[15:23:37] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[15:23:37] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[15:23:37] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[15:23:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[15:23:37] [Server thread/INFO]: [CommandPanels] Enabling CommandPanels v3.18.2.0
[15:23:37] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.2.0 Plugin Loading...
[15:23:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: commandpanels [1.0.0]
[15:23:37] [Server thread/INFO]: [CommandPanels] RockyHawk's CommandPanels v3.18.2.0 Plugin Loaded!
[15:23:37] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.10.3
[15:23:38] [Server thread/INFO]: [LiteBans] Loading SQL driver: h2 1.4.197 (org.h2.Driver)
[15:23:38] [Server thread/INFO]: [LiteBans] Connecting to database...
[15:23:38] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[15:23:38] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[15:23:38] [Server thread/INFO]: [LiteBans] Connected to H2 database successfully (93.7 ms).
[15:23:38] [Server thread/INFO]: [LiteBans] Database connection fully initialized (96.1 ms).
[15:23:38] [Server thread/INFO]: [LiteBans] v2.10.3 enabled. Startup took 209 ms.
[15:23:38] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[15:23:38] [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--].
[15:23:38] [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.
[15:23:38] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn1
[15:23:38] [Server thread/INFO]: Time elapsed: 104 ms
[15:23:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: towers
[15:23:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: hide
[15:23:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: HideAndSeekPandaVillage1_18_2
[15:23:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: Pond
[15:23:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:38] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: HideAndSeek
[15:23:38] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:39] [Server thread/INFO]: Preparing start region for dimension minecraft:warzone_envoy
[15:23:39] [Server thread/INFO]: Time elapsed: 168 ms
[15:23:39] [Server thread/INFO]: [VoidGen] Generator settings "<parameters>" syntax is not valid. Using default values:
[15:23:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:23:39] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[15:23:39] [Server thread/INFO]: Time elapsed: 29 ms
[15:23:39] [Server thread/INFO]: [VoidGen] Generator settings "<parameters>" syntax is not valid. Using default values:
[15:23:39] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[15:23:39] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: HIdeseek
[15:23:39] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:39] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: tower
[15:23:39] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[15:23:39] [Server thread/INFO]: [Multiverse-Core] 6 - World(s) loaded.
[15:23:39] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[15:23:39] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[15:23:39] [Server thread/INFO]: [AlonsoTags] Enabling AlonsoTags v2.0.7-BETA
[15:23:39] [Server thread/INFO]: [AlonsoTags] Max health Attribute check found. Using it..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Inventory title with support for more than 32 characters. Skipping..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Hex colors are available! Ready for RGB..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Old constructor for HoverEvent found! Using it..
[15:23:39] [Server thread/INFO]: [AlonsoTags] New sendTitle method found! Using it..
[15:23:39] [Server thread/INFO]: [AlonsoTags] New setUnbreakable method found! Using it..
[15:23:39] [Server thread/INFO]: [AlonsoTags] New isUnbreakable method found! Using it..
[15:23:39] [Server thread/INFO]:     _   _                 _____             
[15:23:39] [Server thread/INFO]:    /_\ | |___ _ _  ___ __|_   _|_ _ __ _ ___
[15:23:39] [Server thread/INFO]:   / _ \| / _ \ ' \(_-</ _ \| |/ _` / _` (_-<
[15:23:39] [Server thread/INFO]:  /_/ \_\_\___/_||_/__/\___/|_|\__,_\__, /__/
[15:23:39] [Server thread/INFO]:                                    |___/    
[15:23:39] [Server thread/INFO]:    Running plugin AlonsoTags v2.0.7-BETA (v1_19)
[15:23:39] [Server thread/INFO]:    Server running Paper version git-Paper-376 (MC: 1.19.3)
[15:23:39] [Server thread/INFO]:    (Implementing API version 1.19.3-R0.1-SNAPSHOT)
[15:23:39] [Server thread/INFO]:    (Developed by  AlonsoAliaga - Thanks for using my plugin ❤)
[15:23:39] [Server thread/INFO]:    Join our official discord server to receive support in alonsoaliaga.com/discord
[15:23:39] [Server thread/INFO]:    If you loved the plugin consider leaving a 5-stars review and mentioning your server IP in it!
[15:23:39] [Server thread/INFO]: 
[15:23:39] [Server thread/INFO]: ==============================================================================================
[15:23:39] [Server thread/INFO]: [AlonsoTags] This is not a error! This is just a warning to keep in mind if you have issues!
[15:23:39] [Server thread/INFO]: [AlonsoTags] You are using a Paper fork (Paper). This plugin was made for Spigot
[15:23:39] [Server thread/INFO]: [AlonsoTags] but was (in most cases) tested with different builds of Paper and Purpur.
[15:23:39] [Server thread/INFO]: [AlonsoTags] Spigot and forks API are really similar and should be compatible, however there are
[15:23:39] [Server thread/INFO]: [AlonsoTags] some cases in which they aren't compatible. If you have issues report them to the
[15:23:39] [Server thread/INFO]: [AlonsoTags] developer instead of reviewing 1 star. Thanks in advanced!
[15:23:39] [Server thread/INFO]: [AlonsoTags] Join us in our official support server on alonsoaliaga.com/discord
[15:23:39] [Server thread/INFO]: ==============================================================================================
[15:23:39] [Server thread/INFO]: 
[15:23:39] [Server thread/INFO]: [AlonsoTags] BungeeCord action bar available. Hooking..
[15:23:39] [Server thread/INFO]: [AlonsoTags] ProtocolLib found! Checking..
[15:23:39] [Server thread/INFO]: [Auto-update] Configuration is up-to-date!
[15:23:39] [Server thread/INFO]: [AlonsoTags] [HikariCP] Using com.mysql.cj.jdbc.MysqlDataSource for source class name..
[15:23:39] [Server thread/INFO]: [AlonsoTags] [SQLite] Attempting to create 'alonsotags' table..
[15:23:39] [Server thread/INFO]: [SQLite] Connecting to database 'database-alonsotags.db'!
[15:23:39] [Server thread/INFO]: [SQLite] Driver available: SQLite JDBC | 3.36.0
[15:23:39] [Server thread/INFO]: [SQLite] Successfully connected to database!
[15:23:39] [Server thread/INFO]: [AlonsoTags] [SQLite] Table 'alonsotags' has been created if didn't exist.
[15:23:39] [Server thread/INFO]: [AlonsoTags] Column called 'purchased_tags' already exists. Skipping..
[15:23:39] [Server thread/INFO]: [AlonsoTags] GameProfile field is available for heads. Hooking..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Vault found! Hooking..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Config files are (re)loading.. Timestamp: 81d 23h 48m 35s | 81d 23h 47m 6s
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'og' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'Ghostmorty' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'booster' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'snow' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'christams' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Loading 'trader' tag..
[15:23:39] [Server thread/INFO]: [AlonsoTags] Successfully loaded 6 tags!
[15:23:39] [Server thread/INFO]: [AlonsoTags] ===========================================================================
[15:23:39] [Server thread/INFO]: [AlonsoTags] Looks like some tags attempt to load premium options. If you want
[15:23:39] [Server thread/INFO]: [AlonsoTags] to use those options consider purchasing AlonsoTags Pro.
[15:23:39] [Server thread/INFO]: [AlonsoTags] Purchase it on SpigotMC here: https://alonsoaliaga.com/AlonsoTagsPro
[15:23:39] [Server thread/INFO]: [AlonsoTags] ===========================================================================
[15:23:39] [Server thread/INFO]: [AlonsoTags] PlaceholderAPI found! Hooking..
[15:23:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: alonsotags [2.0.7-BETA]
[15:23:39] [Server thread/INFO]: [PermissionPortals] Enabling PermissionPortals v0.1.0
[15:23:39] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.6.2
[15:23:39] [Server thread/WARN]: [ajLeaderboards] Unable to find 1.19 nms class: us.ajg0702.leaderboards.nms.nms19.HeadUtils19
[15:23:39] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for cmi_user_balance. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for shortcut_leastdeats. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_deaths. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_mob_kills. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_player_kills. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] The columns already exist for statistic_time_played. Canceling updater and bumping DB version.
[15:23:39] [Server thread/INFO]: [ajLeaderboards] Loaded 6 boards
[15:23:39] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ajlb [2.6.2]
[15:23:39] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[15:23:39] [Server thread/INFO]: [ajLeaderboards] LuckPerms position context calculator registered!
[15:23:39] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.6.2 by ajgeiss0702 enabled!
[15:23:39] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.6-Release
[15:23:39] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[15:23:40] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: advanced_menu already exists for another menu!
Skipping menu: advanced_menu
[15:23:40] [Server thread/ERROR]: [DeluxeMenus] open_command specified for menu: requirements_menu already exists for another menu!
Skipping menu: requirements_menu
[15:23:40] [Server thread/INFO]: [DeluxeMenus] 12 GUI menus loaded!
[15:23:40] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[15:23:40] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[15:23:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.6-Release]
[15:23:40] [Server thread/INFO]: [TAB] Enabling TAB v3.2.1
[15:23:40] [Server thread/INFO]: [TAB] Server version: 1.19.3 (v1_19_R2)
[15:23:40] [Server thread/INFO]: [TAB] Loaded NMS hook in 12ms
[15:23:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [3.2.1]
[15:23:40] [Server thread/INFO]: [TAB] Enabled in 76ms
[15:23:40] [Server thread/INFO]: [Infiniteannouncements] Enabling Infiniteannouncements v2.3.1
[15:23:40] [Server thread/INFO]:  
[15:23:40] [Server thread/INFO]: ====================================
[15:23:40] [Server thread/INFO]: Plugin name: Infiniteannouncements
[15:23:40] [Server thread/INFO]: Version: 2.3.1
[15:23:40] [Server thread/INFO]: Core version: 0.7.25
[15:23:40] [Server thread/INFO]: ====================================
[15:23:40] [Server thread/INFO]:  
[15:23:40] [Server thread/INFO]: [Infiniteannouncements] Loaded locale "en_US"
[15:23:40] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: infiniteannouncements [1.0.0]
[15:23:40] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.7+216b061
[15:23:40] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn1) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn1) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn1) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn1) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn1'
[15:23:40] [Server thread/INFO]: [WorldGuard] (warzone_envoy) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (warzone_envoy) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (warzone_envoy) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (warzone_envoy) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'warzone_envoy'
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn) TNT ignition is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn) Lighters are PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn) Lava fire is PERMITTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] (Spawn) Fire spread is UNRESTRICTED.
[15:23:40] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Spawn'
[15:23:40] [Server thread/INFO]: [WorldGuard] Loading region data...
[15:23:40] [Server thread/INFO]: [GSit] Enabling GSit v1.2.8
[15:23:40] [Server thread/INFO]: [sit] The plugin can't be used with this server version! (v1_19_R2)
[15:23:40] [Server thread/INFO]: [sit] New version available: 1.3.6!
[sit] You are currently running version: 1.2.8!
[sit] Download the latest version at:
[sit] https://www.spigotmc.org/resources/62325
[15:23:40] [Server thread/INFO]: [GSit] Disabling GSit v1.2.8
[15:23:40] [Server thread/INFO]: [sit] The plugin was successfully disabled.
[15:23:40] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[15:23:40] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[15:23:40] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[15:23:40] [Server thread/INFO]: --------------------
[15:23:40] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[15:23:40] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[15:23:40] [Server thread/INFO]: --------------------
[15:23:40] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[15:23:40] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[15:23:40] [Server thread/INFO]: [Skript] Enabling Skript v2.6.3
[15:23:40] [Server thread/INFO]: [Skript] Skript's language file english.lang is outdated, some messages will be english.
[15:23:41] [ForkJoinPool.commonPool-worker-1/INFO]: [Skript] A new version of Skript is available: 2.6.4 (you're currently running 2.6.3)
[15:23:41] [ForkJoinPool.commonPool-worker-1/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar>https://github.com/SkriptLang/Skript/releases/download/2.6.4/Skript-2.6.4.jar
[15:23:44] [Server thread/INFO]: [Skript] Loaded 153613 aliases in 3751ms
[15:23:45] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[15:23:45] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.7.9
[15:23:45] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[15:23:45] [Server thread/INFO]: [RTP] Enabling RTP v1.3.24
[15:23:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: rtp [1.3.24]
[15:23:45] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.8
[15:23:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:23:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_19_R2' loaded!
[15:23:45] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:23:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.6.8]
[15:23:45] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[15:23:45] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2900)
[15:23:45] [Server thread/INFO]: [Citizens] Loading external libraries
[15:23:45] [Thread-17/INFO]: [NBTAPI] [NBTAPI] The NBT-API seems to be up-to-date!
[15:23:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[15:23:45] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[15:23:45] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.16.2
[15:23:45] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[15:23:45] [Server thread/INFO]: [Shopkeepers] Loading the data of 8 shopkeepers ...
[15:23:45] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.26.0
[15:23:45] [Server thread/WARN]: [DiscordSRV] Config key Experiment_WebhookChatMessageUsernameFilters is missing from the config.yml. Using the default value of {}
[15:23:45] [Server thread/INFO]: [ProtectionStones] Enabling ProtectionStones v2.10.3
[15:23:45] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.GreetingFlagHandler
[15:23:45] [Server thread/INFO]: [WorldGuard] Registering session handler dev.espi.protectionstones.flags.FarewellFlagHandler
[15:23:45] [Server thread/INFO]: [ProtectionStones] PlaceholderAPI support enabled!
[15:23:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: protectionstones [2.10.3]
[15:23:45] [Server thread/INFO]: [ProtectionStones] LuckPerms support enabled!
[15:23:45] [Server thread/INFO]: [ProtectionStones] Protection Stone Blocks:
[15:23:45] [Server thread/INFO]: [ProtectionStones] - PLAYER_HEAD:eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvZWU1NGFiYmM2NWIxM2E0MmMyOTU5MGEwY2Y5ZDNlMDA3MDJkMWU2MGQ5NzRmOTI4NmE3YzE3MjY3ZjIyODJjOSJ9fX0= (STONE)
[15:23:45] [Server thread/INFO]: [ProtectionStones] - EMERALD_ORE (64)
[15:23:45] [pool-64-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (819b02508abe8879cfc2a513fc6cea383b70b5c5)
[15:23:46] [Server thread/INFO]: [ProtectionStones] Building region cache...
[15:23:46] [Server thread/INFO]: [ProtectionStones] Building UUID cache... (if slow change async-load-uuid-cache in the config to true)
[15:23:46] [Server thread/INFO]: [ProtectionStones] Checking if PS regions have been updated to UUIDs...
[15:23:46] [Server thread/INFO]: [ProtectionStones] ProtectionStones has successfully started!
[15:23:46] [Server thread/INFO]: [StreakRewards] Enabling StreakRewards v2.2.7
[15:23:46] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[15:23:46] [Server thread/INFO]: Now loading reward menu 'default'
[15:23:46] [Server thread/INFO]: [StreakRewards] StreakRewards is using SQLite to store player data. Attempting to connect to the database now...
[15:23:46] [Server thread/INFO]: [StreakRewards] StreakRewards successfully created/connected to the SQLite database called 'playerdata.db'
[15:23:46] [Server thread/INFO]: Hooked into Citizens. You can now make streakrewards NPCs by using '/daily createnpc'. Customize it with Citizens
[15:23:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: streakrewards [2.2.7]
[15:23:46] [Server thread/INFO]: Hooked into PlaceholderAPI. The StreakRewards expansion has been loaded.
[15:23:46] [Server thread/INFO]: [ArmorStandTools] Enabling ArmorStandTools v4.4.4
[15:23:46] [Server thread/INFO]: [ArmorStandTools] PlotSquared plugin not found. Continuing without PlotSquared support.
[15:23:46] [Server thread/INFO]: [ArmorStandTools] WorldGuard plugin found. WorldGuard support enabled.
[15:23:46] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[15:23:46] [Server thread/INFO]: [DiscoverAreas] Enabling DiscoverAreas v1.7.0-SNAPSHOT
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [INFO] Initializing...
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [SUCCESS] WorldGuard hooked!
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [WARN] This server is not running plugin's native version (1.14). There may appear bugs & errors. If so, please contact developer on Spigotmc.org.
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [WARN] This is snapshot version of plugin - this version is not final and may not be stable. Use this version on your own risk.
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [SUCCESS] Successfully cached 2 areas.
[15:23:46] [Server thread/INFO]: [DiscoverAreas] [INFO] This plugin uses bStats to monitor statistics.
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Enabling CrazyEnvoys v1.4.18
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loading the config.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded config.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loading the messages.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded messages.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loading the data.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Successfully loaded data.yml
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loading custom files.
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Basic.yml.
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Lucky.yml.
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Loaded new custom file: /tiers/Titan.yml.
[15:23:46] [Server thread/INFO]: [CrazyEnvoys] Finished loading custom files.
[15:23:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.18]
[15:23:46] [Server thread/WARN]: [CrazyEnvoys] We no longer support placeholders using {}
[15:23:46] [Server thread/WARN]: [CrazyEnvoys] We only support %% placeholders i.e %crazyenvoys_cooldown%
[15:23:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazyenvoys [1.4.18]
[15:23:46] [Server thread/INFO]: [NoChatReports] Enabling NoChatReports v1.0.5
[15:23:46] [Server thread/INFO]: [NoChatReports] Loading plugin hooks...
[15:23:46] [Server thread/INFO]: [NoChatReports] - Loaded hook DiscordSRVHook
[15:23:46] [Server thread/INFO]: [NoChatReports] Loaded 1 plugin hooks!
[15:23:46] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.3.7
[15:23:47] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
[15:23:47] [Server thread/WARN]: java.lang.NoSuchFieldException: c
[15:23:47] [Server thread/WARN]:     at java.base/java.lang.Class.getField(Class.java:2117)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Reflections.initialize(Reflections.java:222)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Reflections.<init>(Reflections.java:131)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.CMILib.getReflectionManager(CMILib.java:79)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:89)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:192)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[15:23:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[15:23:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[15:23:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:23:47] [Server thread/WARN]: java.lang.NoSuchMethodException: net.minecraft.nbt.NBTTagCompound.e_()
[15:23:47] [Server thread/WARN]:     at java.base/java.lang.Class.getMethod(Class.java:2227)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.NBT.CMINBT.<clinit>(CMINBT.java:228)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Reflections.asNMSCopy(Reflections.java:1025)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Reflections.getItemMinecraftName(Reflections.java:838)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.Items.ItemManager.load(ItemManager.java:89)
[15:23:47] [Server thread/WARN]:     at CMILib1.2.3.7 (2).jar//net.Zrips.CMILib.CMILib.onEnable(CMILib.java:192)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[15:23:47] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[15:23:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[15:23:47] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[15:23:47] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[15:23:47] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:23:47] [Server thread/INFO]: CMI hooked.
[15:23:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.3.7]
[15:23:47] [Server thread/INFO]: PlaceholderAPI hooked.
[15:23:47] [Server thread/INFO]: Updated (EN) language file. Took 20ms
[15:23:47] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[15:23:47] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.0.1
[15:23:47] [Server thread/INFO]: ------------- Jobs -------------
[15:23:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.0.1]
[15:23:47] [Server thread/INFO]: PlaceholderAPI hooked.
[15:23:47] [Server thread/INFO]: Connected to database (SqLite)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Splashcraft | Community(872196000431886497)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔗┃how-to-join(973902675420794880)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌊〡verification(973694912174383144)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📖・information(1015258574550741092)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐬〡rules(872197116821401610)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🔔・announcements(921924171817173032)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢・events(1041337242414755931)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📢・changelog(1040729749644914748)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👀・spoilers(963777224065036369)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚀・booster・info(1023670943521976520)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📝・staff-applications(983455418875539506)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💎┃react-role(872564021453279252)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📩┃support-tickets(872594710924001350)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌴┃english・general(1023669791560568893)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌴┃dutch・general(1023669389318438970)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🌴┃other・general(1024434978748108840)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🐳┃marketplace(998297726473224254)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:📷┃media(872199119463149599)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤖┃commands(872198847613522011)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:💡┃suggestions(954337888370303006)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:⛓┃chain-archive(923647749872816199)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🚀┃nitro(1023682937557889095)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🤝┃(925721036807360553)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff(974379696638799944)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:staff-updates(986026741799727134)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:mod-staff(1039813624182620170)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderation-report(1014872242296987688)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:perms(1002965785116946563)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:bot(872199326129070101)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:highstaffmain(1014145067532947476)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:dev-chat(875677356847673404)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:logs(945267491414888478)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestion-logs(988177991316176906)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:suggestion-dess(1005066730026041354)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:appeals(1031264757581369375)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:money(1034847771137687642)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:moderation(1044224943572910120)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:lobby(973716680524066856)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival(964613178216546354)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:survival-logs(964613731084533801)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:lobby-logs(973716756419969114)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:tickets-transcripts(981325181500928051)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:greetings(872447189861957642)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:👋┊leave(872761840365613106)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:🎫・ticket-noaskers(1069992694971109507)
[15:23:47] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:survival-logs(964613731084533801)
[15:23:47] [Server thread/INFO]: Loaded 9 titles
[15:23:47] [Server thread/INFO]: Loaded 69 protected blocks timers
[15:23:47] [Server thread/INFO]: Loaded 1282 custom item names
[15:23:47] [Server thread/INFO]: Loaded 79 custom entity names
[15:23:47] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[15:23:47] [Server thread/INFO]: Loaded 38 custom enchant names
[15:23:47] [Server thread/INFO]: Loaded 21 custom enchant names
[15:23:47] [Server thread/INFO]: Loaded 16 custom color names
[15:23:47] [Server thread/INFO]: Loaded 4 shop items
[15:23:47] [Server thread/INFO]: Loaded 9 quests for Weaponsmith
[15:23:47] [Server thread/INFO]: Loaded 26 quests for Brewer
[15:23:47] [Server thread/INFO]: Loaded 20 quests for Builder
[15:23:47] [Server thread/INFO]: Loaded 15 quests for Digger
[15:23:47] [Server thread/INFO]: Loaded 12 quests for Explorer
[15:23:47] [Server thread/INFO]: Loaded 18 quests for Cooker
[15:23:47] [Server thread/INFO]: Loaded 12 quests for Fisherman
[15:23:47] [Server thread/INFO]: Loaded 20 quests for Woodcutter
[15:23:47] [Server thread/INFO]: Loaded 26 quests for Hunter
[15:23:47] [Server thread/INFO]: Loaded 18 quests for Enchanter
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/WARN]: [Jobs] Job Miner has incorrect quest objective (Break;200)!
[15:23:47] [Server thread/INFO]: Loaded 21 quests for Miner
[15:23:47] [Server thread/INFO]: Loaded 16 quests for Smelter
[15:23:47] [Server thread/INFO]: Loaded 42 quests for Caretaker
[15:23:47] [Server thread/INFO]: Loaded 21 quests for Taster
[15:23:47] [Server thread/INFO]: Loaded 20 quests for Farmer
[15:23:47] [Server thread/INFO]: Loaded 16 quests for Crafter
[15:23:47] [Server thread/INFO]: Loaded 10 quests for Baker
[15:23:47] [Server thread/INFO]: Loaded 17 jobs
[15:23:47] [Server thread/INFO]: Loaded 0 boosted items
[15:23:47] [Server thread/INFO]: Loaded 32 brewing for reassigning.
[15:23:47] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[15:23:47] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[15:23:47] [Server thread/INFO]: Preloaded 163 players data in 0.0
[15:23:47] [Server thread/INFO]: WorldGuard detected.
[15:23:47] [Server thread/INFO]: Loading explorer data
[15:23:47] [Server thread/INFO]: Loaded explorer data (79345) in 163 ms
[15:23:47] [Server thread/INFO]: Plugin has been enabled successfully.
[15:23:47] [Server thread/INFO]: ------------------------------------
[15:23:47] [Server thread/INFO]: [CMI] Enabling CMI v9.3.0.5
[15:23:47] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[15:23:47] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[15:23:47] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[15:23:47] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[15:23:47] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[15:23:47] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[15:23:47] [Server thread/INFO]: _______________________________________________________
[15:23:47] [Server thread/INFO]:   Integrating PaperSpigot async methods
[15:23:48] [Server thread/INFO]:   Citizens found.
[15:23:48] [Server thread/INFO]:   37 Enabled and 20 Disabled modules
[15:23:48] [Server thread/INFO]:   Votifier found. Enabling vote listeners
[15:23:48] [Server thread/INFO]:   Loaded (3) portals into memory. Took 10ms
[15:23:48] [Server thread/INFO]:   Permission plugin: LuckPerms5.4.52
[15:23:48] [Server thread/INFO]:   Initialized Cipher256 AES
[15:23:48] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 20ms
[15:23:48] [Server thread/INFO]:   Loaded (1) custom text's into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   3.36.0 data base type detected
[15:23:48] [Server thread/INFO]:   Started SqLite data base. Took 58ms
[15:23:48] [Server thread/INFO]:   Vault was found - Enabling capabilities. Economy: CMIEconomy
[15:23:48] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   Loaded (6) warning commands into memory. Took 0ms
[15:23:48] [Server thread/INFO]:   Loaded (142) custom mob heads into memory. Took 11ms
[15:23:48] [Server thread/INFO]:   Loaded (3) cooldowns into memory. Took 17ms
[15:23:48] [Server thread/INFO]:   Loaded (6) warmups into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for world world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for world world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for world world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for world world. Please update values.
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (worldsave) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (parkour) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (dungeons) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Rogue) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (test1) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (map) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Station2) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (tower) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (towers) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (Pond) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (HIdeseek) name
[15:23:48] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for warzone_envoy world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for warzone_envoy world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for warzone_envoy world. Please update values.
[15:23:48] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for warzone_envoy world. Please update values.
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (HideAndSeekPandaVillage1_18_2) name
[15:23:48] [Server thread/INFO]:   (RandomTeleportation) Can't find world with (hide) name
[15:23:48] [Server thread/INFO]:   Initializing BungeeCord
[15:23:48] [Server thread/INFO]:   Loaded (8) kits into memory. Took 4ms
[15:23:48] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 5ms
[15:23:48] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   Loaded (184) player data into memory. Took 17ms
[15:23:48] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 0ms
[15:23:48] [Server thread/INFO]:   Loaded (1) playtime reward records into memory. Took 0ms
[15:23:48] [Server thread/INFO]:   Loaded (4) custom alias into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   Loaded (1) interactive commands into memory. Took 1ms
[15:23:48] [Server thread/INFO]:   Registered events. Took 54ms
[15:23:48] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 2ms
[15:23:48] [Server thread/INFO]:   Updated (EN) language file. Took 63ms
[15:23:48] [Server thread/WARN]: [CMILib] Loaded class com.Zrips.CMI.Containers.Snd from CMI v9.3.0.5 which is not a depend or softdepend of this plugin.
[15:23:48] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 9ms
[15:23:48] [Server thread/INFO]:   Loaded (13) warps into memory. Took 5ms
[15:23:48] [Server thread/INFO]:   Vault permissions was found - Enabling capabilities.
[15:23:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.3.0.5]
[15:23:48] [Server thread/INFO]:   PlaceholderAPI hooked.
[15:23:48] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[15:23:48] [Server thread/INFO]:   Jobs was found - Enabling capabilities.
[15:23:48] [Server thread/INFO]:   Initializing world manager.
[15:23:48] [Server thread/INFO]:   Loaded (5) schedules into memory. Took 3ms
[15:23:48] [Server thread/INFO]:   Loaded GeoIP
[15:23:48] [Server thread/INFO]:   Loaded (52) skin cache entries into memory. Took 2ms
[15:23:48] [Server thread/INFO]:   Found DiscordSRV
[15:23:48] [Server thread/INFO]: [DiscordSRV] API listener com.Zrips.CMI.Modules.DiscordSRV.DiscordSRVListener subscribed (4 methods)
[15:23:48] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[15:23:48] [Server thread/INFO]:   Version 9.3.0.5 has been enabled
[15:23:48] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[15:23:48] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked.
[15:23:48] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.5.6
[15:23:48] [Server thread/WARN]: com.loohp.interactivechat.libs.org.simpleyaml.exceptions.InvalidConfigurationException: while scanning for the next token
[15:23:48] [Server thread/WARN]: found character '@' that cannot start any token. (Do not use @ for indentation)
[15:23:48] [Server thread/WARN]:  in 'reader', line 173, column 18:
[15:23:48] [Server thread/WARN]:       MentionPrefix: @
[15:23:48] [Server thread/WARN]:                      ^
[15:23:48] [Server thread/WARN]: 
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.implementation.SimpleYamlImplementation.load(SimpleYamlImplementation.java:78)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.implementation.SimpleYamlImplementation.load(SimpleYamlImplementation.java:57)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.file.YamlConfiguration.load(YamlConfiguration.java:134)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.file.YamlFile.load(YamlFile.java:579)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.file.YamlConfiguration.load(YamlConfiguration.java:272)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.file.YamlConfiguration.load(YamlConfiguration.java:199)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.config.Config.<init>(Config.java:122)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.config.Config.loadConfig(Config.java:68)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.config.ConfigManager.setup(ConfigManager.java:64)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.InteractiveChat.onEnable(InteractiveChat.java:429)
[15:23:48] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[15:23:48] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[15:23:48] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[15:23:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[15:23:48] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[15:23:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[15:23:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[15:23:48] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[15:23:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[15:23:48] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[15:23:48] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:23:48] [Server thread/WARN]: Caused by: while scanning for the next token
[15:23:48] [Server thread/WARN]: found character '@' that cannot start any token. (Do not use @ for indentation)
[15:23:48] [Server thread/WARN]:  in 'reader', line 173, column 18:
[15:23:48] [Server thread/WARN]:       MentionPrefix: @
[15:23:48] [Server thread/WARN]:                      ^
[15:23:48] [Server thread/WARN]: 
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.scanner.ScannerImpl.fetchMoreTokens(ScannerImpl.java:460)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.scanner.ScannerImpl.checkToken(ScannerImpl.java:251)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.parser.ParserImpl$ParseBlockMappingValue.produce(ParserImpl.java:660)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.parser.ParserImpl.peekEvent(ParserImpl.java:166)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:59)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.comments.CommentEventsCollector$1.peek(CommentEventsCollector.java:45)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:140)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.comments.CommentEventsCollector.collectEvents(CommentEventsCollector.java:119)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeScalarNode(Composer.java:214)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:184)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeKeyNode(Composer.java:310)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:301)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:286)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:188)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeValueNode(Composer.java:314)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeMappingChildren(Composer.java:305)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeMappingNode(Composer.java:286)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.composeNode(Composer.java:188)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.getNode(Composer.java:115)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.composer.Composer.getSingleNode(Composer.java:142)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.constructor.BaseConstructor.getSingleData(BaseConstructor.java:151)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.Yaml.loadFromReader(Yaml.java:491)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.yaml.snakeyaml.Yaml.load(Yaml.java:442)
[15:23:48] [Server thread/WARN]:     at InteractiveChat-4.2.5.6.jar//com.loohp.interactivechat.libs.org.simpleyaml.configuration.implementation.SimpleYamlImplementation.load(SimpleYamlImplementation.java:72)
[15:23:48] [Server thread/WARN]:     ... 20 more
[15:23:48] [Server thread/INFO]: [InteractiveChat] Disabling InteractiveChat v4.2.5.6
[15:23:48] [Server thread/ERROR]: Error occurred while disabling InteractiveChat v4.2.5.6 (Is it up to date?)
java.lang.ExceptionInInitializerError: null
    at com.loohp.interactivechat.InteractiveChat.onDisable(InteractiveChat.java:676) ~[InteractiveChat-4.2.5.6.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:266) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.disablePlugin(JavaPluginLoader.java:400) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:581) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at com.loohp.interactivechat.InteractiveChat.onEnable(InteractiveChat.java:432) ~[InteractiveChat-4.2.5.6.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-376]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "com.comphenix.protocol.ProtocolManager.createPacket(com.comphenix.protocol.PacketType)" because "com.loohp.interactivechat.InteractiveChat.protocolManager" is null
    at com.loohp.interactivechat.listeners.OutMessagePacket.<clinit>(OutMessagePacket.java:277) ~[InteractiveChat-4.2.5.6.jar:?]
    ... 16 more
[15:23:48] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[15:23:48] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3] Enabling zAuctionHouseV3 v3.1.0.4
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] === ENABLE START ===
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Plugin Version V3.1.0.4
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] /home/container/plugins/zAuctionHouseV3/config.json loaded successfully !
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading of 3 tax items
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading of 2 price items
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Blocks category with 933 materials
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Potions category with 17 materials
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Tools category with 16 materials
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading the Weapons category with 8 materials
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Attention, the category misc is empty
[15:23:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: zauctionhouse [3.1.0.4]
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading 3 inventories
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading 0 commands
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] /home/container/plugins/zAuctionHouseV3/items.json loaded successfully !
[15:23:48] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] === ENABLE DONE (53ms) ===
[15:23:48] [Server thread/INFO]: [ArtMap] Enabling ArtMap v3.9.8
[15:23:48] [Server thread/INFO]: [ArtMap] Loading 'english' language file
[15:23:48] [Server thread/INFO]: [ArtMap] Sabre Factions not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Grief Defender not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Grief Prevention not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Red Protect not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] ASkyBlock not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] uSkyBlock not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] BentoBox/BSkyBlock not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] PlotSquared not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] PlotSquared not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Residence not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Towny not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Marriage Master not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] Essentials not detected.  Hooks skipped.
[15:23:48] [Server thread/INFO]: [ArtMap] WorldGuard hooks enabled.
[15:23:48] [Server thread/INFO]: [ArtMap] ProtocolLib hooks enabled.
[15:23:48] [Server thread/INFO]: [ArtMap]  MC version: v1_18
[15:23:48] [Server thread/INFO]: [VillagerMarket] Enabling VillagerMarket v1.11.3
[15:23:49] [Server thread/ERROR]: [VillagerMarket] plugins/VillagerMarket/Shops/05a35960-ba60-438e-80c8-b1954d883351.yml seems to be corrupt!
[15:23:49] [Server thread/WARN]: java.lang.NumberFormatException: For input string: ""
[15:23:49] [Server thread/WARN]:     at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:67)
[15:23:49] [Server thread/WARN]:     at java.base/java.lang.Integer.parseInt(Integer.java:678)
[15:23:49] [Server thread/WARN]:     at java.base/java.lang.Integer.parseInt(Integer.java:786)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.utils.VMUtils.secondsFromString(VMUtils.java:27)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.shop.VillagerShop.<init>(VillagerShop.java:75)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.shop.PlayerShop.<init>(PlayerShop.java:40)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.shop.ShopManager.loadShop(ShopManager.java:175)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.shop.ShopManager.load(ShopManager.java:73)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.villagermarket.VMPlugin.onPluginEnable(VMPlugin.java:48)
[15:23:49] [Server thread/WARN]:     at VillagerMarket-1.11.3.jar//net.bestemor.core.CorePlugin.onEnable(CorePlugin.java:63)
[15:23:49] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[15:23:49] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371)
[15:23:49] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544)
[15:23:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578)
[15:23:49] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492)
[15:23:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635)
[15:23:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434)
[15:23:49] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.e(DedicatedServer.java:301)
[15:23:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1101)
[15:23:49] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[15:23:49] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:23:49] [Server thread/INFO]: [VillagerMarket] Loaded 32 shops in 278 ms!
[15:23:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vm [1.11.3]
[15:23:49] [Server thread/INFO]: [DailyShop] Enabling DailyShop v3.9.1
[15:23:49] [Server thread/INFO]: [DailyShop] Hooked to Vault
[15:23:49] [Server thread/INFO]: [DailyShop] Hooked to PlaceholderAPI
[15:23:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: DailyShop [3.9.1]
[15:23:49] [Server thread/INFO]: [DailyShop] Hooked to ShopGUIPlus
[15:23:49] [Server thread/INFO]: [DailyShop] Reading lang.yml...
[15:23:49] [Server thread/INFO]: [DailyShop] Imported lang.yml in 7 ms
[15:23:49] [Server thread/INFO]: [DailyShop] Reading settings.yml... 
[15:23:49] [Server thread/INFO]: [DailyShop] Imported settings.yml in 1 ms
[15:23:49] [Server thread/INFO]: [DailyShop] Reading priceModifiers.yml...
[15:23:49] [Server thread/INFO]: [DailyShop] Loaded 0 modifiers
[15:23:49] [Server thread/INFO]: [DailyShop] Imported priceModifier.yml in 1 ms
[15:23:49] [Server thread/INFO]: [DailyShop] Reading rarities.yml...
[15:23:49] [Server thread/INFO]: [DailyShop] Loaded 7 rarities
[15:23:49] [Server thread/INFO]: [DailyShop] Imported rarities in 1 ms
[15:23:49] [Server thread/INFO]: [DailyShop] Importing database data...
[15:23:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:23:49] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0-SNAPSHOT) located at io.github.divios.dependencies.nbt.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[15:23:49] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:23:49] [Thread-29/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package io.github.divios.dependencies.nbt.nbtapi' seems to be outdated!
[15:23:49] [Thread-29/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0-SNAPSHOT' Newest Version: 2.11.1'
[15:23:49] [Thread-29/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[15:23:49] [Server thread/INFO]: [DailyShop] Imported database data in 45 ms
[15:23:49] [Server thread/INFO]: [DailyShop] Importing data from shops directory...
[15:23:49] [Server thread/INFO]: [DailyShop] Updated shop of name sellshop
[15:23:49] [Server thread/INFO]: [DailyShop] Data imported successfully in 22 ms
[15:23:49] [Server thread/INFO]: [RoseStacker] Enabling RoseStacker v1.5.1
[15:23:49] [Server thread/INFO]: [RoseStacker] Initializing using RoseGarden v1.1.0.48-SNAPSHOT
[15:23:49] [Server thread/INFO]: [RoseStacker] Data handler connected using SQLite.
[15:23:49] [Server thread/ERROR]: Error occurred while enabling RoseStacker v1.5.1 (Is it up to date?)
dev.rosewood.rosestacker.lib.rosegarden.RosePlugin$ManagerNotFoundException: Failed to load StackSettingManager
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.getManager(RosePlugin.java:216) ~[RoseStacker-1.5.1 (1).jar:?]
    at java.util.ArrayList.forEach(ArrayList.java:1511) ~[?:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.reload(RosePlugin.java:175) ~[RoseStacker-1.5.1 (1).jar:?]
    at dev.rosewood.rosestacker.RoseStacker.reload(RoseStacker.java:128) ~[RoseStacker-1.5.1 (1).jar:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.onEnable(RosePlugin.java:104) ~[RoseStacker-1.5.1 (1).jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:371) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:544) ~[paper-api-1.19.3-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugin(CraftServer.java:578) ~[paper-1.19.3.jar:git-Paper-376]
    at org.bukkit.craftbukkit.v1_19_R2.CraftServer.enablePlugins(CraftServer.java:492) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:635) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:434) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:301) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1101) ~[paper-1.19.3.jar:git-Paper-376]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316) ~[paper-1.19.3.jar:git-Paper-376]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NullPointerException: Cannot invoke "dev.rosewood.rosestacker.stack.settings.EntityStackSettings.getEntityTypeData()" because the return value of "dev.rosewood.rosestacker.manager.StackSettingManager.getEntityStackSettings(org.bukkit.entity.EntityType)" is null
    at dev.rosewood.rosestacker.stack.settings.SpawnerStackSettings.setDefaults(SpawnerStackSettings.java:80) ~[RoseStacker-1.5.1 (1).jar:?]
    at dev.rosewood.rosestacker.stack.settings.SpawnerStackSettings.<init>(SpawnerStackSettings.java:34) ~[RoseStacker-1.5.1 (1).jar:?]
    at dev.rosewood.rosestacker.manager.StackSettingManager.lambda$reload$2(StackSettingManager.java:145) ~[RoseStacker-1.5.1 (1).jar:?]
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?]
    at dev.rosewood.rosestacker.manager.StackSettingManager.reload(StackSettingManager.java:144) ~[RoseStacker-1.5.1 (1).jar:?]
    at dev.rosewood.rosestacker.lib.rosegarden.RosePlugin.getManager(RosePlugin.java:213) ~[RoseStacker-1.5.1 (1).jar:?]
    ... 15 more
[15:23:49] [Server thread/INFO]: [RoseStacker] Disabling RoseStacker v1.5.1
[15:23:49] [Server thread/INFO]: [SCore] Enabling SCore v3.6.7
[15:23:49] [Server thread/INFO]: ================ [SCore] ================
[15:23:49] [Server thread/INFO]: [SCore] ExecutableItems hooked !
[15:23:49] [Server thread/INFO]: [SCore] PlaceholderAPI hooked !
[15:23:49] [Server thread/INFO]: [SCore] WorldGuard hooked !
[15:23:49] [Server thread/INFO]: [SCore] Vault hooked !
[15:23:49] [Server thread/INFO]: [SCore] Multiverse-Core hooked !
[15:23:49] [Server thread/INFO]: [SCore] CoreProtect hooked !
[15:23:49] [Server thread/INFO]: [SCore] ProtocolLib hooked !
[15:23:49] [Server thread/INFO]: [SCore] NBTAPI hooked !
[15:23:49] [Server thread/INFO]: [SCore] HeadDatabase hooked !
[15:23:49] [Server thread/INFO]: [SCore] DecentHolograms hooked !
[15:23:49] [Server thread/INFO]: [SCore] CMI hooked !
[15:23:49] [Server thread/INFO]: [SCore] ShopGUIPlus hooked !
[15:23:49] [Server thread/INFO]: [SCore] Locale setup: EN
[15:23:49] [Server thread/INFO]: [SCore] Language setup on EN
[15:23:49] [Server thread/INFO]: [SCore]  Connection to the db...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table SecurityOP...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table Cooldowns...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Player...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Entity...
[15:23:49] [Server thread/INFO]: [SCore] [SCore] Verification of the table Commands Block...
[15:23:49] [Server thread/INFO]: [SCore] Verification of the table UsePerDay...
[15:23:49] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: trident1 &6>> Enchantments available: Look in-game, it's the same name
[15:23:49] [Server thread/ERROR]: &cERROR, Couldn't load the Enchantment value of enchantment from config, value: BUNNY_HOP &7&oSProjectile: tridentCustom1 &6>> Enchantments available: Look in-game, it's the same name
[15:23:49] [Server thread/INFO]: [SCore] 0 saved commands loaded !
[15:23:49] [Server thread/INFO]: ================ [SCore] ================
[15:23:49] [Server thread/INFO]: [ExecutableItems] Enabling ExecutableItems v5.6.7
[15:23:49] [Server thread/INFO]: ================ [*ExecutableItems*] ================
[15:23:50] [Server thread/INFO]: [ExecutableItems] PlaceholderAPI hooked !
[15:23:50] [Server thread/INFO]: [ExecutableItems] HeadDatabase hooked !
[15:23:50] [Server thread/INFO]: [ExecutableItems] NBTAPI hooked !
[15:23:51] [Server thread/INFO]: [ExecutableItems] Connection to the db...
[15:23:51] [Server thread/INFO]: ================ [ExecutableItems] ================
[15:23:51] [Server thread/INFO]: [ShopGUIPlus] Enabling ShopGUIPlus v1.80.1
[15:23:51] [Server thread/INFO]: [WildChests] Enabling WildChests v2022.7-b81
[15:23:51] [Server thread/WARN]: Could not register alias about because it contains commands that do not exist: howaboutno $1-
[15:23:51] [Server thread/WARN]: Could not register alias levels because it contains commands that do not exist: quest $1-
[15:23:51] [Server thread/WARN]: Could not register alias level because it contains commands that do not exist: quest $1-
[15:23:51] [Server thread/WARN]: Could not register alias itemframe because it contains commands that do not exist: itf toggle $1-
[15:23:51] [Server thread/WARN]: Could not register alias itemframescan because it contains commands that do not exist: itf scan 10 $1-
[15:23:51] [Server thread/WARN]: Could not register alias phantom because it contains commands that do not exist: phantomcontrol toggle $1-
[15:23:51] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[15:23:51] [Server thread/INFO]: Running delayed init tasks
[15:23:51] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading animations...
[15:23:51] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[15:23:51] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 1 animations!
[15:23:51] [Craft Scheduler Thread - 25 - GamePoints/INFO]: [GamePoints] Updating balance top...
[15:23:51] [Craft Scheduler Thread - 26 - GamePoints/INFO]: [GamePoints] Auto-save: Saved 0 online users | 0 offline users.
[15:23:51] [Craft Scheduler Thread - 8 - NoChatReports/INFO]: [NoChatReports] Checking for updates...
[15:23:51] [Craft Scheduler Thread - 25 - GamePoints/INFO]: [GamePoints] Balance top updated in 0 ms!
[15:23:51] [Server thread/WARN]: [FastAsyncWorldEdit] Loaded class com.sk89q.worldguard.protection.association.RegionAssociable from WorldGuard v7.0.7+216b061 which is not a depend or softdepend of this plugin.
[15:23:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[15:23:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[15:23:51] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[15:23:51] [Server thread/ERROR]: [ViaVersion] ************************************************
[15:23:51] [Server thread/ERROR]: [ViaVersion] You are using unsupported software and may encounter unforeseeable issues.
[15:23:51] [Server thread/ERROR]: [ViaVersion] 
[15:23:51] [Server thread/ERROR]: [ViaVersion] We strongly advise against using software to mess with message signing:
[15:23:51] [Server thread/ERROR]: [ViaVersion] Instead of doing the obvious (or nothing at all), these kinds of plugins completely break chat message handling, usually then also breaking other plugins.
[15:23:51] [Server thread/ERROR]: [ViaVersion] 
[15:23:51] [Server thread/ERROR]: [ViaVersion] We will not provide support in case you encounter issues possibly related to this software.
[15:23:51] [Server thread/ERROR]: [ViaVersion] ************************************************
[15:23:51] [Craft Scheduler Thread - 23 - ArtMap/INFO]: [ArtMap] Async load of 1 artists started. 8 retrieved from disk cache.
[15:23:51] [Craft Scheduler Thread - 23 - ArtMap/INFO]: [ArtMap] Loaded 0 from disk cache, 0 from server, and 0 from mojang out of 0 artists with 0 failures
[15:23:51] [Craft Scheduler Thread - 23 - ArtMap/INFO]: [ArtMap] Remaining artists will be loaded when needed.
[15:23:51] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 20 holograms!
[15:23:51] [Craft Scheduler Thread - 24 - VillagerMarket/WARN]: [VillagerMarket] A new version of VillagerMarket was found!
[15:23:51] [Craft Scheduler Thread - 24 - VillagerMarket/WARN]: [VillagerMarket] Latest version: 1.11.5
[15:23:51] [Craft Scheduler Thread - 24 - VillagerMarket/WARN]: [VillagerMarket] Your version: 1.11.3
[15:23:51] [Craft Scheduler Thread - 24 - VillagerMarket/WARN]: [VillagerMarket] Get it here for the latest features and bug fixes: https://www.spigotmc.org/resources/82965/
[15:23:51] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[15:23:51] [Craft Scheduler Thread - 8 - NoChatReports/INFO]: [NoChatReports] You are running the latest version.
[15:23:51] [Server thread/INFO]: [Skript] Loading variables...
[15:23:51] [ForkJoinPool.commonPool-worker-1/WARN]: [PlaceholderAPI] Loaded class de.tr7zw.annotations.FAUtil from VillagerTradeLimiter v1.5.8 which is not a depend or softdepend of this plugin.
[15:23:52] [Server thread/INFO]: [Skript] Loaded 5198 variables in 0.0 seconds
[15:23:52] [User Authenticator #0/INFO]: UUID of player flosje is 21686af4-ca53-492e-a2dd-31aa48c6cfd4
[15:23:52] [Server thread/INFO]: [Skript] Line 12: (Redis.sk)
[15:23:52] [Server thread/INFO]:     Can't understand this condition/effect: send redis message "Eco:%{_p}%" to channel "splashcraft"
[15:23:52] [Server thread/INFO]:     Line: send redis message "Eco:%{_p}%" to channel "splashcraft"
[15:23:52] [Server thread/INFO]:  
[15:23:52] [Server thread/INFO]: [Skript] Line 14: (Redis.sk)
[15:23:52] [Server thread/INFO]:     Can't understand this event: 'on redis message'
[15:23:52] [Server thread/INFO]:     Line: on redis message:
[15:23:52] [Server thread/INFO]:  
[15:23:52] [Craft Scheduler Thread - 20 - DiscoverAreas/INFO]: [DiscoverAreas] [INFO] Your server is running latest version of DiscoverAreas (1.7.0-SNAPSHOT).
[15:23:52] [Craft Scheduler Thread - 22 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.4] New update available. Your version: 3.1.0.4, latest version: 3.1.1.0
[15:23:52] [Craft Scheduler Thread - 22 - zAuctionHouseV3/INFO]: [zAuctionHouseV3 v3.1.0.4] Download plugin here: https://groupez.dev/resources/1
[15:23:52] [Server thread/INFO]: Test
[15:23:52] [Server thread/INFO]: [Skript] Loaded 12 scripts with a total of 7 triggers and 18 commands in 0.29 seconds
[15:23:52] [Server thread/INFO]: [Skript] Finished loading.
[15:23:52] [Server thread/INFO]: [Jobs] Successfully linked with Vault.
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: discordsrv [1.26.0]
[15:23:52] [Craft Scheduler Thread - 11 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51114 heads!
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 3{viprewards, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 3{viprewards, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 4{blacksmith, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 4{blacksmith, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 5{witch_shop_dungeon, WITCH} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 5{witch_shop_dungeon, WITCH} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 6{poort_wachter, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 6{poort_wachter, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 7{miner_dungeon, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 7{miner_dungeon, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 8{markt, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 8{markt, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 80{Miner, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 80{Miner, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 84.
[15:23:52] [Craft Scheduler Thread - 11 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 18 featured tags!
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 84{lol, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 84{lol, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 85.
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 85{Guide, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 85{Guide, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 87{souls, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 87{souls, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 86{wizard, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 86{wizard, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 88{builder, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 88{builder, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 90{shop, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 90{shop, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 91.
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 91{markt, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 91{markt, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 93{ranks, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 93{ranks, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 92{levels, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 92{levels, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 94{cosmetics, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 94{cosmetics, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 97.
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 97{booster, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 97{booster, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 100.
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 100{playerwarps, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 100{playerwarps, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 101.
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 101{112512, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 101{112512, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 102{gamblebar, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 102{gamblebar, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 103{casino, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 103{casino, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/ERROR]: [Citizens] The trait eglow failed to load for NPC ID: 81.
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 81{jobs, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 81{jobs, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 104{bar, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 104{bar, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 105{coinflip, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 105{coinflip, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 106{freerank, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 106{freerank, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 107{rtp, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 107{rtp, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 110{SkulllfaceMohawk, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 110{SkulllfaceMohawk, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 118{soldier, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 118{soldier, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 123{Selstar, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 123{Selstar, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 126{test, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 126{test, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 130{NoAskers, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 130{NoAskers, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 129{NoAskers, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 129{NoAskers, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 136{sewlu, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 136{sewlu, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 135{xmas3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 135{xmas3, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 133{xmas2, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 133{xmas2, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 132{xmas1, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 132{xmas1, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 131{vanilasyrup, PLAYER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 131{vanilasyrup, PLAYER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 137{xmas 3, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 137{xmas 3, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 143{blocks, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 143{blocks, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 142{ores, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 142{ores, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 141{color, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 141{color, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 145{misc, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 145{misc, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 144{farming, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 144{farming, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 147{mobs, VILLAGER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 147{mobs, VILLAGER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 149{harry, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 149{harry, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 151{turotrial, WANDERING_TRADER} due to SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 151{turotrial, WANDERING_TRADER} SpawnReason.RESPAWN
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 153{%vote_mayor%, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 153{%vote_mayor%, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Retrying spawn of 152{%vote_mayor%, PLAYER} later, SpawnReason.RESPAWN. Was loaded false is loaded false
[15:23:52] [Server thread/INFO]: [Citizens] Stored 152{%vote_mayor%, PLAYER} for respawn from NPCNeedsRespawnEvent
[15:23:52] [Server thread/INFO]: [Citizens] Loaded 49 NPCs.
[15:23:52] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.0]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: servertime [1.0]
[15:23:52] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend or softdepend of this plugin.
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: checkitem [2.6.3]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: shortcut [1.2.0]
[15:23:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion griefprevention due to a missing plugin: GriefPrevention
[15:23:52] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-CMI which is not a depend or softdepend of this plugin.
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.0]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.2]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: worldborder [1.0.0]
[15:23:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[15:23:52] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion playertime due to a missing plugin: PlayerTime
[15:23:52] [Server thread/INFO]: 9 placeholder hook(s) registered! 6 placeholder hook(s) have an update available.
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Loading inventories in progress...
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory auction !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory buyconfirm !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory removeconfirm !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory expire !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory buying !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory items !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory categories !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory sell !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory sellshow !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory category !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory adminremove !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory search !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Successful loading of the inventory show !
[15:23:52] [Server thread/INFO]: [zAuctionHouseV3 v3.1.0.4] Inventories loading complete.
[15:23:52] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-6,12] due to org.bukkit.event.world.EntitiesLoadEvent@7c6abad7
[15:23:52] [Server thread/INFO]: [Citizens] Removing respawns of 91{markt, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 91{markt, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:52] [Server thread/INFO]: [Citizens] Spawned 91{markt, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@7c6abad7 at [-6,12]
[15:23:52] [Server thread/INFO]: Done (38.778s)! For help, type "help"
[15:23:52] [Server thread/INFO]: Timings Reset
[15:23:52] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] Checking for Updates ... 
[15:23:52] [Server thread/INFO]: [Citizens] Removing 5{witch_shop_dungeon, WITCH} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 5{witch_shop_dungeon, WITCH} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 5{witch_shop_dungeon, WITCH} due to chunk unload at [-7,10]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 90{shop, VILLAGER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 90{shop, VILLAGER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 90{shop, VILLAGER} due to chunk unload at [-5,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 94{cosmetics, VILLAGER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 94{cosmetics, VILLAGER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 94{cosmetics, VILLAGER} due to chunk unload at [-5,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 101{112512, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 101{112512, PLAYER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 101{112512, PLAYER} due to chunk unload at [-5,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 81{jobs, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 81{jobs, PLAYER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] No new version available
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 81{jobs, PLAYER} due to chunk unload at [-5,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 93{ranks, VILLAGER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 93{ranks, VILLAGER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 93{ranks, VILLAGER} due to chunk unload at [-6,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 92{levels, VILLAGER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 92{levels, VILLAGER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 92{levels, VILLAGER} due to chunk unload at [-6,12]
[15:23:52] [Server thread/INFO]: [Citizens] Removing 91{markt, PLAYER} from skin tracker due to DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 91{markt, PLAYER} DespawnReason.CHUNK_UNLOAD
[15:23:52] [Server thread/INFO]: [Citizens] Despawned 91{markt, PLAYER} due to chunk unload at [-6,12]
[15:23:52] [Server thread/INFO]: com.mojang.authlib.GameProfile@6826c006[id=<null>,name=flosje,properties={},legacy=false] (/172.18.0.1:34892) lost connection: Disconnected
[15:23:52] [Server thread/WARN]: [JoinServer] Loaded class me.clip.placeholderapi.PlaceholderAPI from PlaceholderAPI v2.11.2 which is not a depend or softdepend of this plugin.
[15:23:52] [Server thread/INFO]: The player flosje joined the server (/wb)
[15:23:53] [Server thread/INFO]: flosje[/85.145.164.157:34970] logged in with entity id 406 at ([Spawn]-204.4447090222264, 102.0, -25.77498397937493)
[15:23:53] [Thread-30/INFO]: --------------------
[15:23:53] [Thread-30/INFO]: [CoreProtect] Version 21.3 is now available.
[15:23:53] [Thread-30/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[15:23:53] [Thread-30/INFO]: --------------------
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-55,16] due to org.bukkit.event.world.EntitiesLoadEvent@5c490ab2
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 130{NoAskers, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 130{NoAskers, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 130{NoAskers, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@5c490ab2 at [-55,16]
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 129{NoAskers, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 129{NoAskers, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 129{NoAskers, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@5c490ab2 at [-55,16]
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-55,18] due to org.bukkit.event.world.EntitiesLoadEvent@466e0004
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 135{xmas3, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 135{xmas3, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 135{xmas3, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@466e0004 at [-55,18]
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 137{xmas 3, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 137{xmas 3, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 137{xmas 3, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@466e0004 at [-55,18]
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-55,19] due to org.bukkit.event.world.EntitiesLoadEvent@32491a68
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 123{Selstar, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 123{Selstar, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 123{Selstar, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@32491a68 at [-55,19]
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-54,18] due to org.bukkit.event.world.EntitiesLoadEvent@6224adf0
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 136{sewlu, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 136{sewlu, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 136{sewlu, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@6224adf0 at [-54,18]
[15:23:53] [Server thread/INFO]: Downloaded CMILib1.2.4.4 file
[15:23:53] [Server thread/INFO]: Please restart server for this to take full effect
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-13,-1] due to org.bukkit.event.world.EntitiesLoadEvent@73d1fb50
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 149{harry, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 149{harry, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 149{harry, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@73d1fb50 at [-13,-1]
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 152{%vote_mayor%, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 0{NoAskers, PLAYER} due to SpawnReason.PLUGIN
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 0{NoAskers, ARMOR_STAND} SpawnReason.PLUGIN
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 152{%vote_mayor%, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 152{%vote_mayor%, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@73d1fb50 at [-13,-1]
[15:23:53] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-8,5] due to org.bukkit.event.world.EntitiesLoadEvent@7cba7ee6
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 153{%vote_mayor%, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Removing respawns of 0{NoAskers, PLAYER} due to SpawnReason.PLUGIN
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 0{NoAskers, ARMOR_STAND} SpawnReason.PLUGIN
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 153{%vote_mayor%, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:53] [Server thread/INFO]: [Citizens] Spawned 153{%vote_mayor%, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@7cba7ee6 at [-8,5]
[15:23:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:23:53] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at net.splodgebox.elitearmor.pluginapi.item.nbt.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[15:23:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded traveller.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded ancient.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded santa.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded storm.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded og-phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded ranger.yml successfully!
[15:23:53] [Thread-38/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package net.splodgebox.elitearmor.pluginapi.item.nbt' seems to be outdated!
[15:23:53] [Thread-38/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.1'
[15:23:53] [Thread-38/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_yijki.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: phantom_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_rift.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: dragon_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yeti_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: rift_dragon.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_ranger.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: engineer_koth.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: spectrum_engineer.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: koth_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: yijki_phantom.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: traveler_traveler.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: supreme.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger_spectrum.yml successfully!
[15:23:53] [Server thread/INFO]: EliteArmor: Loaded Modifiers: ranger.yml successfully!
[15:23:54] [Server thread/INFO]: [Citizens] Respawning all NPCs at [-20,28] due to org.bukkit.event.world.EntitiesLoadEvent@33318190
[15:23:54] [Server thread/INFO]: [Citizens] Removing respawns of 118{soldier, PLAYER} due to SpawnReason.CHUNK_LOAD
[15:23:54] [Server thread/INFO]: [Citizens] Spawned 118{soldier, PLAYER} SpawnReason.CHUNK_LOAD
[15:23:54] [Server thread/INFO]: [Citizens] Spawned 118{soldier, PLAYER} during org.bukkit.event.world.EntitiesLoadEvent@33318190 at [-20,28]
[15:23:54] [Craft Scheduler Thread - 9 - RTP/WARN]: RTP - selection in region:default was not inside the world border. Retrying with worldBorderOverride. Please fix your configuration
[15:23:54] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[15:23:54] [Server thread/INFO]: [DailyShop] There was a problem saving the shop sellshop
[15:23:54] [Server thread/WARN]: java.lang.ClassCastException: class net.minecraft.nbt.NBTTagCompound cannot be cast to class java.util.Set (net.minecraft.nbt.NBTTagCompound is in unnamed module of loader java.net.URLClassLoader @421faab1; java.util.Set is in module java.base of loader 'bootstrap')
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.dependencies.nbt.nbtapi.NBTReflectionUtil.getKeys(NBTReflectionUtil.java:588)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.dependencies.nbt.nbtapi.NBTCompound.getKeys(NBTCompound.java:542)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.wrappers.WrappedNBT.isEmpty(WrappedNBT.java:56)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.adapters.dButtonAdapter.serialize(dButtonAdapter.java:76)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.adapters.dButtonAdapter.serialize(dButtonAdapter.java:23)
[15:23:54] [Server thread/WARN]:     at com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
[15:23:54] [Server thread/WARN]:     at com.google.gson.internal.bind.TypeAdapterRuntimeTypeWrapper.write(TypeAdapterRuntimeTypeWrapper.java:70)
[15:23:54] [Server thread/WARN]:     at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.write(MapTypeAdapterFactory.java:207)
[15:23:54] [Server thread/WARN]:     at com.google.gson.internal.bind.MapTypeAdapterFactory$Adapter.write(MapTypeAdapterFactory.java:144)
[15:23:54] [Server thread/WARN]:     at com.google.gson.Gson.toJson(Gson.java:825)
[15:23:54] [Server thread/WARN]:     at com.google.gson.Gson.toJsonTree(Gson.java:695)
[15:23:54] [Server thread/WARN]:     at com.google.gson.Gson.toJsonTree(Gson.java:672)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.adapters.ShopViewStateAdapter.serialize(ShopViewStateAdapter.java:63)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.adapters.ShopViewStateAdapter.serialize(ShopViewStateAdapter.java:16)
[15:23:54] [Server thread/WARN]:     at com.google.gson.internal.bind.TreeTypeAdapter.write(TreeTypeAdapter.java:88)
[15:23:54] [Server thread/WARN]:     at com.google.gson.Gson.toJson(Gson.java:825)
[15:23:54] [Server thread/WARN]:     at com.google.gson.Gson.toJsonTree(Gson.java:695)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.adapters.dShopStateAdapter.serialize(dShopStateAdapter.java:114)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.serializerApi.saveShopToFile(serializerApi.java:53)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.serializerApi.lambda$saveShopToFileAsync$2(serializerApi.java:65)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.lib.serialize.serializerApi.lambda$static$1(serializerApi.java:40)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.dailyShop.utils.cache.decorators.CacheRemoveListener.invalidate(CacheRemoveListener.java:43)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.dailyShop.utils.cache.decorators.CacheRemoveTask.invalidate(CacheRemoveTask.java:59)
[15:23:54] [Server thread/WARN]:     at DailyShop-3.9.1 (3).jar//io.github.divios.dailyShop.utils.cache.decorators.CacheRemoveTask.lambda$startTask$0(CacheRemoveTask.java:35)
[15:23:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
[15:23:54] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:483)
[15:23:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.b(MinecraftServer.java:1473)
[15:23:54] [Server thread/WARN]:     at net.minecraft.server.dedicated.DedicatedServer.b(DedicatedServer.java:440)
[15:23:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.a(MinecraftServer.java:1397)
[15:23:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.w(MinecraftServer.java:1173)
[15:23:54] [Server thread/WARN]:     at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:316)
[15:23:54] [Server thread/WARN]:     at java.base/java.lang.Thread.run(Thread.java:833)
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] ================================[ ShopGUI+ 1.80.1 ]================================
[15:23:54] [Server thread/INFO]: [ShopGUIPlus]  
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Vault economy registered.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Vault economy enabled.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Using Vault as default economy provider.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Permissions support enabled.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for HeadDatabase.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Enabled item provider for ExecutableItems.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] No external spawner plugins registered, using built-in spawners support.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 8 main menu items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Shop 'mobdrops' already exists, duplicate shop not loaded.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Shop 'seeds' already exists, duplicate shop not loaded.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'colors' with 105 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'items' with 22 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'Ores' with 18 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'blocks' with 52 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'seeds' with 21 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'mobdrops' with 30 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded shop 'colors1' with 111 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 7 shops with total of 359 items.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] Loaded 0 permission-based price modifiers.
[15:23:54] [Server thread/INFO]: [ShopGUIPlus]  
[15:23:54] [Server thread/INFO]: [ShopGUIPlus] ====================================================================================
[15:23:54] [Craft Scheduler Thread - 6 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[15:23:54] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Fetched profile ce1c8b75-f6dc-4f0d-9add-e87ca4dc9806 for player Aniasummer
[15:23:54] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] Checking for updates...
[15:23:54] [Craft Scheduler Thread - 11 - AlonsoTags/INFO]: [AlonsoTags] Plugin up-to-date! You have the latest version!
[15:23:55] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Fetched profile fcc2876f-af90-4210-b573-dd5899239a08 for player P_ndx_
[15:23:55] [Server thread/INFO]: [Citizens] Removing 129{NoAskers, PLAYER} from skin tracker due to DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Despawned 129{NoAskers, PLAYER} DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing respawns of 129{NoAskers, PLAYER} due to SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Spawned 129{NoAskers, PLAYER} SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing 129{NoAskers, PLAYER} from skin tracker due to DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Despawned 129{NoAskers, PLAYER} DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing respawns of 129{NoAskers, PLAYER} due to SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Spawned 129{NoAskers, PLAYER} SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-b355d0454f9c} to CraftPlayer{name=flosje} (60 true)
[15:23:55] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=harry} to CraftPlayer{name=flosje} (60 true)
[15:23:55] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Fetched profile bf5c3043-5a74-42ac-a3d9-cb75ccbeffb9 for player ZephyKCT
[15:23:55] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Profile lookup for player '%vote_mayor%' failed: Server did not find the requested profile
[15:23:55] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:70)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)

[15:23:55] [Server thread/INFO]: [Citizens] Removing 118{soldier, PLAYER} from skin tracker due to DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Despawned 118{soldier, PLAYER} DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing respawns of 118{soldier, PLAYER} due to SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Spawned 118{soldier, PLAYER} SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing 118{soldier, PLAYER} from skin tracker due to DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Despawned 118{soldier, PLAYER} DespawnReason.PENDING_RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Removing respawns of 118{soldier, PLAYER} due to SpawnReason.RESPAWN
[15:23:55] [Server thread/INFO]: [Citizens] Spawned 118{soldier, PLAYER} SpawnReason.RESPAWN
[15:23:55] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Fetched profile f36607f6-b4cf-4fdb-979c-8a61d52020ac for player YouMayCallMeVe
[15:23:56] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Profile lookup for player 'miner_dungeon' failed: Server did not find the requested profile
[15:23:56] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:70)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)

[15:23:56] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Fetched profile 94ae8c78-ca6f-4aea-b2fb-791666508a0d for player Dr_Strange18
[15:23:56] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Profile lookup for player 'poort_wachter' failed: Server did not find the requested profile
[15:23:56] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:70)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)

[15:23:57] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Profile lookup for player 'viprewards' failed: Server did not find the requested profile
[15:23:57] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:70)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)

[15:23:57] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] Profile lookup for player 'monkey54088' failed: Server did not find the requested profile
[15:23:57] [Craft Scheduler Thread - 24 - Citizens/INFO]: [Citizens] com.mojang.authlib.yggdrasil.ProfileNotFoundException: Server did not find the requested profile
    at com.mojang.authlib.yggdrasil.YggdrasilGameProfileRepository.findProfilesByNames(YggdrasilGameProfileRepository.java:70)
    at com.destroystokyo.paper.profile.PaperGameProfileRepository.findProfilesByNames(PaperGameProfileRepository.java:44)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.fetchRequests(ProfileFetchThread.java:134)
    at Citizens-2.0.30-b2900.jar//net.citizensnpcs.npc.profile.ProfileFetchThread.run(ProfileFetchThread.java:195)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftTask.run(CraftTask.java:101)
    at org.bukkit.craftbukkit.v1_19_R2.scheduler.CraftAsyncTask.run(CraftAsyncTask.java:57)
    at com.destroystokyo.paper.ServerSchedulerReportingWrapper.run(ServerSchedulerReportingWrapper.java:22)
    at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
    at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
    at java.base/java.lang.Thread.run(Thread.java:833)

[15:23:57] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-b355d0454f9c} to CraftPlayer{name=flosje} (10 false)
[15:23:57] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=harry} to CraftPlayer{name=flosje} (10 false)
[15:24:31] [Server thread/INFO]: flosje lost connection: Disconnected
[15:24:37] [User Authenticator #0/INFO]: UUID of player _campfire_ is 3ee0eaf0-0afe-42cc-973a-2fd65158a544
[15:24:37] [Server thread/INFO]: The player _campfire_ joined the server (/wb)
[15:24:37] [Server thread/INFO]: _campfire_[/143.244.41.56:35286] logged in with entity id 729 at ([world]132.86542947430544, 157.86859856141194, 127.60858993486254)
[15:24:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:24:43] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at com.badbones69.vouchers.plugin.lib.de.tr7zw.changeme.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[15:24:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:24:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_19_R2! Trying to find NMS support
[15:24:43] [Server thread/WARN]: [NBTAPI] [NBTAPI] This Server-Version(v1_19_R2) is not supported by this NBT-API Version(2.10.0) located at shaded.de.tr7zw.changeme.nbtapi.utils.MinecraftVersion. The NBT-API will try to work as good as it can! Some functions may not work!
[15:24:43] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[15:24:43] [Thread-42/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.badbones69.vouchers.plugin.lib.de.tr7zw.changeme.nbtapi' seems to be outdated!
[15:24:43] [Thread-42/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.1'
[15:24:43] [Thread-42/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[15:24:43] [Thread-43/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package shaded.de.tr7zw.changeme.nbtapi' seems to be outdated!
[15:24:43] [Thread-43/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.1'
[15:24:43] [Thread-43/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[15:24:51] [Craft Scheduler Thread - 24 - BuycraftX/INFO]: [BuycraftX] Sending 3 analytic events