Paste #116939: Denizen problem

Date: 2023/10/30 05:18:17 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[09:12:30] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[09:12:32] [ServerMain/INFO]: Loaded 7 recipes
[09:12:33] [Server thread/INFO]: Starting minecraft server version 1.20.1
[09:12:33] [Server thread/INFO]: Loading properties
[09:12:33] [Server thread/INFO]: This server is running Pufferfish version git-Pufferfish-26 (MC: 1.20.1) (Implementing API version 1.20.1-R0.1-SNAPSHOT) (Git: 0020a8b on HEAD)
[09:12:33] [Server thread/INFO]: Server Ping Player Sample Count: 12
[09:12:33] [Server thread/INFO]: Using 4 threads for Netty based IO
[09:12:33] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads
[09:12:33] [Server thread/WARN]: [Pufferfish] SIMD operations are available for your server, but are not configured!
[09:12:33] [Server thread/WARN]: [Pufferfish] To enable additional optimizations, add "--add-modules=jdk.incubator.vector" to your startup flags, BEFORE the "-jar".
[09:12:33] [Server thread/WARN]: [Pufferfish] If you have already added this flag, then SIMD operations are not supported on your JVM or CPU.
[09:12:33] [Server thread/WARN]: [Pufferfish] Debug: Java: 17.0.8.1, test run: true
[09:12:33] [Server thread/INFO]: Default game type: SURVIVAL
[09:12:33] [Server thread/INFO]: Generating keypair
[09:12:33] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:10045
[09:12:33] [Server thread/INFO]: Using epoll channel type
[09:12:33] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[09:12:33] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loading 2 libraries... please wait
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-sync/4.8.1/mongodb-driver-sync-4.8.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson/4.8.1/bson-4.8.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/mongodb-driver-core/4.8.1/mongodb-driver-core-4.8.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/mongodb/bson-record-codec/4.8.1/bson-record-codec-4.8.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/redis/clients/jedis/4.3.1/jedis-4.3.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.36/slf4j-api-1.7.36.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/apache/commons/commons-pool2/2.11.1/commons-pool2-2.11.1.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/org/json/json/20220320/json-20220320.jar
[09:12:34] [Server thread/INFO]: [SpigotLibraryLoader] [Denizen] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.9/gson-2.8.9.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[09:12:35] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loading 3 libraries... please wait
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/zaxxer/HikariCP/4.0.3/HikariCP-4.0.3.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/slf4j/slf4j-api/2.0.0-alpha1/slf4j-api-2.0.0-alpha1.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/flywaydb/flyway-core/9.16.2/flyway-core-9.16.2.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/dataformat/jackson-dataformat-toml/2.14.0/jackson-dataformat-toml-2.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-databind/2.14.0/jackson-databind-2.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-annotations/2.14.0/jackson-annotations-2.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/fasterxml/jackson/core/jackson-core/2.14.0/jackson-core-2.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [EvenMoreFish] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar
[09:12:36] [Server thread/INFO]: [MarriageMaster] PCGF-PluginLib not installed. Switching to standalone mode!
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loading 37 libraries... please wait
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/commons/commons-text/1.10.0/commons-text-1.10.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/rollbar/rollbar-java/1.9.0/rollbar-java-1.9.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/rollbar/rollbar-api/1.9.0/rollbar-api-1.9.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-codec/commons-codec/1.15/commons-codec-1.15.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-hikaricp/0.4.7/easysql-hikaricp-0.4.7.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-impl/0.4.7/easysql-impl-0.4.7.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/cc/carm/lib/easysql-api/0.4.7/easysql-api-0.4.7.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/h2database/h2/2.1.214/h2-2.1.214.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/ghostchu/simplereloadlib/1.1.2/simplereloadlib-1.1.2.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/konghq/unirest-java/3.14.5/unirest-java-3.14.5.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpclient/4.5.13/httpclient-4.5.13.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore/4.4.13/httpcore-4.4.13.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-logging/commons-logging/1.2/commons-logging-1.2.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpmime/4.5.13/httpmime-4.5.13.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpcore-nio/4.4.13/httpcore-nio-4.4.13.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/apache/httpcomponents/httpasyncclient/4.1.5/httpasyncclient-4.1.5.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/github/juliomarcopineda/jdbc-stream/0.1.1/jdbc-stream-0.1.1.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/one/util/streamex/0.8.2/streamex-0.8.2.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/commons-lang/commons-lang/2.6/commons-lang-2.6.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/sourceforge/csvjdbc/csvjdbc/1.0.40/csvjdbc-1.0.40.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/dom4j/dom4j/2.1.4/dom4j-2.1.4.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/slf4j/slf4j-jdk14/2.0.7/slf4j-jdk14-2.0.7.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/vdurmont/semver4j/3.1.0/semver4j-3.1.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/ghostchu/crowdin/crowdinota/1.0.3/crowdinota-1.0.3.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/konghq/unirest-java/3.14.1/unirest-java-3.14.1-standalone.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/google/code/gson/gson/2.10.1/gson-2.10.1.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/jetbrains/annotations/24.0.1/annotations-24.0.1.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-key/4.14.0/adventure-key-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.14.0/adventure-nbt-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.0/adventure-platform-api-4.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.13.0/adventure-text-serializer-gson-4.13.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.0/adventure-platform-facet-4.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-serializer-configurate4/4.14.0/adventure-serializer-configurate4-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/spongepowered/configurate-core/4.1.2/configurate-core-4.1.2.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/io/leangen/geantyref/geantyref/1.3.11/geantyref-1.3.11.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.6.0/error_prone_annotations-2.6.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.12.0/checker-qual-3.12.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-logger-slf4j/4.14.0/adventure-text-logger-slf4j-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.14.0/adventure-text-serializer-ansi-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/ansi/1.0.0/ansi-1.0.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.14.0/adventure-text-serializer-gson-legacy-impl-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json-legacy-impl/4.14.0/adventure-text-serializer-json-legacy-impl-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[09:12:36] [Server thread/INFO]: [SpigotLibraryLoader] [QuickShop-Hikari] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[09:12:37] [Server thread/INFO]: [STDOUT] [hDSbAUnIkW4V]  Downloaded from https://directleaks.net 
[09:12:38] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.8.0
[09:12:38] [Server thread/INFO]: [ViaVersion] ViaVersion 4.8.0 is now loaded. Registering protocol transformers and injecting...
[09:12:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[09:12:38] [Server thread/INFO]: [ViaBackwards] Loading translations...
[09:12:38] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[09:12:38] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[09:12:38] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.102
[09:12:39] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b131
[09:12:39] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.7.2-SNAPSHOT-560;7b0f1b3
[09:12:41] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@6a5e73f6]
[09:12:41] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.1.0
[09:12:42] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.9+5934e49
[09:12:42] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.3
[09:12:42] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.32-SNAPSHOT (build 3208)
[09:12:42] [Server thread/INFO]: [ChestSort] Loading server plugin ChestSort v13.6.4
[09:12:42] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.11
[09:12:42] [Server thread/INFO]: [Denizen] Loading server plugin Denizen v1.2.9-SNAPSHOT (build 6910-DEV)
[09:12:42] [Server thread/INFO]: [Graves] Loading server plugin Graves v4.9
[09:12:43] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9+5934e49.
[09:12:43] [Server thread/INFO]: [SimpleClans] Loading server plugin SimpleClans v2.19.2-05e7abc
[09:12:43] [Server thread/INFO]: [DecentHolograms] Loading server plugin DecentHolograms v2.8.3
[09:12:43] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.8.0
[09:12:43] [Server thread/INFO]: [GriefPrevention] Loading server plugin GriefPrevention v16.18.1
[09:12:43] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA}
[09:12:43] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[09:12:43] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[09:12:43] [Server thread/INFO]: [PlayerPoints] Loading server plugin PlayerPoints v3.2.6
[09:12:43] [Server thread/INFO]: [Essentials] Loading server plugin Essentials v2.21.0-dev+18-fdf1875
[09:12:43] [Server thread/INFO]: [SilkSpawners_v2] Loading server plugin SilkSpawners_v2 v2.2.1
[09:12:43] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.14.1
[09:12:43] [Server thread/INFO]: [AureliumSkills] Loading server plugin AureliumSkills vBeta 1.3.23
[09:12:43] [Server thread/INFO]: [GriefDefender] Loading server plugin GriefDefender v2.4.3
[09:12:43] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.1
[09:12:43] [Server thread/INFO]: [SkinsRestorer] Loading server plugin SkinsRestorer v15.0.1
[09:12:43] [Server thread/INFO]: [nChat] Loading server plugin nChat v5.6.16
[09:12:44] [Server thread/INFO]: [MyPet] Loading server plugin MyPet v3.12
[09:12:44] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Error-Reporter ENABLED
[09:12:44] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.4.2.0
[09:12:44] [Server thread/INFO]: [WorldBorder] Loading server plugin WorldBorder v1.2
[09:12:44] [Server thread/INFO]: [AuctionMaster] Loading server plugin AuctionMaster v4.1.3
[09:12:44] [Server thread/INFO]: [XLTournaments] Loading server plugin XLTournaments v3.14.4
[09:12:44] [Server thread/INFO]: [EconomyShopGUI-Premium] Loading server plugin EconomyShopGUI-Premium v5.3.1
[09:12:44] [Server thread/INFO]: [MythicDungeons] Loading server plugin MythicDungeons v1.2.1F
[09:12:44] [Server thread/INFO]: [SimplePortals] Loading server plugin SimplePortals v1.7.4
[09:12:44] [Server thread/INFO]: [EvenMoreFish] Loading server plugin EvenMoreFish v1.6.11.3
[09:12:44] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.20.0
[09:12:44] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v3.3
[09:12:44] [Server thread/INFO]: [TradeSystem] Loading server plugin TradeSystem v2.5.1
[09:12:44] [Server thread/INFO]: [TerraformGenerator] Loading server plugin TerraformGenerator v11.0.0
[09:12:44] [Server thread/INFO]: [TAB] Loading server plugin TAB v4.0.4
[09:12:44] [Server thread/INFO]: [spark] Loading server plugin spark v1.10.34
[09:12:44] [Server thread/INFO]: [MarriageMaster] Loading server plugin MarriageMaster v2.7.1
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Loading server plugin QuickShop-Hikari v5.2.0.5
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Bootloader
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Bootloader preparing for startup, please stand by...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Initializing libraries...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Initialing Unirest...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Loading the Adventure Chat Processor...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure API loaded from: /home/container/libraries/net/kyori/adventure-api/4.14.0/adventure-api-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Bukkit Platform loaded from: /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.0/adventure-platform-bukkit-4.3.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Legacy) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.14.0/adventure-text-serializer-legacy-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Gson) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.14.0/adventure-text-serializer-gson-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Json) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-json/4.14.0/adventure-text-serializer-json-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (BungeeChat) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.0/adventure-text-serializer-bungeecord-4.3.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ViaVersion Facet) loaded from: /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.0/adventure-platform-viaversion-4.3.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (ANSI) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-ansi/4.14.0/adventure-text-serializer-ansi-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure Text Serializer (Plain) loaded from: /home/container/libraries/net/kyori/adventure-text-serializer-plain/4.14.0/adventure-text-serializer-plain-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Adventure MiniMessage Lib loaded from: /home/container/libraries/net/kyori/adventure-text-minimessage/4.14.0/adventure-text-minimessage-4.14.0.jar
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Initializing platform...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Platform detected: Paper
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Platform initialized: com.ghostchu.quickshop.platform.paper.PaperPlatform
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Boot QuickShop instance...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Creating QuickShop instance...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onLoad() to QuickShop instance...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Booting up
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Self testing...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Setting up privacy controller...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Setting up metrics manager...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Loading player name and unique id mapping...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Loading translations (This may take a while)...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Please wait us fetch the translation updates from Crowdin OTA service...
[09:12:44] [Server thread/INFO]: [CrowdinOTA] Downloading Crowdin distribution manifest from remote server...
[09:12:44] [Server thread/INFO]: [OTAFileInstance-0] Downloading translations for 0 locales...
[09:12:44] [Server thread/INFO]: [OTAFileInstance-1] Downloading translations for 0 locales...
[09:12:44] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[09:12:45] [Server thread/INFO]: [QuickShop-Hikari] Loading up translations from Crowdin OTA, this may need a while...
[09:12:46] [Server thread/INFO]: [QuickShop-Hikari] Register InventoryWrapper...
[09:12:46] [Server thread/INFO]: [QuickShop-Hikari] Initializing NexusManager...
[09:12:46] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari - Early boot step - Complete
[09:12:46] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onLoad() in Bootloader...
[09:12:46] [Server thread/INFO]: [QuickShop-Hikari] QuickShop-Hikari - Booting...
[09:12:46] [Server thread/INFO]: [Quests] Loading server plugin Quests v3.14.2-3345d07
[09:12:46] [Server thread/INFO]: [PvPManager] Loading server plugin PvPManager v3.15.8
[09:12:46] [Server thread/INFO]: [PlayerWarps] Loading server plugin PlayerWarps v6.29.0
[09:12:46] [Server thread/INFO]: [PlayerSettings] Loading server plugin PlayerSettings v6.3.4
[09:12:46] [Server thread/INFO]: [PinataParty] Loading server plugin PinataParty v2.62.4
[09:12:46] [Server thread/INFO]: [nLogin] Loading server plugin nLogin v10.2.29
[09:12:47] [Server thread/INFO]: [NextEconomy] Loading server plugin NextEconomy v2.2.0
[09:12:47] [Server thread/INFO]: [MyCommand] Loading server plugin MyCommand v5.7.4
[09:12:47] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.0.13
[09:12:47] [Server thread/INFO]: [Jobs] Loading server plugin Jobs v5.2.1.1
[09:12:47] [Server thread/INFO]: [HoloMobHealth] Loading server plugin HoloMobHealth v2.3.5.0
[09:12:47] [Server thread/INFO]: [HoloMobHealth] Registering WorldGuard State Flags...
[09:12:47] [Server thread/INFO]: [HeadDB] Loading server plugin HeadDB v5.0.0-rc.7
[09:12:47] [Server thread/INFO]: [GSit] Loading server plugin GSit v1.5.0
[09:12:47] [Server thread/INFO]: [GCore] Loading server plugin GCore v8.47.1
[09:12:47] [Server thread/INFO]: [EssentialsSpawn] Loading server plugin EssentialsSpawn v2.21.0-dev+18-fdf1875
[09:12:47] [Server thread/INFO]: [DeluxeTags] Loading server plugin DeluxeTags v1.8.2-Release
[09:12:47] [Server thread/INFO]: [DeluxeMenus] Loading server plugin DeluxeMenus v1.13.7-Release
[09:12:47] [Server thread/WARN]: [DeluxeMenus] Could not setup a NMS hook for your server version!
[09:12:47] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.3.92
[09:12:47] [Server thread/INFO]: [ChatItem] Loading server plugin ChatItem v2.4.9-SNAPSHOT
[09:12:47] [Server thread/INFO]: [BetterRTP] Loading server plugin BetterRTP v3.6.10
[09:12:47] [Server thread/INFO]: [AuctionMasterItemDisplay] Loading server plugin AuctionMasterItemDisplay v2.1
[09:12:47] [Server thread/INFO]: [AuctionHouse] Loading server plugin AuctionHouse v3.6
[09:12:47] [Server thread/INFO]: [aEventos] Loading server plugin aEventos v1.5.1
[09:12:47] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[09:12:47] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.102
[09:12:49] [Server thread/INFO]:         __    
[09:12:49] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.102
[09:12:49] [Server thread/INFO]:   |___ |      Running on Bukkit - Pufferfish
[09:12:49] [Server thread/INFO]: 
[09:12:49] [Server thread/INFO]: [LuckPerms] Loading configuration...
[09:12:50] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[09:12:52] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[09:12:53] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[09:12:54] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 6454ms)
[09:12:54] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[09:12:54] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[09:12:54] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[09:12:54] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[09:12:54] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[09:12:54] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.7.2-SNAPSHOT-560;7b0f1b3
[09:12:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[09:12:54] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[09:12:54] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[09:12:54] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[09:12:55] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_20_R1.PaperweightFaweAdapter as the Bukkit adapter
[09:12:56] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.1.0
[09:12:56] [Server thread/INFO]: [PlayerPoints] Enabling PlayerPoints v3.2.6
[09:12:56] [Server thread/INFO]: [PlayerPoints] Initializing using RoseGarden v1.2.5
[09:12:56] [Server thread/INFO]: [PlayerPoints] Data handler connected using SQLite.
[09:12:56] [Server thread/INFO]: [GriefDefender] Enabling GriefDefender v2.4.3
[09:12:56] [Server thread/INFO]: [GriefDefender] Loading libraries...
[09:12:56] [Thread-13/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 36 build(s) out of date.
You are running build 560, the latest version is build 596.
Update at https://www.spigotmc.org/resources/13932/
[09:12:58] [Server thread/INFO]: [GriefDefender] GriefDefender boot start.
[09:13:00] [Server thread/INFO]: [GriefDefender] Loading configuration...
[09:13:03] [Server thread/INFO]: [GriefDefender] Loading Flag Definition Presets...
[09:13:03] [Server thread/INFO]: [GriefDefender] Loading flag definitions from file 'minecraft.conf'...
[09:13:03] [Server thread/INFO]: [GriefDefender] Detected Vault. Initializing VaultProvider...
[09:13:04] [Server thread/INFO]: [GriefDefender] [ACF] Enabled Asynchronous Tab Completion Support!
[09:13:04] [Server thread/INFO]: [GriefDefender] Loaded successfully.
[09:13:04] [Server thread/INFO]: [SkinsRestorer] Enabling SkinsRestorer v15.0.1
[09:13:05] [Server thread/INFO]: [SkinsRestorer] Detected Minecraft v1_20_R1, using MappingSpigotSkinRefresher.
[09:13:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: skinsrestorer [15.0.1]
[09:13:05] [Server thread/INFO]: [SkinsRestorer] PlaceholderAPI expansion registered!
[09:13:05] [Server thread/INFO]: [SkinsRestorer] Using paper join listener!
[09:13:05] [Server thread/INFO]: [nChat] Enabling nChat v5.6.16
[09:13:06] [Server thread/INFO]: [nChat] Successful plugin core start (took 1.31s)
[09:13:06] [Server thread/INFO]:           ___ _           _   
[09:13:06] [Server thread/INFO]:   _ __   / __\ |__   __ _| |_ 
[09:13:06] [Server thread/INFO]:  | '_ \ / /  | '_ \ / _` | __|
[09:13:06] [Server thread/INFO]:  | | | / /___| | | | (_| | |_ 
[09:13:06] [Server thread/INFO]:  |_| |_\____/|_| |_|\__,_|\__|
[09:13:06] [Server thread/INFO]:                              
[09:13:06] [Server thread/INFO]:  By: www.nickuc.com - V 5.6.16
[09:13:06] [Server thread/INFO]: 
[09:13:07] [Server thread/INFO]: [TerraformGenerator] Enabling TerraformGenerator v11.0.0
[09:13:07] [Server thread/INFO]: [TerraformGenerator] Custom Logger Initialized
[09:13:07] [Server thread/INFO]: [TerraformGenerator] bStats Metrics enabled.
[09:13:07] [Server thread/INFO]: [TerraformGenerator] Detected version: v1_20_R1, number: 20.1
[09:13:07] [Server thread/INFO]: [nLogin] Enabling nLogin v10.2.29
[09:13:08] [Server thread/INFO]: [nLogin] Successful plugin core start (took 1.38s)
[09:13:08] [Server thread/INFO]:           __             _       
[09:13:09] [Server thread/INFO]:   _ __   / /  ___   __ _(_)_ __  
[09:13:09] [Server thread/INFO]:  | '_ \ / /  / _ \ / _` | | '_ \ 
[09:13:09] [Server thread/INFO]:  | | | / /__| (_) | (_| | | | | |
[09:13:09] [Server thread/INFO]:  |_| |_\____/\___/ \__, |_|_| |_|
[09:13:09] [Server thread/INFO]:                   |___/            
[09:13:09] [Server thread/INFO]:  By: www.nickuc.com - V 10.2.29 DEVELOPMENT
[09:13:09] [Server thread/INFO]:  
[09:13:10] [Server thread/INFO]: [NextEconomy] Enabling NextEconomy v2.2.0
[09:13:10] [Server thread/INFO]: [NextEconomy] Iniciando carregamento do plugin.
[09:13:10] [Server thread/INFO]: [NextEconomy] [NextUpdate] Você está usando a ultima versão: 2.2.0
[09:13:10] [Server thread/INFO]: [NextEconomy] Conexão com o banco de dados (SQLite) realizada com sucesso.
[09:13:10] [Server thread/WARN]: [NextEconomy] Recomendamos o uso do banco de dados MySQL.
[09:13:10] [Server thread/INFO]: [NextEconomy] DAO do plugin iniciado com sucesso.
[09:13:10] [Server thread/INFO]: [NextEconomy] Interações via chat registradas com sucesso.
[09:13:10] [Server thread/WARN]: [NextEconomy] Could not save messages.yml to plugins/NextEconomy/messages.yml because messages.yml already exists.
[09:13:10] [Server thread/WARN]: [NextEconomy] Could not save ranking.yml to plugins/NextEconomy/ranking.yml because ranking.yml already exists.
[09:13:10] [Server thread/WARN]: [NextEconomy] Could not save inventories.yml to plugins/NextEconomy/inventories.yml because inventories.yml already exists.
[09:13:10] [Server thread/WARN]: [NextEconomy] Could not save discord.yml to plugins/NextEconomy/discord.yml because discord.yml already exists.
[09:13:10] [Server thread/INFO]: [NextEconomy] Configurações registradas e injetadas com sucesso.
[09:13:10] [Server thread/INFO]: [NextEconomy] Comandos registrados com sucesso.
[09:13:10] [Server thread/INFO]: [NextEconomy] Associação com o 'Vault' realizada com sucesso.
[09:13:10] [Server thread/INFO]: [NextEconomy] Métrica de uso habilitada com sucesso.
[09:13:10] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_20_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[09:13:13] [Server thread/INFO]: [NextEconomy] Inventários registrados com sucesso
[09:13:13] [Server thread/INFO]: [NextEconomy] Plugin inicializado com sucesso. (3.493 s)
[09:13:13] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[09:13:13] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[09:13:13] [Server thread/WARN]: While this makes the game possible to play without internet access, it also opens up the ability for hackers to connect with any username they choose.
[09:13:13] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[09:13:13] [Server thread/INFO]: Preparing level "world"
[09:13:14] [Server thread/INFO]: [GriefDefender] [world] 0 total claims loaded.
[09:13:14] [Server thread/INFO]: [GriefDefender] Loading schematics for world world...
[09:13:14] [Server thread/INFO]: [GriefDefender] [world_nether] 0 total claims loaded.
[09:13:14] [Server thread/INFO]: [GriefDefender] Loading schematics for world world_nether...
[09:13:14] [Server thread/INFO]: [GriefDefender] [world_the_end] 0 total claims loaded.
[09:13:14] [Server thread/INFO]: [GriefDefender] Loading schematics for world world_the_end...
[09:13:14] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[09:13:14] [Server thread/INFO]: Time elapsed: 292 ms
[09:13:14] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[09:13:14] [Server thread/INFO]: Time elapsed: 89 ms
[09:13:14] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[09:13:14] [Server thread/INFO]: Time elapsed: 90 ms
[09:13:14] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.8.0
[09:13:14] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.20/1.20.1 (763)
[09:13:14] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.9+5934e49
[09:13:14] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[09:13:14] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[09:13:14] [Server thread/INFO]: [WorldGuard] Loading region data...
[09:13:15] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.3
[09:13:16] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[09:13:16] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.32-SNAPSHOT (build 3208)
[09:13:16] [Server thread/INFO]: [Citizens] Loading external libraries
[09:13:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[09:13:17] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[09:13:17] [Server thread/INFO]: [ChestSort] Enabling ChestSort v13.6.4
[09:13:17] [Server thread/INFO]: [ChestSort] Hooked into WorldGuard 7.0.9+5934e49
[09:13:17] [Server thread/INFO]: [ChestSort] Use permissions: true
[09:13:17] [Server thread/INFO]: [ChestSort] Current sorting method: {category},{itemsFirst},{name},{color},{customName}
[09:13:17] [Server thread/INFO]: [ChestSort] Allow automatic chest sorting:true
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Chest sorting enabled by default: false
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Sort time: close
[09:13:17] [Server thread/INFO]: [ChestSort] Allow automatic inventory sorting:true
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Inventory sorting enabled by default: false
[09:13:17] [Server thread/INFO]: [ChestSort] Auto generate category files: true
[09:13:17] [Server thread/INFO]: [ChestSort] Allow hotkeys: true
[09:13:17] [Server thread/INFO]: [ChestSort] Hotkeys enabled by default:
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Middle-Click: true
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Shift-Click: true
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Double-Click: true
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Shift-Right-Click: true
[09:13:17] [Server thread/INFO]: [ChestSort] Allow additional hotkeys: true
[09:13:17] [Server thread/INFO]: [ChestSort] Additional hotkeys enabled by default:
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Left-Click: false
[09:13:17] [Server thread/INFO]: [ChestSort]   |- Right-Click: false
[09:13:17] [Server thread/INFO]: [ChestSort] Check for updates: true
[09:13:17] [Server thread/INFO]: [ChestSort] Check interval: 4 hours (4.0 seconds)
[09:13:17] [Server thread/INFO]: [ChestSort] Categories: 900-weapons (6), 905-common-tools (4), 907-other-tools (6), 909-food (33), 910-valuables (47), 920-armor-and-arrows (9), 930-brewing (18), 950-redstone (23), 960-wood (60), 970-stone (38), 980-plants (50), 981-corals (1)
[09:13:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestsort [13.6.4]
[09:13:17] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.11
[09:13:17] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.11" 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--].
[09:13:17] [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.
[09:13:18] [Server thread/INFO]: [GriefDefender] [spawn] 0 total claims loaded.
[09:13:18] [Server thread/INFO]: [GriefDefender] Loading schematics for world spawn...
[09:13:18] [Server thread/INFO]: Preparing start region for dimension minecraft:spawn
[09:13:19] [Server thread/INFO]: Time elapsed: 959 ms
[09:13:19] [Server thread/INFO]: [WorldGuard] (spawn) TNT ignition is PERMITTED.
[09:13:19] [Server thread/INFO]: [WorldGuard] (spawn) Lighters are PERMITTED.
[09:13:19] [Server thread/INFO]: [WorldGuard] (spawn) Lava fire is PERMITTED.
[09:13:19] [Server thread/INFO]: [WorldGuard] (spawn) Fire spread is UNRESTRICTED.
[09:13:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'spawn'
[09:13:20] [Server thread/INFO]: [GriefDefender] [survival] 1 total claims loaded.
[09:13:20] [Server thread/INFO]: [GriefDefender] Loading schematics for world survival...
[09:13:20] [Server thread/INFO]: [TerraformGenerator] Detected world: survival, commencing injection... 
[09:13:20] [Server thread/INFO]: [TerraformGenerator] Injection success! Proceeding with generation.
[09:13:20] [Server thread/INFO]: Preparing start region for dimension minecraft:survival
[09:13:20] [Server thread/INFO]: Time elapsed: 375 ms
[09:13:20] [Server thread/INFO]: [TerraformGenerator] survival loaded.
[09:13:20] [Server thread/INFO]: [WorldGuard] (survival) TNT ignition is PERMITTED.
[09:13:20] [Server thread/INFO]: [WorldGuard] (survival) Lighters are PERMITTED.
[09:13:20] [Server thread/INFO]: [WorldGuard] (survival) Lava fire is PERMITTED.
[09:13:20] [Server thread/INFO]: [WorldGuard] (survival) Fire spread is UNRESTRICTED.
[09:13:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'survival'
[09:13:20] [Server thread/INFO]: [Multiverse-Core] 5 - World(s) loaded.
[09:13:20] [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.
[09:13:20] [Server thread/INFO]: [Multiverse-Core] Version 4.3.11 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[09:13:20] [Server thread/INFO]: [Denizen] Enabling Denizen v1.2.9-SNAPSHOT (build 6910-DEV)
[09:13:20] [Server thread/INFO]: +> [DenizenCore] Initializing Denizen Core v1.91.0-SNAPSHOT (Build 1360), impl for Spigot v1.2.9-SNAPSHOT (build 6910-DEV) 
[09:13:21] [Server thread/INFO]: +> [Denizen] Running on java version: 17.0.8.1 
[09:13:21] [Server thread/INFO]: +> [Denizen] Running on fully supported Java 17. 
[09:13:21] [Server thread/ERROR]: Error occurred while enabling Denizen v1.2.9-SNAPSHOT (build 6910-DEV) (Is it up to date?)
java.lang.NoClassDefFoundError: org/bukkit/craftbukkit/v1_20_R2/inventory/CraftInventoryCustom
    at com.denizenscript.denizen.nms.v1_20.Handler.<clinit>(Handler.java:265) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at java.lang.Class.forName0(Native Method) ~[?:?]
    at java.lang.Class.forName(Class.java:375) ~[?:?]
    at com.denizenscript.denizen.nms.NMSHandler.initialize(NMSHandler.java:55) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at com.denizenscript.denizen.Denizen.onEnable(Denizen.java:152) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:281) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:189) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:104) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:507) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugin(CraftServer.java:640) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.enablePlugins(CraftServer.java:551) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:637) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:436) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:310) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1102) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.ClassNotFoundException: org.bukkit.craftbukkit.v1_20_R2.inventory.CraftInventoryCustom
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:185) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:152) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    ... 17 more
[09:13:21] [Server thread/INFO]: [Denizen] Disabling Denizen v1.2.9-SNAPSHOT (build 6910-DEV)
[09:13:21] [Server thread/INFO]: [Graves] Enabling Graves v4.9
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into Vault 1.7.3-b131.
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into ProtocolLib 5.1.0.
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into FastAsyncWorldEdit 2.7.2-SNAPSHOT-560;7b0f1b3.
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into WorldGuard 7.0.9+5934e49.
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into MiniMessage.
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into ChestSort 13.6.4.
[09:13:21] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: graves [4.9]
[09:13:21] [Server thread/INFO]: [Graves] Integration: Hooked into PlaceholderAPI 2.11.3.
[09:13:21] [Server thread/INFO]: [Graves] Compatibility: World "spawn" has keepInventory set to true, Graves will not be created here.
[09:13:21] [Server thread/INFO]: [SimpleClans] Enabling SimpleClans v2.19.2-05e7abc
[09:13:21] [Server thread/INFO]: [SimpleClans] SQLite Connection successful
[09:13:21] [Server thread/INFO]: [SimpleClans] Clan players: 23
[09:13:21] [Server thread/INFO]: [SimpleClans] Registering 4 chat handlers...
[09:13:21] [Server thread/INFO]: [SimpleClans] [ACF] Enabled Asynchronous Tab Completion Support!
[09:13:21] [Server thread/INFO]: [SimpleClans] Registering 12 command contexts...
[09:13:22] [Server thread/INFO]: [SimpleClans] Registering 15 base commands...
[09:13:22] [Server thread/INFO]: [SimpleClans] Registering 32 command conditions...
[09:13:22] [Server thread/INFO]: [SimpleClans] Registering 19 command completions...
[09:13:22] [Server thread/INFO]: [SimpleClans] Multithreading: true
[09:13:22] [Server thread/INFO]: [SimpleClans] BungeeCord: false
[09:13:22] [Server thread/INFO]: [SimpleClans] HEX support: true
[09:13:22] [Server thread/INFO]: [SimpleClans] Help us translate SimpleClans to your language! Access https://crowdin.com/project/simpleclans/
[09:13:22] [Server thread/INFO]: [SimpleClans] PlaceholderAPI found. Registering hook...
[09:13:22] [Server thread/INFO]: [SimpleClans] Registering 7 placeholder resolvers...
[09:13:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: simpleclans [2.19.2-05e7abc]
[09:13:22] [Server thread/INFO]: [DecentHolograms] Enabling DecentHolograms v2.8.3
[09:13:22] [Server thread/INFO]: [DecentHolograms] Using ProtocolLib for packet listening.
[09:13:22] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.8.0
[09:13:22] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.18.1
[09:13:22] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[09:13:22] [Server thread/INFO]: [GriefPrevention] 6 total claims loaded.
[09:13:22] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[09:13:22] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[09:13:22] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[09:13:23] [Server thread/INFO]: [GriefPrevention] Boot finished.
[09:13:23] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.4.0-${CI_COMMIT_SHORT_SHA}
[09:13:23] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.20.1)...
[09:13:23] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[09:13:25] [Server thread/INFO]: [MythicMobs] Mythic GriefPrevention Support has been enabled!
[09:13:25] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mythic [5.0.0]
[09:13:25] [Server thread/INFO]: [MythicMobs] Mythic PlaceholderAPI Support has been enabled!
[09:13:25] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[09:13:25] [Server thread/INFO]: [MythicMobs] Mythic Vault Support has been enabled!
[09:13:25] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[09:13:25] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[09:13:25] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading Packs...
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading Items...
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading Skills...
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat ATTACK_SPEED from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat BONUS_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_DAMAGE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat CRITICAL_STRIKE_RESILIENCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_REDUCTION from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DEFENSE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DODGE_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat HEALTH_REGENERATION from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat LIFESTEAL_POWER from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat MOVEMENT_SPEED from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_CHANCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_NEGATION from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_POWER from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat PARRY_COUNTERATTACK from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_GENERIC from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat ARMOR_SHARP from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_BLUNT from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat DAMAGE_SHARP from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat FIRE_RESISTANCE from /home/container/plugins/MythicMobs/stats.yml
[09:13:28] [Server thread/INFO]: [MythicMobs] Loading stat SPEED from /home/container/plugins/MythicMobs/stats.yml
[09:13:29] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[09:13:29] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[09:13:29] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 14 mobs.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 69 skills.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 72 mythic items.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[09:13:29] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[09:13:29] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[09:13:29] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.4.0 ( build ${CI_COMMIT_SHORT_SHA} ) has been successfully loaded!
[09:13:29] [Server thread/INFO]: [Essentials] Enabling Essentials v2.21.0-dev+18-fdf1875
[09:13:29] [Server thread/ERROR]: [Essentials] You are running an unsupported server version!
[09:13:29] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[09:13:29] [Server thread/INFO]: [Essentials] No kits found to migrate.
[09:13:29] [Server thread/INFO]: [Essentials] Loaded 39094 items from items.json.
[09:13:29] [Server thread/INFO]: [Essentials] Using locale pt_BR
[09:13:29] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[09:13:30] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[09:13:30] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[09:13:30] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[09:13:30] [Server thread/INFO]: [SilkSpawners_v2] Enabling SilkSpawners_v2 v2.2.1
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting SilkSpawners v2.2.1
[09:13:30] [pool-72-thread-1/INFO]: [SilkSpawners] [INFO]: Checking for updates
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading Cross-Version support
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading support for NMS-Version v1_20_R1
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Loading locale file
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Starting metrics service. You can disable the collection of anonymous usage data by editing the config file under /plugins/bStats/
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering listeners
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Registering commands
[09:13:30] [Server thread/INFO]: [SilkSpawners] [INFO]: Started SilkSpawners v2.2.1
[09:13:30] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.14.1
[09:13:30] [pool-72-thread-1/INFO]: [SilkSpawners] [INFO]: The plugin is up to date (v2.2.1)
[09:13:30] [Server thread/WARN]: [VotingPlugin] Detected no voting sites, this may mean something isn't properly setup
[09:13:30] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[09:13:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: votingplugin [1.6]
[09:13:30] [Server thread/INFO]: [VotingPlugin] Loading PlaceholderAPI expansion
[09:13:31] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[09:13:31] [Server thread/WARN]: [VotingPlugin] No VotifierEvent found, install Votifier, NuVotifier, or another Votifier plugin
[09:13:31] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.14.1
[09:13:31] [Server thread/INFO]: [AureliumSkills] Enabling AureliumSkills vBeta 1.3.23
[09:13:31] [Server thread/INFO]: [AureliumSkills] WorldGuard Support Enabled!
[09:13:31] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aureliumskills [Beta 1.3.23]
[09:13:31] [Server thread/INFO]: [AureliumSkills] PlaceholderAPI Support Enabled!
[09:13:31] [Server thread/INFO]: [AureliumSkills] Vault Support Enabled!
[09:13:31] [Server thread/INFO]: [AureliumSkills] Loaded 194 config options in 1 ms
[09:13:31] [Server thread/INFO]: [AureliumSkills] Loaded 312 sources and 10 tags in 9ms
[09:13:31] [Server thread/INFO]: [AureliumSkills] [ACF] Enabled Asynchronous Tab Completion Support!
[09:13:31] [Server thread/INFO]: [AureliumSkills] Loading languages...
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 17 languages in 1294ms
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 30 pattern rewards and 0 level rewards
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 78 Ability Options in 2ms
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 6 menus
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 32 loot entries in 4 pools and 2 tables
[09:13:33] [Server thread/INFO]: [AureliumSkills] Loaded 3 blocked worlds.
[09:13:33] [Server thread/INFO]: [AureliumSkills] Aurelium Skills has been enabled
[09:13:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[09:13:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[09:13:33] [Server thread/INFO]: [NBTAPI] [NBTAPI] Using the plugin 'AureliumSkills' to create a bStats instance!
[09:13:33] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.1
[09:13:33] [Server thread/INFO]: [CoreProtect] CoreProtect agora está ativado! 
[09:13:33] [Server thread/INFO]: [CoreProtect] Usando SQLite para armazenamento de dados.
[09:13:33] [Server thread/INFO]: --------------------
[09:13:33] [Server thread/INFO]: [CoreProtect] Aproveitar CoreProtect? Junte-se ao nosso Discord!
[09:13:33] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[09:13:33] [Server thread/INFO]: --------------------
[09:13:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Enabling MyPet v3.12
[09:13:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] No Update available.
[09:13:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Custom entity registry found: net.citizensnpcs.nms.v1_20_R1.util.CustomEntityRegistry
[09:13:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Compat mode for v1_20_R1 loaded.
[09:13:33] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Exp calculation mode: MyPet
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Loading WorldGroups...
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world' to 'default'
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_nether' to 'default'
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'world_the_end' to 'default'
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'spawn' to 'default'
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet]    added 'survival' to 'default'
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Connect to SQLite database...
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] SQLite connection successful.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Citizens (2.0.32-SNAPSHOT (build 3208)) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] GriefPrevention (16.18.1) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] MythicMobs (5.4.0-${CI_COMMIT_SHORT_SHA}) hook activated.
[09:13:34] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mypet [1.0.4]
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] PlaceholderAPI (2.11.3) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] ProtocolLib (5.1.0) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] SimpleClans (2.19.2-05e7abc) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Vault (1.7.3-b131) (Economy: NextEconomy) (Permissions: LuckPerms) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] WorldGuard (7.0.9+5934e49) hook activated.
[09:13:34] [Server thread/INFO]: [de.Keyle.MyPet.MyPetPlugin] [MyPet] Version 3.12-SNAPSHOT-b1747 ENABLED
[09:13:34] [Server thread/INFO]: [CMILib] Enabling CMILib v1.4.2.0
[09:13:35] [Server thread/INFO]: Server version: v1_20_R1 - 1.20.1 - paper
[09:13:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.4.2.0]
[09:13:35] [Server thread/INFO]: PlaceholderAPI hooked.
[09:13:35] [Server thread/INFO]: Updated (EN) language file. Took 25ms
[09:13:35] [Server thread/INFO]: [WorldBorder] Enabling WorldBorder v1.2
[09:13:35] [Server thread/INFO]: [AuctionMaster] Enabling AuctionMaster v4.1.3
[09:13:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: auctionmaster [1.0.0]
[09:13:35] [Server thread/INFO]: [AuctionMaster] Succesfully connected to the Deliveries SQL.
[09:13:35] [Server thread/WARN]: [AuctionMaster] Auctions database is ready!
[09:13:35] [Server thread/WARN]: [AuctionMaster] AuctionLists database is ready!
[09:13:35] [Server thread/WARN]: [AuctionMaster] PreviewData database is ready!
[09:13:35] [Server thread/INFO]: [XLTournaments] Enabling XLTournaments v3.14.4
[09:13:35] [Server thread/INFO]: [XLTournaments] 
[09:13:35] [Server thread/INFO]: [XLTournaments] \/|      XLTournaments v3.14.4
[09:13:35] [Server thread/INFO]: [XLTournaments] /\|_     Author: [ItsLewizzz, ItzSave]
[09:13:35] [Server thread/INFO]: [XLTournaments]          Copyright (c) Zithium Studios 2023. All Rights Reserved.
[09:13:35] [Server thread/INFO]: [XLTournaments] 
[09:13:35] [Server thread/INFO]: [XLTournaments] Loading plugin..
[09:13:35] [Server thread/INFO]: [XLTournaments] Loading bstats metrics.
[09:13:35] [Server thread/INFO]: [XLTournaments] Metrics are disabled.
[09:13:35] [Server thread/INFO]: [XLTournaments] Hooked into Vault
[09:13:35] [Server thread/INFO]: [XLTournaments] 
[09:13:35] [Server thread/INFO]: [EconomyShopGUI-Premium] Enabling EconomyShopGUI-Premium v5.3.1
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using lang-en.yml as language file.
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 18 section configs from /sections/
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 18 shop configs from /shops/
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Updating Shop settings...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Using minecraft version 1.20.1...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Successfully hooked into Vault
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Completed loading 1 economy provider(s) for all 16 shop sections.
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider set to DISABLED in config
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Spawner provider disabled in config, disabling...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Enabled PlaceholderAPI hook...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Debug mode is enabled.
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading item stock provider...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading limited selling provider...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading DynamicPricing provider...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Loading all items...
[09:13:36] [Server thread/INFO]: [EconomyShopGUI-Premium] [INFO]: Initialized - Took 451ms to complete
[09:13:36] [Server thread/INFO]: [MythicDungeons] Enabling MythicDungeons v1.2.1F
[09:13:36] [Server thread/INFO]: [DungeonParties] Loading server plugin DungeonParties v1.0-SNAPSHOT
[09:13:36] [Server thread/INFO]: [DungeonParties] Enabling DungeonParties v1.0-SNAPSHOT
[09:13:36] [Server thread/INFO]: [MythicDungeons] DungeonParties plugin found! Enabled party support.
[09:13:36] [Server thread/INFO]: [MythicDungeons] MythicMobs plugin found! Enabled MythicMobs support.
[09:13:36] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: md [1.2.1F]
[09:13:37] [Server thread/INFO]: [MythicDungeons] * Loaded 30 functions.
[09:13:37] [Server thread/INFO]: [MythicDungeons] * Loaded 13 triggers.
[09:13:37] [Server thread/INFO]: [MythicDungeons] * Loaded 4 conditions.
[09:13:37] [Server thread/INFO]: [MythicDungeons] GUI menus initialized!
[09:13:37] [Server thread/INFO]: [MythicDungeons] Mythic Dungeons v1.2.1F initialized! Happy dungeon-ing!
[09:13:37] [Server thread/INFO]: [SimplePortals] Enabling SimplePortals v1.7.4
[09:13:37] [Server thread/INFO]: [SimplePortals] Everything inside the configuration seems to be up to date. (Took 1ms)
[09:13:37] [Server thread/INFO]: [SimplePortals] Packets have been setup for v1_20_R1!
[09:13:37] [Server thread/INFO]: [SimplePortals] Everything looks like it is up to date!
[09:13:37] [Server thread/INFO]: [EvenMoreFish] Enabling EvenMoreFish v1.6.11.3
[09:13:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_20_R1! Trying to find NMS support
[09:13:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_20_R1' loaded!
[09:13:37] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[09:13:37] [Server thread/ERROR]: [EvenMoreFish] Legendario is not a loaded rarity value. It was not added to the Fresh Water bait.
[09:13:37] [Server thread/ERROR]: [EvenMoreFish] Legendario is not a loaded rarity value. It was not added to the Stringy Worms bait.
[09:13:37] [Server thread/ERROR]: [EvenMoreFish] Legendario is not a loaded rarity value. It was not added to the Legendary Lure bait.
[09:13:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: emf [1.6.11.3]
[09:13:37] [Server thread/INFO]: [EvenMoreFish] EvenMoreFish by Oheers : Enabled
[09:13:37] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[09:13:37] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[09:13:37] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v3.3
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Checking for update...
[09:13:37] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Thanks for using UltraCosmetics! Version: 3.3-RELEASE (commit ef23128)
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Plugin by Datatags. Original Author: iSach
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Link: https://bit.ly/UltraCosmetics
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_20 (expected version: 1.20.1)
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Entity registry is not vanilla, skipping unfreeze and refreeze
[09:13:37] [Server thread/INFO]: [UltraCosmetics] Loaded NMS support
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/WARN]: [UltraCosmetics] Morphs require Lib's Disguises, but it is not installed. Morphs will be disabled.
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultracosmetics [3.3]
[09:13:43] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[09:13:43] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [UltraCosmetics] Hooked into Vault:NextEconomy for economy.
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [UltraCosmetics] Hooked into ChestSort
[09:13:43] [Server thread/INFO]: [UltraCosmetics] 
[09:13:43] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading in 5697ms!
[09:13:43] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[09:13:43] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v2.5.1
[09:13:43] [Server thread/INFO]: [TradeSystem] Could not detect server type "Pufferfish".
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: __________________________________________________________
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]:                        TradeSystem [2.5.1]
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: Status:
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: MC-Version: 1.20.1 (R0.1-SNAPSHOT, Unknown)
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem [1.2]
[09:13:43] [Server thread/INFO]:   > Loading sounds
[09:13:43] [Server thread/INFO]:   > Loading blacklist
[09:13:43] [Server thread/INFO]:     ...got 3 blocked item(s)
[09:13:43] [Server thread/INFO]:   > Loading layouts
[09:13:43] [Server thread/INFO]:     ...got 4 layout(s)
[09:13:43] [Server thread/INFO]:   > Queuing database initializing task
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: Finished (162ms)
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: __________________________________________________________
[09:13:43] [Server thread/INFO]:  
[09:13:43] [Server thread/INFO]: [TAB] Enabling TAB v4.0.4
[09:13:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab [4.0.4]
[09:13:43] [Server thread/INFO]: [TAB] Enabled in 138ms
[09:13:43] [Server thread/INFO]: [spark] Enabling spark v1.10.34
[09:13:43] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[09:13:44] [Server thread/INFO]: [spark] Starting background profiler...
[09:13:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.10.34]
[09:13:44] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[09:13:44] [Server thread/INFO]: [MarriageMaster] Enabling MarriageMaster v2.7.1
[09:13:44] [Server thread/INFO]: [MarriageMaster] Starting Marriage Master in standalone mode!
[09:13:44] [Server thread/INFO]: [MarriageMaster] Config file successfully loaded.
[09:13:44] [Server thread/INFO]: [MarriageMaster] No compatible backpack plugin found.
[09:13:44] [Server thread/INFO]: [MarriageMaster] Language file successfully loaded. Language: English  Author: GeorgH93
[09:13:44] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Starting...
[09:13:44] [Server thread/INFO]: [at.pcgamingfreaks.MarriageMasterStandalone.libs.com.zaxxer.hikari.HikariDataSource] MarriageMaster-Connection-Pool - Start completed.
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Loading marriages ...
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Marriages loaded
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Loading priests ...
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Priests loaded
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Loading players ...
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Players loaded
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Writing marriages into cache ...
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Marriages loaded into cache
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Loading homes ...
[09:13:44] [Thread-28/INFO]: [MarriageMaster] Homes loaded
[09:13:44] [Server thread/INFO]: [MarriageMaster] Item name language file successfully loaded. Language: english  Author: GeorgH93
[09:13:44] [Server thread/INFO]: [MarriageMaster] Loading item translations ...
[09:13:44] [Server thread/INFO]: [MarriageMaster] Finished loading item translations for 828 items.
[09:13:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: marriagemaster [2.7.1]
[09:13:44] [Server thread/INFO]: [MarriageMaster] PlaceholderAPI hook was successfully registered!
[09:13:44] [Server thread/INFO]: [MarriageMaster]  Marriage Master has been enabled!  :) 
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Enabling QuickShop-Hikari v5.2.0.5
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Forwarding onEnable() to QuickShop instance...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Hikari
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Registering Bukkit Service: com.ghostchu.quickshop.api.QuickShopProvider
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Starting plugin self-test, please wait...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] Spigot Based Server Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] Old QuickShop Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Based Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] ModdedServer Database Driver Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] CoreSupport Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] ProtocolLib Incorrect Locate Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] GameVersion supporting Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] Permission Manager Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] PacketListenerAPI Conflict Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] Reremake Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [OK] End of life Test
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Reading the configuration...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] [ConfigUpdater] Saving configuration changes...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Developers: Ghost_chu, PotatoCraft Studio, Netherfoam, Timtower, KaiNoMood (KaiKikuchi), sandtechnology, jho5245, cakoyo, Andre601, Ectabro, Chris6ix, portlek, log4b0at, deadman96385, tiararinne, DoctaEnkoda, CarmJos, YuanYuanOwO, Mgazul, mart-r, Tim269, raphtaliapt, creatorfromhell, LoneDev6, Steven-OS, confuxeon, ibmibmibm, judgetread, mfnalex, Warriorrrr, PyvesB, yannicklamprecht, ORelio, RMSCA, Starmism, yiwenwang2090, PaulBGD, Nlkomaru, harry0198, Draesia, Localized community members on Crowdin
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Original author: Netherfoam, Timtower, KaiNoMood, sandtechnology
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Let's start loading the plugin
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Using Virtual Item display, loading ProtocolLib support...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded ProtocolLib support!
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Setting up database...
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Create database backup...
[09:13:44] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Starting...
[09:13:44] [Server thread/INFO]: [cc.carm.lib.easysql.hikari.HikariDataSource] HikariPool-1 - Start completed.
[09:13:44] [Server thread/INFO]: [QuickShop-Hikari] Checking and updating database columns, it may take a while...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Finished!
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Selected permission provider: Bukkit
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Registering commands...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Loaded 1 rules for listener blacklist.
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] EventManager selected: QSEventManager
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops from database...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Used 3ms to fetch 0 shops from database.
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Loading shops into memory...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Used 0ms to load 0 shops into memory (0 shops will be loaded after chunks/world loaded).
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Registering listeners...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Cleaning MsgUtils...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Cleaning purchase messages from the database that are over a week old...
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Log actions is enabled. Actions will be logged in the qs.log file!
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] [Shop Purger] Purge not enabled!
[09:13:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: qs [5.2.0.5]
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Successfully loaded PlaceHolderAPI support!
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] [OK] Virtual DisplayItem Support Test
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] QuickShop Loaded! 649 ms.
[09:13:45] [Server thread/INFO]: [QuickShop-Hikari] Finishing up onEnable() in Bootloader...
[09:13:45] [Server thread/INFO]: [Quests] Enabling Quests v3.14.2-3345d07
[09:13:45] [Server thread/INFO]: [Quests] Initialising storage provider 'yaml'
[09:13:45] [Server thread/INFO]: [Quests] Your server is running version 1.20
[09:13:45] [Server thread/INFO]: [Quests] Metrics started. This can be disabled at /plugins/bStats/config.yml.
[09:13:45] [Server thread/INFO]: [PvPManager] Enabling PvPManager v3.15.8
[09:13:45] [Server thread/INFO]: [PvPManager] Using player nametags: true
[09:13:45] [Server thread/INFO]: [PvPManager] Connected to SQLITE database successfully
[09:13:45] [Server thread/INFO]: [PvPManager] Players stored: 24
[09:13:45] [Server thread/INFO]: [PvPManager] WorldGuard Found! Enabling Support For WorldGuard Regions
[09:13:45] [Server thread/INFO]: [PvPManager] Essentials Found! Hooked successfully
[09:13:45] [Server thread/INFO]: [PvPManager] Vault Found! Using it for currency related features
[09:13:45] [Server thread/INFO]: [PvPManager] SimpleClans Found! Hooked successfully
[09:13:45] [Server thread/INFO]: [PvPManager] PlaceholderAPI Found! Hooked successfully
[09:13:45] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pvpmanager [3.15.8]
[09:13:45] [Server thread/WARN]: [PvPManager] GriefPrevention has been detected. GriefPrevention has some combat features without showing any feedback messages. Make sure to disable Punish Logout and set tag time to 0 seconds in GP config. Issues with those features often get wrongly blamed on PvPManager and cause conflicts due to the lack of GP feedback messages.
[09:13:45] [Server thread/INFO]: [PvPManager] PvPManager v3.15.8 enabled (106 ms)
[09:13:45] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.29.0
[09:13:45] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[09:13:46] [Server thread/INFO]: [PlayerWarps] Found 22 config files to load!
[09:13:46] [Server thread/INFO]: [PlayerWarps] Permissions plugin found! (LuckPerms)
[09:13:46] [Server thread/INFO]: [PlayerWarps] Economy plugin found! (NextEconomy)
[09:13:46] [Server thread/INFO]: [PlayerWarps] Chat plugin found! (LuckPerms)
[09:13:46] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI integrating support...
[09:13:46] [Server thread/INFO]: [PlayerWarps] Found Essentials Expansion integrating support...
[09:13:46] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[09:13:46] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[09:13:46] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[09:13:46] [Server thread/INFO]: [PlayerSettings] Enabling PlayerSettings v6.3.4
[09:13:46] [Server thread/INFO]: [PlayerSettings] Loading libraries...
[09:13:46] [Server thread/INFO]: [PlayerSettings] Loading configuration files...
[09:13:46] [Server thread/INFO]: [PlayerSettings] Connecting data manager...
[09:13:46] [Server thread/INFO]: [PlayerSettings] Loading internal managers...
[09:13:46] [Server thread/INFO]: [PlayerSettings] Registering service managers...
[09:13:46] [Server thread/INFO]: [PlayerSettings] Successfully loaded (took 68ms)
[09:13:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playersettings [6.3.4]
[09:13:46] [Server thread/INFO]: [PinataParty] Enabling PinataParty v2.62.4
[09:13:46] [Server thread/INFO]: [PinataParty] Registering hooks...
[09:13:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pinataparty [2.62.4]
[09:13:46] [Server thread/INFO]: [PinataParty] Hooked into PlaceholderAPI
[09:13:46] [Server thread/INFO]: [PinataParty] Votifier not found! Not enabling the voting system! Download and install it from https://www.spigotmc.org/resources/13449/
[09:13:46] [PvPManager Worker Thread - 0/INFO]: [PvPManager] Checking for updates...
[09:13:46] [Server thread/INFO]: [PinataParty] Hooked into Vault
[09:13:46] [Server thread/INFO]: [PinataParty] Registering commands...
[09:13:46] [Server thread/INFO]: [PinataParty] Registering listeners...
[09:13:46] [Server thread/INFO]: [PinataParty] Loading data...
[09:13:46] [Server thread/INFO]: [PinataParty] Starting tasks...
[09:13:46] [Server thread/INFO]: [PinataParty] Starting metrics...
[09:13:46] [Server thread/INFO]: [PinataParty] Plugin registered to 130515 | 613549603
[09:13:46] [Server thread/INFO]: [PinataParty] Done and enabled in 25.70ms
[09:13:46] [Server thread/INFO]: [MyCommand] Enabling MyCommand v5.7.4
[09:13:46] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-* MyCommand v.5.7.4*-=-=-=-=-=-=-=-=-=-*
[09:13:46] [Server thread/INFO]: | Hooked on Vault 1.7.3-b131
[09:13:46] [Server thread/INFO]: | Command file(s) found : 1
[09:13:46] [Server thread/INFO]: | Config : Ready.
[09:13:46] [Server thread/INFO]: | ProtocolLib found, features availables (SignMenu)
[09:13:46] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mycommand [1.0.0]
[09:13:46] [Server thread/INFO]: | Placeholder_API : Hooked, Ok.
[09:13:46] [Server thread/INFO]: | Custom commands loaded : 4
[09:13:46] [Server thread/INFO]: | You're running the latest version of MyCommand.
[09:13:46] [Server thread/INFO]: |          by emmerrei a.k.a. ivanfromitaly.           
[09:13:46] [Server thread/INFO]: *-=-=-=-=-=-=-=-=-=-*   Done!   *-=-=-=-=-=-=-=-=-=-=-*
[09:13:46] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.0.13
[09:13:46] [PvPManager Worker Thread - 0/INFO]: [PvPManager] No update found
[09:13:46] [Server thread/WARN]: [MiniMOTD] Could not load icon.png: image must be 64x64px
[09:13:47] [Server thread/INFO]: [Jobs] Enabling Jobs v5.2.1.1
[09:13:47] [Server thread/INFO]: ------------- Jobs -------------
[09:13:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.2.1.1]
[09:13:47] [Server thread/INFO]: PlaceholderAPI hooked.
[09:13:47] [Server thread/INFO]: Connected to database (SqLite)
[09:13:47] [Server thread/INFO]: Loaded 8 titles
[09:13:47] [Server thread/INFO]: Loaded 69 protected blocks timers
[09:13:47] [Server thread/INFO]: Loaded 1403 custom item names
[09:13:47] [Server thread/INFO]: Loaded 81 custom entity names
[09:13:47] [Server thread/INFO]: Loaded 2 custom MythicMobs names
[09:13:47] [Server thread/INFO]: Loaded 38 custom enchant names
[09:13:47] [Server thread/INFO]: Loaded 21 custom enchant names
[09:13:47] [Server thread/INFO]: Loaded 16 custom color names
[09:13:47] [Server thread/INFO]: Loaded 4 shop items
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Crafter
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Digger
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Fisherman
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Miner
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Farmer
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Weaponsmith
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Explorer
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Hunter
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Brewer
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Enchanter
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Builder
[09:13:47] [Server thread/INFO]: Loaded 1 quests for Woodcutter
[09:13:47] [Server thread/INFO]: Loaded 13 jobs
[09:13:47] [Server thread/INFO]: Loaded 0 boosted items
[09:13:47] [Server thread/INFO]: Loaded 19 furnace for reassigning.
[09:13:47] [Server thread/INFO]: Loaded 5 brewing for reassigning.
[09:13:47] [Jobs-DatabaseSaveTask/INFO]: Started database save task.
[09:13:47] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread.
[09:13:47] [Server thread/INFO]: Preloaded 24 players data in 0.01
[09:13:47] [Server thread/INFO]: MyPet detected.
[09:13:47] [Server thread/INFO]: WorldGuard detected.
[09:13:47] [Server thread/INFO]: MythicMobs 5.x detected.
[09:13:47] [Server thread/INFO]: [Jobs] MythicMobs was found - Enabling capabilities.
[09:13:47] [Server thread/INFO]: Loading explorer data
[09:13:47] [Server thread/INFO]: Loaded explorer data (5786) in 25 ms
[09:13:48] [Server thread/INFO]: Plugin has been enabled successfully.
[09:13:48] [Server thread/INFO]: ------------------------------------
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Enabling HoloMobHealth v2.3.5.0
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Loading languages...
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Hooked into Citizens!
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Hooked into MythicMobs!
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Hooked into MyPet!
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Hooked into PlaceholderAPI!
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Hooked into WorldGuard! (v7)
[09:13:48] [Server thread/INFO]: [HoloMobHealth] Opened Sqlite database successfully
[09:13:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: holomobhealth [1.0.0]
[09:13:48] [Server thread/INFO]: [HoloMobHealth] HoloMobHealth has been Enabled!
[09:13:48] [Server thread/INFO]: [HeadDB] Enabling HeadDB v5.0.0-rc.7
[09:13:48] [Server thread/INFO]: HeadDB >> [INFO]: Loading HeadDB - 5.0.0-rc.7
[09:13:48] [Server thread/INFO]: HeadDB >> [INFO]: Loaded 1 languages!
[09:13:48] [Server thread/INFO]: HeadDB >> [INFO]: Done!
[09:13:48] [Server thread/INFO]: [GSit] Enabling GSit v1.5.0
[09:13:48] [Server thread/INFO]: [GSit] O plugin foi ativado com sucesso.
[09:13:48] [Server thread/INFO]: [GSit] Conexão com  GriefPrevention feita com sucesso!
[09:13:48] [Server thread/INFO]: [GSit] Conexão com  PlaceholderAPI feita com sucesso!
[09:13:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gsit [1.5.0]
[09:13:48] [Server thread/INFO]: [GSit] Conexão com  WorldGuard feita com sucesso!
[09:13:48] [Server thread/INFO]: [GSit] Uma nova versão foi encontrada: 1.5.2!
[GSit] No momento a versão que está sendo executada é a: 1.5.0!
[GSit] A nova versão se encontra para download em:
[GSit] https://www.spigotmc.org/resources/62325
[09:13:48] [Server thread/INFO]: [GCore] Enabling GCore v8.47.1
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (config)
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v7 -> v8 (data)
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v8.4 -> v8.5
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v8.8 -> v8.9
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v8.23 -> v8.24
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v8.24 -> v8.25
[09:13:48] [Server thread/INFO]: [GCore-migration] Already processed v8.29 -> v8.30
[09:13:48] [Server thread/INFO]: [GCore-8.47.1] Found server version MC_1_20_R1
[09:13:48] [Server thread/INFO]: [GCore-8.47.1] Loading materials...
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Loading sounds...
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Loading particles...
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled currency VAULT
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled currency XP_LEVEL
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled currency XP
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled currency PLAYER_POINTS
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Loading texts...
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Text durationformatdays doesn't exist in default files (not even in en_US)
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Loaded 1 missing text from default lang for generic.yml : durationFormatDays
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled integration for Citizens
[09:13:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: gcore [1.0.0]
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled integration for PlaceholderAPI
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled integration for MythicMobs
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Initializing worker and caches
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Enabled NPC manager with ProtocolLib
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Registering integrations
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Initializing tasks and listeners
[09:13:49] [Server thread/INFO]: [GCore-8.47.1] Successfully enabled
[09:13:49] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.21.0-dev+18-fdf1875
[09:13:49] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[09:13:49] [Server thread/INFO]: [DeluxeTags] Enabling DeluxeTags v1.8.2-Release
[09:13:49] [Server thread/INFO]: [DeluxeTags] Using legacy hex colors format: &#aaFF00
[09:13:49] [Server thread/INFO]: [DeluxeTags] 54 tags loaded
[09:13:49] [Server thread/INFO]: [DeluxeTags] Loading DeluxeTags messages.yml
[09:13:49] [Server thread/INFO]: [DeluxeTags] PAPI Chat enabled. This means your chat plugin will use placeholders to fetch the tags!
[09:13:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxetags [1.8.2-Release]
[09:13:49] [Server thread/INFO]: [DeluxeTags] ----------------------------
[09:13:49] [Server thread/INFO]: [DeluxeTags]      DeluxeTags Updater
[09:13:49] [Server thread/INFO]: [DeluxeTags]  
[09:13:49] [Server thread/INFO]: [DeluxeTags] You are running 1.8.2-Release
[09:13:49] [Server thread/INFO]: [DeluxeTags] The latest version
[09:13:49] [Server thread/INFO]: [DeluxeTags] of DeluxeTags!
[09:13:49] [Server thread/INFO]: [DeluxeTags]  
[09:13:49] [Server thread/INFO]: [DeluxeTags] ----------------------------
[09:13:49] [Server thread/INFO]: [DeluxeMenus] Enabling DeluxeMenus v1.13.7-Release
[09:13:49] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into PlaceholderAPI!
[09:13:50] [Server thread/INFO]: [DeluxeMenus] 75 GUI menus loaded!
[09:13:50] [Server thread/INFO]: [DeluxeMenus] You are running the latest version of DeluxeMenus!
[09:13:50] [Server thread/INFO]: [DeluxeMenus] Successfully hooked into Vault!
[09:13:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: deluxemenus [1.13.7-Release]
[09:13:50] [Server thread/INFO]: [Chunky] Enabling Chunky v1.3.92
[09:13:50] [Server thread/INFO]: [ChatItem] Enabling ChatItem v2.4.9-SNAPSHOT
[09:13:50] [Server thread/INFO]: [ChatItem] Detected server version: v1_20
[09:13:50] [Server thread/INFO]: [ChatItem] The plugin ProtocolLib has been detected. Loading Protocollib support ...
[09:13:50] [Server thread/INFO]: [ChatItem] Loaded 2 getter for base components.
[09:13:50] [Server thread/INFO]: [ChatItem] Save method founded: b. Use ComponentBuilder's method.
[09:13:50] [Server thread/INFO]: [ChatItem] Manager automatically chosen: PacketEditing (packet), ChatListener (chat)
[09:13:50] [Server thread/INFO]: [ChatItem] Loaded translation for en_gb.
[09:13:50] [Server thread/INFO]: [BetterRTP] Enabling BetterRTP v3.6.10
[09:13:50] [Thread-39/INFO]: [ChatItem] A new version of ChatItem is available. Click here to download.
[09:13:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: betterrtp [3.6.10]
[09:13:50] [Server thread/INFO]: [AuctionMasterItemDisplay] Enabling AuctionMasterItemDisplay v2.1
[09:13:50] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v3.6
[09:13:50] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[09:13:50] [Server thread/INFO]: [AuctionHouse] Found locale file pt_br.json
[09:13:50] [Server thread/WARN]: [AuctionHouse] Warning! Locale file pt_br.json is not the latest version!
[09:13:50] [Server thread/WARN]: [AuctionHouse] File should be updated to include and missing translations
[09:13:50] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[09:13:50] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_20_R1
[09:13:50] [Server thread/ERROR]: [AuctionHouse] Error! This plugin only supports Spigot version 1.20.2!
[09:13:50] [Server thread/ERROR]: [AuctionHouse] Plugin will be disabled!
[09:13:50] [Server thread/INFO]: [AuctionHouse] Disabling AuctionHouse v3.6
[09:13:50] [Server thread/INFO]: [AuctionHouse] Saving auctions data
[09:13:50] [Server thread/INFO]: [aEventos] Enabling aEventos v1.5.1
[09:13:50] [Server thread/INFO]: [aEventos] Iniciando plugin...
[09:13:50] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aeventos [1.5.1]
[09:13:50] [Server thread/INFO]: [aEventos] Plugin iniciado com sucesso!
[09:13:50] [Server thread/WARN]: Could not register alias kit because it contains commands that do not exist: deluxemenus:kit
[09:13:51] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[09:13:51] [Server thread/INFO]: Running delayed init tasks
[09:13:51] [Craft Scheduler Thread - 6 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[09:13:51] [Craft Scheduler Thread - 4 - Essentials/INFO]: [Essentials] Buscando informações da versão...
[09:13:51] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loading holograms... 
[09:13:51] [Craft Scheduler Thread - 29 - QuickShop-Hikari/INFO]: [QuickShop-Hikari] Start to caching usernames (async)...
[09:13:51] [Craft Scheduler Thread - 31 - PlayerWarps/INFO]: [PlayerWarps] Loading player warps...
[09:13:51] [Craft Scheduler Thread - 27 - TradeSystem/INFO]: [TradeSystem] Database was started successfully.
[09:13:51] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] Checking for Updates ... 
[09:13:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[09:13:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[09:13:51] [Craft Scheduler Thread - 16 - DecentHolograms/INFO]: 
A newer version of DecentHolograms is available. Download it from: https://www.spigotmc.org/resources/96927/
[09:13:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefPreventionFeature] Plugin 'GriefPrevention' found. Using it now.
[09:13:51] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefPrevention'
[09:13:51] [Craft Scheduler Thread - 15 - DecentHolograms/INFO]: [DecentHolograms] Loaded 1 holograms!
[09:13:52] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.GriefDefenderFeature] Plugin 'GriefDefender' found. Using it now.
[09:13:52] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'GriefDefender'
[09:13:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerpoints [3.2.6]
[09:13:52] [Server thread/INFO]: [GriefDefender] Loading Global Snapshot Data...
[09:13:52] [Server thread/INFO]: [GriefDefender] Loading Admin Claim Group Data...
[09:13:52] [Server thread/INFO]: [GriefDefender] Checking for compatible economy plugin...
[09:13:52] [Server thread/INFO]: [GriefDefender] Found economy plugin 'EssentialsX Economy'. GriefDefender economy integration is now enabled.
[09:13:52] [Craft Scheduler Thread - 48 - Vault/INFO]: [Vault] No new version available
[09:13:52] [Craft Scheduler Thread - 28 - PinataParty/INFO]: [PinataParty] v2.63.1 is available! You are running v2.62.4!
[09:13:52] [Craft Scheduler Thread - 28 - PinataParty/INFO]: [PinataParty] Download it here: https://www.spigotmc.org/resources/59318/
[09:13:52] [Craft Scheduler Thread - 17 - CMILib/INFO]: New version of CMILib was detected. Please update it
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |   SkinsRestorer  |
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |------------------|
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     |  Standalone Mode |
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     +==================+
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     Current version: 15.0.1
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     Commit: dd0db07
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer]     This is the latest version!
[09:13:52] [Craft Scheduler Thread - 7 - SkinsRestorer/INFO]: [SkinsRestorer] ----------------------------------------------
[09:13:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: griefdefender [0.1]
[09:13:52] [Server thread/INFO]: [GriefDefender] PlaceholderAPI provider enabled!
[09:13:52] [Craft Scheduler Thread - 4 - Essentials/WARN]: [Essentials] Você está com 1 dev build(s) do EssentialsX desatualizado!
[09:13:52] [Craft Scheduler Thread - 4 - Essentials/WARN]: [Essentials] Baixe-a aqui: https://essentialsx.net/downloads.html
[09:13:52] [Server thread/INFO]: [SimpleClans] Registered WorldGuardProvider successfully
[09:13:52] [Server thread/WARN]: [SimpleClans] Error registering provider WorldGuard6Provider
[09:13:52] [Craft Scheduler Thread - 42 - aEventos/INFO]: [aEventos] Você está usando a última versão. (v1.5.1)
[09:13:52] [Server thread/INFO]: [SimpleClans] Registered GriefPreventionProvider successfully
[09:13:52] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[09:13:52] [Server thread/INFO]: [CoreProtect] WorldEdit registrando com sucesso inicializado.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BLOCK_BREAK.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BLOCK_PLACE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective ITEM_CRAFT.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYER_KILLS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective MOB_KILLS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYER_FISH.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective PLAYTIME.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective POTION_BREW.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CHATREACTION_WINS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective EZPRESTIGE_PRESTIGE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CRAZYCRATES_OPEN.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective NUVOTIFIER_VOTES.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CRACKSHOT_DAMAGE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CRAZYENVOY_OPEN.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CLUESCROLLS_CLUE_COMPLETE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective CLUESCROLLS_SCROLL_COMPLETE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective DUELS_WINS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective MYTHICMOBS_KILLS using MythicMobs plugin.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective MYTHICMOBS_KILLS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective RANDOMEVENTS_WINS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_BED_BREAK.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_KILLS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_FINAL_KILLS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_LEVEL_UP.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective BEDWARS1058_WINS.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI using PlaceholderAPI plugin.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective PLACEHOLDERAPI.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective GOLDENCRATES_OPEN.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_RECEIVE using Essentials plugin.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_RECEIVE.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_SPEND using Essentials plugin.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective ESSENTIALS_BALANCE_SPEND.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective EXCELLENTCRATES_OPEN.
[09:13:52] [Server thread/INFO]: [XLTournaments] Registered external objective XPRISON_RANKUP.
[09:13:52] [Server thread/INFO]: [XLTournaments] Loaded 12 tournament objectives (PLACEHOLDERAPI, PLAYTIME, MYTHICMOBS_KILLS, POTION_BREW, PLAYER_FISH, BLOCK_BREAK, ESSENTIALS_BALANCE_RECEIVE, MOB_KILLS, ITEM_CRAFT, BLOCK_PLACE, PLAYER_KILLS, ESSENTIALS_BALANCE_SPEND).
[09:13:52] [Server thread/INFO]: [XLTournaments] Loaded 'block_break_tournament' tournament.
[09:13:52] [Craft Scheduler Thread - 24 - UltraCosmetics/INFO]: [UltraCosmetics] New version available on Spigot: 3.4.1
[09:13:52] [Server thread/INFO]: [XLTournaments] Loaded 'item_craft_challenge_tournament' tournament.
[09:13:52] [Server thread/INFO]: [XLTournaments] Loaded 'player_kills_tournament' tournament.
[09:13:52] [Server thread/INFO]: [XLTournaments] Loaded 'mob_kills_tournament' tournament.
[09:13:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: xltournaments [3.14.4]
[09:13:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: quests [3.14.2-3345d07]
[09:13:52] [Craft Scheduler Thread - 34 - MiniMOTD/INFO]: [MiniMOTD] There is an update available for MiniMOTD!
[09:13:52] [Craft Scheduler Thread - 34 - MiniMOTD/INFO]: [MiniMOTD] This server is running version v2.0.13, which is 1 versions outdated.
[09:13:52] [Craft Scheduler Thread - 34 - MiniMOTD/INFO]: [MiniMOTD] Download the latest version, v2.0.14 from GitHub at the link below:
[09:13:52] [Craft Scheduler Thread - 34 - MiniMOTD/INFO]: [MiniMOTD] https://github.com/jpenilla/MiniMOTD/releases/tag/v2.0.14
[09:13:52] [Server thread/INFO]: [Quests] 38 task types have been registered.
[09:13:52] [Server thread/INFO]: [Quests] 0 quest items have been registered.
[09:13:53] [Thread-46/INFO]: --------------------
[09:13:53] [Thread-46/INFO]: [CoreProtect] Versão 22.2 está agora disponivel.
[09:13:53] [Thread-46/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[09:13:53] [Thread-46/INFO]: --------------------
[09:13:54] [Server thread/INFO]: [Quests] 1270 quests have been registered.
[09:13:54] [Server thread/WARN]: [Quests] You have configuration issues preventing some quests from loading.
[09:13:54] [Server thread/WARN]: [Quests] You can view these issues with the command: /q a config.
[09:13:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw [1.0.0]
[09:13:54] [Server thread/INFO]: [Jobs] Successfully linked with Vault. (NextEconomy)
[09:13:54] [Server thread/INFO]: [Citizens] Loaded 5 NPCs.
[09:13:54] [Craft Scheduler Thread - 6 - HoloMobHealth/INFO]: [HoloMobHealth] Loaded all 1 languages!
[09:13:54] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Mechanic CustomMechanic
[09:13:54] [Server thread/WARN]: [MythicMobs] --| Skill: SkeletonAttack_Fireflame | File: /home/container/plugins/MythicMobs/Packs/SandstoneCryptMMPack/Skills/Crypt_Skills_Mobs.yml
[09:13:54] [Server thread/WARN]: [MythicMobs] --| Error Message: Failed to load custom mechanic STATE
[09:13:54] [Server thread/WARN]: [MythicMobs] --| Mechanic Line: state{s=fireflame_ground;li=0;lo=0}
[09:13:54] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=_Skeleton;p=h_machoire;offset=local;y=0.5;x=0.1}': Failed to load custom targeter MODELPART
[09:13:54] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Targeter line 'ModelPart{m=_Skeleton;p=h_machoire;offset=local;y=0.5;x=<&da>0.1}': Failed to load custom targeter MODELPART
[09:13:54] [Server thread/INFO]: [QuickShop-Hikari] Using economy system: NextEconomy
[09:13:54] [Server thread/INFO]: [QuickShop-Hikari] Selected economy bridge: BuiltIn-Vault
[09:13:54] [Server thread/INFO]: [PlaceholderAPI] An update for PlaceholderAPI (v2.11.5) is available at:
[09:13:54] [Server thread/INFO]: [PlaceholderAPI] https://www.spigotmc.org/resources/placeholderapi.6245/
[09:13:54] [Server thread/INFO]: [PlayerSettings] Running version v6.3.4
[09:13:54] [Server thread/WARN]: [ViaVersion] There is a newer plugin version available: 4.8.1, you're on: 4.8.0
[09:13:54] [Server thread/INFO]: Done (81.641s)! For help, type "help"
[09:13:54] [Server thread/INFO]: Timings Reset
[09:13:56] [Server thread/WARN]: [MythicMobs] ✗ Configuration Error in Item SkeletonWeapon_Shield
[09:13:56] [Server thread/WARN]: [MythicMobs] --| File: /home/container/plugins/MythicMobs/Packs/SandstoneCryptMMPack/Items/Crypt_Items.yml
[09:13:56] [Server thread/WARN]: [MythicMobs] --| Error Message: The shield color is configured incorrectly, must use a color from the Bukkit DyeColor ENUM.
[09:13:57] [Server thread/INFO]: [nChat] [Vault] Chat provider detected: LuckPerms
[09:13:57] [Server thread/INFO]: [nChat] [Vault] Economy provider detected: NextEconomy
[09:13:57] [Server thread/INFO]: [nChat] [Vault] Permission provider detected: LuckPerms
[09:13:57] [Server thread/INFO]: [VotingPlugin] Successfully hooked into vault economy!
[09:13:57] [Server thread/INFO]: [VotingPlugin] Hooked into vault permissions
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: changeoutput [1.2.2]
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.2]
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.4-R2]
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.5]
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic [2.0.1]
[09:13:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[09:13:58] [Server thread/INFO]: 6 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[09:13:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: NextEconomy [2.2.0]
[09:13:59] [Server thread/INFO]: [NextEconomy] Placeholder registrada com sucesso!
[09:13:59] [Server thread/INFO]: [NextEconomy] Não foi encontrado nenhuma localização para gerar os NPCs!
[09:13:59] [Server thread/INFO]: [NextEconomy] Sistema de NPC e ArmorStand registrado com sucesso.
[09:13:59] [Server thread/INFO]: [NextEconomy] [Chat] Dependência 'nChat' sendo utilizada como plugin de Chat
[09:13:59] [Server thread/INFO]: [NextEconomy] Foram registrados 11 listeners com sucesso!
[09:13:59] [Server thread/INFO]: [NextEconomy] [Grupos] Integrado com sucesso com o plugin 'VaultGroupWrapper'
[09:13:59] [Server thread/WARN]: [NextEconomy] Dependência não encontrada (DiscordSRV) A integração com o discord não será usada.
[09:14:01] [Craft Scheduler Thread - 28 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin is up to date! Version: 6.14.1
[09:16:30] [User Authenticator #0/INFO]: UUID of player Vitagliano is 3f23e036-fe63-34d0-8f6d-2d81647f920d
[09:16:30] [Server thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[09:16:31] [Server thread/INFO]: Vitagliano[/131.196.77.145:40088] logged in with entity id 414 at ([spawn]-17.630094681315462, 135.0, 6.460296099505532)
[09:16:35] [Server thread/INFO]: [ChatItem] Loading ViaVersion support ...
[09:16:43] [Folia Async Scheduler Thread #2/INFO]: [nLogin] O usuário Vitagliano se autenticou com sucesso.
[09:16:56] [Server thread/INFO]: Vitagliano issued server command: /npc select
[09:16:59] [Server thread/INFO]: Vitagliano issued server command: /npc fish
[09:17:02] [Server thread/ERROR]: Exception when Vitagliano attempted to tab complete denizen 
org.bukkit.command.CommandException: Unhandled exception during tab completion for command '/denizen ' in plugin Denizen v1.2.9-SNAPSHOT (build 6910-DEV)
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:150) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.Command.tabComplete(Command.java:93) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.tabComplete(SimpleCommandMap.java:240) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.tabCompleteCommand(CraftServer.java:2444) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.tabComplete(CraftServer.java:2416) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.craftbukkit.v1_20_R1.command.BukkitCommandWrapper.getSuggestions(BukkitCommandWrapper.java:74) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at com.mojang.brigadier.tree.ArgumentCommandNode.listSuggestions(ArgumentCommandNode.java:71) ~[brigadier-1.1.8.jar:git-Pufferfish-26]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:602) ~[pufferfish-1.20.1.jar:?]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:582) ~[pufferfish-1.20.1.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleCustomCommandSuggestions$6(ServerGamePacketListenerImpl.java:922) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1340) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1317) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1310) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1288) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1176) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoClassDefFoundError: com/denizenscript/denizen/utilities/command/manager/CommandManager
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:589) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    ... 22 more
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.utilities.command.manager.CommandManager
    at org.bukkit.plugin.java.PluginClassLoader.loadClass0(PluginClassLoader.java:185) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.plugin.java.PluginClassLoader.loadClass(PluginClassLoader.java:152) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at java.lang.ClassLoader.loadClass(ClassLoader.java:525) ~[?:?]
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:589) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    ... 22 more
[09:17:05] [Server thread/ERROR]: Exception when Vitagliano attempted to tab complete denizen 
org.bukkit.command.CommandException: Unhandled exception during tab completion for command '/denizen ' in plugin Denizen v1.2.9-SNAPSHOT (build 6910-DEV)
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:150) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.Command.tabComplete(Command.java:93) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.command.SimpleCommandMap.tabComplete(SimpleCommandMap.java:240) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.tabCompleteCommand(CraftServer.java:2444) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.craftbukkit.v1_20_R1.CraftServer.tabComplete(CraftServer.java:2416) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at org.bukkit.craftbukkit.v1_20_R1.command.BukkitCommandWrapper.getSuggestions(BukkitCommandWrapper.java:74) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at com.mojang.brigadier.tree.ArgumentCommandNode.listSuggestions(ArgumentCommandNode.java:71) ~[brigadier-1.1.8.jar:git-Pufferfish-26]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:602) ~[pufferfish-1.20.1.jar:?]
    at com.mojang.brigadier.CommandDispatcher.getCompletionSuggestions(CommandDispatcher.java:582) ~[pufferfish-1.20.1.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleCustomCommandSuggestions$6(ServerGamePacketListenerImpl.java:922) ~[?:?]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:153) ~[?:?]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[?:?]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1340) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.d(MinecraftServer.java:197) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:126) ~[?:?]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1317) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1310) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:136) ~[?:?]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1288) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1176) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:319) ~[pufferfish-1.20.1.jar:git-Pufferfish-26]
    at java.lang.Thread.run(Thread.java:833) ~[?:?]
Caused by: java.lang.NoClassDefFoundError: com/denizenscript/denizen/utilities/command/manager/CommandManager
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:589) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    ... 22 more
Caused by: java.lang.ClassNotFoundException: com.denizenscript.denizen.utilities.command.manager.CommandManager
    at com.denizenscript.denizen.Denizen.onTabComplete(Denizen.java:589) ~[Denizen-1.2.9-b1798-REL.jar:?]
    at org.bukkit.command.PluginCommand.tabComplete(PluginCommand.java:141) ~[pufferfish-api-1.20.1-R0.1-SNAPSHOT.jar:?]
    ... 22 more
[09:17:10] [Server thread/INFO]: Vitagliano lost connection: Disconnected