Paste #119618: citizen log

Date: 2024/01/21 09:27:31 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


[01:00:11] [ServerMain/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:00:16] [ServerMain/INFO]: Loaded 1176 recipes
[01:00:16] [ServerMain/ERROR]: Couldn't load advancements: [wasd.tnt:crafter_recipe, wasd.tnt:crafter, wasd.tnt:pack]
[01:00:16] [ServerMain/INFO]: Loaded 1531 advancements
[01:00:16] [ServerMain/WARN]: Not all defined tags for registry ResourceKey[minecraft:root / minecraft:block] are present in data pack: wasd.tags:air, wasd.tags:all_mineable, wasd.tags:nonsolid, wasd.tags:pistons, wasd.tags:water_blocks
[01:00:17] [Server thread/INFO]: Starting minecraft server version 1.20.2
[01:00:17] [Server thread/INFO]: Loading properties
[01:00:17] [Server thread/INFO]: This server is running Paper version git-Paper-"931781c" (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT) (Git: 931781c)
[01:00:17] [Server thread/INFO]: Server Ping Player Sample Count: 12
[01:00:17] [Server thread/INFO]: Using 4 threads for Netty based IO
[01:00:17] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend installing the spark profiler as a replacement: https://spark.lucko.me/
    For more information please visit: https://github.com/PaperMC/Paper/issues/8948
