Paste #129149: okgood4700

Date: 2024/12/17 22:46:51 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


[00:00:03] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:00:07] [ServerMain/INFO]: Loaded 1290 recipes
[00:00:07] [ServerMain/INFO]: Loaded 1399 advancements
[00:00:08] [Server thread/INFO]: Starting minecraft server version 1.21
[00:00:08] [Server thread/INFO]: Loading properties
[00:00:08] [Server thread/INFO]: This server is running Paper version 1.21-130-master@b1b5d4c (2024-08-10T10:02:42Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[00:00:09] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[00:00:09] [Server thread/INFO]: Server Ping Player Sample Count: 12
[00:00:09] [Server thread/INFO]: Using 4 threads for Netty based IO
[00:00:11] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[00:00:11] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[00:00:11] [Server thread/INFO]: Default game type: SURVIVAL
[00:00:11] [Server thread/INFO]: Generating keypair
[00:00:11] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:29465
[00:00:12] [Server thread/INFO]: Using epoll channel type
[00:00:12] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[00:00:12] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[00:00:19] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loading 2 libraries... please wait
[00:00:20] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.jar
[00:00:20] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[00:00:20] [Server thread/INFO]: [SpigotLibraryLoader] [nightcore] Loaded library /home/container/libraries/it/unimi/dsi/fastutil-core/8.5.13/fastutil-core-8.5.13.jar
[00:00:20] [Server thread/INFO]: [FastLogin] Initialize logging service
[00:00:20] [Server thread/INFO]: [FastLogin] Using optimized green threads with Java 21
[00:00:21] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loading 2 libraries... please wait
[00:00:21] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[00:00:21] [Server thread/INFO]: [SpigotLibraryLoader] [PvPManager] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.13/slf4j-api-2.0.13.jar
[00:00:21] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loading 1 libraries... please wait
[00:00:21] [Server thread/INFO]: [SpigotLibraryLoader] [Vouchers] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.6/gson-2.8.6.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[00:00:22] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[00:00:24] [Server thread/INFO]: [AngelChest] Hooked into WorldGuard 7.0.12+829a4a4
[00:00:24] [Server thread/INFO]: [AngelChest] Hooked into PlotSquared 7.3.13-SNAPSHOT
[00:00:24] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loading 2 libraries... please wait
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/net/dv8tion/JDA/5.0.0-beta.18/JDA-5.0.0-beta.18.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/neovisionaries/nv-websocket-client/2.14/nv-websocket-client-2.14.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/squareup/okhttp3/okhttp/4.10.0/okhttp-4.10.0.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/squareup/okio/okio-jvm/3.0.0/okio-jvm-3.0.0.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.5.31/kotlin-stdlib-jdk8-1.5.31.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.5.31/kotlin-stdlib-jdk7-1.5.31.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib-common/1.5.31/kotlin-stdlib-common-1.5.31.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/jetbrains/kotlin/kotlin-stdlib/1.6.20/kotlin-stdlib-1.6.20.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/jetbrains/annotations/13.0/annotations-13.0.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/club/minnced/opus-java/1.1.1/opus-java-1.1.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/club/minnced/opus-java-api/1.1.1/opus-java-api-1.1.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/net/java/dev/jna/jna/4.4.0/jna-4.4.0.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/club/minnced/opus-java-natives/1.1.1/opus-java-natives-1.1.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/apache/commons/commons-collections4/4.4/commons-collections4-4.4.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/net/sf/trove4j/trove4j/3.0.3/trove4j-3.0.3.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.14.1/jackson-core-2.14.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.14.1/jackson-databind-2.14.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.14.1/jackson-annotations-2.14.1.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/club/minnced/discord-webhooks/0.8.4/discord-webhooks-0.8.4.jar
[00:00:25] [Server thread/INFO]: [SpigotLibraryLoader] [AxInventoryRestore] Loaded library /home/container/libraries/org/json/json/20230618/json-20230618.jar
[00:00:25] [Server thread/WARN]: [org.bukkit.craftbukkit.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[00:00:44] [Server thread/WARN]: Legacy plugin MessageSounds v1.0 does not specify an api-version.
[00:00:44] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.0
[00:00:44] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.0 is now loaded. Registering protocol transformers and injecting...
[00:00:46] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[00:00:47] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[00:00:49] [Server thread/INFO]: [ViaBackwards] Loading translations...
[00:00:49] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[00:00:51] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.141
[00:00:51] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[00:00:51] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[00:00:51] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.7+6929-c6af3a3
[00:00:55] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@678a8f45]
[00:00:55] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+151-f2af952
[00:00:55] [Server thread/INFO]: [PlotSquared] Loading server plugin PlotSquared v7.3.13-SNAPSHOT
[00:00:55] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[00:00:55] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[00:00:55] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.13
[00:00:55] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.4
[00:00:55] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0
[00:00:56] [Server thread/INFO]: [Skript] Loading server plugin Skript v2.9.5
[00:00:56] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+151-f2af952
[00:00:56] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3598)
[00:00:56] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.0
[00:00:56] [Server thread/INFO]: [EssentialsChat] Loading server plugin EssentialsChat v2.21.0-dev+151-f2af952
[00:00:56] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[00:00:56] [Server thread/INFO]: [AuthMe] Loading server plugin AuthMe v5.6.0-bCUSTOM
[00:00:56] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.23.0
[00:00:57] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (1670 ms).
[00:00:58] [Server thread/INFO]: [Shopkeepers] Loading config.
[00:00:58] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[00:00:58] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[00:00:58] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[00:00:58] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.5.0
[00:00:58] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.6
[00:00:58] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.3
[00:00:58] [Server thread/INFO]: [nightcore] Loading server plugin nightcore v2.6.4
[00:00:58] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.10
[00:00:58] [Server thread/INFO]: [InteractiveChat] Loading server plugin InteractiveChat v4.2.14.0
[00:00:58] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.12
[00:00:58] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[00:00:58] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[00:00:58] [Server thread/INFO]: [PlayerBlockTracker] Loading server plugin PlayerBlockTracker v1.0.2-SNAPSHOT
[00:00:58] [Server thread/INFO]: [FastLogin] Loading server plugin FastLogin v1.12-SNAPSHOT-4dd6b9a
[00:00:58] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.2.2
[00:00:58] [Server thread/INFO]: [EconomyShopGUI] Loading server plugin EconomyShopGUI v6.10.1
[00:00:58] [Server thread/INFO]: [ChatFeelings] Loading server plugin ChatFeelings v4.14.4
[00:00:58] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.3
[00:00:58] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.13
[00:00:58] [Server thread/INFO]: [Lootin] Loading server plugin Lootin v11.1
[00:00:58] [Server thread/INFO]: [Lootin] Found WorldGuard, registering lootin-container-access flag
[00:00:58] [Server thread/INFO]: [Lootin] Worldguard flag: lootin-container-access registered successfully
[00:00:58] [Server thread/INFO]: [HoloMobHealth] Loading server plugin HoloMobHealth v2.3.12.0
[00:00:58] [Server thread/INFO]: [HoloMobHealth] Registering WorldGuard State Flags...
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Loading server plugin ajLeaderboards v2.9.0
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for jar-relocator
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for jar-relocator
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for asm-commons
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for asm-commons
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for gson
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for gson
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for HikariCP
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for HikariCP
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for slf4j-api
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for slf4j-api
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for h2
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for h2
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okhttp
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okhttp
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for okio-jvm
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for okio-jvm
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk8
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk8
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-common
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-common
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for annotations
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for annotations
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Verifying checksum for kotlin-stdlib-jdk7
[00:00:58] [Server thread/INFO]: [ajLeaderboards] Checksum matched for kotlin-stdlib-jdk7
[00:00:58] [Server thread/INFO]: [FoxSnow] Loading server plugin FoxSnow v2.8
[00:00:58] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.18.26
[00:00:58] [Server thread/INFO]: [Vouchers] Loading server plugin Vouchers v3.26.0
[00:00:58] [Server thread/INFO]: [PL-Hide] Loading server plugin PL-Hide v1.5.22
[00:00:58] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.17.4
[00:00:58] [Server thread/INFO]: [ExcellentCrates] Loading server plugin ExcellentCrates v5.3.3
[00:00:58] [Server thread/INFO]: [HeadsPlus] Loading server plugin HeadsPlus v7.1.5
[00:00:58] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.14.1-DEV-184
[00:00:58] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[00:00:58] [Server thread/INFO]: [eShulkerBox] Loading server plugin eShulkerBox v0.6.3
[00:00:58] [Server thread/INFO]: [ShulkerBox] ShulkerBoxPlugin loading...
[00:00:58] [Server thread/WARN]: [ShulkerBox] YOU ARE USING FREE eShulkerBox VERSION
[00:00:58] [Server thread/WARN]: [ShulkerBox] We recommend using the paid version https://builtbybit.com/resources/eshulkerbox.41479/
[00:00:59] [Server thread/INFO]: [ShulkerBox] ShulkerBoxPlugin loaded in 335ms
[00:00:59] [Server thread/INFO]: [ChunkyBorder] Loading server plugin ChunkyBorder v1.2.10
[00:00:59] [Server thread/INFO]: [ChatFilter] Loading server plugin ChatFilter v2.0.14
[00:00:59] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.12.1
[00:00:59] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Loading server plugin InteractiveChatDiscordSrvAddon v4.2.13.0
[00:00:59] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordCommandEvents subscribed (1 methods)
[00:00:59] [Server thread/INFO]: [ChatGames] Loading server plugin ChatGames v1.2.1
[00:00:59] [Server thread/INFO]: [AxVaults] Loading server plugin AxVaults v2.5.0
[00:00:59] [Server thread/INFO]: [AxVaults] Loading library commons-math3
[00:00:59] [Server thread/INFO]: [AxVaults] Loading library caffeine
[00:00:59] [Server thread/INFO]: [AxVaults] Loading library sqlite-jdbc
[00:00:59] [Server thread/INFO]: [AxVaults] Loading library h2
[00:00:59] [Server thread/INFO]: [AxVaults] Loading library mysql-connector-j
[00:00:59] [Server thread/INFO]: [GPFlags] Loading server plugin GPFlags v5.13.6
[00:00:59] [Server thread/INFO]: [AdvancedEnchantments] Loading server plugin AdvancedEnchantments v9.13.1
[00:00:59] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v6.2.0.7
[00:00:59] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the initialization sequence
[00:00:59] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Bootloader preparing for startup, please wait...
[00:00:59] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing libraries...
[00:01:00] [pool-21-thread-1/INFO]: [ShulkerBox] Unable to check for updates: https://api.spigotmc.org/legacy/update.php?resource=-1
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] Maven repository mirror test result:
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] TENCENT: 351ms
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] [US] CENTRAL: 643ms
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] [US] APACHE: 713ms
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] HUAWEI: 735ms
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari] [CN] ALIYUN: 3043ms
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading 12 libraries (0 skipped libraries)...
[00:01:02] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-lang3:3.14.0 [1/12]
[00:01:02] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
[00:01:02] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: Defaulting to no-operation (NOP) logger implementation
[00:01:02] [Server thread/ERROR]: [STDERR] [org.slf4j.helpers.Util] SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.apache.commons:commons-compress:1.25.0 [2/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.code.gson:gson:2.10.1 [3/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.google.guava:guava:33.1.0-jre [4/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.rollbar:rollbar-java:1.9.0 [5/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library cc.carm.lib:easysql-hikaricp:0.4.7 [6/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.h2database:h2:2.1.214 [7/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.konghq:unirest-java:3.14.5 [8/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library net.sourceforge.csvjdbc:csvjdbc:1.0.42 [9/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library org.dom4j:dom4j:2.1.4 [10/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.vdurmont:semver4j:3.1.0 [11/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Loading library com.ghostchu.crowdin:crowdinota:1.0.3 [12/12]
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initialing Unirest...
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Initializing platform...
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform detected: Paper
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari] Slf4jLogger initialized
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Boot QuickShop instance...
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] Creating QuickShop instance...
[00:01:03] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up QuickShop registry....
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[00:01:04] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[00:01:04] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[00:01:05] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[00:01:05] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[00:01:05] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[00:01:07] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[00:01:09] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[00:01:09] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[00:01:09] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[00:01:09] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Complete (9468ms). Waiting for enable...
[00:01:09] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.20
[00:01:09] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v17.0.0
[00:01:09] [Server thread/INFO]: [AngelChest] Loading server plugin AngelChest v13.9.0
[00:01:09] [Server thread/INFO]: [AngelChest] Successfully registered WorldGuard flags.
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading server plugin AxInventoryRestore v3.5.0
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library commons-math3
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library caffeine
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library mysql-connector-j
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library mariadb-java-client
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library h2
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library postgresql
[00:01:09] [Server thread/INFO]: [AxInventoryRestore] Loading library JDA
[00:01:09] [Server thread/INFO]: [BeautyQuests] Loading server plugin BeautyQuests v1.0.4
[00:01:09] [Server thread/INFO]: [GrapplingHook] Loading server plugin GrapplingHook v1.6.5
[00:01:09] [Server thread/INFO]: [GrimAC] Loading server plugin GrimAC v2.3.67
[00:01:10] [Server thread/INFO]: [GrimAC] Loading PacketEvents...
[00:01:15] [Server thread/INFO]: [MessageSounds] Loading server plugin MessageSounds v1.0
[00:01:15] [Server thread/INFO]: [ChatEmojis] Loading server plugin ChatEmojis v2.4.1
[00:01:15] [Server thread/INFO]: [Orebfuscator] Loading server plugin Orebfuscator v5.5.1
[00:01:15] [Server thread/INFO]: [TradeMe] Loading server plugin TradeMe v6.2.2.4
[00:01:15] [Server thread/INFO]: [Maintenance] Loading server plugin Maintenance v4.3.0
[00:01:15] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[00:01:15] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.141
[00:01:17] [Server thread/INFO]:         __    
[00:01:17] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.141
[00:01:17] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[00:01:17] [Server thread/INFO]: 
[00:01:17] [Server thread/INFO]: [LuckPerms] Loading configuration...
[00:01:18] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[00:01:21] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[00:01:21] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[00:01:22] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 7637ms)
[00:01:22] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[00:01:23] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[00:01:23] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[00:01:24] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[00:01:24] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[00:01:24] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.7+6929-c6af3a3
[00:01:24] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[00:01:24] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[00:01:25] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[00:01:30] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v7.3.13-SNAPSHOT
[00:01:31] [Server thread/INFO]: [PlotSquared/PlotSquared] Loaded caption map for namespace 'plotsquared': com.plotsquared.core.configuration.caption.LocalizedCaptionMap
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: plot-expiry | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worlds | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-named-road-mobs | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: per-user-locale | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: worldedit-restrictions | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: external-placeholders | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-owned-road-mobs | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: disable-beacon-effect-overflow | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: component-presets | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: chunk-processor | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: extended-username-completion | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: events | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: commands | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-mobs | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-items | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: database-purger | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: economy | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-road-regen | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: kill-road-vehicles | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: default-locale | Value: en
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: use-mvdwapi | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: persistent-meta | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: tab-completed-aliases | Value: [p2]
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: ban-deleter | Value: false
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: update-notifications | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: rating-cache | Value: true
[00:01:32] [Server thread/INFO]: [PlotSquared/PlotSquared] Key: comment-notifier | Value: true
[00:01:34] [Server thread/INFO]: [PlotSquared/BukkitPlatform] Couldn't verify purchase :(
[00:01:35] [Server thread/INFO]: [PlotSquared/PlotSquared] Connection to database established. Type: SQLite
[00:01:35] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into WorldEdit
[00:01:36] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using LuckPerms as a complementary UUID service
[00:01:36] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) Using EssentialsX as a complementary UUID service
[00:01:36] [Server thread/INFO]: [PlotSquared/BukkitPlatform] (UUID) 14 UUIDs will be cached
[00:01:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: plotsquared [3]
[00:01:36] [Server thread/INFO]: [PlotSquared/BukkitPlatform] PlotSquared hooked into PlaceholderAPI
[00:01:37] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[00:01:37] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[00:01:37] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0
[00:01:37] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.5.0
[00:01:38] [Server thread/WARN]: [SkinsRestorer] You must agree to the rules at 'commands.perSkinPermissionsConsent' in the config to use per skin permissions.
[00:01:39] [Server thread/INFO]: [SkinsRestorer] Running on Minecraft 1.21.0.
[00:01:41] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[00:01:41] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: skinsrestorer [15.5.0]
[00:01:41] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[00:01:41] [Server thread/INFO]: [nightcore] Enabling nightcore v2.6.4
[00:01:41] [Server thread/WARN]: [nightcore] ===================================
[00:01:41] [Server thread/WARN]: [nightcore] WARNING: You're running an outdated server version (1.21)!
[00:01:41] [Server thread/WARN]: [nightcore] This version will no longer be supported in future relases.
[00:01:41] [Server thread/WARN]: [nightcore] Please upgrade your server to 1.21.1.
[00:01:41] [Server thread/WARN]: [nightcore] NO DISCORD SUPPORT WILL BE PROVIDED!
[00:01:41] [Server thread/WARN]: [nightcore] ===================================
[00:01:41] [Server thread/INFO]: [nightcore] Found permissions provider: LuckPerms
[00:01:41] [Server thread/INFO]: [nightcore] Found economy provider: EssentialsX Economy
[00:01:41] [Server thread/INFO]: [nightcore] Found chat provider: LuckPerms
[00:01:41] [Server thread/INFO]: [nightcore] Server Version: 1.21 ✔
[00:01:41] [Server thread/INFO]: [nightcore] Entity Id Counter: OK ✔
[00:01:41] [Server thread/INFO]: [nightcore] Item NBT Compress: OK ✔
[00:01:41] [Server thread/INFO]: [nightcore] Plugin loaded in 360 ms!
[00:01:41] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v17.0.0
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |------------------|
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     |  Standalone Mode |
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     +==================+
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Version: 15.5.0
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     Commit: ad418e4
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer]     This is the latest version!
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] ----------------------------------------------
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Do you have issues? Read our troubleshooting guide: https://skinsrestorer.net/docs/troubleshooting
[00:01:42] [Folia Async Scheduler Thread #1/INFO]: [SkinsRestorer] Want to support SkinsRestorer? Consider donating: https://skinsrestorer.net/donate
[00:01:42] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[00:01:42] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[00:01:42] [Server thread/INFO]: [TerraformGenerator] Detected version: 1.21, number: 21.0
[00:01:43] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[00:01:43] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[00:01:43] [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.
[00:01:43] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[00:01:43] [Server thread/INFO]: Preparing level "world"
[00:01:45] [Server thread/INFO]: [TerraformGenerator] Detected world: world, commencing injection... 
[00:01:45] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[00:01:46] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[00:01:46] [pool-33-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared will fetch UUIDs in groups of 200
[00:01:46] [pool-33-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached 100.0% of UUIDs
[00:01:46] [pool-33-thread-1/INFO]: [PlotSquared/BukkitPlatform] (UUID) PlotSquared has cached all UUIDs
[00:01:49] [Server thread/INFO]: Time elapsed: 3378 ms
[00:01:49] [Server thread/INFO]: [TerraformGenerator] world loaded.
[00:01:49] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[00:01:50] [Server thread/INFO]: Time elapsed: 895 ms
[00:01:50] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[00:01:50] [Server thread/INFO]: Time elapsed: 324 ms
[00:01:50] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.0
[00:01:50] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21-1.21.1 (767)
[00:01:51] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[00:01:53] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[00:01:53] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+151-f2af952
[00:01:56] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[00:01:57] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[00:01:57] [Server thread/INFO]: [Essentials] No kits found to migrate.
[00:01:58] [Server thread/INFO]: [Essentials] Loaded 43465 items from items.json.
[00:01:58] [Server thread/INFO]: [Essentials] Using locale en_US
[00:01:58] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[00:01:59] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[00:01:59] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[00:01:59] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[00:01:59] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[00:01:59] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[00:01:59] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[00:01:59] [Server thread/INFO]: [WorldGuard] Loading region data...
[00:02:00] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.13
[00:02:00] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.13" 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--].
[00:02:00] [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.
[00:02:00] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:00] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:01] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[00:02:01] [Server thread/INFO]: Time elapsed: 817 ms
[00:02:01] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[00:02:01] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[00:02:01] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[00:02:01] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[00:02:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[00:02:01] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:01] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:02] [Server thread/INFO]: [PlotSquared/PlotSquared] Detected world load for 'shop'
[00:02:02] [Server thread/INFO]: [PlotSquared/PlotSquared] - generator: PlotSquared>PlotSquared
[00:02:02] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot world: com.plotsquared.core.generator.HybridPlotWorld
[00:02:02] [Server thread/INFO]: [PlotSquared/PlotSquared] - plot area manager: com.plotsquared.core.generator.HybridPlotManager
[00:02:02] [Server thread/INFO]: [P2] Loading flags for area: shop
[00:02:02] [Server thread/INFO]: [P2] Area flags: [invincible;true, vehicle-use;false]
[00:02:02] [Server thread/INFO]: [P2] Road flags: [invincible;true, vehicle-break;true, vehicle-use;false]
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] - Dumping settings for ClassicPlotWorld with name shop
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_schematic_enabled = true
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_schematic = false
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_lower = 5
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- path_width_upper = 30
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- schem_y = 61
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_height = 61
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_height = 62
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_height = 62
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- main_block = minecraft:stone
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- top_block = minecraft:grass_block
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_block = minecraft:white_carpet
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- claimed_wall_block = minecraft:lime_carpet
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- wall_filling = minecraft:bedrock
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_block = minecraft:deepslate_tiles
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_bedrock = true
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- place_top_block = true
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- component_below_bedrock = false
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- plot_width = 24
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_width = 11
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_x = 0
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- road_offset_z = 0
[00:02:03] [Server thread/INFO]: [PlotSquared/HybridPlotWorld] -- size = 35
[00:02:03] [Server thread/INFO]: Preparing start region for dimension minecraft:shop
[00:02:03] [Server thread/INFO]: Time elapsed: 485 ms
[00:02:03] [Server thread/INFO]: [WorldGuard] (shop) TNT ignition is PERMITTED.
[00:02:03] [Server thread/INFO]: [WorldGuard] (shop) Lighters are PERMITTED.
[00:02:03] [Server thread/INFO]: [WorldGuard] (shop) Lava fire is PERMITTED.
[00:02:03] [Server thread/INFO]: [WorldGuard] (shop) Fire spread is UNRESTRICTED.
[00:02:03] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'shop'
[00:02:03] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:03] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:03] [Server thread/INFO]: Preparing start region for dimension minecraft:minigames
[00:02:04] [Server thread/INFO]: Time elapsed: 338 ms
[00:02:04] [Server thread/INFO]: [WorldGuard] (minigames) TNT ignition is PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (minigames) Lighters are PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (minigames) Lava fire is PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (minigames) Fire spread is UNRESTRICTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'minigames'
[00:02:04] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:04] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:04] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:04] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:04] [Server thread/INFO]: Preparing start region for dimension minecraft:arena
[00:02:04] [Server thread/INFO]: Time elapsed: 227 ms
[00:02:04] [Server thread/INFO]: [WorldGuard] (arena) TNT ignition is PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (arena) Lighters are PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (arena) Lava fire is PERMITTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] (arena) Fire spread is UNRESTRICTED.
[00:02:04] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'arena'
[00:02:04] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:02:04] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:02:04] [Server thread/INFO]: [Multiverse-Core] 7 - World(s) loaded.
[00:02:04] [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.
[00:02:05] [Server thread/INFO]: [Multiverse-Core] Version 4.3.13 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[00:02:05] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.4
[00:02:05] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[00:02:05] [Server thread/INFO]: [GriefPrevention] 108 total claims loaded.
[00:02:07] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[00:02:07] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[00:02:07] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[00:02:07] [Server thread/INFO]: [GriefPrevention] Boot finished.
[00:02:07] [Server thread/INFO]: [Skript] Enabling Skript v2.9.5
[00:02:09] [ForkJoinPool.commonPool-worker-2/INFO]: [Skript] You're currently running the latest stable version of Skript.
[00:02:39] [Server thread/INFO]: [Skript] Loaded 233074 aliases in 30541ms
[00:02:41] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[00:02:41] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+151-f2af952
[00:02:41] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[00:02:41] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3598)
[00:02:41] [Server thread/INFO]: [Citizens] Loading external libraries
[00:02:42] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[00:02:42] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[00:02:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: citizensplaceholder [1.0.0]
[00:02:43] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[00:02:43] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.0
[00:02:43] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.21.0-dev+151-f2af952
[00:02:43] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[00:02:43] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[00:02:43] [Server thread/INFO]: [AuthMe] Enabling AuthMe v5.6.0-bCUSTOM
[00:02:44] [Server thread/INFO]: [AuthMe] SQLite Setup finished
[00:02:45] [Server thread/INFO]: [AuthMe] Hooked into LuckPerms!
[00:02:45] [Server thread/INFO]: [AuthMe] Hooked successfully into Essentials
[00:02:45] [Server thread/INFO]: [AuthMe] Hooked successfully into Multiverse-Core
[00:02:45] [pool-92-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[00:02:46] [Server thread/INFO]: [AuthMe] AuthMe 5.6.0 build n.CUSTOM successfully enabled!
[00:02:46] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.23.0
[00:02:46] [Server thread/INFO]: [Shopkeepers] Citizens found: Enabling NPC shopkeepers.
[00:02:47] [Server thread/INFO]: [Shopkeepers] Loading the data of 2 shopkeepers ...
[00:02:47] [Server thread/INFO]: [TAB] Enabling TAB v4.1.6
[00:02:47] [Server thread/INFO]: [TAB] Loaded NMS hook in 210ms
[00:02:48] [Server thread/INFO]: [TAB] [WARN] Animation "discordggnasilemak" has refresh interval of 137, which is not divisible by 50! Using 150.
[00:02:48] [Server thread/INFO]: [TAB] [WARN] Animation "nasilemakxyz" has refresh interval of 180, which is not divisible by 50! Using 200.
[00:02:49] [Server thread/INFO]: [TAB] [WARN] Found a total of 2 issues.
[00:02:49] [Server thread/INFO]: [TAB] Enabled in 1456ms
[00:02:49] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.3
[00:02:49] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[00:02:49] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.10
[00:02:49] [Server thread/INFO]: [InteractiveChat] Enabling InteractiveChat v4.2.14.0
[00:02:50] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[00:02:51] [Server thread/INFO]: [InteractiveChat] Opened Sqlite database successfully
[00:02:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into Essentials!
[00:02:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into DiscordSRV!
[00:02:52] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[00:02:52] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechat.hooks.discordsrv.DiscordSRVEvents subscribed (2 methods)
[00:02:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into ViaVersion!
[00:02:52] [Server thread/INFO]: [InteractiveChat] InteractiveChat has hooked into LuckPerms!
[00:02:53] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: interactivechat [4.2.14.0]
[00:02:53] [Server thread/INFO]: [InteractiveChat] InteractiveChat has been Enabled!
[00:02:53] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.12
[00:02:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[00:02:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[00:02:53] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'DecentHolograms' to create a bStats instance!
[00:02:53] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[00:02:53] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[00:02:53] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[00:02:54] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[00:02:54] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:🟢・server-console(1297146516586365059)
[00:02:54] [Server thread/INFO]: [CoreProtect] Development branch detected, skipping patch scripts.
[00:02:54] [Server thread/INFO]: [CoreProtect] CoreProtect Community Edition has been successfully enabled! 
[00:02:54] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[00:02:54] [Server thread/INFO]: --------------------
[00:02:54] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[00:02:54] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[00:02:54] [Server thread/INFO]: --------------------
[00:02:54] [Server thread/INFO]: [PlayerBlockTracker] Enabling PlayerBlockTracker v1.0.2-SNAPSHOT
[00:02:54] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[00:02:54] [Server thread/INFO]: [FastLogin] Enabling FastLogin v1.12-SNAPSHOT-4dd6b9a
[00:02:54] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[00:02:54] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling PlaceholderAPI hook
[00:02:55] [Server thread/WARN]: [FastLogin] Disabling Minecraft proxy configuration. Assuming direct connections from now on.
[00:02:55] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Starting...
[00:02:55] [Server thread/INFO]: [fastlogin.hikari.HikariDataSource] FastLogin - Start completed.
[00:02:56] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: FastLogin [1.12-SNAPSHOT-4dd6b9a]
[00:02:56] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.2.2
[00:02:58] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-130-b1b5d4c (MC: 1.21)
[00:02:58] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[00:02:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: cmil [1.5.2.2]
[00:02:59] [Server thread/INFO]: PlaceholderAPI hooked.
[00:02:59] [Server thread/INFO]: Updated (EN) language file. Took 128ms
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] Enabling EconomyShopGUI v6.10.1
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using lang-en.yml as language file.
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 section configs from /sections/
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 16 shop configs from /shops/
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Updating Shop settings...
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Successfully hooked into Vault
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Completed loading 1 economy provider(s) for all 7 shop sections.
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Using minecraft version 1.21...
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Spawner provider set to AUTO in config
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Automatically searching for compatible spawner provider....
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Failed to automatically find compatible spawner provider, using default...
[00:02:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: esgui [1.0.0]
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Debug mode is enabled.
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Loading all items...
[00:02:59] [Server thread/INFO]: [EconomyShopGUI] [INFO]: Initialized - Took 564ms to complete
[00:02:59] [Server thread/INFO]: [ChatFeelings] Enabling ChatFeelings v4.14.4
[00:02:59] [Server thread/INFO]: [ChatFeelings] Checking repository to maximize support...
[00:03:03] [Server thread/INFO]: [ChatFeelings] Hooking into Essentials...
[00:03:03] [Server thread/INFO]: [ChatFeelings] Hooking into PlaceholderAPI...
[00:03:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatfeelings [4.14.4]
[00:03:03] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.3
[00:03:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: craftingstore [2.9.3]
[00:03:04] [Server thread/INFO]: [CraftingStore] Hooked with PlaceholderAPI
[00:03:04] [Server thread/INFO]: [CraftingStore] Hooked with Vault
[00:03:04] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.13
[00:03:04] [Server thread/INFO]: [BetterRTP] Cooldown = 300
[00:03:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: betterrtp [3.6.13]
[00:03:04] [Server thread/INFO]: [Lootin] Enabling Lootin v11.1
[00:03:04] [Server thread/INFO]: [Lootin] [PriLib] Running 1.21 minecraft version
[00:03:04] [Server thread/INFO]: [Lootin] Running PaperMC...
[00:03:05] [Server thread/INFO]: [Lootin] [ACF] Enabled Asynchronous Tab Completion Support!
[00:03:05] [Server thread/INFO]: [Lootin] Config file reloaded
[00:03:05] [Server thread/INFO]: [Lootin] Found ProtocolLib, registering meta data packet listener...
[00:03:05] [Server thread/INFO]: [Lootin] Enabling bstats...
[00:03:05] [Server thread/INFO]: [HoloMobHealth] Enabling HoloMobHealth v2.3.12.0
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Loading languages...
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Hooked into Citizens!
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Hooked into Shopkeepers!
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Hooked into PlaceholderAPI!
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Hooked into WorldGuard! (v7)
[00:03:08] [Server thread/INFO]: [HoloMobHealth] Opened Sqlite database successfully
[00:03:08] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: holomobhealth [1.0.0]
[00:03:08] [Server thread/INFO]: [HoloMobHealth] HoloMobHealth has been Enabled!
[00:03:08] [Server thread/INFO]: [ajLeaderboards] Enabling ajLeaderboards v2.9.0
[00:03:11] [Server thread/INFO]: [ajLeaderboards] Using H2 flatfile for board cache. (h2)
[00:03:12] [Server thread/INFO]: [ajLeaderboards] Loaded 3 boards
[00:03:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: ajlb [2.9.0]
[00:03:12] [Server thread/INFO]: [ajLeaderboards] PAPI placeholders successfully registered!
[00:03:12] [Server thread/INFO]: [ajLeaderboards] ajLeaderboards v2.9.0 by ajgeiss0702 enabled!
[00:03:12] [Server thread/INFO]: [FoxSnow] Enabling FoxSnow v2.8
[00:03:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: foxsnow [1.6]
[00:03:12] [Server thread/INFO]: [FoxSnow] Plugin loaded!
[00:03:12] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.18.26
[00:03:12] [Server thread/INFO]: [PvPManager] Using player nametags: true
[00:03:12] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[00:03:12] [Server thread/INFO]: [PvPManager] Players stored: 254
[00:03:12] [Server thread/WARN]: [PvPManager] GriefPrevention has been detected. GriefPrevention has some combat features without showing any feedback messages. Make sure to disable Punish Logout and set tag time to 0 seconds in GP config. Issues with those features often get wrongly blamed on PvPManager and cause conflicts due to the lack of GP feedback messages.
[00:03:12] [Server thread/INFO]: [PvPManager] TAB detected. If you want nametags to change while in combat, set 'anti-override' to false in TAB's config. (Doing that will prevent TAB from changing nametags)
[00:03:12] [Server thread/INFO]: [PvPManager] Or use the premium version of PvPManager which hooks into TAB for nametag/tablist changes.
[00:03:12] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[00:03:12] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[00:03:12] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[00:03:12] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[00:03:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: pvpmanager [3.18.26]
[00:03:13] [Server thread/INFO]: [PvPManager] PvPManager v3.18.26 enabled (797 ms)
[00:03:13] [Server thread/INFO]: [Vouchers] Enabling Vouchers v3.26.0
[00:03:13] [Server thread/INFO]:  
[00:03:13] [Server thread/INFO]: =============================
[00:03:13] [Server thread/INFO]: Vouchers v3.26.0 by Tweetzy
[00:03:13] [Server thread/INFO]: Developer: Kiran Hart
[00:03:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: vouchers [1.0.0]
[00:03:14] [Server thread/INFO]: [FlightCore] Enabling metrics for Vouchers
[00:03:14] [Server thread/INFO]: =============================
[00:03:14] [Server thread/INFO]:  
[00:03:14] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.22
[00:03:14] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.17.4
[00:03:14] [pool-109-thread-1/INFO]: [ajLeaderboards] You are up to date! (2.9.0)
[00:03:15] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[00:03:15] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[00:03:16] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[00:03:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: votingplugin [1.6]
[00:03:16] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[00:03:17] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[00:03:18] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.17.4
[00:03:18] [Server thread/INFO]: [ExcellentCrates] Enabling ExcellentCrates v5.3.3
[00:03:18] [Server thread/INFO]: [ExcellentCrates] Powered by nightcore
[00:03:18] [Server thread/WARN]: [ExcellentCrates] ===================================
[00:03:18] [Server thread/WARN]: [ExcellentCrates] WARNING: You're running an outdated server version (1.21)!
[00:03:18] [Server thread/WARN]: [ExcellentCrates] This version will no longer be supported in future relases.
[00:03:18] [Server thread/WARN]: [ExcellentCrates] Please upgrade your server to 1.21.1.
[00:03:18] [Server thread/WARN]: [ExcellentCrates] NO DISCORD SUPPORT WILL BE PROVIDED!
[00:03:18] [Server thread/WARN]: [ExcellentCrates] ===================================
[00:03:18] [Server thread/INFO]: [ExcellentCrates] Read database configuration...
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: xp
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: levels
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Registered currency: money
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Loaded 8 crate openings.
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crate keys.
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Loaded 4 rarities!
[00:03:19] [Server thread/INFO]: [ExcellentCrates] Loaded 5 crates.
[00:03:20] [Server thread/INFO]: [ExcellentCrates] Loaded 1 crate menus.
[00:03:20] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: excellentcrates [5.3.3]
[00:03:20] [Server thread/INFO]: [ExcellentCrates] Plugin loaded in 1663 ms!
[00:03:20] [Server thread/INFO]: [HeadsPlus] Enabling HeadsPlus v7.1.5
[00:03:20] [Server thread/INFO]: [HeadsPlus] Using the PaperProfileHandler profile handler.
[00:03:20] [Server thread/INFO]: [HeadsPlus] Registered 438 heads.
[00:03:20] [Server thread/INFO]: [HeadsPlus] Registered 3 masks.
[00:03:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: headsplus [7.1.5]
[00:03:21] [Server thread/INFO]: [HeadsPlus] We've registered our PAPI placeholders!
[00:03:21] [Server thread/INFO]: HeadsPlus »  HeadsPlus has been enabled!
[00:03:21] [Server thread/INFO]:     __  __               __     ____  __                   _____
[00:03:21] [Server thread/INFO]:    / / / /__  ____ _____/ /____/ __ \/ /_  _______   _   _/__  /
[00:03:21] [Server thread/INFO]:   / /_/ / _ \/ __ `/ __  / ___/ /_/ / / / / / ___/  | | / / / / 
[00:03:21] [Server thread/INFO]:  / __  /  __/ /_/ / /_/ /__  / ____/ / /_/ /__  /   | |/ / / /  
[00:03:21] [Server thread/INFO]: /_/ /_/\___/\__,_/\__,_/____/_/   /_/\__,_/____/    |___/ /_/  
[00:03:21] [Server thread/INFO]:                                                                 
[00:03:21] [Server thread/INFO]: HeadsPlus 7.1.5 has been enabled successfully!
[00:03:21] [Server thread/INFO]: 
[00:03:21] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.14.1-DEV-184
[00:03:21] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[00:03:22] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[00:03:22] [Server thread/INFO]: [DeluxeMenus] 5 GUI menus loaded!
[00:03:22] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[00:03:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: deluxemenus [1.14.1-DEV-184]
[00:03:22] [Server thread/INFO]: [eShulkerBox] Enabling eShulkerBox v0.6.3
[00:03:22] [Server thread/INFO]: [ShulkerBox] ShulkerBoxPlugin initializing...
[00:03:22] [Server thread/INFO]: [ShulkerBox] Initialized 'CommandService'
[00:03:22] [Server thread/INFO]: [ShulkerBox] Initialized 'MessageService'
[00:03:22] [Server thread/INFO]: [ShulkerBox] Initialized 'ShulkerBoxMechanic'
[00:03:22] [Server thread/INFO]: [ShulkerBox] Initialized 'CommandTabListService'
[00:03:22] [Server thread/WARN]: [Item Mechanic] There are no shulker boxes in the shulkerboxes folder!
[00:03:22] [Server thread/INFO]: [ShulkerBox] Initialized 'ItemMechanic'
[00:03:22] [Server thread/INFO]: [ShulkerBox] ShulkerBoxPlugin initialized in 52ms
[00:03:22] [Server thread/INFO]: [ChunkyBorder] Enabling ChunkyBorder v1.2.10
[00:03:22] [Server thread/INFO]: [ChatFilter] Enabling ChatFilter v2.0.14
[00:03:23] [Server thread/INFO]: [ChatFilter] Loaded using locale: en
[00:03:23] [Server thread/INFO]: [ChatFilter] 88 Enabled word filters.
[00:03:23] [Server thread/INFO]: [ChatFilter] 2 Enabled advertising filters.
[00:03:23] [Server thread/INFO]: [ChatFilter] 402 whitelisted items.
[00:03:23] [Server thread/INFO]: [GSit] Enabling GSit v1.12.1
[00:03:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: gsit [1.12.1]
[00:03:23] [Server thread/INFO]: [GSit] The plugin was successfully enabled.
[00:03:23] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[00:03:23] [Server thread/INFO]: [GSit] Link with PlaceholderAPI successful!
[00:03:23] [Server thread/INFO]: [GSit] Link with PlotSquared successful!
[00:03:23] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[00:03:23] [Server thread/INFO]: [InteractiveChatDiscordSRVAddon] Enabling InteractiveChatDiscordSrvAddon v4.2.13.0
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "elsa-3.0.0-M5-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fastutil-8.5.9-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "mapdb-3.0.8-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "bungeecord-chat-1.16-R0.4-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-forkjoin-11.0.0-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "fest-reflect-1.4.1-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-11.0.0-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "eclipse-collections-api-11.0.0-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "lz4-1.3.0-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "kotlin-stdlib-1.6.21-remapped.jar"
[00:03:24] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded library "icu4j-71.1-remapped.jar"
[00:03:25] [Server thread/INFO]: [InteractiveChat] Loading languages...
[00:03:25] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.DiscordReadyEvents subscribed (1 methods)
[00:03:25] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.LegacyDiscordCommandEvents subscribed (1 methods)
[00:03:25] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.OutboundToDiscordEvents subscribed (16 methods)
[00:03:25] [Server thread/INFO]: [DiscordSRV] API listener com.loohp.interactivechatdiscordsrvaddon.listeners.InboundToGameEvents subscribed (8 methods)
[00:03:26] [Server thread/INFO]: [ICDiscordSrvAddon] InteractiveChat DiscordSRV Addon has been Enabled!
[00:03:26] [Server thread/INFO]: [ChatGames] Enabling ChatGames v1.2.1
[00:03:26] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[00:03:26] [Server thread/INFO]: [ChatGames] ChatGames is now enabled!
[00:03:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: chatgames [1.0.0]
[00:03:26] [Server thread/INFO]: [ChatGames] PlaceholderAPI Hooked!
[00:03:26] [Server thread/INFO]: [ChatGames] Points loaded successfully!
[00:03:26] [Server thread/INFO]: [AxVaults] Enabling AxVaults v2.5.0
[00:03:28] [Server thread/INFO]: [AxVaults] Loaded plugin!
[00:03:28] [Server thread/INFO]: [GPFlags] Enabling GPFlags v5.13.6
[00:03:32] [Server thread/INFO]: [GPFlags] Finished loading configuration.
[00:03:32] [Server thread/INFO]: [GPFlags] Finished loading data.
[00:03:32] [Server thread/INFO]: [GPFlags] Successfully loaded in 3.77 seconds
[00:03:32] [Server thread/INFO]: [AdvancedEnchantments] Enabling AdvancedEnchantments v9.13.1
[00:03:33] [Server thread/INFO]: [AdvancedEnchantments] Loading Minecraft Version MC1_21_R1
[00:03:33] [Server thread/INFO]: [AdvancedEnchantments] Loaded 7 armor sets.
[00:03:33] [Server thread/INFO]: [AdvancedEnchantments] Loaded 5 weapons.
[00:03:35] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into economy plugin (Vault)
[00:03:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: advancedenchantments [1.0.0]
[00:03:35] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v6.2.0.7
[00:03:35] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> Execute the enable sequence
[00:03:35] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] EcoEnchants V11 Check
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Contributors: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Setting up ItemExpressionRegistry...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[00:03:36] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[00:03:36] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[00:03:36] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[00:03:37] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[00:03:37] [Server thread/INFO]: [QuickShop-Hikari] Used 39ms to fetch 14 shops from database.
[00:03:37] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[00:03:37] [Server thread/INFO]: [QuickShop-Hikari] Used 275ms to load 0 shops into memory (14 shops will be loaded after chunks/world loaded).
[00:03:37] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[00:03:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: qs [6.2.0.7]
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[00:03:38] [Server thread/INFO]: [QuickShop-Hikari/Bootstrap] QuickShop-Hikari - Bootstrap -> All Complete. (2254ms)
[00:03:38] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.20
[00:03:38] [Server thread/INFO]: [InventoryRollbackPlus] Attempting support for version: 1.21-130-b1b5d4c (MC: 1.21)
[00:03:38] [Server thread/INFO]: [InventoryRollbackPlus] Using CraftBukkit version: v1_21_R1
[00:03:38] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[00:03:38] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[00:03:38] [Server thread/INFO]: [AngelChest] Enabling AngelChest v13.9.0
[00:03:38] [Server thread/INFO]: [AngelChest] groups.yml does not exist, skipping custom group settings.
[00:03:38] [Server thread/INFO]: [AngelChest] blacklist.yml does not exist, disabling item blacklist.
[00:03:38] [Server thread/INFO]: [AngelChest] Not using premium version, disabling Graveyards feature
[00:03:38] [Server thread/WARN]: [AngelChest] Could not add usage/description to command acopen
[00:03:38] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: angelchest [GENERIC]
[00:03:39] [Server thread/INFO]: [AngelChest] Successfully hooked into Vault and the EconomyProvider, enabling economy functions.
[00:03:39] [Server thread/INFO]: [AngelChest] [ACF] Enabled Asynchronous Tab Completion Support!
[00:03:39] [Server thread/INFO]: [AngelChest] Successfully enabled AngelChest v13.9.0 (Premium: false)
[00:03:39] [Server thread/INFO]: [AxInventoryRestore] Enabling AxInventoryRestore v3.5.0
[00:03:41] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v1.0.4
[00:03:41] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------
[00:03:41] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_21_R1.
[00:03:42] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.059s)!
[00:03:44] [Server thread/INFO]: [BeautyQuests] Adding citizens as an npc factory
[00:03:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: beautyquests [1.0.4]
[00:03:44] [Server thread/INFO]: [BeautyQuests] Placeholders registered !
[00:03:44] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.integrations.worldguard.WorldGuardEntryHandler
[00:03:44] [Server thread/INFO]: [GrapplingHook] Enabling GrapplingHook v1.6.5
[00:03:44] [Server thread/WARN]: [GrapplingHook] Problem with setting ingredient in recipe 1
[00:03:44] [Server thread/WARN]: [GrapplingHook] Problem with setting ingredient in recipe 2
[00:03:44] [Server thread/WARN]: [GrapplingHook] Problem with setting ingredient in recipe 3
[00:03:44] [Server thread/WARN]: [GrapplingHook] Problem with setting ingredient in recipe 4
[00:03:44] [Server thread/INFO]: [GrapplingHook] Loaded 5 recipes.
[00:03:44] [Server thread/INFO]: [GrimAC] Enabling GrimAC v2.3.67
[00:03:44] [Server thread/INFO]: [GrimAC] Registering singular bukkit event... (PistonEvent)
[00:03:44] [Server thread/INFO]: [GrimAC] Registering packets...
[00:03:44] [Server thread/INFO]: [GrimAC] Registering tick schedulers...
[00:03:45] [Server thread/INFO]: [GrimAC] [ACF] Enabled Asynchronous Tab Completion Support!
[00:03:45] [Server thread/INFO]: [MessageSounds] Enabling MessageSounds v1.0*
[00:03:45] [Server thread/INFO]: successfully loaded in
[00:03:45] [Server thread/INFO]: [ChatEmojis] Enabling ChatEmojis v2.4.1
[00:03:45] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.5.1
[00:03:49] [Server thread/WARN]: [Orebfuscator] duplicate randomBlock entry for minecraft:bedrock in section-bedrock-bottom
[00:03:49] [Server thread/WARN]: [Orebfuscator] duplicate randomBlock entry for minecraft:bedrock in section-bedrock-top
[00:03:49] [Server thread/INFO]: [TradeMe] Enabling TradeMe v6.2.2.4
[00:03:50] [Server thread/INFO]: [TradeMe] Version 6.2.2.4 has been enabled
[00:03:50] [Server thread/INFO]: [TradeMe] GriefPrevention plugin was found!
[00:03:50] [Server thread/INFO]: [TradeMe] Vault plugin was found!
[00:03:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: trademe [6.2.2.4]
[00:03:50] [Server thread/INFO]: [TradeMe] PlaceholderAPI hooked.
[00:03:51] [Server thread/INFO]: [TradeMe] Connected to sqlite
[00:03:51] [Server thread/INFO]: [TradeMe] 47 trade logs preloaded
[00:03:51] [Server thread/INFO]: [Maintenance] Enabling Maintenance v4.3.0
[00:03:53] [Server thread/INFO]: [spark] Starting background profiler...
[00:03:54] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[00:03:54] [Server thread/INFO]: Done preparing level "world" (131.708s)
[00:03:54] [Server thread/INFO]: Running delayed init tasks
[00:03:54] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[00:03:54] [Craft Scheduler Thread - 7 - AuthMe/INFO]: [AuthMe] Downloading GEO IP database, because the old database is older than 30 days or doesn't exist
[00:03:54] [Craft Scheduler Thread - 7 - AuthMe/WARN]: [AuthMe] No MaxMind credentials found in the configuration file! GeoIp protections will be disabled.
[00:03:54] [Craft Scheduler Thread - 7 - AuthMe/INFO]: [AuthMe] There is no newer GEO IP database uploaded to MaxMind. Using the old one for now.
[00:03:54] [Craft Scheduler Thread - 11 - InteractiveChat/INFO]: [InteractiveChat] Loading languages...
[00:03:54] [Craft Scheduler Thread - 37 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[00:03:54] [Craft Scheduler Thread - 39 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[00:03:55] [Craft Scheduler Thread - 18 - CMILib/INFO]: New version of CMILib was detected. Please update it
[00:03:55] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[00:03:55] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[00:03:55] [Craft Scheduler Thread - 5 - ChatFeelings/INFO]: [ChatFeelings] 
[00:03:55] [Craft Scheduler Thread - 14 - HeadsPlus/INFO]: [HeadsPlus] Registered 0 rewards.
[00:03:55] [Craft Scheduler Thread - 5 - ChatFeelings/INFO]: [ChatFeelings] Having issues? Got a question? Join our support discord: zachduda.com/discord
[00:03:55] [Craft Scheduler Thread - 39 - InventoryRollbackPlus/INFO]: 
===============================================================================
A minor update to InventoryRollbackPlus is available!
Download at https://www.spigotmc.org/resources/inventoryrollbackplus-1-8-1-16-x.85811/
(current: 1.6.20, latest: 1.6.21)
===============================================================================

[00:03:55] [Craft Scheduler Thread - 7 - AuthMe/WARN]: [AuthMe] Could not download GeoLiteAPI database [FileNotFoundException]: plugins/AuthMe/GeoLite2-Country.mmdb (No such file or directory)
[00:03:55] [Craft Scheduler Thread - 9 - Essentials/INFO]: [Essentials] Fetching version information...
[00:03:57] [Craft Scheduler Thread - 12 - DecentHolograms/INFO]: [DecentHolograms] Loaded 6 holograms!
[00:03:58] [Server thread/INFO]: [Skript] Loading variables...
[00:03:58] [Server thread/INFO]: [Skript] Loaded 0 variables in 0.0 seconds
[00:04:00] [Craft Scheduler Thread - 32 - HeadsPlus/INFO]: [HeadsPlus] HeadsPlus »  Plugin is up to date!
[00:04:02] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Checking for server resource pack...
[00:04:02] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] No server resource pack found
[00:04:02] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Reloading ResourceManager: Default
[00:04:05] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Optifine" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.optifine.OptifineManager"
[00:04:05] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Registered ModManager "Chime" of class "com.loohp.interactivechatdiscordsrvaddon.resources.mods.chime.ChimeManager"
[00:04:05] [Craft Scheduler Thread - 34 - InteractiveChatDiscordSrvAddon/INFO]: [ICDiscordSrvAddon] Loading "Default" resources...
[00:04:06] [Craft Scheduler Thread - 25 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[00:04:06] [Server thread/INFO]: [Skript] All scripts loaded without errors.
[00:04:06] [Server thread/INFO]: [Skript] Loaded 6 scripts with a total of 35 structures in 6.98 seconds
[00:04:06] [Server thread/INFO]: [Skript] Finished loading.
[00:04:06] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[00:04:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: discordsrv [1.29.0]
[00:04:07] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[00:04:07] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[00:04:08] [Craft Scheduler Thread - 22 - HoloMobHealth/INFO]: [HoloMobHealth] Loaded all 1 languages!
[00:04:09] [Craft Scheduler Thread - 45 - InteractiveChat/INFO]: [InteractiveChat] Loaded all 1 languages!
[00:04:12] [Server thread/INFO]: [Citizens] Loaded 14 NPCs.
[00:04:12] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: EssentialsX Economy
[00:04:12] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: player [2.0.8]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: griefprevention [1.7.0]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: vault [1.8.3]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: essentials [1.5.2]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: objective [4.2.0]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: statistic [2.0.1]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: server [2.7.3]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: multiverse [1.0.1]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: worldguard [1.4.2]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: servertime [3.2]
[00:04:12] [Server thread/WARN]: [PlaceholderAPI] Failed to load external expansion votingplugin. Identifier is already in use.
[00:04:12] [Server thread/WARN]: [PlaceholderAPI] Cannot load expansion votingplugin due to an unknown issue.
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: luckperms [5.4-R2]
[00:04:12] [Server thread/INFO]: [PlaceholderAPI] Successfully registered external expansion: ViaVersion [2.0.0]
[00:04:12] [Server thread/INFO]: 12 placeholder hook(s) registered!
[00:04:12] [Server thread/INFO]: Done (263.005s)! For help, type "help"
[00:04:12] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 18075ms or 361 ticks behind
[00:04:12] [Server thread/INFO]: Timings Reset
[00:04:12] [Craft Scheduler Thread - 45 - Vault/INFO]: [Vault] Checking for Updates ... 
[00:04:12] [Craft Scheduler Thread - 45 - Vault/INFO]: [Vault] No new version available
[00:04:13] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Successfully registered 9 slash commands (0 conflicted) for 1 plugins in 1/1 guilds (0 cancelled)
[00:04:14] [pool-117-thread-1/INFO]: [VotingPlugin] Detected day changed, processing...
[00:04:14] [pool-117-thread-1/INFO]: [VotingPlugin] Time change event: DAY, Fake: false
[00:04:14] [Server thread/INFO]: [BeautyQuests] 84 quests loaded (1.992s)!
[00:04:15] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (36000 ticks). Task ID: 263
[00:04:15] [Server thread/INFO]: [FastLogin] Hooking into auth plugin: AuthMeHook
[00:04:16] [pool-117-thread-1/INFO]: [VotingPlugin] Finished processing day change, took 0 seconds
[00:04:16] [pool-117-thread-1/INFO]: [VotingPlugin] Created zip file at /home/container/plugins/VotingPlugin/Backups/Backup-2024_DECEMBER_18.zip
[00:04:16] [Server thread/INFO]: [AdvancedEnchantments] Successfully hooked into ProtocolLib, AdvancedEnchantments, WorldGuard, GriefPrevention, PlaceholderAPI, Essentials, Vault, LuckPerms, ViaVersion, DiscordSRV.
[00:04:16] [pool-117-thread-1/INFO]: [VotingPlugin] Finished processing day changes
[00:04:17] [Server thread/INFO]: [HeadsPlus] Avengers, assemble!
[00:04:19] [Server thread/INFO]: [AngelChest] ========================================================
[00:04:19] [Server thread/INFO]: [AngelChest] You are using the free version of AngelChest. There is
[00:04:19] [Server thread/INFO]: [AngelChest] also a premium version available, called AngelChestPlus.
[00:04:19] [Server thread/INFO]: [AngelChest] It includes TONS of new features and exclusive Discord
[00:04:19] [Server thread/INFO]: [AngelChest] support. The free version will still receive bugfixes,
[00:04:19] [Server thread/INFO]: [AngelChest] but there won't be ANY new features!
[00:04:19] [Server thread/INFO]: [AngelChest] If you like AngelChest, you will LOVE AngelChestPlus, so
[00:04:19] [Server thread/INFO]: [AngelChest] please consider upgrading! Thank you for using AngelChest.
[00:04:19] [Server thread/INFO]: [AngelChest] 
[00:04:19] [Server thread/INFO]: [AngelChest] https://www.spigotmc.org/resources/88214
[00:04:19] [Server thread/INFO]: [AngelChest] ========================================================
[00:04:20] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/112.201.166.101:19740]
[00:04:20] [Server thread/INFO]: /112.201.166.101:19740 lost connection: Disconnected
[00:04:20] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[00:04:20] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[00:04:20] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.134.105.241:46906]
[00:04:21] [/INFO]: [FastLogin] Requesting premium login for registered player: NetroIsDead
[00:04:21] [/INFO]: [FastLogin] Requesting premium login for registered player: Schminkipoo
[00:04:21] [/ERROR]: [FastLogin] Cannot send encryption packet. Falling back to cracked login for: StoredProfile{rowId=25, premium=true, floodgate=FALSE, lastIp='112.201.166.101', lastLogin=2024-12-17T06:37:08Z} StoredProfile{id=d8a0ff89-32bf-45ee-b714-e93c0319e611, name='NetroIsDead'}
java.lang.UnsupportedOperationException: The method getUniqueId is not supported for temporary players.
    at ProtocolLib.jar/com.comphenix.protocol.injector.temporary.TemporaryPlayerFactory$1.delegate(TemporaryPlayerFactory.java:140) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.temporary.TemporaryPlayerInvocationHandler.getUniqueId(Unknown Source) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.BukkitUnwrapper.lambda$getProxyUnwrapper$0(BukkitUnwrapper.java:232) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.BukkitUnwrapper.unwrapItem(BukkitUnwrapper.java:125) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.utility.MinecraftFields.getNetworkManager(MinecraftFields.java:32) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.channel.InjectionFactory.fromPlayer(InjectionFactory.java:98) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.getInjector(NetworkManagerInjector.java:57) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:175) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:149) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:144) ~[ProtocolLib.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.ProtocolLibLoginSource.enableOnlinemode(ProtocolLibLoginSource.java:90) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.requestPremiumLogin(NameCheckTask.java:93) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.requestPremiumLogin(NameCheckTask.java:43) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.shared.JoinManagement.onLogin(JoinManagement.java:85) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.run(NameCheckTask.java:73) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.scheduler.AbstractAsyncScheduler.process(AbstractAsyncScheduler.java:53) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.scheduler.AsyncScheduler.lambda$runAsync$0(AsyncScheduler.java:53) ~[FastLoginBukkit.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?]
    at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314) ~[?:?]
    at java.base/java.lang.VirtualThread.run(VirtualThread.java:309) ~[?:?]
[00:04:21] [/ERROR]: [FastLogin] Cannot send encryption packet. Falling back to cracked login for: StoredProfile{rowId=40, premium=true, floodgate=FALSE, lastIp='115.134.105.241', lastLogin=2024-12-17T07:55:05Z} StoredProfile{id=89c40386-bbdd-43aa-8db3-867f82ffc6b7, name='Schminkipoo'}
java.lang.UnsupportedOperationException: The method getUniqueId is not supported for temporary players.
    at ProtocolLib.jar/com.comphenix.protocol.injector.temporary.TemporaryPlayerFactory$1.delegate(TemporaryPlayerFactory.java:140) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.temporary.TemporaryPlayerInvocationHandler.getUniqueId(Unknown Source) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.BukkitUnwrapper.lambda$getProxyUnwrapper$0(BukkitUnwrapper.java:232) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.BukkitUnwrapper.unwrapItem(BukkitUnwrapper.java:125) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.utility.MinecraftFields.getNetworkManager(MinecraftFields.java:32) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.channel.InjectionFactory.fromPlayer(InjectionFactory.java:98) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.manager.NetworkManagerInjector.getInjector(NetworkManagerInjector.java:57) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:175) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:149) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.PacketFilterManager.sendServerPacket(PacketFilterManager.java:144) ~[ProtocolLib.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.ProtocolLibLoginSource.enableOnlinemode(ProtocolLibLoginSource.java:90) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.requestPremiumLogin(NameCheckTask.java:93) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.requestPremiumLogin(NameCheckTask.java:43) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.shared.JoinManagement.onLogin(JoinManagement.java:85) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.bukkit.listener.protocollib.NameCheckTask.run(NameCheckTask.java:73) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.scheduler.AbstractAsyncScheduler.process(AbstractAsyncScheduler.java:53) ~[FastLoginBukkit.jar:?]
    at FastLoginBukkit.jar/com.github.games647.fastlogin.core.scheduler.AsyncScheduler.lambda$runAsync$0(AsyncScheduler.java:53) ~[FastLoginBukkit.jar:?]
    at java.base/java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1804) ~[?:?]
    at java.base/java.util.concurrent.ThreadPerTaskExecutor$TaskRunner.run(ThreadPerTaskExecutor.java:314) ~[?:?]
    at java.base/java.lang.VirtualThread.run(VirtualThread.java:309) ~[?:?]
[00:04:21] [Server thread/INFO]: /115.134.105.241:46906 lost connection: Disconnected
[00:04:25] [Craft Scheduler Thread - 45 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.17.4 New Version: 6.18
[00:04:25] [Craft Scheduler Thread - 36 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.3
[00:04:27] [Server thread/INFO]: [ICDiscordSrvAddon] Loaded all resources!
[00:04:29] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/223.233.64.125:17374]
[00:04:29] [/INFO]: [FastLogin] Requesting premium login for registered player: Scolber
[00:04:30] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/223.233.64.125:17374]
[00:04:30] [/INFO]: [FastLogin] Enabling onlinemode encryption for /223.233.64.125:17374
[00:04:30] [/INFO]: [FastLogin] Profile Scolber has a verified premium account
[00:04:31] [User Authenticator #0/INFO]: UUID of player Scolber is c6d97f22-c60b-36ed-8171-90c5e04d8ac1
[00:04:40] [Server thread/INFO]: [VotingPlugin] Login: Scolber (c6d97f22-c60b-36ed-8171-90c5e04d8ac1)
[00:04:42] [Server thread/INFO]: Scolber[/          ip          ] logged in with entity id 337 at ([world]6861.7577249792785, 63.875, 3013.322813034582)
[00:04:42] [Server thread/INFO]: [+] Scolber
[00:04:43] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 3916ms or 78 ticks behind
[00:04:45] [Craft Scheduler Thread - 11 - FastLogin/INFO]: [FastLogin] Logging player Scolber in
[00:04:47] [Craft Scheduler Thread - 51 - AuthMe/INFO]: [AuthMe] Scolber logged in 223.233.64.125
[00:04:48] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/112.201.166.101:20511]
[00:04:48] [/INFO]: [FastLogin] Requesting premium login for registered player: NetroIsDead
[00:04:49] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/112.201.166.101:20511]
[00:04:49] [/INFO]: [FastLogin] Enabling onlinemode encryption for /112.201.166.101:20511
[00:04:49] [/INFO]: [FastLogin] Profile NetroIsDead has a verified premium account
[00:04:50] [Server thread/INFO]: NetroIsDead (/112.201.166.101:20511) lost connection: Disconnected
[00:04:51] [User Authenticator #0/INFO]: UUID of player NetroIsDead is 95418a03-bfeb-32b5-b7ee-fab235469125
[00:04:55] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » test
[00:05:02] [Server thread/INFO]: Scolber issued server command: /sit
[00:05:06] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/112.201.166.101:20554]
[00:05:06] [/INFO]: [FastLogin] Requesting premium login for registered player: NetroIsDead
[00:05:06] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/112.201.166.101:20554]
[00:05:06] [/INFO]: [FastLogin] Enabling onlinemode encryption for /112.201.166.101:20554
[00:05:06] [/INFO]: [FastLogin] Profile NetroIsDead has a verified premium account
[00:05:07] [User Authenticator #0/INFO]: UUID of player NetroIsDead is 95418a03-bfeb-32b5-b7ee-fab235469125
[00:05:13] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 14304ms or 286 ticks behind
[00:05:17] [Server thread/INFO]: [VotingPlugin] Login: NetroIsDead (95418a03-bfeb-32b5-b7ee-fab235469125)
[00:05:17] [Server thread/INFO]: NetroIsDead[/          ip           ] logged in with entity id 557 at ([world]-5954.5, 188.0, -2862.5)
[00:05:17] [Server thread/INFO]: [+] NetroIsDead
[00:05:17] [Server thread/INFO]: Scolber issued server command: /sit
[00:05:18] [Craft Scheduler Thread - 20 - FastLogin/INFO]: [FastLogin] Logging player NetroIsDead in
[00:05:18] [Craft Scheduler Thread - 8 - AuthMe/INFO]: [AuthMe] NetroIsDead logged in 112.201.166.101
[00:05:19] [Craft Scheduler Thread - 33 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » test
[00:05:23] [Craft Scheduler Thread - 9 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » nice
[00:05:30] [Craft Scheduler Thread - 49 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » 258 ms
[00:05:31] [Craft Scheduler Thread - 9 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i see
[00:05:35] [Craft Scheduler Thread - 41 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » sky join
[00:05:52] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.134.105.241:5142]
[00:05:52] [/INFO]: [FastLogin] Requesting premium login for registered player: Schminkipoo
[00:05:53] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/115.134.105.241:5142]
[00:05:53] [/INFO]: [FastLogin] Enabling onlinemode encryption for /115.134.105.241:5142
[00:05:53] [/INFO]: [FastLogin] Profile Schminkipoo has a verified premium account
[00:05:54] [User Authenticator #0/INFO]: UUID of player Schminkipoo is eef2e8ad-714a-3757-8a0e-a59c73326a41
[00:05:55] [Server thread/INFO]: [VotingPlugin] Login: Schminkipoo (eef2e8ad-714a-3757-8a0e-a59c73326a41)
[00:05:55] [Server thread/INFO]: Schminkipoo[/          ip          ] logged in with entity id 699 at ([world]4198.25140446059, 66.00000019999999, 616.1259755962093)
[00:05:55] [Server thread/INFO]: [+] Schminkipoo
[00:05:56] [Craft Scheduler Thread - 51 - FastLogin/INFO]: [FastLogin] Logging player Schminkipoo in
[00:05:57] [Craft Scheduler Thread - 9 - AuthMe/INFO]: [AuthMe] Schminkipoo logged in 115.134.105.241
[00:05:59] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2590ms or 51 ticks behind
[00:06:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Minecraft: 1.21! Trying to find NMS support
[00:06:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_21_R1' loaded!
[00:06:15] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'Vouchers' to create a bStats instance!
[00:07:03] [Server thread/INFO]: NetroIsDead lost connection: Disconnected
[00:07:03] [Server thread/INFO]: [-] NetroIsDead
[00:07:12] [Server thread/INFO]: Schminkipoo issued server command: /sellgui
[00:07:14] [Server thread/INFO]: Shop >> Schminkipoo sold 1x Phantom Membrane(Mobs.page1.items.10), 2x Dirt(Blocks.page2.items.66) for $0.80 with the sell gui.
[00:07:15] [Server thread/INFO]: Schminkipoo issued server command: /shop
[00:07:28] [Server thread/INFO]: Schminkipoo lost connection: Disconnected
[00:07:28] [Server thread/INFO]: [-] Schminkipoo
[00:07:29] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.134.105.241:42421]
[00:07:29] [/INFO]: [FastLogin] Requesting premium login for registered player: Schminkipoo
[00:07:30] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/115.134.105.241:42421]
[00:07:30] [/INFO]: [FastLogin] Enabling onlinemode encryption for /115.134.105.241:42421
[00:07:30] [/INFO]: [FastLogin] Profile Schminkipoo has a verified premium account
[00:07:32] [User Authenticator #1/INFO]: UUID of player Schminkipoo is eef2e8ad-714a-3757-8a0e-a59c73326a41
[00:07:32] [Server thread/INFO]: [VotingPlugin] Login: Schminkipoo (eef2e8ad-714a-3757-8a0e-a59c73326a41)
[00:07:32] [Server thread/INFO]: Schminkipoo[/          ip           ] logged in with entity id 1523 at ([world]4197.501205910106, 65.3841797294065, 615.4874871035619)
[00:07:32] [Server thread/INFO]: [+] Schminkipoo
[00:07:33] [Craft Scheduler Thread - 49 - FastLogin/INFO]: [FastLogin] Logging player Schminkipoo in
[00:07:33] [Craft Scheduler Thread - 56 - AuthMe/INFO]: [AuthMe] Schminkipoo logged in 115.134.105.241
[00:07:38] [Server thread/INFO]: Schminkipoo issued server command: /shop
[00:07:47] [Server thread/INFO]: Shop >> Schminkipoo bought 1024 x Soul Sand(Blocks.page4.items.158) for $2,560.00 with the buy stacks screen.
[00:08:12] [Craft Scheduler Thread - 49 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » sleep
[00:08:13] [Craft Scheduler Thread - 13 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » anyone
[00:08:22] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » no bed with me
[00:10:15] [Server thread/INFO]: Scolber issued server command: /sit
[00:10:24] [Craft Scheduler Thread - 12 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » breh here also bored
[00:10:29] [Craft Scheduler Thread - 60 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » my team mate not play
[00:10:33] [Server thread/INFO]: Scolber issued server command: /sit
[00:11:16] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/175.143.57.92:22899]
[00:11:16] [/INFO]: [FastLogin] Requesting premium login for registered player: Jiu9IX
[00:11:16] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/175.143.57.92:22899]
[00:11:16] [/INFO]: [FastLogin] Enabling onlinemode encryption for /175.143.57.92:22899
[00:11:17] [/INFO]: [FastLogin] Profile Jiu9IX has a verified premium account
[00:11:19] [User Authenticator #2/INFO]: UUID of player Jiu9IX is d0d96af5-2c6b-3066-b4eb-5ba3804545da
[00:11:20] [Server thread/INFO]: [VotingPlugin] Login: Jiu9IX (d0d96af5-2c6b-3066-b4eb-5ba3804545da)
[00:11:20] [Server thread/INFO]: Jiu9IX[/         ip          ] logged in with entity id 2200 at ([world]-2344.52009564477, 64.0, -1849.079371642337)
[00:11:20] [Server thread/INFO]: [+] Jiu9IX
[00:11:21] [Craft Scheduler Thread - 56 - FastLogin/INFO]: [FastLogin] Logging player Jiu9IX in
[00:11:21] [Craft Scheduler Thread - 49 - AuthMe/INFO]: [AuthMe] Jiu9IX logged in 175.143.57.92
[00:11:24] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2506ms or 50 ticks behind
[00:12:19] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/49.43.43.179:63254]
[00:12:19] [User Authenticator #3/INFO]: UUID of player Calypso_9 is 16b1f0bd-16b6-3c24-b2f0-75de0bb92579
[00:12:19] [Server thread/INFO]: [VotingPlugin] Login: Calypso_9 (16b1f0bd-16b6-3c24-b2f0-75de0bb92579)
[00:12:19] [Server thread/INFO]: Calypso_9[/         ip         ] logged in with entity id 3000 at ([world]-2832.5, 82.0, 3873.5)
[00:12:19] [Server thread/INFO]: [+] Calypso_9
[00:12:23] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2524ms or 50 ticks behind
[00:12:33] [Craft Scheduler Thread - 12 - AuthMe/INFO]: [AuthMe] Calypso_9 logged in 49.43.43.179
[00:12:44] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > SCOLBER IM SO SORRY
[00:12:47] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > IM SO SORRY
[00:12:48] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > :sob:
[00:13:05] [Server thread/INFO]: Calypso_9 issued server command: /home home2
[00:13:16] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > Do you still need help???
[00:13:55] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > :7576bbcry:
[00:14:02] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » ;((
[00:14:03] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » bro
[00:14:14] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » u fker
[00:14:16] [Craft Scheduler Thread - 9 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » join
[00:14:20] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » or gay
[00:14:28] [Craft Scheduler Thread - 66 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i am waiting since so long
[00:14:30] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » u join
[00:14:31] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » or proboi
[00:14:34] [Craft Scheduler Thread - 70 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » dumbo
[00:14:43] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] Vengeance > playerlis
[00:14:50] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » nice
[00:14:52] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > im sorry scolber D:
[00:14:54] [Craft Scheduler Thread - 60 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » cal ji scol schm
[00:14:57] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » so join rn na
[00:14:58] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > duckling took my pc from me man
[00:15:01] [Craft Scheduler Thread - 70 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » u sry
[00:15:09] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » lame excuses
[00:15:12] [Craft Scheduler Thread - 9 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » shut up
[00:15:14] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper > minecraft loading
[00:15:14] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] Vengeance > nub paper
[00:15:22] [Craft Scheduler Thread - 70 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » he think i am a 14 yo
[00:15:25] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i am 19 ..
[00:15:32] [Craft Scheduler Thread - 68 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » eyyy
[00:15:32] [Server thread/INFO]: Scolber issued server command: /sit
[00:15:40] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » veng join
[00:15:48] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] Chat: [Discord] paper (replying to Vengeance) > no you
[00:15:54] [Craft Scheduler Thread - 69 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » 19 this year?
[00:16:06] [Craft Scheduler Thread - 69 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » yes in march 20
[00:16:19] [Craft Scheduler Thread - 68 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » ah so im older by a bit
[00:16:21] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i will be ageing 20 on 21 march
[00:16:24] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.135.30.175:31777]
[00:16:24] [/INFO]: [FastLogin] Requesting premium login for registered player: cindybaby
[00:16:24] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/115.135.30.175:31777]
[00:16:24] [/INFO]: [FastLogin] Enabling onlinemode encryption for /115.135.30.175:31777
[00:16:25] [/INFO]: [FastLogin] Profile cindybaby has a verified premium account
[00:16:26] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/217.164.205.255:60859]
[00:16:27] [User Authenticator #4/INFO]: UUID of player cindybaby is f5b209aa-9fb4-3904-86a5-ca50d3d81743
[00:16:28] [Server thread/INFO]: [VotingPlugin] Login: cindybaby (f5b209aa-9fb4-3904-86a5-ca50d3d81743)
[00:16:28] [Server thread/INFO]: cindybaby[/          ip          ] logged in with entity id 4716 at ([world]-2207.4441252227507, 70.0, -1695.8144029224497)
[00:16:28] [Server thread/INFO]: [+] cindybaby
[00:16:29] [User Authenticator #5/INFO]: UUID of player paperandpencil is 6d4b1f84-24b0-378f-9e97-932f8770c3b6
[00:16:29] [Craft Scheduler Thread - 72 - FastLogin/INFO]: [FastLogin] Logging player cindybaby in
[00:16:30] [Craft Scheduler Thread - 62 - AuthMe/INFO]: [AuthMe] The user cindybaby has 2 accounts:
[00:16:30] [Craft Scheduler Thread - 62 - AuthMe/INFO]: [AuthMe] skysky, cindybaby.
[00:16:30] [Craft Scheduler Thread - 62 - AuthMe/INFO]: [AuthMe] cindybaby logged in 115.135.30.175
[00:16:31] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2525ms or 50 ticks behind
[00:16:33] [Server thread/INFO]: [VotingPlugin] Login: paperandpencil (6d4b1f84-24b0-378f-9e97-932f8770c3b6)
[00:16:33] [Server thread/INFO]: paperandpencil[/          ip           ] logged in with entity id 4781 at ([world]-485.30000001192093, 73.0, -1745.699999988079)
[00:16:33] [Server thread/INFO]: [+] paperandpencil
[00:16:34] [Craft Scheduler Thread - 65 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i am 19 alr
[00:16:34] [Craft Scheduler Thread - 75 - InteractiveChat/INFO]: [Not Secure] [Player] cindybaby » hi Jiu9IX
[00:16:38] [Server thread/INFO]: cindybaby issued server command: /fly
[00:16:38] [Server thread/INFO]: [Essentials] cindybaby was denied access to command.
[00:16:39] [Craft Scheduler Thread - 71 - InteractiveChat/INFO]: [Not Secure] [Player] Jiu9IX » hi
[00:16:39] [Server thread/INFO]: Scolber issued server command: /trust paperandpencil
[00:16:43] [Server thread/INFO]: Scolber issued server command: /tpahere paperandpencil
[00:16:47] [Server thread/INFO]: Schminkipoo issued server command: /shop
[00:16:52] [Craft Scheduler Thread - 67 - AuthMe/INFO]: [AuthMe] paperandpencil logged in 217.164.205.255
[00:16:54] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 7098ms or 141 ticks behind
[00:16:55] [Server thread/INFO]: paperandpencil issued server command: /tpaccept
[00:16:57] [Server thread/INFO]: Shop >> Schminkipoo bought 512 x Soul Sand(Blocks.page4.items.158) for $1,280.00 with the buy stacks screen.
[00:17:10] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.135.30.175:31776]
[00:17:10] [/INFO]: [FastLogin] Requesting premium login for registered player: skysky
[00:17:10] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/115.135.30.175:31776]
[00:17:10] [/INFO]: [FastLogin] Enabling onlinemode encryption for /115.135.30.175:31776
[00:17:11] [/INFO]: [FastLogin] Profile skysky has a verified premium account
[00:17:11] [User Authenticator #5/INFO]: UUID of player skysky is 028285f3-ed2b-3f58-96de-0c8ec4620f5e
[00:17:12] [Server thread/INFO]: [VotingPlugin] Login: skysky (028285f3-ed2b-3f58-96de-0c8ec4620f5e)
[00:17:12] [Server thread/INFO]: [DiscordSRV] Player skysky joined with silent joining permission, not sending a join message
[00:17:12] [Server thread/INFO]: skysky[/          ip          ] logged in with entity id 5233 at ([world]6849.0, 64.0, 2990.0)
[00:17:13] [Craft Scheduler Thread - 72 - FastLogin/INFO]: [FastLogin] Logging player skysky in
[00:17:14] [Craft Scheduler Thread - 73 - AuthMe/INFO]: [AuthMe] The user skysky has 2 accounts:
[00:17:14] [Craft Scheduler Thread - 73 - AuthMe/INFO]: [AuthMe] skysky, cindybaby.
[00:17:14] [Craft Scheduler Thread - 73 - AuthMe/INFO]: [AuthMe] skysky logged in 115.135.30.175
[00:17:16] [Server thread/INFO]: skysky issued server command: /fly
[00:17:22] [Server thread/INFO]: skysky issued server command: /ignoreclaims
[00:17:25] [Craft Scheduler Thread - 76 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » trying to find blue
[00:17:28] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » skysky
[00:17:29] [Server thread/INFO]: skysky issued server command: /v
[00:17:35] [Craft Scheduler Thread - 61 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » leemi grind blue axo pls
[00:17:38] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » then set mob cab
[00:17:45] [Server thread/INFO]: skysky issued server command: /vouchers
[00:17:45] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i have grinded so far and invested hours
[00:18:01] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » everyone been grindng not just you -.-
[00:18:01] [Craft Scheduler Thread - 68 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » breh vanish
[00:18:03] [Craft Scheduler Thread - 75 - InteractiveChat/INFO]: [Not Secure] [Player] skysky » sure
[00:18:08] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » Scolber do u just want too breed the axolotls?
[00:18:12] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » for blue
[00:18:15] [Craft Scheduler Thread - 76 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » yes
[00:18:18] [Craft Scheduler Thread - 76 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » blue dont spawn naturally
[00:18:22] [Craft Scheduler Thread - 75 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » ik
[00:18:27] [Craft Scheduler Thread - 72 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i have been catching fish since hours
[00:18:29] [Craft Scheduler Thread - 67 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » breeding
[00:18:29] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » i'll go get tropical
[00:18:30] [Server thread/INFO]: skysky issued server command: /tp cindybaby
[00:18:30] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /teleport skysky cindybaby
[00:18:32] [Craft Scheduler Thread - 76 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » its under
[00:18:34] [Craft Scheduler Thread - 71 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » take bucket
[00:18:49] [Craft Scheduler Thread - 85 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » kk
[00:18:55] [Craft Scheduler Thread - 80 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » lemme set my home point here
[00:18:59] [Server thread/INFO]: paperandpencil issued server command: /sethome home1
[00:19:04] [Server thread/INFO]: paperandpencil issued server command: /sethome
[00:19:09] [Server thread/INFO]: paperandpencil issued server command: /sethome home1
[00:19:12] [Server thread/INFO]: paperandpencil issued server command: /sethome
[00:19:18] [Server thread/INFO]: paperandpencil issued server command: /home home2
[00:19:21] [Server thread/INFO]: skysky lost connection: Disconnected
[00:19:21] [Server thread/INFO]: paperandpencil issued server command: /home home2
[00:19:28] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » Schminkipoo check when i joined and my playtime once
[00:19:42] [Craft Scheduler Thread - 72 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » how?
[00:19:52] [Craft Scheduler Thread - 91 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i joined grid after 4-6 months of reset in 2 days i had max
[00:19:55] [Craft Scheduler Thread - 84 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » crate item
[00:19:57] [Server thread/INFO]: Scolber issued server command: /playtime
[00:19:57] [Craft Scheduler Thread - 61 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » ohh grid
[00:20:01] [Craft Scheduler Thread - 81 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » 22 hours pt
[00:20:09] [Craft Scheduler Thread - 71 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i joined 2 days ago
[00:20:11] [Craft Scheduler Thread - 80 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » Scolber do u have bucket?
[00:20:19] [Craft Scheduler Thread - 83 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » 48 hours and 22 hours 50 min pt
[00:20:20] [Craft Scheduler Thread - 80 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » max what?
[00:20:25] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » cosmic crate
[00:20:27] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » paper
[00:20:30] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » this shulker
[00:20:33] [Server thread/INFO]: Scolber issued server command: /tpahere paperandpencil
[00:20:36] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » ah ok
[00:20:38] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » ehh cosmic crate
[00:20:48] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » i completed all the ranks in economy
[00:21:06] [Craft Scheduler Thread - 90 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » had the biggest farm(laggiest also) and was richest there
[00:21:10] [Server thread/INFO]: paperandpencil issued server command: /tpaccept
[00:21:50] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/102.31.142.10:50102]
[00:21:50] [User Authenticator #6/INFO]: UUID of player sadboii is 5b7f9366-dc0e-329c-a68e-8dffd386d189
[00:21:52] [Server thread/INFO]: [VotingPlugin] Login: sadboii (5b7f9366-dc0e-329c-a68e-8dffd386d189)
[00:21:53] [Server thread/INFO]: sadboii[/         ip          ] logged in with entity id 10894 at ([spawn]-36.29184166700986, 102.0, 20.49852249951385)
[00:21:53] [Server thread/INFO]: [+] sadboii
[00:21:55] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2505ms or 50 ticks behind
[00:21:58] [Craft Scheduler Thread - 82 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i was classic player
[00:21:59] [Craft Scheduler Thread - 86 - AuthMe/INFO]: [AuthMe] sadboii logged in 102.31.142.10
[00:22:04] [Server thread/INFO]: Scolber issued server command: /tpahere paperandpencil
[00:22:05] [Server thread/INFO]: sadboii issued server command: /afk
[00:22:06] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » i was both
[00:22:08] [Craft Scheduler Thread - 85 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » u got
[00:22:10] [Craft Scheduler Thread - 82 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » bucket
[00:22:12] [Craft Scheduler Thread - 92 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » oo nie
[00:22:15] [Server thread/INFO]: Schminkipoo issued server command: /claimlist
[00:22:16] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » yes
[00:22:21] [Craft Scheduler Thread - 74 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » im lookin for fish
[00:22:25] [Craft Scheduler Thread - 94 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » just loat
[00:22:33] [Server thread/INFO]: Jiu9IX issued server command: /p2 home
[00:22:33] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » go round and round
[00:22:37] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » they will spawn
[00:22:40] [Craft Scheduler Thread - 94 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » 24 blocks gab
[00:22:56] [Craft Scheduler Thread - 96 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » and keep fish in shulkers
[00:23:05] [Craft Scheduler Thread - 68 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » dont u breed as 1200 is player wise
[00:23:07] [Server thread/INFO]: Schminkipoo issued server command: /delhome temp
[00:23:18] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i got alot high
[00:23:21] [Server thread/INFO]: Schminkipoo issued server command: /sethome money
[00:23:26] [Craft Scheduler Thread - 96 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » ehh?
[00:23:29] [Server thread/INFO]: Schminkipoo issued server command: /sethome money
[00:23:31] [Server thread/INFO]: Schminkipoo issued server command: /sethome money
[00:23:31] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/115.135.30.175:31829]
[00:23:31] [/INFO]: [FastLogin] Requesting premium login for registered player: skysky
[00:23:32] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1] from UNKNOWN[/115.135.30.175:31829]
[00:23:32] [/INFO]: [FastLogin] Enabling onlinemode encryption for /115.135.30.175:31829
[00:23:32] [/INFO]: [FastLogin] Profile skysky has a verified premium account
[00:23:32] [User Authenticator #7/INFO]: UUID of player skysky is 028285f3-ed2b-3f58-96de-0c8ec4620f5e
[00:23:33] [Server thread/INFO]: [VotingPlugin] Login: skysky (028285f3-ed2b-3f58-96de-0c8ec4620f5e)
[00:23:33] [Server thread/INFO]: [DiscordSRV] Player skysky joined with silent joining permission, not sending a join message
[00:23:33] [Server thread/INFO]: skysky[/          ip          ] logged in with entity id 12755 at ([world]-2227.2894024027532, 63.2137909601471, -1980.2824621968534)
[00:23:34] [Craft Scheduler Thread - 71 - FastLogin/INFO]: [FastLogin] Logging player skysky in
[00:23:34] [Craft Scheduler Thread - 95 - AuthMe/INFO]: [AuthMe] The user skysky has 2 accounts:
[00:23:34] [Craft Scheduler Thread - 95 - AuthMe/INFO]: [AuthMe] skysky, cindybaby.
[00:23:34] [Craft Scheduler Thread - 95 - AuthMe/INFO]: [AuthMe] skysky logged in 115.135.30.175
[00:23:36] [Server thread/INFO]: skysky issued server command: /tp cindybaby
[00:23:36] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /teleport skysky cindybaby
[00:23:37] [Server thread/INFO]: skysky issued server command: /v
[00:23:39] [Server thread/INFO]: skysky issued server command: /
[00:23:43] [Server thread/INFO]: skysky issued server command: /gm 1
[00:23:45] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » sky, sethome can't be set on soul sand
[00:23:56] [Server thread/INFO]: Jiu9IX issued server command: /homes jiu
[00:23:57] [Protocol Worker #1 - FastLogin - [recv: ENCRYPTION_BEGIN[class=ServerboundKeyPacket, id=1], START[class=ServerboundHelloPacket, id=0], send: ]/INFO]: [FastLogin] New incoming packet START[class=ServerboundHelloPacket, id=0] from UNKNOWN[/51.39.197.93:1239]
[00:23:58] [User Authenticator #7/INFO]: UUID of player PROBOI is f674fc90-4f9d-3806-b0bd-1b299ea1bd82
[00:23:58] [Server thread/INFO]: Schminkipoo issued server command: /sethome money
[00:24:00] [Server thread/INFO]: [VotingPlugin] Login: PROBOI (f674fc90-4f9d-3806-b0bd-1b299ea1bd82)
[00:24:00] [Server thread/INFO]: PROBOI[/        ip         ] logged in with entity id 13253 at ([world]2689.2091334600473, -7.0, -3813.4066529073625)
[00:24:00] [Server thread/INFO]: [+] PROBOI
[00:24:01] [Server thread/INFO]: Schminkipoo issued server command: /home home
[00:24:03] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2644ms or 52 ticks behind
[00:24:08] [Craft Scheduler Thread - 99 - InteractiveChat/INFO]: [Not Secure] [Player] skysky » the block not complete cant set
[00:24:11] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » @PROBOI
[00:24:11] [Craft Scheduler Thread - 100 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » Proboi!
[00:24:11] [Craft Scheduler Thread - 92 - AuthMe/INFO]: [AuthMe] PROBOI logged in 51.39.197.93
[00:24:12] [Craft Scheduler Thread - 85 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » udumb nab
[00:24:14] [Craft Scheduler Thread - 92 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » :v
[00:24:17] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » piece of cake
[00:24:22] [Server thread/INFO]: Scolber issued server command: /trust PROBOI
[00:24:22] [Craft Scheduler Thread - 62 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » hi paper
[00:24:25] [Server thread/INFO]: Scolber issued server command: /tpahere PROBOI
[00:24:26] [Craft Scheduler Thread - 71 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » hello
[00:24:29] [Server thread/INFO]: PROBOI issued server command: /tpacancel
[00:24:30] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 11908ms or 238 ticks behind
[00:24:31] [Server thread/INFO]: PROBOI issued server command: /tpaccept
[00:24:34] [Server thread/INFO]: skysky issued server command: /v
[00:24:35] [Server thread/INFO]: skysky issued server command: /v
[00:24:43] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » kraizy
[00:24:50] [Server thread/INFO]: skysky issued server command: /ignoreclaims
[00:24:51] [Craft Scheduler Thread - 92 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » is this near the base?
[00:25:03] [Server thread/INFO]: [CHAT GAMES] A(n) VARIABLE chat game has started in the server!
[00:25:10] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] cindybaby » 66
[00:25:11] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » 64
[00:25:12] [Server thread/INFO]: [Essentials] CONSOLE issued server command: /eco give cindybaby 50
[00:25:13] [Server thread/INFO]: $50 added to cindybaby account. New balance: $222,235.42
[00:25:13] [Server thread/INFO]: [GriefPrevention] Adjusted cindybaby's bonus claim blocks by 50.  New total bonus blocks: 8750.
[00:25:13] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] Schminkipoo » 65
[00:25:13] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » 65
[00:25:15] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » why is there parrot in water
[00:25:49] [Server thread/INFO]: skysky issued server command: /afk
[00:26:01] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » gimme my armor
[00:26:01] [Server thread/INFO]: Calypso_9 issued server command: /wild
[00:26:07] [Craft Scheduler Thread - 82 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » PROBOI..
[00:26:12] [Craft Scheduler Thread - 103 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » wot
[00:26:14] [Craft Scheduler Thread - 85 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » give netherite scrap
[00:26:15] [Craft Scheduler Thread - 103 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » ☺
[00:26:20] [Craft Scheduler Thread - 93 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » hell naw
[00:26:23] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » L bozo
[00:26:26] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » You owe me!
[00:26:30] [Craft Scheduler Thread - 61 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » scammer gets scammed
[00:26:32] [Craft Scheduler Thread - 93 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » you took all my netherite scraps
[00:26:36] [Craft Scheduler Thread - 93 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » without me knowing man
[00:26:38] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » it was only 2
[00:26:44] [Server thread/INFO]: PROBOI issued server command: /home base
[00:26:44] [Craft Scheduler Thread - 102 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » it took me 14 minutes
[00:26:45] [Craft Scheduler Thread - 82 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » i swear only 2
[00:26:46] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » ☹
[00:26:51] [Server thread/INFO]: skysky issued server command: /warp leaderboard
[00:26:56] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2569ms or 51 ticks behind
[00:26:59] [Server thread/INFO]: PROBOI issued server command: /tpa paperandpencil
[00:27:00] [Craft Scheduler Thread - 68 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » i had 3
[00:27:02] [Server thread/INFO]: paperandpencil issued server command: /tpaccept
[00:27:12] [Craft Scheduler Thread - 84 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » i swear i only took 2
[00:27:15] [Server thread/INFO]: PROBOI issued server command: /trade paperandpencil
[00:27:19] [Server thread/INFO]: paperandpencil issued server command: /trade accept
[00:27:24] [Craft Scheduler Thread - 61 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » .
[00:27:26] [Server thread/INFO]: Scolber issued server command: /sit
[00:27:29] [Craft Scheduler Thread - 103 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » give it back moron
[00:27:30] [Server thread/INFO]: [Server] Clearing dropped item in 3 minutes.
[00:27:39] [Server thread/INFO]: cindybaby issued server command: /co i
[00:27:40] [Craft Scheduler Thread - 103 - InteractiveChat/INFO]: [Not Secure] [Player] paperandpencil » 😭😭😭😭
[00:27:45] [Server thread/INFO]: cindybaby issued server command: /co i
[00:27:54] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » PROBOI
[00:27:57] [Craft Scheduler Thread - 82 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » grind tropical fishes
[00:27:58] [Craft Scheduler Thread - 52 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » ?
[00:28:00] [Craft Scheduler Thread - 96 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » take bucket
[00:28:05] [Server thread/INFO]: cindybaby issued server command: /home home
[00:28:08] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » nah i'd rather go grind more armor
[00:28:13] [Server thread/INFO]: PROBOI issued server command: /trade Scolber
[00:28:14] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » grind
[00:28:15] [Server thread/INFO]: Scolber issued server command: /trade PROBOI
[00:28:15] [Server thread/INFO]: Scolber issued server command: /trade accept
[00:28:15] [Craft Scheduler Thread - 8 - InteractiveChat/INFO]: [TradeMe] PROBOI tried to send chat message while trading. Using cheats?
[00:28:25] [Craft Scheduler Thread - 95 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » grind netherite
[00:28:25] [Craft Scheduler Thread - 63 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » ill go get diamonds
[00:28:29] [Craft Scheduler Thread - 106 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » see this
[00:28:37] [Craft Scheduler Thread - 109 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » [Scolber's Ender Chest]
[00:28:39] [Server thread/INFO]: PROBOI issued server command: /interactivechat viewender a49df5897fb84b3de5141e882fca541b9cb8be81
[00:28:40] [Craft Scheduler Thread - 61 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » grind netherite
[00:28:43] [Server thread/INFO]: paperandpencil issued server command: /interactivechat viewender a49df5897fb84b3de5141e882fca541b9cb8be81
[00:28:43] [Server thread/INFO]: cindybaby issued server command: /interactivechat viewender a49df5897fb84b3de5141e882fca541b9cb8be81
[00:28:52] [Craft Scheduler Thread - 112 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » ill do what i want im bored anyways
[00:28:53] [Craft Scheduler Thread - 108 - InteractiveChat/INFO]: [Not Secure] [Player] Jiu9IX » tq
[00:28:57] [Craft Scheduler Thread - 110 - InteractiveChat/INFO]: [Not Secure] [Player] cindybaby » np!
[00:29:02] [Craft Scheduler Thread - 100 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » i alr got a pair of p4 dia
[00:29:09] [Craft Scheduler Thread - 86 - InteractiveChat/INFO]: [Not Secure] [Player] PROBOI » nice
[00:29:18] [Craft Scheduler Thread - 109 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » need netherite
[00:29:19] [Server thread/INFO]: PROBOI issued server command: /kit newbie
[00:29:22] [Craft Scheduler Thread - 77 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » but i grind this blue axo
[00:29:22] [Craft Scheduler Thread - 104 - InteractiveChat/INFO]: [Not Secure] [Player] Scolber » rn
[00:29:24] [Server thread/INFO]: Schminkipoo issued server command: /interactivechat viewender a49df5897fb84b3de5141e882fca541b9cb8be81
[00:29:26] [Netty Epoll Server IO #3/ERROR]: Error sending packet clientbound/minecraft:set_entity_data (skippable? false)
io.netty.handler.codec.EncoderException: Failed to encode packet 'clientbound/minecraft:set_entity_data'
    at net.minecraft.network.codec.IdDispatchCodec.encode(IdDispatchCodec.java:53) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.codec.IdDispatchCodec.encode(IdDispatchCodec.java:20) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.PacketEncoder.encode(PacketEncoder.java:26) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.PacketEncoder.encode(PacketEncoder.java:12) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:107) ~[netty-codec-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:881) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:113) ~[netty-codec-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:881) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:120) ~[netty-codec-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:881) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.ChannelOutboundHandlerAdapter.write(ChannelOutboundHandlerAdapter.java:113) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at net.minecraft.network.Connection$2.write(Connection.java:762) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:881) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at TAB v4.1.6.jar/me.neznamy.tab.shared.features.injection.NettyPipelineInjector$TabChannelDuplexHandler.write(NettyPipelineInjector.java:115) ~[TAB v4.1.6.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at AxVaults-2.5.0.jar/com.artillexstudios.axvaults.libs.axapi.nms.v1_21_R1.packet.PacketListener.write(PacketListener.java:186) ~[AxVaults-2.5.0.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.ChannelDuplexHandler.write(ChannelDuplexHandler.java:115) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at AxInventoryRestore-3.5.0.jar/com.artillexstudios.axinventoryrestore.libs.axapi.nms.v1_21_R1.packet.PacketListener.write(PacketListener.java:186) ~[AxInventoryRestore-3.5.0.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:879) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:863) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:968) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:856) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.DefaultChannelPipeline.write(DefaultChannelPipeline.java:1015) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.AbstractChannel.write(AbstractChannel.java:301) ~[netty-transport-4.1.97.Final.jar:4.1.97.Final]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.write(NettyChannelProxy.java:210) ~[ProtocolLib.jar:?]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.channel.NettyChannelProxy.write(NettyChannelProxy.java:199) ~[ProtocolLib.jar:?]
    at net.minecraft.network.Connection.doSendPacket(Connection.java:513) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.Connection.lambda$sendPacket$13(Connection.java:498) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at ProtocolLib.jar/com.comphenix.protocol.injector.netty.channel.NettyEventLoopProxy.lambda$proxyRunnable$2(NettyEventLoopProxy.java:49) ~[ProtocolLib.jar:?]
    at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java:174) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:167) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:470) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:413) ~[netty-transport-classes-epoll-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
    at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) ~[netty-common-4.1.97.Final.jar:4.1.97.Final]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
Caused by: java.util.ConcurrentModificationException
    at java.base/java.util.ArrayList$Itr.checkForComodification(ArrayList.java:1095) ~[?:?]
    at java.base/java.util.ArrayList$Itr.next(ArrayList.java:1049) ~[?:?]
    at net.minecraft.network.protocol.game.ClientboundSetEntityDataPacket.pack(ClientboundSetEntityDataPacket.java:23) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.protocol.game.ClientboundSetEntityDataPacket.write(ClientboundSetEntityDataPacket.java:44) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.codec.StreamCodec$2.encode(StreamCodec.java:38) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.codec.StreamCodec$5.encode(StreamCodec.java:88) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    at net.minecraft.network.codec.StreamCodec$5.encode(StreamCodec.java:78) ~[paper-1.21.jar:1.21-130-b1b5d4c]
    ... 57 more
[00:29:26] [Server thread/INFO]: sadboii lost connection: Internal Exception: io.netty.handler.codec.EncoderException: Failed to encode packet 'clientbound/minecraft:set_entity_data'
[00:29:27] [Server thread/INFO]: [-] sadboii