[01:00:18] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[01:00:18] [Server thread/INFO]: Default game type: SURVIVAL
[01:00:18] [Server thread/INFO]: Generating keypair
[01:00:18] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:19132
[01:00:18] [Server thread/INFO]: Using epoll channel type
[01:00:18] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[01:00:18] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[01:00:20] [Server thread/INFO]: [vilib] Loading server plugin vilib v1.2.0
[01:00:20] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[01:00:20] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[01:00:20] [Server thread/INFO]: [OpenInv] Loading server plugin OpenInv v4.4.2
[01:00:20] [Server thread/INFO]: [ItemSwapperPlugin] Loading server plugin ItemSwapperPlugin v0.2.1
[01:00:20] [Server thread/INFO]: [CommandHook] Loading server plugin CommandHook v2.4.2
[01:00:20] [Server thread/INFO]: [NoMobGriefing] Loading server plugin NoMobGriefing v3.0.3
[01:00:20] [Server thread/INFO]: [SimpleRTP] Loading server plugin SimpleRTP v3.1
[01:00:20] [Server thread/INFO]: [MoreMobHeads] Loading server plugin MoreMobHeads v1.15_1.0.33
[01:00:20] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.9.2
[01:00:20] [Server thread/INFO]: [ViaVersion] ViaVersion 4.9.2 is now loaded. Registering protocol transformers and injecting...
[01:00:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[01:00:21] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[01:00:21] [Server thread/INFO]: [ViaBackwards] Loading translations...
[01:00:21] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[01:00:22] [Server thread/INFO]: [AntiCurse] Loading server plugin AntiCurse v4.0.0
[01:00:22] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.2-SNAPSHOT (b88-94eabd7)
[01:00:23] [Server thread/INFO]: [floodgate] Took 495ms to boot Floodgate
[01:00:23] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.9.1
[01:00:23] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.116
[01:00:23] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.4.30
[01:00:23] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.2.0-SNAPSHOT
[01:00:23] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[01:00:23] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[01:00:23] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[01:00:23] [Server thread/INFO]: [F3NPerm] Loading server plugin F3NPerm v3.4
[01:00:23] [Server thread/INFO]: [F3NPerm] Server version V1_20_2 detected
[01:00:23] [Server thread/INFO]: [F3NPerm] Provider ReflectionProvider_1_20_2 loaded!
[01:00:23] [Server thread/INFO]: [F3NPerm] Plugin loaded!
[01:00:23] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.2.19-SNAPSHOT+6624-3295242
[01:00:24] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@17310ed9]
[01:00:24] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+25-fbfd7e9
[01:00:24] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[01:00:24] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.10-SNAPSHOT+2260-c7319f1
[01:00:24] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.28-SNAPSHOT (build 2381)
[01:00:24] [Server thread/INFO]: [IP] Loading server plugin IP v5.1.2
[01:00:24] [Server thread/INFO]: [Shopkeepers] Loading server plugin Shopkeepers v2.19.0
[01:00:24] [Server thread/INFO]: [Shopkeepers] Loaded all plugin classes (345 ms).
[01:00:24] [Server thread/INFO]: [Shopkeepers] Loading config.
[01:00:24] [Server thread/INFO]: [Shopkeepers] Loading language file: language-en-default.yml
[01:00:24] [Server thread/INFO]: [Shopkeepers] Registering WorldGuard flag 'allow-shop'.
[01:00:24] [Server thread/INFO]: [Shopkeepers] Registering defaults.
[01:00:24] [Server thread/INFO]: [Multiverse-Inventories] Loading server plugin Multiverse-Inventories v4.2.6
[01:00:24] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.1.2
[01:00:24] [Server thread/INFO]: [mcMMO] Loading server plugin mcMMO v2.1.227
[01:00:24] [Server thread/INFO]: [mcMMO] [D] Registered WG flags successfully!
[01:00:24] [Server thread/INFO]: [Multiverse-Portals] Loading server plugin Multiverse-Portals v4.2.3
[01:00:24] [Server thread/INFO]: [SuperVanish] Loading server plugin SuperVanish v6.2.18
[01:00:24] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[01:00:24] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+25-fbfd7e9
[01:00:24] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.2
[01:00:24] [Server thread/INFO]: [Sentinel] Loading server plugin Sentinel v2.8.1-SNAPSHOT (build 513)
[01:00:24] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.27.0
[01:00:24] [Server thread/INFO]: [Plan] Loading server plugin Plan v5.6 build 2614
[01:00:24] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.7.0
[01:00:25] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[01:00:25] [Server thread/INFO]: [TreeFeller] Loading server plugin TreeFeller v1.22.2
[01:00:25] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[01:00:25] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[01:00:25] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[01:00:25] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.116
[01:00:25] [Server thread/INFO]:         __    
[01:00:25] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.116
[01:00:25] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[01:00:25] [Server thread/INFO]: 
[01:00:25] [Server thread/INFO]: [LuckPerms] Loading configuration...
[01:00:26] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[01:00:27] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[01:00:27] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[01:00:27] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2499ms)
[01:00:27] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[01:00:27] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[01:00:27] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[01:00:27] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[01:00:27] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[01:00:27] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.19-SNAPSHOT+6624-3295242
[01:00:27] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[01:00:28] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[01:00:28] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_20_R2.PaperweightAdapter as the Bukkit adapter
[01:00:30] [Server thread/INFO]: Preparing level "SurvivalSpawnTwo"
[01:00:33] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[01:00:33] [Server thread/INFO]: Time elapsed: 449 ms
[01:00:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[01:00:33] [Server thread/INFO]: Time elapsed: 56 ms
[01:00:33] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[01:00:33] [Server thread/INFO]: Time elapsed: 20 ms
[01:00:33] [Server thread/INFO]: [vilib] Enabling vilib v1.2.0
[01:00:33] [Server thread/INFO]: [vilib] Enabled vilib 1.2.0
[01:00:33] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[01:00:33] [Server thread/INFO]: [OpenInv] Enabling OpenInv v4.4.2
[01:00:33] [Server thread/INFO]: [ItemSwapperPlugin] Enabling ItemSwapperPlugin v0.2.1
[01:00:33] [Server thread/INFO]: [CommandHook] Enabling CommandHook v2.4.2
[01:00:33] [Server thread/INFO]: [org.bitbucket._newage.commandhook.CommandHook] Minecraft version found: 1.20.2
[01:00:33] [Server thread/INFO]: [NoMobGriefing] Enabling NoMobGriefing v3.0.3
[01:00:33] [Server thread/INFO]: [NoMobGriefing] ***NoMobGriefing plugin by PinkNeonDino has been enabled.***
[01:00:33] [Server thread/INFO]: [SimpleRTP] Enabling SimpleRTP v3.1
[01:00:33] [Server thread/INFO]: [MoreMobHeads] Enabling MoreMobHeads v1.15_1.0.33
[01:00:33] [Server thread/INFO]: **************************************
[01:00:33] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading...
[01:00:33] [Server thread/INFO]: Loading config file...
[01:00:33] [Server thread/INFO]: Loading messages file...
[01:00:34] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 messages.yml, Expected version:[1.0.2], Read version:[1.0.2]
These should be the same.
[01:00:34] [Server thread/INFO]: Loading player_heads file...
[01:00:34] [Server thread/INFO]: Environment: Environment[accountsHost=https://api.mojang.com, sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[01:00:35] [Server thread/INFO]: Loading custom_trades file...
[01:00:35] [Server thread/INFO]: Loading chance_config file...
[01:00:35] [Server thread/INFO]: Loading language based mobname file...
[01:00:35] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 lang_mobnames file outdated! Updating.
[01:00:35] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 cs_CZ_mobnames.yml, de_DE_mobnames.yml, en_US_mobnames.yml, es_ES_mobnames.yml, es_MX_mobnames.yml, fr_FR_mobnames.yml, hu_HU_mobnames.yml, it_IT_mobnames.yml, ja_JP_mobnames.yml, ko_KR_mobnames.yml, lol_US_mobnames.yml, my_MY_mobnames.yml, nl_NL_mobnames.yml, pl_PL_mobnames.yml, pt_BR_mobnames.yml, ru_RU_mobnames.yml, sv_SV_mobnames.yml, tr_TR_mobnames.yml, zh_CN_mobnames.yml, zh_TW_mobnames.yml updated.
[01:00:35] [Server thread/INFO]:  (  -<[ PLEASE INCLUDE THIS WITH ANY ISSUE REPORTS ]>-
[01:00:35] [Server thread/INFO]:   ) This server is running Paper version git-Paper-"931781c" (MC: 1.20.2) (Implementing API version 1.20.2-R0.1-SNAPSHOT)
[01:00:35] [Server thread/INFO]:  (  vardebug=false debug=false in plugins/MoreMobHeads/config.yml
[01:00:35] [Server thread/INFO]:   ) jarfilename=/MoreMobHeads-1.15_1.0.33.jar
[01:00:35] [Server thread/INFO]:  (  -<[ PLEASE INCLUDE THIS WITH ANY ISSUE REPORTS ]>-
[01:00:35] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading 1.20 EventHandler...
[01:00:35] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading plugins/MoreMobHeads/block_heads_1_17.yml...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading plugins/MoreMobHeads/block_heads_1_17_2.yml...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading plugins/MoreMobHeads/block_heads_1_20.yml...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading PlayerHead Recipes...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 32 PlayerHead Recipes ADDED...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading BlockHead Recipes...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 BlockHeads=100
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 BlockHeads2=44
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 BlockHeads3=51
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 195 BlockHead Recipes ADDED...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 Loading CustomTrades Recipes...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 3 CustomTrades Recipes ADDED...
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 EventHandler_1_20 took 493ms to load
[01:00:36] [Server thread/INFO]: Checking for updates...
[01:00:36] [Server thread/WARN]: currentVersion=1.15_1.0.33
[01:00:36] [Server thread/WARN]: releaseVersion=1.15_1.0.33
[01:00:36] [Server thread/WARN]: developerVersion=1.20_1.0.34.D18
[01:00:36] [Server thread/INFO]: *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[01:00:36] [Server thread/INFO]: * Version is up to date!
[01:00:36] [Server thread/INFO]: * Donate: https://ko-fi.com/joelgodofwar
[01:00:36] [Server thread/INFO]: *!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*!*
[01:00:36] [Server thread/INFO]: **************************************
[01:00:36] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 is Enabled - Loading took 3 s 10 ms.
[01:00:36] [Server thread/INFO]: **************************************
[01:00:37] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.9.2
[01:00:37] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20.2 (764)
[01:00:37] [Server thread/INFO]: [AntiCurse] Enabling AntiCurse v4.0.0
[01:00:37] [Server thread/INFO]: Plugin is up to date - v4.0.0
[01:00:37] [Server thread/INFO]: [AntiCurse] Starting Metrics.
[01:00:37] [Server thread/INFO]: =========================
[01:00:37] [Server thread/INFO]: Author: H1DD3NxN1NJA
[01:00:37] [Server thread/INFO]: Version 4.0.0
[01:00:37] [Server thread/INFO]: Anti-Curse
[01:00:37] [Server thread/INFO]: =========================
[01:00:37] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.2-SNAPSHOT (b88-94eabd7)
[01:00:37] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.9.1
[01:00:37] [Server thread/INFO]: [voicechat] Enabling voicechat v2.4.30
[01:00:37] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.20.2-R0.1
[01:00:37] [Server thread/INFO]: [voicechat] Compatibility version 17
[01:00:37] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[01:00:37] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[01:00:37] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.2.0-SNAPSHOT
[01:00:37] [Server thread/INFO]: [F3NPerm] Enabling F3NPerm v3.4
[01:00:37] [Server thread/INFO]: [F3NPerm] Successfully hooked into LuckPerms!
[01:00:37] [Server thread/INFO]: [F3NPerm] Plugin enabled!
[01:00:37] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+25-fbfd7e9
[01:00:37] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[01:00:38] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[01:00:38] [Server thread/INFO]: [Essentials] No kits found to migrate.
[01:00:38] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[01:00:38] [Server thread/INFO]: [Essentials] Using locale en_US
[01:00:38] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[01:00:39] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[01:00:39] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[01:00:39] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[01:00:39] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[01:00:39] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[01:00:39] [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.
[01:00:39] [Server thread/INFO]: Preparing start region for dimension minecraft:aftertimes_nether
[01:00:40] [Server thread/INFO]: Time elapsed: 1222 ms
[01:00:40] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: PrivateSurvival
[01:00:40] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:00:40] [Server thread/INFO]: Preparing start region for dimension minecraft:aftertimes_the_end
[01:00:41] [Server thread/INFO]: Time elapsed: 192 ms
[01:00:41] [Server thread/INFO]: Preparing start region for dimension minecraft:villager
[01:00:41] [Server thread/INFO]: Time elapsed: 65 ms
[01:00:41] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:00:41] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:00:41] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: witp
[01:00:41] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:00:42] [Server thread/INFO]: Preparing start region for dimension minecraft:worldedit
[01:00:42] [Server thread/INFO]: Time elapsed: 202 ms
[01:00:42] [Server thread/INFO]: Preparing start region for dimension minecraft:thedoofusdimension
[01:00:43] [Server thread/INFO]: Time elapsed: 99 ms
[01:00:43] [Server thread/INFO]: Preparing start region for dimension minecraft:aftertimes
[01:00:44] [Server thread/INFO]: Time elapsed: 516 ms
[01:00:44] [Server thread/INFO]: [Multiverse-Core] 9 - World(s) loaded.
[01:00:44] [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.
[01:00:44] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[01:00:44] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.10-SNAPSHOT+2260-c7319f1
[01:00:44] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo) TNT ignition is PERMITTED.
[01:00:44] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo) Lighters are PERMITTED.
[01:00:44] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo) Lava fire is PERMITTED.
[01:00:44] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo) Fire spread is UNRESTRICTED.
[01:00:44] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SurvivalSpawnTwo'
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_nether) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_nether) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_nether) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_nether) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SurvivalSpawnTwo_nether'
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_the_end) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_the_end) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_the_end) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (SurvivalSpawnTwo_the_end) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SurvivalSpawnTwo_the_end'
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_nether) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_nether) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_nether) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_nether) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Aftertimes_nether'
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_the_end) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_the_end) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_the_end) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes_the_end) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Aftertimes_the_end'
[01:00:45] [Server thread/INFO]: [WorldGuard] (Villager) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Villager) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Villager) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Villager) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Villager'
[01:00:45] [Server thread/INFO]: [WorldGuard] (Worldedit) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Worldedit) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Worldedit) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Worldedit) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Worldedit'
[01:00:45] [Server thread/INFO]: [WorldGuard] (TheDoofusDimension) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (TheDoofusDimension) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (TheDoofusDimension) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (TheDoofusDimension) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TheDoofusDimension'
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes) TNT ignition is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes) Lighters are PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes) Lava fire is PERMITTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] (Aftertimes) Fire spread is UNRESTRICTED.
[01:00:45] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Aftertimes'
[01:00:45] [Server thread/INFO]: [WorldGuard] Loading region data...
[01:00:46] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.28-SNAPSHOT (build 2381)
[01:00:46] [Server thread/ERROR]: [Citizens] v2.0.28-SNAPSHOT (build 2381) is not compatible with Minecraft v1_20_R2 - try upgrading or downgrading Citizens. Disabling.
[01:00:46] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.28-SNAPSHOT (build 2381)
[01:00:46] [Server thread/ERROR]: Error occurred (in the plugin loader) while disabling Citizens v2.0.28-SNAPSHOT (build 2381) (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.api.npc.NPCRegistry.saveToStore()" because "reg" is null
    at net.citizensnpcs.Citizens.despawnNPCs(Citizens.java:144) ~[Citizens-2.0.28-b2381.jar:?]
    at net.citizensnpcs.Citizens.onDisable(Citizens.java:292) ~[Citizens-2.0.28-b2381.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:283) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.disablePlugin(PaperPluginInstanceManager.java:225) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.disablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at org.bukkit.plugin.SimplePluginManager.disablePlugin(SimplePluginManager.java:537) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at net.citizensnpcs.Citizens.onEnable(Citizens.java:316) ~[Citizens-2.0.28-b2381.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:00:46] [Server thread/INFO]: [IP] Enabling IP v5.1.2
[01:00:46] [Server thread/INFO]: [IP] Registered style red
[01:00:46] [Server thread/INFO]: [IP] Registered style blue
[01:00:46] [Server thread/INFO]: [IP] Registered style light blue
[01:00:46] [Server thread/INFO]: [IP] Registered style green
[01:00:46] [Server thread/INFO]: [IP] Registered style lime
[01:00:46] [Server thread/INFO]: [IP] Registered style cyan
[01:00:46] [Server thread/INFO]: [IP] Registered style purple
[01:00:46] [Server thread/INFO]: [IP] Registered style yellow
[01:00:46] [Server thread/INFO]: [IP] Registered style gray
[01:00:46] [Server thread/INFO]: [IP] Registered style end
[01:00:46] [Server thread/INFO]: [IP] Registered style nether
[01:00:46] [Server thread/INFO]: [IP] Registered style quartz
[01:00:46] [Server thread/INFO]: [IP] Registered style ocean
[01:00:46] [Server thread/INFO]: [IP] Registered style redstone
[01:00:46] [Server thread/INFO]: [IP] Registered style overworld
[01:00:46] [Server thread/INFO]: [IP] Registered style ores
[01:00:46] [Server thread/INFO]: [IP] Registered style wood
[01:00:46] [Server thread/INFO]: [IP] Registered style rainbow
[01:00:46] [Server thread/INFO]: [IP] Registered style glow
[01:00:46] [Server thread/INFO]: [IP] Loaded all config files
[01:00:46] [Server thread/INFO]: [IP] Registered mode default
[01:00:46] [Server thread/INFO]: [IP] Registered mode spectator
[01:00:46] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:00:46] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:00:46] [Server thread/WARN]: [Multiverse-Core] WorldManager: Can't load this world because the folder was deleted/moved: witp
[01:00:46] [Server thread/WARN]: [Multiverse-Core] Use '/mv remove' to remove it from the config!
[01:00:46] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:00:46] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:00:46] [Server thread/INFO]: [Multiverse-Core] Loading World & Settings - 'witp' - Env: NORMAL - Type: FLAT & generator: VoidGen
[01:00:46] [Server thread/ERROR]: No key layers in MapLike[{}]
[01:00:47] [Server thread/INFO]: [VoidGen] Generator settings have not been set. Using default values:
[01:00:47] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[01:00:47] [Server thread/INFO]: [WorldGuard] (witp) TNT ignition is PERMITTED.
[01:00:47] [Server thread/INFO]: [WorldGuard] (witp) Lighters are PERMITTED.
[01:00:47] [Server thread/INFO]: [WorldGuard] (witp) Lava fire is PERMITTED.
[01:00:47] [Server thread/INFO]: [WorldGuard] (witp) Fire spread is UNRESTRICTED.
[01:00:47] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'witp'
[01:00:48] [Server thread/INFO]: [IP] Loaded IP in 1805ms!
[01:00:48] [Server thread/INFO]: [Shopkeepers] Enabling Shopkeepers v2.19.0
[01:00:50] [Server thread/INFO]: [Shopkeepers] Loading the data of 1016 shopkeepers ...
[01:00:50] [Server thread/WARN]: [Shopkeepers] Shopkeeper 29: Object type 'ender-dragon' is disabled! Consider changing the object type.
[01:00:51] [Server thread/WARN]: [Shopkeepers] Shopkeeper 1284: Object type 'ender-dragon' is disabled! Consider changing the object type.
[01:00:51] [Server thread/WARN]: [Shopkeepers] Shopkeeper 1468: Object type 'citizen' is disabled! Consider changing the object type.
[01:00:51] [Server thread/WARN]: [Shopkeepers] Shopkeeper 1485: Object type 'citizen' is disabled! Consider changing the object type.
[01:00:51] [Server thread/WARN]: [Shopkeepers] Shopkeeper 1504: Object type 'citizen' is disabled! Consider changing the object type.
[01:00:51] [Server thread/WARN]: [Shopkeepers] Shopkeeper 1931: Object type 'citizen' is disabled! Consider changing the object type.
[01:00:51] [Server thread/INFO]: [Multiverse-Inventories] Enabling Multiverse-Inventories v4.2.6
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'default' are not loaded: tests_the_end, tests, tests_nether
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'survival' are not loaded: survival_nether, survival, survival_end
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'NewWorld' are not loaded: NewWorld_nether, NewWorld, NewWorld_the_end
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'ColdjiroSMP' are not loaded: ColdjiroSMP_the_end, ColdjiroSMP, ColdjiroSMP_nether
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'ToTheEndS3' are not loaded: ToTheEndS3_nether, ToTheEndS3_the_end
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'Spawn21' are not loaded: Spawn21_nether, Spawn21, Spawn21_the_end
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'ResetWorldV1' are not loaded: ResetWorldV1_the_end, ResetWorldV1, ResetWorldV1_nether
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories] The following worlds for group 'Nations' are not loaded: Nations_the_end, Nations, Nations_nether
[01:00:52] [Server thread/INFO]: [Multiverse-Inventories 4.2.6] enabled.
[01:00:52] [Server thread/INFO]: [TAB] Enabling TAB v4.1.2
[01:00:53] [Server thread/INFO]: [TAB] Enabled in 597ms
[01:00:53] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.227
[01:00:55] [Server thread/INFO]: [Multiverse-Portals] Enabling Multiverse-Portals v4.2.3
[01:00:55] [Server thread/INFO]: [Multiverse-Portals] 0 - Portals(s) loaded
[01:00:55] [Server thread/INFO]: [Multiverse-Portals] Found WorldEdit. Using it for selections.
[01:00:55] [Server thread/INFO]: [Multiverse-Portals 4.2.3]  Enabled - By Rigby and fernferret
[01:00:55] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.18
[01:00:55] [Server thread/INFO]: [SuperVanish] Please install ProtocolLib to be able to use all SuperVanish features: https://www.spigotmc.org/resources/protocollib.1997/
[01:00:55] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[01:00:55] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[01:00:55] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3816) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3817) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3819) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3820) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3844) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3848) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3853) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3856) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3870) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3871) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3875) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3877) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3882) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3885) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3886) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3896) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3905) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3906) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3913) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3923) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3924) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3925) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3926) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3927) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3928) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3929) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3930) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3931) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3932) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3933) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3934) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3935) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3936) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3937) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3938) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3951) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3952) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3954) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3961) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3979) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3980) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3982) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3984) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3985) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3986) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:3987) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4142) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4156) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4159) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4164) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4165) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4166) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4203) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4205) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4207) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4215) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4226) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4228) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4231) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4239) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4245) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4255) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4256) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4276) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4279) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4308) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4326) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4330) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4346) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4351) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4352) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4358) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4359) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4360) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4361) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4362) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4364) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4365) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4367) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4373) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4377) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4378) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4379) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4406) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4409) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4422) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4423) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4424) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4425) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4428) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4447) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4449) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4450) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4453) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4454) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4455) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4456) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4457) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4458) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4459) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4468) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4469) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4471) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4476) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4482) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4483) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4484) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4485) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4486) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4489) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4493) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4494) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4495) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4503) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4504) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4505) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4506) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4507) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4508) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4509) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4510) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4511) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4523) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4524) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4525) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4528) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4530) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4537) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4538) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4539) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4540) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4541) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4542) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4543) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4544) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4561) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4569) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4590) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4597) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4601) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4624) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4645) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4650) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4774) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4775) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4786) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4802) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4803) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4816) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4817) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4818) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4823) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4824) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4825) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4826) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4827) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4828) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4829) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4835) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4836) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4837) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4838) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4847) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4848) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4849) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4850) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4851) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4856) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4857) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4858) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4925) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4948) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4949) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4969) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4970) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4971) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:4973) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5007) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5009) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5017) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5033) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5034) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5084) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5085) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5086) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5087) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5089) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5093) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5097) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5099) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5100) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5101) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5102) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5105) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5106) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5107) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5109) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5111) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5112) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5122) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5124) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5126) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5128) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5129) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5130) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5131) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5135) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5141) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5153) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5159) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5160) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5163) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5164) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5165) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5166) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5167) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5168) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5169) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5170) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5174) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5175) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5177) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5185) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5186) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5206) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5208) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5209) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5214) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5215) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5216) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5217) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5218) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5219) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5220) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5221) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5222) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5223) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5224) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5225) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5226) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5227) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5228) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5229) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5230) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5231) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5232) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5233) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5234) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5235) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5236) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5237) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5238) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5267) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5268) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5269) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5271) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5276) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5281) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5282) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5284) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5285) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5286) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5321) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5322) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5323) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5325) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5330) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5331) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5334) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5335) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5336) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5338) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5352) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5363) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5375) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5376) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5378) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5380) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5381) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5382) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5383) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5393) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5394) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5395) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5399) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5400) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5401) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5402) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5403) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5412) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5463) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5466) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5471) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5472) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5473) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5474) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5476) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5477) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5484) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5485) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5486) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5513) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5515) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5520) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5521) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5522) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5523) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5525) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5526) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5527) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5528) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5529) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5530) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5531) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5533) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5534) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5547) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5556) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5701) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5705) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5706) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5719) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:5732) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7645) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7646) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7647) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7648) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7649) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7650) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:56] [Server thread/INFO]: [GriefPrevention] Failed to load a claim (ID:7651) because its world isn't loaded (yet?).  If this is not expected, delete this claim.
[01:00:57] [Server thread/INFO]: [GriefPrevention] 3744 total claims loaded.
[01:00:57] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[01:00:57] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[01:00:57] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[01:00:57] [Server thread/INFO]: [GriefPrevention] Boot finished.
[01:00:57] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+25-fbfd7e9
[01:00:57] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[01:00:57] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.2
[01:00:57] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[01:00:57] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[01:00:57] [Server thread/INFO]: --------------------
[01:00:57] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[01:00:57] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[01:00:57] [Server thread/INFO]: --------------------
[01:00:57] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.8.1-SNAPSHOT (build 513)
[01:00:57] [Server thread/INFO]: [Sentinel] Sentinel loading...
[01:00:57] [Server thread/INFO]: [Sentinel] Running on java version: 17.0.7
[01:00:57] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[01:00:57] [Server thread/ERROR]: Error occurred while enabling Sentinel v2.8.1-SNAPSHOT (build 513) (Is it up to date?)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.api.trait.TraitFactory.registerTrait(net.citizensnpcs.api.trait.TraitInfo)" because the return value of "net.citizensnpcs.api.CitizensAPI.getTraitFactory()" is null
    at org.mcmonkey.sentinel.SentinelPlugin.onEnable(SentinelPlugin.java:318) ~[Sentinel-2.8.1-SNAPSHOT-b513.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:190) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[paper-api-1.20.2-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugin(CraftServer.java:646) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at org.bukkit.craftbukkit.v1_20_R2.CraftServer.enablePlugins(CraftServer.java:557) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:627) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:424) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:308) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1086) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:315) ~[paper-1.20.2.jar:git-Paper-"931781c"]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
[01:00:57] [Server thread/INFO]: [Sentinel] Disabling Sentinel v2.8.1-SNAPSHOT (build 513)
[01:00:57] [Server thread/INFO]: [Sentinel] Sentinel unloading...
[01:00:57] [Server thread/INFO]: [Sentinel] Sentinel unloaded!
[01:00:57] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.27.0
[01:00:57] [Server thread/INFO]: [Plan] Enabling Plan v5.6 build 2614
[01:00:58] [Server thread/INFO]: [Plan] 
[01:00:58] [Server thread/INFO]: [Plan]            ██▌
[01:00:58] [Server thread/INFO]: [Plan]      ██▌   ██▌
[01:00:58] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  Player Analytics
[01:00:58] [Server thread/INFO]: [Plan]   ██▌██▌██▌██▌  v5.6 build 2614
[01:00:58] [Server thread/INFO]: [Plan] 
[01:00:58] [Server thread/INFO]: [Plan] Locale: 'English' by AuroraLS3
[01:00:58] [Server thread/INFO]: [Plan] Downloading SQLite Driver, this may take a while...
[01:00:58] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] Database: Making sure schema is up to date..
[01:00:58] [Server thread/INFO]: [Plan] SQLite-database connection established.
[01:00:58] [Server thread/INFO]: [Plan] WebServer: Certificate KeyStore File not Found: plugins/Plan/Cert.jks
[01:00:58] [Server thread/INFO]: [Plan] WebServer: No Certificate -> Using HTTP-server for Visualization.
[01:00:58] [Server thread/INFO]: [Plan] WebServer: User Authorization Disabled! (Not secure over HTTP)
[01:00:58] [Plan SQLiteDB-transaction-thread-1/INFO]: [Plan] All database patches applied successfully.
[01:00:58] [Server thread/INFO]: [Plan] Webserver running on PORT 8804 ( http://localhost:8804 )
[01:00:58] [Server thread/INFO]: [Plan] Loading server identifying information
[01:00:58] [Server thread/INFO]: [Plan] Server identifier loaded: 40d1d823-9c1b-4f98-a15b-0bbb44ce22b8
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: DiscordSRV
[01:00:58] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[01:00:58] [Server thread/INFO]: [DiscordSRV] API listener net.playeranalytics.extension.discordsrv.DiscordSRVListener subscribed (2 methods)
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: Essentials
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: EssentialsEco
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: Floodgate
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: GriefPrevention
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: LuckPerms
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: mcMMO
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[01:00:58] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[01:00:58] [Server thread/INFO]: [Plan] Player Analytics Enabled.
[01:00:58] [pool-97-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (6405e850eea61a4b9bf4f0d0cbb80fe20b3cfb90)
[01:00:58] [Server thread/INFO]: [GSit] Enabling GSit v1.7.0
[01:00:58] [Server thread/INFO]: [GSit] The Plugin was successfully enabled.
[01:00:58] [Server thread/INFO]: [GSit] Link with GriefPrevention successful!
[01:00:58] [Server thread/INFO]: [GSit] Link with ViaVersion successful!
[01:00:58] [Server thread/INFO]: [GSit] Link with WorldGuard successful!
[01:00:58] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[01:00:58] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[01:00:58] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[01:00:58] [Server thread/INFO]: [TreeFeller] Enabling TreeFeller v1.22.2
[01:00:58] [Server thread/INFO]: [TreeFeller] TreeFeller has been enabled! (Version 1.22.2) by ThizThizzyDizzy
[01:00:58] [Server thread/INFO]: [TreeFeller] Server version: 1_20_R2
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded global values:
[01:00:58] [Server thread/INFO]: [TreeFeller] - Startup Logs: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Default Enabled: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Scan Distance: 256
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 6
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 6
[01:00:58] [Server thread/INFO]: [TreeFeller] - Required Logs: 4
[01:00:58] [Server thread/INFO]: [TreeFeller] - Required Leaves: 10
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Logs: 250
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Height: 5
[01:00:58] [Server thread/INFO]: [TreeFeller] - Allow Partial: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Allow Partial Tool: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Player Leaves: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Ignore Leaf Data: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Require Cross Section: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Force Distance Check: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Decorations: [snow, vines, cocoa, weeping vines, moss]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 6
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Trunks: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Cutting Animation: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Anim Delay: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Replant Saplings: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Use Inventory Saplings: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Spawn Saplings: 0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling Timeout: 50
[01:00:58] [Server thread/INFO]: [TreeFeller] - Grass: [PODZOL, GRASS_BLOCK, DIRT]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Root Distance: 6
[01:00:58] [Server thread/INFO]: [TreeFeller] - Log Behavior: BREAK
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Behavior: BREAK
[01:00:58] [Server thread/INFO]: [TreeFeller] - Fall Hurt Amount: 2.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Fall Hurt Max: 40
[01:00:58] [Server thread/INFO]: [TreeFeller] - Directional Fall Behavior: RANDOM
[01:00:58] [Server thread/INFO]: [TreeFeller] - Overridables: [CAVE_AIR, FERN, LARGE_FERN, TALL_GRASS, SEAGRASS, WATER, AIR, TALL_SEAGRASS, GRASS]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Lock Fall Cardinal: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Directional Fall Velocity: 0.35
[01:00:58] [Server thread/INFO]: [TreeFeller] - Vertical Fall Velocity: 0.05
[01:00:58] [Server thread/INFO]: [TreeFeller] - Explosive Fall Velocity: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Random Fall Velocity: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Fall Delay: 0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Respect Unbreaking: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Respect Unbreakable: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Damage Mult: 1.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Stacked Tools: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Fortune: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Silk Touch: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Log Fortune: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Log Silk Touch: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leave Stump: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Rotate Logs: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Drop Conversions: {DARK_OAK_WOOD=DARK_OAK_LOG, ACACIA_WOOD=ACACIA_LOG, SPRUCE_WOOD=SPRUCE_LOG, WARPED_HYPHAE=WARPED_STEM, BIRCH_WOOD=BIRCH_LOG, OAK_WOOD=OAK_LOG, CRIMSON_HYPHAE=CRIMSON_STEM, JUNGLE_WOOD=JUNGLE_LOG}
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Drop Chance: 1.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Log Drop Chance: 1.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Effects: []
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Food Base: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Food Logs: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Food Leaves: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Health Base: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Health Logs: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Consumed Health Leaves: 0.0
[01:00:58] [Server thread/INFO]: [TreeFeller] - Prevent Breakage: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Enable Adventure: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Enable Survival: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Enable Creative: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - With Sneak: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Without Sneak: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - World Blacklist: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Cascade: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Parallel Cascade Limit: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Cascade Check Limit: 64
[01:00:58] [Server thread/INFO]: [TreeFeller] - MMOCore Trunk XP: {woodcutting=1.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - MMOCore Leaves XP: {woodcutting=0.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - MMOCore Tree XP: {woodcutting=0.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - MMOCore Emulate Regen: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility MMOCore: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility Jobs: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - MCMMO Double Drops: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO Classic: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility CoreProtect: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility WorldGuard: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility GriefPrevention: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility Towny: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - OreRegenerator Regen Delay: 1200
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility OreRegenerator: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility Drop2Inventory: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk XP: {Woodcutting=1.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaves XP: {woodcutting=0.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - EcoSkills Tree XP: {woodcutting=0.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility EcoSkills: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - EcoJobs Apply Multipliers: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility EcoJobs: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock Legacy: false
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility Lands: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility PlaceholderAPI: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility SaberFactions: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - AureliumSkills Trunk XP: {foraging=1.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - AureliumSkills Leaves XP: {foraging=0.0}
[01:00:58] [Server thread/INFO]: [TreeFeller] - AureliumSkills Apply Modifiers: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility AureliumSkills: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Compatibility BlockRegen: false
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: OAK_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [OAK_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: BIRCH_LOG, BIRCH_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: BIRCH_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [BIRCH_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: SPRUCE_LOG, SPRUCE_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: SPRUCE_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [SPRUCE_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: JUNGLE_LOG, JUNGLE_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: JUNGLE_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [JUNGLE_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: DARK_OAK_LOG, DARK_OAK_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: DARK_OAK_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [DARK_OAK_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: ACACIA_LOG, ACACIA_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: ACACIA_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [ACACIA_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: AZALEA_LEAVES, FLOWERING_AZALEA_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [AZALEA, FLOWERING_AZALEA]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: MANGROVE_LOG, MANGROVE_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: MANGROVE_ROOTS, MANGROVE_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 16
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 16
[01:00:58] [Server thread/INFO]: [TreeFeller] - Required Logs: 3
[01:00:58] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 16
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Trunks: 16
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [MANGROVE_PROPAGULE]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Roots: [MANGROVE_ROOTS]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Root Distance: 16
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: CHERRY_LOG, CHERRY_WOOD
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: CHERRY_LEAVES
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [CHERRY_SAPLING]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: CRIMSON_STEM, CRIMSON_HYPHAE
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: NETHER_WART_BLOCK, SHROOMLIGHT
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[01:00:58] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [CRIMSON_FUNGUS]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Grass: [CRIMSON_NYLIUM]
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded Tree!
[01:00:58] [Server thread/INFO]: [TreeFeller] - Trunk: WARPED_STEM, WARPED_HYPHAE
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaves: WARPED_WART_BLOCK, SHROOMLIGHT
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8
[01:00:58] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8
[01:00:58] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true
[01:00:58] [Server thread/INFO]: [TreeFeller] - Sapling: [WARPED_FUNGUS]
[01:00:58] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1
[01:00:58] [Server thread/INFO]: [TreeFeller] - Grass: [WARPED_NYLIUM]
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: WOODEN_AXE
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: STONE_AXE
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: IRON_AXE
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: GOLDEN_AXE
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: DIAMOND_AXE
[01:00:58] [Server thread/INFO]: [TreeFeller] Loaded tool: NETHERITE_AXE
[01:00:59] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[01:00:59] [Server thread/INFO]: [Geyser-Spigot] 
[01:00:59] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.2.0-SNAPSHOT (git-master-16f9f0d)
[01:00:59] [Server thread/INFO]: [Geyser-Spigot] 
[01:00:59] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[01:00:59] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Found server G:Doofus SMP | Aftertimes!(1016029497528696894)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📨』•invite-channel(1016029497604194421)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🚀』•welcome(1016029499441283223)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🌌』•goodbye(1016029499441283224)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔊』▪announcements(1026619060957491240)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔉』▪mini-announcements(1026619122919936112)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🟥』▪content(1026619637456175144)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📰』▪doofus-smp-news(1026619690790948984)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『❓』▪votes(1100403154367033518)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🤝』▪partnerships(1026619742158594051)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔴』▪pings(1026634260569915462)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📘』▪rules(1185945253908332635)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔰』▪server-verify(1026776021090963466)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🏡』▪faction-types(1148803745535246387)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📕』▪how-to-join(1016029498065571938)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📗』•self-role(1016029498065571939)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🫲』•partnership-info(1016029498283655208)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🌍』▪crisidian(1046785837922267187)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『☕』•general(1016029498283655210)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📷』•media(1016029498283655211)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🪑』•memes(1016029498283655212)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎮』•commands(1016029498283655213)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🫱』•partnership-chat(1026946613287075920)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『❗』•report(1016029498711490645)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🌴』•server-mc-chat(1193731593425129492)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💬』•unverified-chat(1016029498711490643)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💻』•server-console(1016029498711490647)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📖』▪staff-rules(1021800290590146621)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔨』▪staff-permissions(1026792299021221948)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📔』•staff-list(1016029498065571940)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『⏱』•staff-timezones(1056682293034496030)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📔』•staff-list-projects(1092480183795208203)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🪙』•prices(1132113429814063205)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔔』•admin-chat(1032401334986604595)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔔』•admin-inactivity(1054493697158418442)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『⏱』•timeout-role(1092526409458667570)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔵』▪fanart(1016029499969773635)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🟢』▪fnart(1045031445271429150)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💣』▪lore-art(1016029499969773636)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🪄』▪art(1016029499969773634)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『✋』▪suggestions(1016029499109945447)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🤖』▪bump(1048974214687887420)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『👋』▪introduce-yourself(1016029499109945449)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🔢』▪counting(1016029499109945448)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📛』▪reverify(1016029499109945444)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🎫』▪ticket(1016029499109945445)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📈』▪level-up(1016029499109945450)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🤬』▪discord-log(1016029499109945451)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:ticket-0005(1032006822984433785)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『📀』▪audit-log(1026822872808828968)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🥀』•old-minecraft-to-discord-chat(1101300567755722922)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🕸』•old-old-minecraft-to-discord-chat(1051117955309654096)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💀』•very-old-minecraft-to-discord-chat(1043572066806403072)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🪦』•dead-minecraft-to-discord-chat(1016029498711490644)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『🧟』•realm-mc-chat(1076608145306165318)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:『💾』•realm-console(1076608294329778326)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:how-save-the-server(1061018971563892786)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] - TC:rubber-room-with-rats(1133875058104864889)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:『💻』•server-console(1016029498711490647)
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling Essentials hook
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling SuperVanish hook
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[01:00:59] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling voice module
[01:01:02] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on 0.0.0.0:19132
[01:01:02] [Server thread/INFO]: [Geyser-Spigot] Done (3.085s)! Run /geyser help for help!
[01:01:02] [Server thread/INFO]: Running delayed init tasks
[01:01:02] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[01:01:02] [Craft Scheduler Thread - 7 - Essentials/INFO]: [Essentials] Fetching version information...
[01:01:02] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[01:01:02] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[01:01:02] [Craft Scheduler Thread - 12 - Plan/INFO]: [Plan] Storing sessions that were preserved before previous shutdown.
[01:01:02] [Craft Scheduler Thread - 10 - Plan/INFO]: [Plan] You're using the latest version.
[01:01:02] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] Checking for Updates ... 
[01:01:02] [Server thread/INFO]: Done (45.550s)! For help, type "help"
[01:01:02] [Server thread/INFO]: Timings Reset
[01:01:02] [Server thread/INFO]: [voicechat] Loading plugins
[01:01:02] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[01:01:02] [Server thread/INFO]: [voicechat] Initializing plugins
[01:01:02] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[01:01:02] [Craft Scheduler Thread - 6 - IP/INFO]: [IP] Found 0 unsupported schematic(s).
[01:01:02] [Craft Scheduler Thread - 6 - IP/INFO]: [IP] Loaded all schematics in 191 ms!
[01:01:02] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[01:01:02] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:24454
[01:01:02] [ForkJoinPool.commonPool-worker-1/WARN]: [Geyser-Spigot] Missing MC locale file: en_us
[01:01:02] [ForkJoinPool.commonPool-worker-1/INFO]: [Geyser-Spigot] Downloading Minecraft JAR to extract required files, please wait... (this may take some time depending on the speed of your internet connection)
[01:01:02] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] No new version available
[01:01:02] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[01:01:11] [ForkJoinPool.commonPool-worker-1/INFO]: [Geyser-Spigot] Minecraft JAR has been successfully downloaded and loaded!
[01:01:26] [User Authenticator #0/INFO]: UUID of player DoofusWorld is fc79c5b9-5f0a-45ab-a147-50adaa25205f
[01:01:27] [Server thread/INFO]: DoofusWorld joined the game
[01:01:27] [Server thread/INFO]: DoofusWorld[/35.179.77.27:56700] logged in with entity id 822 at ([Villager]-178.7973753769381, 45.5, 189.3236422747128)
[01:01:27] [Plan Non critical-pool-6/WARN]: [Plan] Ran into DataExtensionMethodCallException - logged to plugins/Plan/logs/DataExtensionMethodCallException-f11ec4466e.txt
[01:01:27] [Plan Non critical-pool-6/WARN]: [Plan] (INCLUDE CONTENTS OF THE FILE IN ANY REPORTS)
[01:01:27] [Plan Non critical-pool-6/WARN]: [Plan] What to do: Report and/or disable DiscordSRV extension in the Plan config.
[01:01:28] [Server thread/INFO]: [voicechat] Received secret request of DoofusWorld (17)
[01:01:28] [Server thread/INFO]: [voicechat] Sent secret to DoofusWorld
[01:01:31] [Server thread/INFO]: DoofusWorld lost connection: Disconnected
[01:01:31] [Server thread/INFO]: [voicechat] Disconnecting client DoofusWorld
[01:01:31] [Server thread/INFO]: DoofusWorld left the game
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] Ran into DataExtensionMethodCallException - logged to plugins/Plan/logs/DataExtensionMethodCallException-02bfbb85ec.txt
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] (INCLUDE CONTENTS OF THE FILE IN ANY REPORTS)
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] What to do: Report and/or disable DiscordSRV extension in the Plan config.
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] Ran into DataExtensionMethodCallException - logged to plugins/Plan/logs/DataExtensionMethodCallException-21a6df1f0c.txt
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] (INCLUDE CONTENTS OF THE FILE IN ANY REPORTS)
[01:01:32] [Craft Scheduler Thread - 14 - Plan/WARN]: [Plan] What to do: Report and/or disable DiscordSRV extension in the Plan config.
[01:01:58] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:01:59] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:01:59] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:00] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:00] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:01] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:01] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:02] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:02:02] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] /35.179.77.27:53497 tried to connect!
[01:10:03] [Server thread/INFO]: Whitelist is now turned on
[01:10:09] [Server thread/INFO]: Saving the game (this may take a moment!)
[01:10:09] [Server thread/INFO]: Saved the game
[01:10:09] [Server thread/INFO]: Stopping the server
[01:10:09] [Server thread/INFO]: Stopping server
[01:10:09] [Server thread/INFO]: [TreeFeller] Disabling TreeFeller v1.22.2
[01:10:09] [Server thread/INFO]: [TreeFeller] TreeFeller has been disabled! (Version 1.22.2) by ThizThizzyDizzy
[01:10:09] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.2.3
[01:10:09] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[01:10:09] [Server thread/INFO]: [GSit] Disabling GSit v1.7.0
[01:10:09] [Server thread/INFO]: [GSit] The Plugin was successfully disabled.
[01:10:09] [Server thread/INFO]: [Plan] Disabling Plan v5.6 build 2614
[01:10:09] [Server thread/INFO]: [Plan] Processing complete.
[01:10:09] [Server thread/INFO]: [Plan] Waiting for unfinished transactions to avoid data loss..
[01:10:09] [Server thread/INFO]: [Plan] Transaction queue closed.
[01:10:09] [Server thread/INFO]: [Plan] Waiting queries to finish to avoid SQLite crashing JVM..
[01:10:09] [Server thread/INFO]: [Plan] Closed SQLite connection.
[01:10:09] [Server thread/INFO]: [Plan] Player Analytics Disabled.
[01:10:09] [Server thread/INFO]: [DiscordSRV] Disabling DiscordSRV v1.27.0
[01:10:10] [DiscordSRV - Shutdown/INFO]: [DiscordSRV] Shutdown completed in 1040ms
[01:10:10] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v22.2
[01:10:10] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[01:10:11] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v22.2
[01:10:11] [Server thread/INFO]: [EssentialsSpawn] Disabling EssentialsSpawn v2.21.0-dev+25-fbfd7e9
[01:10:11] [Server thread/INFO]: [GriefPrevention] Disabling GriefPrevention v16.18.1
[01:10:11] [Server thread/INFO]: [GriefPrevention] GriefPrevention disabled.
[01:10:11] [Server thread/INFO]: [SuperVanish] Disabling SuperVanish v6.2.18
[01:10:11] [Server thread/INFO]: [Multiverse-Portals] Disabling Multiverse-Portals v4.2.3
[01:10:11] [Server thread/INFO]: [mcMMO] Disabling mcMMO v2.1.227
[01:10:11] [Server thread/INFO]: [mcMMO] Server shutdown has been executed, saving and cleaning up data...
[01:10:11] [Server thread/INFO]: [TAB] Disabling TAB v4.1.2
[01:10:11] [Server thread/INFO]: [TAB] Disabled in 1ms
[01:10:11] [Server thread/INFO]: [Multiverse-Inventories] Disabling Multiverse-Inventories v4.2.6
[01:10:11] [Server thread/INFO]: [Shopkeepers] Disabling Shopkeepers v2.19.0
[01:10:11] [Server thread/INFO]: [IP] Disabling IP v5.1.2
[01:10:11] [Server thread/INFO]: [Multiverse-Core] World 'witp' was unloaded from Multiverse.
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'witp'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'witp'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'witp'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'witp' in 0.00s
[01:10:11] [Server thread/INFO]: [Multiverse-Core] World 'witp' was unloaded from Bukkit.
[01:10:11] [Server thread/INFO]: [Multiverse-Core] World 'witp' was DELETED.
[01:10:11] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.10-SNAPSHOT+2260-c7319f1
[01:10:11] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[01:10:11] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[01:10:11] [Server thread/INFO]: [Essentials] Disabling Essentials v2.21.0-dev+25-fbfd7e9
[01:10:11] [Server thread/INFO]: [Vault] [Economy] Essentials Economy unhooked.
[01:10:11] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.2.19-SNAPSHOT+6624-3295242
[01:10:11] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[01:10:11] [Server thread/INFO]: [F3NPerm] Disabling F3NPerm v3.4
[01:10:11] [Server thread/INFO]: [F3NPerm] Plugin disabled!
[01:10:11] [Server thread/INFO]: [Vault] Disabling Vault v1.7.3-b131
[01:10:11] [Server thread/INFO]: [Geyser-Spigot] Disabling Geyser-Spigot v2.2.0-SNAPSHOT
[01:10:11] [Server thread/INFO]: [Geyser-Spigot] Shutting down Geyser.
[01:10:11] [Server thread/INFO]: [Geyser-Spigot] Geyser shutdown successfully.
[01:10:11] [Server thread/INFO]: [voicechat] Disabling voicechat v2.4.30
[01:10:11] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.116
[01:10:11] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[01:10:11] [Server thread/INFO]: [LuckPerms] Closing storage...
[01:10:11] [WebSocketConnectReadThread-201/INFO]: [Geyser-Spigot] The skin uploader has been closed
[01:10:11] [Server thread/INFO]: [LuckPerms] Goodbye!
[01:10:11] [Server thread/INFO]: [ViaBackwards] Disabling ViaBackwards v4.9.1
[01:10:11] [Server thread/INFO]: [floodgate] Disabling floodgate v2.2.2-SNAPSHOT (b88-94eabd7)
[01:10:11] [Server thread/INFO]: [AntiCurse] Disabling AntiCurse v4.0.0
[01:10:11] [Server thread/INFO]: [ViaVersion] Disabling ViaVersion v4.9.2
[01:10:11] [Server thread/INFO]: [ViaVersion] ViaVersion is disabling, if this is a reload and you experience issues consider rebooting.
[01:10:11] [Server thread/INFO]: [MoreMobHeads] Disabling MoreMobHeads v1.15_1.0.33
[01:10:11] [Server thread/INFO]: **************************************
[01:10:11] [Server thread/INFO]: MoreMobHeads v1.15_1.0.33 is Disabled
[01:10:11] [Server thread/INFO]: **************************************
[01:10:11] [Server thread/INFO]: [SimpleRTP] Disabling SimpleRTP v3.1
[01:10:11] [Server thread/INFO]: [NoMobGriefing] Disabling NoMobGriefing v3.0.3
[01:10:11] [Server thread/INFO]: [NoMobGriefing] ***NoMobGriefing plugin by PinkNeonDino has been disabled.***
[01:10:11] [Server thread/INFO]: [CommandHook] Disabling CommandHook v2.4.2
[01:10:11] [Server thread/INFO]: [ItemSwapperPlugin] Disabling ItemSwapperPlugin v0.2.1
[01:10:11] [Server thread/INFO]: [OpenInv] Disabling OpenInv v4.4.2
[01:10:11] [Server thread/INFO]: [Chunky] Disabling Chunky v1.3.92
[01:10:11] [Server thread/INFO]: [VoidGen] Disabling VoidGen v2.2.1
[01:10:11] [Server thread/INFO]: [vilib] Disabling vilib v1.2.0
[01:10:11] [Server thread/INFO]: Saving players
[01:10:11] [Server thread/INFO]: Saving worlds
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[SurvivalSpawnTwo]'/minecraft:overworld
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'SurvivalSpawnTwo'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'SurvivalSpawnTwo'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'SurvivalSpawnTwo'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 57 entity chunks, 0 poi chunks in world 'SurvivalSpawnTwo' in 0.01s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (SurvivalSpawnTwo): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[SurvivalSpawnTwo_nether]'/minecraft:the_nether
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'SurvivalSpawnTwo_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'SurvivalSpawnTwo_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'SurvivalSpawnTwo_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 16 entity chunks, 0 poi chunks in world 'SurvivalSpawnTwo_nether' in 0.00s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[SurvivalSpawnTwo_the_end]'/minecraft:the_end
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'SurvivalSpawnTwo_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'SurvivalSpawnTwo_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'SurvivalSpawnTwo_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'SurvivalSpawnTwo_the_end' in 0.02s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Aftertimes_nether]'/minecraft:aftertimes_nether
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Aftertimes_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Aftertimes_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Aftertimes_nether'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 75 entity chunks, 0 poi chunks in world 'Aftertimes_nether' in 0.01s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Aftertimes_the_end]'/minecraft:aftertimes_the_end
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Aftertimes_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Aftertimes_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Aftertimes_the_end'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 1 entity chunks, 0 poi chunks in world 'Aftertimes_the_end' in 0.00s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Villager]'/minecraft:villager
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Villager'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Villager'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Villager'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 52 entity chunks, 0 poi chunks in world 'Villager' in 0.01s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (Villager): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Worldedit]'/minecraft:worldedit
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Worldedit'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Worldedit'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Worldedit'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 38 entity chunks, 0 poi chunks in world 'Worldedit' in 0.00s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (Worldedit): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[TheDoofusDimension]'/minecraft:thedoofusdimension
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'TheDoofusDimension'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'TheDoofusDimension'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'TheDoofusDimension'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 59 entity chunks, 0 poi chunks in world 'TheDoofusDimension' in 0.01s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (TheDoofusDimension): All chunks are saved
[01:10:11] [Server thread/INFO]: Saving chunks for level 'ServerLevel[Aftertimes]'/minecraft:aftertimes
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'Aftertimes'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'Aftertimes'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'Aftertimes'
[01:10:11] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 82 entity chunks, 0 poi chunks in world 'Aftertimes' in 0.01s
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage (Aftertimes): All chunks are saved
[01:10:11] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved
[01:10:11] [Server thread/INFO]: Flushing Chunk IO
[01:10:11] [Server thread/INFO]: Closing Thread Pool
[01:10:11] [Server thread/INFO]: Closing Server