Paste #76038: Untitled Paste

Date: 2020/09/27 16:40:00 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


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


[22:28:24] [Server thread/INFO]: Starting minecraft server version 1.12.2
[22:28:24] [Server thread/INFO]: Loading properties
[22:28:24] [Server thread/INFO]: Default game type: SURVIVAL
[22:28:24] [Server thread/INFO]: This server is running CraftBukkit version git-Spigot-79a30d7-acbc348 (MC: 1.12.2) (Implementing API version 1.12.2-R0.1-SNAPSHOT)
[22:28:24] [Server thread/INFO]: Server Ping Player Sample Count: 12
[22:28:25] [Server thread/INFO]: Using 4 threads for Netty based IO
[22:28:25] [Server thread/INFO]: Debug logging is disabled
[22:28:25] [Server thread/INFO]: Generating keypair
[22:28:25] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[22:28:25] [Server thread/INFO]: Using epoll channel type
[22:28:25] [Server thread/INFO]: Set PluginClassLoader as parallel capable
[22:28:28] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.9
[22:28:28] [Server thread/INFO]: [PlugMan] Loading PlugMan v2.1.6
[22:28:28] [Server thread/INFO]: [ConsoleSpamFix] Loading ConsoleSpamFix v1.8.3
[22:28:28] [Server thread/INFO]: [OldCombatMechanics] Loading OldCombatMechanics v1.8.1
[22:28:28] [Server thread/INFO]: [AdvancedCraftingTable] Loading AdvancedCraftingTable v0.3.2
[22:28:28] [Server thread/INFO]: [LagMonitor] Loading LagMonitor v1.17
[22:28:28] [Server thread/INFO]: [ViaVersion] Loading ViaVersion v3.1.1
[22:28:29] [Server thread/INFO]: [ViaVersion] ViaVersion 3.1.1 is now loaded, injecting!
[22:28:29] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12.2 -> 1.13 mappings...
[22:28:29] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[22:28:29] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.14.4 -> 1.15 mappings...
[22:28:29] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[22:28:29] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.16.1 -> 1.16.2 mappings...
[22:28:29] [Server thread/INFO]: [NBTAPI] Loading NBTAPI v2.5.0
[22:28:29] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_12_R1! Trying to find NMS support
[22:28:29] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_12_R1' loaded!
[22:28:29] [Server thread/INFO]: [NBTAPI] Found Gson: class com.google.gson.Gson
[22:28:29] [Server thread/INFO]: [NBTAPI] Using the plugin 'PlaceholderAPI' to create a bStats instance!
[22:28:29] [Server thread/INFO]: [ViaBackwards] Loading ViaBackwards v3.1.1
[22:28:29] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v2.14.4
[22:28:29] [Server thread/INFO]: [ClearLag] Loading ClearLag v3.1.6
[22:28:29] [Server thread/INFO]: [IllegalStack] Loading IllegalStack v2.2.0d
[22:28:29] [Server thread/INFO]: [BuycraftX] Loading BuycraftX v12.0.6
[22:28:29] [Server thread/INFO]: [Votifier] Loading Votifier v2.7.1
[22:28:29] [Server thread/INFO]: [VotingPlugin] Loading VotingPlugin v5.13.6
[22:28:29] [Server thread/INFO]: [SignEdit] Loading SignEdit v1.12.3
[22:28:29] [Server thread/INFO]: [FastAsyncWorldEdit] Loading FastAsyncWorldEdit v19.11.13-5505943-1282-22.3.5
[22:28:29] [Server thread/INFO]: [PixelPrinter] Loading PixelPrinter v1.0.47
[22:28:29] [Server thread/INFO]: [BlocksHub] Loading BlocksHub v2.1.1
[22:28:29] [Server thread/INFO]: [PermissionsEx] Loading PermissionsEx v1.34.0-b1
[22:28:29] [Server thread/INFO]: [floodgate-bukkit] Loading floodgate-bukkit v1.0-SNAPSHOT
[22:28:30] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[22:28:30] [Server thread/INFO]: [floodgate-bukkit] Loading Floodgate linked player database...
[22:28:31] [Thread-7/INFO]: [NBTAPI] The NBT-API seems to be up-to-date!
[22:28:31] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[22:28:31] [Server thread/INFO]: [MoneyNote] Loading MoneyNote v1.3.2
[22:28:31] [Server thread/INFO]: [ViaRewind] Loading ViaRewind v1.5.1
[22:28:31] [Server thread/INFO]: [FastAsyncVoxelSniper] Loading FastAsyncVoxelSniper v19.11.13-5505943-1282-22.3.5
[22:28:31] [Server thread/INFO]: [RankGrant+] Loading RankGrantPlus v3.7.1
[22:28:31] [Server thread/INFO]: [SimpleShop] Loading SimpleShop v3.0.5
[22:28:31] [Server thread/INFO]: [PerWorldInventory] Loading PerWorldInventory v2.2.1-legacy
[22:28:31] [Server thread/INFO]: [AuctionHouse] Loading AuctionHouse v2.1.5
[22:28:31] [Server thread/INFO]: [CustomHeads] Loading CustomHeads v3.0.2
[22:28:31] [Server thread/INFO]: [VoxelSniper] Loading VoxelSniper v5.172.0-SNAPSHOT
[22:28:31] [Server thread/INFO]: [PlayerVaults] Loading PlayerVaults v4.1.8
[22:28:31] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser-Spigot v1.1.0
[22:28:31] [Server thread/INFO]: [dynmap] Loading dynmap v3.1-beta3a-409
[22:28:31] [Server thread/INFO]: [dynmap] version=git-Spigot-79a30d7-acbc348 (MC: 1.12.2)
[22:28:31] [Server thread/INFO]: [dynmap] Mod Support API available
[22:28:31] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v6.1.7;dd00bb1
[22:28:31] [Server thread/INFO]: [AdvancedBan] Loading AdvancedBan v2.2.1
[22:28:31] [Server thread/INFO]: [BountyHunters] Loading BountyHunters v2.2.6
[22:28:31] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.27-SNAPSHOT (build 2113)
[22:28:31] [Server thread/INFO]: [PlotSquared] Loading PlotSquared v20.01.24-62a9a22-793
[22:28:31] [Server thread/INFO]: [CrazyCrates] Loading CrazyCrates v1.10-RELEASE
[22:28:31] [Server thread/INFO]: [BKCommonLib] Loading BKCommonLib v1.16.3-v1
[22:28:37] [Server thread/INFO]: [LightCleaner] Loading LightCleaner v1.16.3-v1
[22:28:37] [Server thread/INFO]: [JumpPads] Loading JumpPads v1.24.20
[22:28:37] [Server thread/INFO]: [HolographicDisplays] Loading HolographicDisplays v2.4.4
[22:28:37] [Server thread/INFO]: [UltimateClaims] Loading UltimateClaims v1.2.9
[22:28:37] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v6.2.2-SNAPSHOT;8eeab68
[22:28:37] [Server thread/INFO]: [Skript] Loading Skript v2.5-beta4
[22:28:37] [Server thread/INFO]: [SkQuery] Loading SkQuery v4.1.3
[22:28:37] [Server thread/INFO]: [SkStuff] Loading SkStuff v1.6.4.1
[22:28:37] [Server thread/INFO]: [Skellett] Loading Skellett v1.9.9
[22:28:37] [Server thread/INFO]: [MundoSK] Loading MundoSK v1.8.6-BETA.58
[22:28:37] [Server thread/INFO]: [skript-placeholders] Loading skript-placeholders v1.3.1
[22:28:37] [Server thread/INFO]: [skUtilities] Loading skUtilities v0.9.2
[22:28:37] [Server thread/INFO]: [Vixio] Loading Vixio v2.0.4
[22:28:37] [Server thread/INFO]: [TuSKe] Loading TuSKe v1.8.2-Pikachu-Patch-3
[22:28:37] [Server thread/INFO]: [SignShop] Loading SignShop v2.11.2
[22:28:37] [Server thread/INFO]: [Factions] Loading Factions v1.6.9.5-2.4.8-STABLE
[22:28:37] [Server thread/INFO]: [CrazyEnchantments] Loading CrazyEnchantments v1.7.9.4
[22:28:37] [Server thread/INFO]: [skRayFall] Loading skRayFall v1.9.22
[22:28:37] [Server thread/INFO]: [Images] Loading Images v2.1.4
[22:28:37] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v4.10.0-SNAPSHOT-SNAPSHOT
[22:28:37] [Server thread/INFO]: [ActionHealth] Loading ActionHealth v3.4.6
[22:28:37] [Server thread/INFO]: [Duels] Loading Duels v3.4.0
[22:28:37] [Server thread/INFO]: [AntiVPN] Loading AntiVPN v5.11.37
[22:28:38] [Server thread/INFO]: [Anti-VPN] Checking version of ACF
[22:28:38] [Server thread/INFO]: [Anti-VPN] Checking version of SQLite
[22:28:38] [Server thread/INFO]: [Anti-VPN] Checking version of MySQL
[22:28:42] [Server thread/INFO]: ====================================
[22:28:42] [Server thread/INFO]: Anti-VPN runs better on Paper!
[22:28:42] [Server thread/INFO]: https://whypaper.emc.gs/
[22:28:42] [Server thread/INFO]: ====================================
[22:28:42] [Server thread/INFO]: [TitleManager] Loading TitleManager v2.3.0
[22:28:42] [Server thread/INFO]: [MyPet] Loading MyPet v3.1
[22:28:42] [Server thread/INFO]: [MyPet] Error-Reporter ENABLED
[22:28:42] [Server thread/INFO]: [Essentials] Loading Essentials v2.18.1.0
[22:28:42] [Server thread/INFO]: [EssentialsGeoIP] Loading EssentialsGeoIP v2.18.1.0
[22:28:42] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.18.1.0
[22:28:42] [Server thread/INFO]: [TradeSystem] Loading TradeSystem v1.2.1
[22:28:42] [Server thread/INFO]: [AdvancedAchievements] Loading AdvancedAchievements v6.3.1
[22:28:42] [Server thread/INFO]: [EssentialsChat] Loading EssentialsChat v2.18.1.0
[22:28:42] [Server thread/INFO]: [UltimateKits] Loading UltimateKits v2.6.11
[22:28:42] [Server thread/INFO]: [PlayerWarps] Loading PlayerWarps v6.2.1
[22:28:42] [Server thread/INFO]: [Towny] Loading Towny v0.96.2.0-for-1.12.2
[22:28:42] [Server thread/INFO]: [TownyNameUpdater] Loading TownyNameUpdater v4.0
[22:28:42] [Server thread/INFO]: [Dynmap-Towny] Loading Dynmap-Towny v0.81
[22:28:42] [Server thread/INFO]: [Sentinel] Loading Sentinel v2.2.0-SNAPSHOT (build 373)
[22:28:42] [Server thread/INFO]: [FabledSkyBlock] Loading FabledSkyBlock v2.3.11
[22:28:42] [Server thread/INFO]: [Multiverse-Core] Loading Multiverse-Core v2.5.0-b727
[22:28:42] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.8
[22:28:42] [Server thread/INFO]: [Multiverse-NetherPortals] Loading Multiverse-NetherPortals v2.5.2-SNAPSHOT-bUNKNOWN
[22:28:42] [Server thread/INFO]: [EpicSpawners] Loading EpicSpawners v6.4.8
[22:28:42] [Server thread/INFO]: [Plan] Loading Plan v5.1 build 740
[22:28:42] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v4.5.1
[22:28:43] [Server thread/INFO]: [Orebfuscator] Loading Orebfuscator v5.0.1
[22:28:43] [Server thread/INFO]: [ChangeSkin] Loading ChangeSkin v3.0
[22:28:43] [Server thread/INFO]: [NoCheatPlus] Loading NoCheatPlus v3.17-SNAPSHOT-Updated-b57
[22:28:43] [Server thread/INFO]: [NoCheatPlus] onLoad: Early set up of static API, configuration, logging.
[22:28:43] [Server thread/INFO]: [NoCheatPlus] Logging system initialized.
[22:28:43] [Server thread/INFO]: [NoCheatPlus] Detected Minecraft version: 1.12.2
[22:28:43] [Server thread/INFO]: [iDisguise] Loading iDisguise v5.8.2
[22:28:43] [Server thread/INFO]: [SuperVanish] Loading SuperVanish v6.2.0
[22:28:43] [Server thread/INFO]: [ConsoleSpamFix] Enabling ConsoleSpamFix v1.8.3
[22:28:43] [Server thread/INFO]: [ConsoleSpamFix] Server version detected: 1.12.2
[22:28:43] [Server thread/INFO]: [ConsoleSpamFix] Loading the config file...
[22:28:43] [Server thread/INFO]: [ConsoleSpamFix] Config file loaded!
[22:28:43] [Server thread/INFO]: [ConsoleSpamFix] ConsoleSpamFix loaded successfully!
[22:28:43] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v3.1.1
[22:28:43] [Server thread/INFO]: [ViaBackwards] Loading translations...
[22:28:43] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[22:28:43] [Via-Mappingloader-4/INFO]: [ViaBackwards] Loading 1.13 -> 1.12.2 mappings...
[22:28:43] [Via-Mappingloader-3/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[22:28:43] [Via-Mappingloader-2/INFO]: [ViaBackwards] Loading 1.15 -> 1.14.4 mappings...
[22:28:43] [Via-Mappingloader-1/INFO]: [ViaBackwards] Loading 1.16 -> 1.15.2 mappings...
[22:28:43] [Via-Mappingloader-0/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16.1 mappings...
[22:28:43] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v19.11.13-5505943-1282-22.3.5
[22:28:45] [Server thread/INFO]: [PermissionsEx] Enabling PermissionsEx v1.34.0-b1
[22:28:45] [Server thread/INFO]: [PermissionsEx] Initializing file backend
[22:28:45] [Server thread/INFO]: [PermissionsEx] Permissions file successfully reloaded
[22:28:45] [Server thread/INFO]: [PermissionsEx] Optimizing Pex for this server.
[22:28:45] [Server thread/INFO]: [PermissionsEx] File Backend in use. Enabling hotloading.
[22:28:45] [Server thread/INFO]: [PermissionsEx] Hotloading Enabled for /var/lib/pufferd/servers/2552327b-c0a1-4e48-ba5b-a1c4f48a47ac/plugins/PermissionsEx/permissions.yml
[22:28:45] [Server thread/INFO]: [PermissionsEx] Enabling Dashboard WebServer..
[22:28:45] [Server thread/WARN]: [PermissionsEx] SSL Certificate KeyStore File not Found: plugins/PermissionsEx/Cert.jks
[22:28:45] [Server thread/INFO]: [PermissionsEx] Dashboard running on port 5950 (http://localhost)
[22:28:45] [Server thread/INFO]: [PermissionsEx] Loading dashboard users..
[22:28:45] [Server thread/INFO]: [PermissionsEx] Loaded 3 users.
[22:28:45] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[22:28:45] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[22:28:45] [Server thread/INFO]: [Vault][Permission] PermissionsEx hooked.
[22:28:45] [Server thread/INFO]: [Vault] [Permission] PermissionsEx found: Loaded
[22:28:45] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[22:28:45] [Server thread/INFO]: [Vault] [Vault][Chat] PermissionsEx_Chat hooked.
[22:28:45] [Server thread/INFO]: [Vault] [Chat] PermissionsEx found: Loaded
[22:28:45] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[22:28:45] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v1.5.1
[22:28:45] [Server thread/INFO]: [FastAsyncVoxelSniper] Enabling FastAsyncVoxelSniper v19.11.13-5505943-1282-22.3.5
[22:28:46] [Server thread/INFO]: [PlotSquared] Enabling PlotSquared v20.01.24-62a9a22-793
[22:28:46] [Server thread/INFO]: Version is PlotSquared-20.1.24-62a9a22-793
[22:28:46] [Server thread/INFO]: [P2] Metrics enabled.
[22:28:46] [Server thread/INFO]: [P2]  PlotSquared is using online UUIDs
[22:28:46] [Server thread/INFO]: PlotSquared hooked into WorldEdit.
[22:28:46] [Server thread/INFO]: [P2] Key: plot-expiry, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: kill-road-mobs, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: kill-road-items, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: worlds, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: worldedit-restrictions, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: database-purger, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: economy, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: block-cache, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: kill-road-vehicles, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: persistent-meta, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: ban-deleter, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: updater, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: database, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: plotme-converter, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: permission-cache, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: disable-fawe-optimization, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: rating-cache, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: comment-notifier, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: metrics, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: chunk-processor, Value: false
[22:28:46] [Server thread/INFO]: [P2] Key: uuid-cache, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: events, Value: true
[22:28:46] [Server thread/INFO]: [P2] Key: commands, Value: true
[22:28:46] [Server thread/INFO]: PlotSquared is now enabled
[22:28:46] [Server thread/INFO]: [BKCommonLib] Enabling BKCommonLib v1.16.3-v1
[22:28:46] [Server thread/INFO]: [BKCommonLib] BKCommonLib is running on Spigot (git-Spigot-79a30d7-acbc348) : v1_12_R1 (Minecraft 1.12.2)
[22:28:47] [Server thread/INFO]: [BKCommonLib] [Network] Now using a PlayerConnection hook to provide Packet Listener and Monitor support
[22:28:50] [Server thread/INFO]: [BKCommonLib] Completely virus-free and scanned by various Bukkit-dev-staff watching eyes.
[22:28:50] [Server thread/INFO]: [BKCommonLib] BKCommonLib version 1.16.3-v1 (build: 914) enabled! (3.739s)
[22:28:50] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v4.5.1
[22:28:50] [Server thread/INFO]: [ProtocolLib] Started structure compiler thread.
[22:28:50] [Server thread/INFO]: [BKCommonLib] [Network] Now using the ProtocolLib library to provide Packet Listener and Monitor support
[22:28:50] [Server thread/INFO]: **** Beginning UUID conversion, this may take A LONG time ****
[22:28:50] [Server thread/INFO]: Preparing level "world"
[22:28:51] [Server thread/INFO]: Preparing start region for level 0 (Seed: 353109047350327769)
[22:28:52] [Server thread/INFO]: Preparing spawn area: 8%
[22:28:53] [Server thread/INFO]: Preparing spawn area: 63%
[22:28:54] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.9
[22:28:54] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[22:28:54] [Server thread/INFO]: [PlugMan] Enabling PlugMan v2.1.6
[22:28:54] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v1.8.1
[22:28:54] [Server thread/WARN]: [PlaceholderAPI] ocm is attempting to register placeholders via a PlaceholderHook class which is no longer supported!
[22:28:54] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v1.8.1 has been enabled
[22:28:54] [Server thread/INFO]: [AdvancedCraftingTable] Enabling AdvancedCraftingTable v0.3.2
[22:28:54] [Server thread/INFO]: [LagMonitor] Enabling LagMonitor v1.17
[22:28:54] [Server thread/INFO]: [LagMonitor] Found JNA native library. Enabling extended native data support to display more data
[22:28:55] [Server thread/INFO]: Trying (via loadLibrary) jnidispatch
[22:28:55] [Server thread/INFO]: Looking in classpath from org.bukkit.plugin.java.PluginClassLoader@510ce062 for /com/sun/jna/linux-x86-64/libjnidispatch.so
[22:28:55] [Server thread/INFO]: Found library resource at jar:file:/var/lib/pufferd/servers/2552327b-c0a1-4e48-ba5b-a1c4f48a47ac/plugins/Vixio-2.0.4-fixed.jar!/com/sun/jna/linux-x86-64/libjnidispatch.so
[22:28:55] [Server thread/INFO]: Trying /tmp/jna-63/jna2280649632407132893.tmp
[22:28:55] [Server thread/INFO]: Found jnidispatch at /tmp/jna-63/jna2280649632407132893.tmp
[22:28:55] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v3.1.1
[22:28:55] [Server thread/INFO]: [NBTAPI] Enabling NBTAPI v2.5.0
[22:28:55] [Server thread/INFO]: [NBTAPI] Adding listeners...
[22:28:55] [Server thread/INFO]: [NBTAPI] Gson:
[22:28:55] [Server thread/INFO]: [NBTAPI] Checking bindings...
[22:28:55] [Server thread/INFO]: [NBTAPI] All Classes were able to link!
[22:28:55] [Server thread/INFO]: [NBTAPI] All Methods were able to link!
[22:28:55] [Server thread/INFO]: [NBTAPI] Running NBT reflection test...
[22:28:55] [Server thread/INFO]: [NBTAPI] SpawnEntityCustomNbtInjectorTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] TilesCustomNBTInjectorTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] SubCompoundsTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] RemovingKeys: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] StreamTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] EntityTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] ItemConvertionTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] ItemMergingTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] IteratorTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] ListTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] ForEachTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] GetterSetterTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] TypeTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] NBTFileTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] DirectApplyTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] WorldDataTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] TilesCustomNBTPersistentTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] TileTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] GameprofileTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] MergeTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] EqualsTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] EntityCustomNbtInjectorTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] EntityCustomNbtPersistentTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] EmptyItemTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] MergeTileSubCompoundTest: Ok
[22:28:55] [Server thread/INFO]: [NBTAPI] Success! This version of NBT-API is compatible with your server.
[22:28:55] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v2.14.4
[22:28:55] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled!
[22:28:55] [Server thread/INFO]: [CoreProtect] Using MySQL for data storage.
[22:28:55] [Server thread/INFO]: [ClearLag] Enabling ClearLag v3.1.6
[22:28:55] [Server thread/INFO]: [ClearLag] Loading modules...
[22:28:55] [Server thread/INFO]: [ClearLag] Modules enabed, loading config values
[22:28:55] [Server thread/INFO]: [ClearLag] Modules have been loaded!
[22:28:55] [Server thread/INFO]: [ClearLag] Clearlag is now enabled!
[22:28:55] [Thread-18/INFO]: [ClearLag] Checking for updates compatible with your bukkit version [1.12]...
[22:28:55] [Server thread/INFO]: [IllegalStack] Enabling IllegalStack v2.2.0d
[22:28:55] [Server thread/INFO]: [IllegalStack] - WARNING you have the protection UserRequested.Obscure.HackedShulker.CheckGroundForBadShulkerAtLogin set to TRUE in your configuration.  This protection is intended to be a temporary setting and should not be left enabled!  Doing so causes IllegalStack to check all chunks whenever they are loaded which can create un-needed server load, and potentially cause other server issues.
[22:28:55] [Server thread/INFO]: The following materials are allowed to have stacks larger than the vanilla size: POTION 
[22:28:55] [Server thread/INFO]: [IllegalStack] Chat Components found! Enabling clickable commands in /istack
[22:28:55] [Server thread/INFO]: [IllegalStack] - Spigot chat components NOT found! disabling chat components.
[22:28:55] [Server thread/INFO]: ProtocolLib was detected, creative inventory exploit detection enabled.  NOTE*  This protection ONLY needs to be turned on if you have regular (non op) players with access to /gmc
[22:28:55] [Server thread/INFO]: [Illegal Stack] - MC Version < 1.13 detected!
[22:28:56] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.6
[22:28:56] [Server thread/INFO]: [BuycraftX] Validating your server key...
[22:28:56] [Thread-18/INFO]: [ClearLag] No updates found!
[22:28:57] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[22:28:57] [Server thread/INFO]: [Votifier] Enabling Votifier v2.7.1
[22:28:57] [Server thread/INFO]: [Votifier] Loaded token for website: default
[22:28:57] [Server thread/INFO]: [Votifier] Using epoll transport to accept votes.
[22:28:57] [Server thread/INFO]: [Votifier] Method none selected for vote forwarding: Votes will not be received from a forwarder.
[22:28:57] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v5.13.6
[22:28:57] [Votifier epoll boss/INFO]: [Votifier] Votifier enabled on socket /0.0.0.0:8192.
[22:28:57] [Server thread/WARN]: 29823 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Starting...

[22:28:57] [Server thread/WARN]: 29899 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-1 - Start completed.

[22:28:58] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 5.13.6
[22:28:58] [Server thread/INFO]: [SignEdit] Enabling SignEdit v1.12.3
[22:28:58] [Server thread/INFO]: [PixelPrinter] Enabling PixelPrinter v1.0.47
[22:28:58] [Server thread/INFO]: [BlocksHub] Enabling BlocksHub v2.1.1
[22:28:58] [Server thread/INFO]: Initializing access controllers
[22:28:58] [Server thread/INFO]: Initializing block loggers
[22:28:58] [Server thread/INFO]: [BlocksHub] Enabled
[22:28:58] [Server thread/INFO]: [floodgate-bukkit] Enabling floodgate-bukkit v1.0-SNAPSHOT
[22:28:58] [Server thread/INFO]: [MoneyNote] Enabling MoneyNote v1.3.2
[22:28:58] [Server thread/INFO]: [MoneyNote] Plugin is up to date! - 1.3.2
[22:28:58] [Server thread/INFO]: [MoneyNote] Successfully loaded.
[22:28:58] [Server thread/INFO]: [RankGrant+] Enabling RankGrantPlus v3.7.1
[22:28:58] [Server thread/INFO]: [RankGrant+] Loading files...
[22:28:58] [Server thread/INFO]: [RankGrant+] !-----------------------------------------------------!
[22:28:58] [Server thread/INFO]: [RankGrant+] Unfortunately, an error has occurred in RankGrantPlus.
[22:28:58] [Server thread/INFO]: [RankGrant+] If you are unable to fix this issue, please contact support.
[22:28:58] [Server thread/INFO]: [RankGrant+] Below are some important information regarding the error.
[22:28:58] [Server thread/INFO]: [RankGrant+] Error Identification Number: 2
[22:28:58] [Server thread/INFO]: [RankGrant+] Description: Outdated ranks.yml file.
[22:28:58] [Server thread/INFO]: [RankGrant+] !-----------------------------------------------------!
[22:28:58] [Server thread/INFO]: [RankGrant+] Disabling RankGrantPlus v3.7.1
[22:28:58] [Server thread/INFO]: [RankGrant+] RankGrant+ v3.7.1 by Demeng has been successfully disabled.
[22:28:58] [Server thread/INFO]: [SimpleShop] Enabling SimpleShop v3.0.5
[22:28:58] [Server thread/INFO]: [SimpleShop] SimpleShop is now running.
[22:28:58] [Server thread/INFO]: [PerWorldInventory] Enabling PerWorldInventory v2.2.1-legacy
[22:28:58] [Server thread/INFO]: [PerWorldInventory] Vault found! Hooking into it...
[22:28:58] [Server thread/INFO]: [PerWorldInventory] Hooked into Vault!
[22:28:58] [Server thread/INFO]: [ACF] Minecraft Version: 1.12
[22:28:58] [Server thread/INFO]: [AuctionHouse] Enabling AuctionHouse v2.1.5
[22:28:59] [Server thread/INFO]: [AuctionHouse] Found locale file en_us.json
[22:28:59] [Server thread/WARN]: [AuctionHouse] A backup of the database has been saved with .backup extension.
[22:28:59] [Server thread/INFO]: [AuctionHouse] Using NMS version v1_12_R1
[22:28:59] [Server thread/INFO]: [AuctionHouse] Using en_us locale
[22:28:59] [Server thread/INFO]: [AuctionHouse] Loaded 35 listings
[22:28:59] [Server thread/INFO]: [CustomHeads] Enabling CustomHeads v3.0.2
[22:28:59] [Server thread/INFO]: [VoxelSniper] Enabling VoxelSniper v5.172.0-SNAPSHOT
[22:28:59] [Server thread/INFO]: [VoxelSniper] Registered 75 Sniper Brushes with 149 handles.
[22:29:00] [Server thread/INFO]: [VoxelSniper] Registered Sniper Listener.
[22:29:00] [Server thread/INFO]: [PlayerVaults] Enabling PlayerVaults v4.1.8
[22:29:00] [Server thread/INFO]: [PlayerVaults] Added PUMPKIN to list of blocked materials.
[22:29:00] [Server thread/INFO]: [PlayerVaults] Added DIAMOND_BLOCK to list of blocked materials.
[22:29:00] [Server thread/INFO]: [PlayerVaults] Loaded lang for english
[22:29:00] [Server thread/INFO]: [PlayerVaults] Loaded! Took 225ms
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v1.1.0
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] Auto-loaded Floodgate key
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] 
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 1.1.0 (git-master-8c86308)
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] 
[22:29:00] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[22:29:00] [Server thread/WARN]: 32853 [Server thread] WARN org.geysermc.platform.spigot.shaded.reflections.Reflections - given scan urls are empty. set urls in the configuration

[22:29:01] [Server thread/WARN]: 33872 [Server thread] WARN org.geysermc.platform.spigot.shaded.reflections.Reflections - given scan urls are empty. set urls in the configuration

[22:29:18] [Server thread/WARN]: 50894 [Server thread] WARN org.geysermc.platform.spigot.shaded.reflections.Reflections - given scan urls are empty. set urls in the configuration

[22:29:18] [Server thread/WARN]: 51006 [Server thread] WARN org.geysermc.platform.spigot.shaded.reflections.Reflections - given scan urls are empty. set urls in the configuration

[22:29:19] [Server thread/WARN]: 51312 [Server thread] WARN org.geysermc.platform.spigot.shaded.reflections.Reflections - given scan urls are empty. set urls in the configuration

[22:29:19] [Network Listener - #1/INFO]: [Geyser-Spigot] Started Geyser on 0.0.0.0:19132
[22:29:19] [Server thread/INFO]: [Geyser-Spigot] Done (18.946s)! Run /geyser help for help!
[22:29:19] [Server thread/INFO]: [dynmap] Enabling dynmap v3.1-beta3a-409
[22:29:20] [Server thread/INFO]: [dynmap] Using PermissionsEx 1.34.0-b1 for access control
[22:29:20] [Server thread/INFO]: [dynmap] Mod Support processing completed
[22:29:20] [Server thread/INFO]: [dynmap] Loaded 26 shaders.
[22:29:20] [Server thread/INFO]: [dynmap] Loaded 82 perspectives.
[22:29:20] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[22:29:20] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[22:29:21] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[22:29:21] [Server thread/INFO]: [dynmap] Web server started on address 127.0.0.1:8123
[22:29:21] [Server thread/INFO]: [dynmap] version 3.1-beta3a-409 is enabled - core version 3.1-beta3a-409
[22:29:21] [Server thread/INFO]: [dynmap] For support, visit https://reddit.com/r/Dynmap or our Discord at https://discord.gg/s3rd5qn
[22:29:21] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[22:29:21] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[22:29:21] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'world'.
[22:29:21] [Server thread/INFO]: [dynmap] Enabled
[22:29:21] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v6.1.7;dd00bb1
[22:29:21] [Server thread/INFO]: WEPIF: PermissionsEx detected! Using PermissionsEx for permissions.
[22:29:21] [Server thread/INFO]: [WorldEdit] Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_12_R1 as the Bukkit adapter
[22:29:21] [Server thread/INFO]: [AdvancedBan] Enabling AdvancedBan v2.2.1
[22:29:21] [Server thread/INFO]: HikariPool-1 - Starting...
[22:29:21] [Server thread/INFO]: HikariPool-1 - Start completed.
[22:29:21] [Server thread/INFO]: [BountyHunters] Enabling BountyHunters v2.2.6
[22:29:21] [Server thread/INFO]: [BountyHunters] Detected Server Version: v1_12_R1
[22:29:21] [Server thread/ERROR]: [BountyHunters] Your server version is not handled with NMS.
[22:29:22] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bountyhunters
[22:29:22] [Server thread/INFO]: [BountyHunters] Hooked onto PlaceholderAPI
[22:29:22] [Server thread/INFO]: [BountyHunters] Hooked onto Towny
[22:29:22] [Server thread/ERROR]: Error occurred while enabling BountyHunters v2.2.6 (Is it up to date?)
java.lang.NoSuchFieldError: PLAYER_HEAD
    at net.Indyuce.bountyhunters.api.CustomItem.<clinit>(CustomItem.java:23) ~[?:?]
    at net.Indyuce.bountyhunters.BountyHunters.onEnable(BountyHunters.java:154) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:337) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:403) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(CraftServer.java:381) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(CraftServer.java:330) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.t(MinecraftServer.java:422) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.l(MinecraftServer.java:383) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.a(MinecraftServer.java:338) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.DedicatedServer.init(DedicatedServer.java:272) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:545) [server.jar:git-Spigot-79a30d7-acbc348]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_265]
[22:29:22] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.27-SNAPSHOT (build 2113)
[22:29:23] [Server thread/INFO]: [CrazyCrates] Enabling CrazyCrates v1.10-RELEASE
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading the config.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Successfully loaded config.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading the Messages.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Successfully loaded Messages.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading the Locations.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Successfully loaded Locations.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading the data.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Successfully loaded data.yml
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading custom files.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Galactic.yml.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Basic.yml.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Crazy.yml.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loaded new custom file: /Crates/Classic.yml.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Finished loading custom files.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading all crate information...
[22:29:23] [Server thread/INFO]: [NBTAPI] Found Spigot: v1_12_R1! Trying to find NMS support
[22:29:23] [Server thread/INFO]: [NBTAPI] NMS support 'MC1_12_R1' loaded!
[22:29:23] [Server thread/INFO]: [CrazyCrates] All crate information has been loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Loading all the physical crate locations.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Searching for schematics to load.
[22:29:23] [Server thread/INFO]: [CrazyCrates] outdoors.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] sea.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] nether.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] wooden.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] soul.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] classic.schematic was successfully found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] All schematics were found and loaded.
[22:29:23] [Server thread/INFO]: [CrazyCrates] Cleaning up the data.yml file.
[22:29:23] [Server thread/INFO]: [CrazyCrates] The data.yml file has been cleaned.
[22:29:23] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: crazycrates
[22:29:23] [Server thread/INFO]: [LightCleaner] Enabling LightCleaner v1.16.3-v1
[22:29:23] [Server thread/INFO]: [LightCleaner] LightCleaner version 1.16.3-v1 enabled! (0.203s)
[22:29:23] [Server thread/INFO]: [JumpPads] Enabling JumpPads v1.24.20
[22:29:23] [Server thread/INFO]: [HolographicDisplays] Enabling HolographicDisplays v2.4.4
[22:29:23] [Server thread/INFO]: [HolographicDisplays] Enabled player relative placeholders with ProtocolLib.
[22:29:23] [Server thread/INFO]: [UltimateClaims] Enabling UltimateClaims v1.2.9
[22:29:23] [Server thread/INFO]:  
[22:29:23] [Server thread/INFO]: =============================
[22:29:23] [Server thread/INFO]: UltimateClaims 1.2.9 by Songoda <3!
[22:29:23] [Server thread/INFO]: Action: Enabling...
[22:29:23] [Server thread/INFO]: [UltimateClaims] Loaded locale "en_US"
[22:29:24] [Server thread/INFO]: [SongodaCore] Hooked UltimateClaims.
[22:29:24] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimateclaims
[22:29:24] [Server thread/INFO]: [UltimateClaims] Data handler connected using SQLite.
[22:29:24] [Server thread/INFO]: =============================
[22:29:24] [Server thread/INFO]:  
[22:29:24] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v6.2.2-SNAPSHOT;8eeab68
[22:29:24] [Server thread/INFO]: [WorldGuard] Loading region data...
[22:29:24] [Server thread/INFO]: [Skript] Enabling Skript v2.5-beta4
[22:29:25] [ForkJoinPool.commonPool-worker-4/INFO]: [Skript] A new version of Skript is available: 2.5 (you're currently running 2.5-beta4)
[22:29:25] [ForkJoinPool.commonPool-worker-4/INFO]: Download it at: <aqua><u><link:https://github.com/SkriptLang/Skript/releases/download/2.5/Skript.jar>https://github.com/SkriptLang/Skript/releases/download/2.5/Skript.jar
[22:29:28] [Server thread/INFO]: [Skript] Loaded 18217 aliases in 3564ms
[22:29:29] [Server thread/INFO]: [Skript]  ~ created by & © Peter Güttinger aka Njol ~
[22:29:29] [Server thread/INFO]: [SkQuery] Enabling SkQuery v4.1.3
[22:29:29] [Server thread/INFO]: [skQuery] Locating classes from SkQuery...
[22:29:29] [Server thread/INFO]: [skQuery] Beginning to process a total of 139 from SkQuery
[22:29:29] [Server thread/INFO]: [skQuery] Out of 139 classes, 137 classes were loaded from SkQuery
[22:29:29] [Server thread/INFO]: [SkStuff] Enabling SkStuff v1.6.4.1
[22:29:29] [Server thread/INFO]: [SkStuff] SkStuff 1.6.4.1 has been successfully enabled!
[22:29:29] [Server thread/INFO]: [SkStuff] Registering general non version specific stuff...
[22:29:29] [Server thread/WARN]: [SkStuff] It looks like you're running an unsupported server version, some features will not be available :(
[22:29:29] [Server thread/INFO]: [SkStuff] WorldEdit found! Registering WorldEdit stuff...
[22:29:29] [Server thread/INFO]: [SkStuff] WorldGuard found! Registering WorldGuard stuff...
[22:29:29] [Server thread/INFO]: [SkStuff] Hooked into Metrics! Woohoo!!
[22:29:29] [Server thread/INFO]: [SkStuff] Everything ready! Loaded a total of 1 conditions, 15 effects, 2 events, 20 expressions and 3 types!
[22:29:29] [Server thread/INFO]: [Skellett] Enabling Skellett v1.9.9
[22:29:31] [Server thread/INFO]: [Skellett] Registered 47 Effects, 16 Conditions, 134 Expressions and 25 Events
[22:29:31] [Server thread/INFO]: [Skellett] Has been enabled!
[22:29:31] [Server thread/INFO]: [MundoSK] Enabling MundoSK v1.8.6-BETA.58
[22:29:31] [Server thread/INFO]: [MundoSK] No worlds were assigned to load automatically
[22:29:31] [Server thread/INFO]: [MundoSK] Pie is awesome :D
[22:29:31] [Server thread/INFO]: [MundoSK] You are currently running a BETA version of MundoSK
[22:29:31] [Server thread/INFO]: [MundoSK] You should only run BETA versions of MundoSK on test servers unless Tlatoani or another reliable source has recommended otherwise
[22:29:31] [Server thread/INFO]: [MundoSK] You've discovered the amazing realm of ProtocolLib packet syntaxes!
[22:29:32] [Server thread/INFO]: [MundoSK] Awesome syntaxes have been registered!
[22:29:32] [Server thread/INFO]: [skript-placeholders] Enabling skript-placeholders v1.3.1
[22:29:32] [Server thread/INFO]: [skUtilities] Enabling skUtilities v0.9.2
[22:29:32] [Server thread/INFO]: [skUtilities] v0.9.2: loaded modules (Conversions, Files, Yaml, Urls, Utilities) in 127ms
[22:29:32] [Server thread/INFO]: [Vixio] Enabling Vixio v2.0.4
[22:29:32] [Server thread/INFO]: [TuSKe] Enabling TuSKe v1.8.2-Pikachu-Patch-3
[22:29:33] [Server thread/INFO]: [TuSKe] Enabling Metrics... Done!
[22:29:33] [Server thread/INFO]: [TuSKe] Check for updates enabled. It will check in some seconds.
[22:29:33] [Server thread/INFO]: [TuSKe] Documentation enabled. Some files containing all syntax of all addons will be generated.
[22:29:33] [Server thread/INFO]: [TuSKe] Loaded 8 events, 12 conditions, 20 effects, 62 expressions and 0 types. Have fun!
[22:29:33] [Server thread/INFO]: [SignShop] Enabling SignShop v2.11.2
[22:29:33] [Server thread/WARN]: [SignShop] Material called: ink_sac does not exist, please check your config.yml!
[22:29:33] [Server thread/WARN]: [SignShop] Material called: golden_axe does not exist, please check your config.yml!
[22:29:34] [Server thread/ERROR]: Error occurred while enabling SignShop v2.11.2 (Is it up to date?)
java.lang.NoSuchMethodError: ch.njol.skript.registrations.EventValues.registerEventValue(Ljava/lang/Class;Ljava/lang/Class;Lch/njol/skript/classes/SerializableGetter;I)V
    at org.wargamer2010.skript.EvtSSPretransaction.register(EvtSSPretransaction.java:24) ~[?:?]
    at org.wargamer2010.signshop.SignShop.onEnable(SignShop.java:145) ~[?:?]
    at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264) ~[server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:337) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:403) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(CraftServer.java:381) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(CraftServer.java:330) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.t(MinecraftServer.java:422) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.l(MinecraftServer.java:383) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.a(MinecraftServer.java:338) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.DedicatedServer.init(DedicatedServer.java:272) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:545) [server.jar:git-Spigot-79a30d7-acbc348]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_265]
[22:29:34] [Server thread/INFO]: [Factions] Enabling Factions v1.6.9.5-2.4.8-STABLE
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] ==== Setup ====
[22:29:34] [Server thread/INFO]: File was not found for players.json, assuming there is no need to migrate old players.json file.
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] ==== End Setup ====
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] === ENABLE START ===
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Loaded 29 players
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Loaded 7 Factions
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Loading board from disk
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Loaded 3964 board locations
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Found CoreProtect, enabling Inspect
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Enabling FactionsTop command, this is a very basic /f top please get a dedicated /f top resource if you want land calculation etc.
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Economy integration through Vault plugin successful.
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] NOTE: Economy is disabled. You can enable it with the command: f config econEnabled true
[22:29:34] [Server thread/INFO]: [Factions] Using PACKETS as a particle provider
[22:29:34] [Server thread/INFO]: [Factions] Using REDSTONE as the ParticleEffect for /f sc
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Minecraft Version 1.9 or higher found, using non packet based particle API
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Skript was found! Registering SaberFactions Addon...
[22:29:34] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Skript addon registered!
[22:29:34] [Server thread/INFO]: [SABER-FACTIONS] - Loaded 1 timers into list!
[22:29:35] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: factionsuuid
[22:29:35] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] Successfully registered placeholders with PlaceholderAPI.
[22:29:35] [Server thread/INFO]: [Factions] [1.6.9.5-2.4.8-STABLE] === ENABLE DONE (Took 939ms) ===
[22:29:35] [Server thread/INFO]: [CrazyEnchantments] Enabling CrazyEnchantments v1.7.9.4
[22:29:35] [Server thread/INFO]: [skRayFall] Enabling skRayFall v1.9.22
[22:29:35] [Server thread/INFO]: [skRayFall] Yay! You are running skRayFall 1.9.22!
[22:29:35] [Server thread/INFO]: [skRayFall] Nathan and Lewis <3 you.
[22:29:35] [Server thread/INFO]: [skRayFall] Cooking Bacon...
[22:29:35] [Server thread/INFO]: [skRayFall] Getting more bacon for the army of citizens...
[22:29:35] [Server thread/INFO]: [skRayFall] Got bacon for the EffectLib particle ninjas!
[22:29:35] [Server thread/INFO]: [skRayFall] Getting more bacon for the Votifier runners!
[22:29:35] [Server thread/INFO]: [skRayFall] Bacon holograms found
[22:29:35] [Server thread/INFO]: [skRayFall] Client Side bacon holograms enabled
[22:29:35] [Server thread/INFO]: [skRayFall] Cooking bacon for the CoreProtect loggers.
[22:29:35] [Server thread/INFO]: [skRayFall] Enabling general 1.8+ bacon!
[22:29:35] [Server thread/INFO]: [skRayFall] Getting the general 1.9+ bacon!
[22:29:35] [Server thread/INFO]: [skRayFall] Getting the extra special 1.12 bacon!
[22:29:36] [Server thread/INFO]: [skRayFall] Bacon is ready!
[22:29:36] [Server thread/INFO]: [Images] Enabling Images v2.1.4
[22:29:36] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[22:29:36] [Server thread/WARN]: Sun Sep 27 22:29:36 GMT 2020 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[22:29:36] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v4.10.0-SNAPSHOT-SNAPSHOT
[22:29:36] [Server thread/ERROR]: [MythicMobs] Plugin MythicMobs v4.10.0-SNAPSHOT-SNAPSHOT has failed to register events for class io.lumine.xikage.mythicmobs.adapters.bukkit.listeners.MobListeners because org/bukkit/event/entity/EntityTransformEvent does not exist.
[22:29:36] [Server thread/INFO]: [LumineUtils] (io.lumine.xikage.mythicmobs.utils.) is bound to plugin MythicMobs - io.lumine.xikage.mythicmobs.MythicMobs
[22:29:36] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Spigot (MC: 1.12.2)...
[22:29:36] [Server thread/INFO]: [MythicMobs] The server is running Spigot; disabled PaperSpigot exclusive functionality
[22:29:36] [Server thread/WARN]: 68445 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 118 ms to scan 1 urls, producing 3 keys and 21 values 

[22:29:36] [Server thread/WARN]: 68505 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 35 ms to scan 1 urls, producing 3 keys and 18 values 

[22:29:36] [Server thread/WARN]: 68560 [Server thread] WARN io.lumine.xikage.mythicmobs.util.reflections.Reflections - could not create Vfs.Dir from url. ignoring the exception and continuing

[22:29:36] [Server thread/WARN]: io.lumine.xikage.mythicmobs.util.reflections.ReflectionsException: could not create Vfs.Dir from url, no matching UrlType was found [file:/usr/lib/jvm/java-8-openjdk-amd64/jre/lib/ext/libatk-wrapper.so]
either use fromURL(final URL url, final List<UrlType> urlTypes) or use the static setDefaultURLTypes(final List<UrlType> urlTypes) or addDefaultURLTypes(UrlType urlType) with your specialized UrlType.
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.vfs.Vfs.fromURL(Vfs.java:109)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.vfs.Vfs.fromURL(Vfs.java:91)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.Reflections.scan(Reflections.java:240)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.Reflections.scan(Reflections.java:202)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.Reflections.<init>(Reflections.java:123)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.Reflections.<init>(Reflections.java:168)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.Reflections.<init>(Reflections.java:141)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.util.reflections.VersionCompliantReflections.<init>(VersionCompliantReflections.java:19)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.volatilecode.v1_12_R1.VolatileAIHandler_v1_12_R1.<init>(VolatileAIHandler_v1_12_R1.java:121)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.volatilecode.VolatileCodeEnabled_v1_12_R1.<init>(VolatileCodeEnabled_v1_12_R1.java:40)
[22:29:36] [Server thread/WARN]:     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
[22:29:36] [Server thread/WARN]:     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
[22:29:36] [Server thread/WARN]:     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
[22:29:36] [Server thread/WARN]:     at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.MythicMobs.getVolatileCodeHandler(MythicMobs.java:248)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.MythicMobs.enable(MythicMobs.java:116)
[22:29:36] [Server thread/WARN]:     at io.lumine.xikage.mythicmobs.utils.plugin.LuminePlugin.onEnable(LuminePlugin.java:61)
[22:29:36] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:264)
[22:29:36] [Server thread/WARN]:     at org.bukkit.plugin.java.JavaPluginLoader.enablePlugin(JavaPluginLoader.java:337)
[22:29:36] [Server thread/WARN]:     at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:403)
[22:29:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugin(CraftServer.java:381)
[22:29:36] [Server thread/WARN]:     at org.bukkit.craftbukkit.v1_12_R1.CraftServer.enablePlugins(CraftServer.java:330)
[22:29:36] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.t(MinecraftServer.java:422)
[22:29:36] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.l(MinecraftServer.java:383)
[22:29:36] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.a(MinecraftServer.java:338)
[22:29:36] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.DedicatedServer.init(DedicatedServer.java:272)
[22:29:36] [Server thread/WARN]:     at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:545)
[22:29:36] [Server thread/WARN]:     at java.lang.Thread.run(Thread.java:748)
[22:29:36] [Server thread/WARN]: 68637 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 120 ms to scan 13 urls, producing 0 keys and 0 values 

[22:29:36] [Server thread/WARN]: 68650 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 13 ms to scan 1 urls, producing 3 keys and 9 values 

[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs HolographicDisplays Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs NoCheatPlus Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] Loaded ProtocolLib packet handlers
[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[22:29:36] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[22:29:36] [Server thread/INFO]: [MythicMobs] Base directory /var/lib/pufferd/servers/2552327b-c0a1-4e48-ba5b-a1c4f48a47ac/plugins/MythicMobs/SavedData
[22:29:36] [Server thread/INFO]: [MythicMobs] Module directory /var/lib/pufferd/servers/2552327b-c0a1-4e48-ba5b-a1c4f48a47ac/plugins/MythicMobs/SavedData/worlds
[22:29:36] [Server thread/WARN]: 68882 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 35 ms to scan 1 urls, producing 10 keys and 293 values 

[22:29:37] [Server thread/WARN]: 69061 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 56 ms to scan 1 urls, producing 23 keys and 593 values 

[22:29:37] [Server thread/WARN]: 69248 [Server thread] INFO io.lumine.xikage.mythicmobs.util.reflections.Reflections - Reflections took 16 ms to scan 1 urls, producing 6 keys and 83 values 

[22:29:37] [Server thread/INFO]: [MythicMobs] LOADED
[22:29:37] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Item 'KingsCrown' in 'ExampleItems.yml': Material type 'GOLDEN_HELMET' not found
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mobs.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 skills.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 random spawns.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[22:29:37] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[22:29:37] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[22:29:37] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v4.10.0 (build SNAPSHOT) has been successfully loaded!
[22:29:37] [Server thread/INFO]: [ActionHealth] Enabling ActionHealth v3.4.6
[22:29:37] [Server thread/INFO]: [Duels] Enabling Duels v3.4.0
[22:29:37] [Server thread/INFO]: [Duels] Successfully hooked into 'BountyHunters'!
[22:29:37] [Server thread/INFO]: [Duels] Successfully hooked into 'Factions'!
[22:29:37] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: duels
[22:29:37] [Server thread/INFO]: [Duels] Successfully hooked into 'PlaceholderAPI'!
[22:29:37] [Server thread/INFO]: [Duels] Successfully hooked into 'Vault'!
[22:29:37] [Server thread/INFO]: [Duels] Successfully hooked into 'WorldGuard'!
[22:29:38] [Server thread/INFO]: [Duels] KitManager: Loaded 1 kit(s).
[22:29:38] [Server thread/INFO]: [Duels] ArenaManager: Loaded 0 arena(s).
[22:29:38] [Server thread/INFO]: [Duels] PlayerInfoManager: Lobby location was not set, using world's spawn location as default. Use the command /duels setlobby in-game to set the lobby location.
[22:29:38] [Server thread/INFO]: [Duels] QueueManager: Loaded 0 queue(s).
[22:29:38] [Server thread/INFO]: [Duels] QueueSignManager: Loaded 0 queue sign(s).
[22:29:38] [Server thread/INFO]: [AntiVPN] Enabling AntiVPN v5.11.37
[22:29:39] [Server thread/WARN]: 71141 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - AntiVPN-MySQL - Starting...

[22:29:39] [Server thread/WARN]: 71470 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - AntiVPN-MySQL - Start completed.

[22:29:39] [Server thread/WARN]: 71558 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - AntiVPN-SQLite - Starting...

[22:29:39] [Server thread/WARN]: 71664 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - AntiVPN-SQLite - Start completed.

[22:29:40] [Server thread/INFO]: [Anti-VPN] Enabling support for Plan
[22:29:40] [Server thread/INFO]: [Anti-VPN] Enabling support for PlaceholderAPI
[22:29:40] [Server thread/INFO]: [Anti-VPN] Enabled
[22:29:40] [Server thread/INFO]: [Anti-VPN] [Version 5.11.37] [2 Commands] [3 Events] [0 Tasks]
[22:29:40] [Server thread/INFO]: [TitleManager] Enabling TitleManager v2.3.0
[22:29:42] [Server thread/INFO]: [MyPet] Enabling MyPet v3.1
[22:29:42] [Server thread/INFO]: [MyPet] No Update available.
[22:29:42] [Server thread/INFO]: [MyPet] Custom entity registry found: net.citizensnpcs.nms.v1_12_R1.util.CustomEntityRegistry
[22:29:42] [Server thread/INFO]: [MyPet] Compat mode for v1_12_R1 loaded.
[22:29:42] [Server thread/WARN]: [MyPet] sweet_berries is not a valid 1.13 item ID! Please check your configs.
[22:29:42] [Server thread/INFO]: [MyPet] Exp calculation mode: MyPet
[22:29:42] [Server thread/INFO]: [MyPet] Loading WorldGroups...
[22:29:42] [Server thread/INFO]: [MyPet]    added 'world' to 'default'
[22:29:43] [Server thread/INFO]: [MyPet] Connect to SQLite database...
[22:29:43] [Server thread/INFO]: [MyPet] SQLite connection successful.
[22:29:43] [Server thread/INFO]: [MyPet] Citizens (2.0.27-SNAPSHOT (build 2113)) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] Factions (1.6.9.5-2.4.8-STABLE) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] MythicMobs (4.10.0-SNAPSHOT-SNAPSHOT) hook activated.
[22:29:43] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: mypet
[22:29:43] [Server thread/INFO]: [MyPet] PlaceholderAPI (2.10.9) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] PlotSquared (20.01.24-62a9a22-793) (Legacy) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] ProtocolLib (4.5.1) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] Vault (1.7.3-b131) (Economy: Essentials Economy) (Permissions: PermissionsEx) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] WorldGuard (6.2.2-SNAPSHOT;8eeab68) hook activated.
[22:29:43] [Server thread/INFO]: [MyPet] Version 3.10-b1542 ENABLED
[22:29:43] [Server thread/INFO]: [Essentials] Enabling Essentials v2.18.1.0
[22:29:43] [Server thread/INFO]: Attempting to convert old kits in config.yml to new kits.yml
[22:29:43] [Server thread/INFO]: No kits found to migrate.
[22:29:43] [Server thread/INFO]: Loaded 852 items from items.csv.
[22:29:43] [Server thread/INFO]: Using locale en_US
[22:29:43] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[22:29:43] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[22:29:43] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[22:29:43] [Server thread/WARN]: [SignShop] Essentials signs are enabled, checking for conflicts now!
[22:29:43] [Server thread/INFO]: [Essentials] Using Vault based permissions (PermissionsEx)
[22:29:43] [Server thread/INFO]: [EssentialsGeoIP] Enabling EssentialsGeoIP v2.18.1.0
[22:29:43] [Server thread/INFO]: [EssentialsGeoIP] This product includes GeoLite2 data created by MaxMind, available from http://www.maxmind.com/.
[22:29:43] [Server thread/INFO]: [EssentialsGeoIP] Starting Metrics. Opt-out using the global bStats config.
[22:29:43] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.18.1.0
[22:29:43] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[22:29:43] [Server thread/INFO]: [TradeSystem] Enabling TradeSystem v1.2.1
[22:29:43] [Server thread/INFO]:  
[22:29:43] [Server thread/INFO]: __________________________________________________________
[22:29:43] [Server thread/INFO]:  
[22:29:43] [Server thread/INFO]:                        TradeSystem [1.2.1]
[22:29:43] [Server thread/INFO]:  
[22:29:43] [Server thread/INFO]: Status:
[22:29:43] [Server thread/INFO]:  
[22:29:43] [Server thread/INFO]: MC-Version: 1.12.2 (R0.1-SNAPSHOT, SPIGOT)
[22:29:43] [Server thread/INFO]:  
[22:29:43] [Server thread/INFO]:   > Loading sounds
[22:29:44] [Server thread/INFO]:   > Loading blacklist
[22:29:44] [Server thread/INFO]:     ...got 3 blocked item(s)
[22:29:44] [Server thread/INFO]:   > Loading layouts
[22:29:44] [Server thread/INFO]:     ...got 1 layout(s)
[22:29:44] [Server thread/INFO]:  
[22:29:44] [Server thread/INFO]: Finished (248ms)
[22:29:44] [Server thread/INFO]:  
[22:29:44] [Server thread/INFO]: __________________________________________________________
[22:29:44] [Server thread/INFO]:  
[22:29:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tradesystem
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] Enabling AdvancedAchievements v6.3.1
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] Loading and backing up configuration files...
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling PetMasterGive and PetMasterReceive categories.
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Ensure you have placed Pet Master with a minimum version of 1.4 in your plugins folder or add PetMasterGive and PetMasterReceive to the DisabledCategories list in config.yml.
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling RaidsWon category.
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Raids are not available in your server version, please add RaidsWon to the DisabledCategories list in config.yml.
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Overriding configuration: disabling Riptides category.
[22:29:44] [Server thread/WARN]: [AdvancedAchievements] Riptides are not available in your server version, please add Riptides to the DisabledCategories list in config.yml.
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] Loaded 55 achievements in 46 categories.
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] 5 disabled categories: [PetMasterGive, RaidsWon, Riptides, AdvancementsCompleted, PetMasterReceive]
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] Registering event listeners...
[22:29:44] [Server thread/INFO]: [AdvancedAchievements] Initialising database...
[22:29:45] [Server thread/INFO]: [AdvancedAchievements] Setting up command executor and custom tab completers...
[22:29:45] [Server thread/INFO]: [AdvancedAchievements] Launching scheduled tasks...
[22:29:45] [Server thread/INFO]: [AdvancedAchievements] Registering permissions...
[22:29:45] [Thread-39/INFO]: [AdvancedAchievements] Checking for plugin update...
[22:29:45] [Thread-39/WARN]: [AdvancedAchievements] Update available: v6.4.0! Download at spigotmc.org/resources/advanced-achievements.83466
[22:29:47] [Server thread/WARN]: [AdvancedAchievements] Material "gray_banner" used in gui.yml (RaidsWon.Item) is invalid. Have you spelt the name correctly and is it available for your Minecraft version?
[22:29:47] [Server thread/WARN]: [AdvancedAchievements] Material "trident" used in gui.yml (Riptides.Item) is invalid. Have you spelt the name correctly and is it available for your Minecraft version?
[22:29:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: aach
[22:29:47] [Server thread/INFO]: [AdvancedAchievements] Plugin has finished loading and is ready to run! Took 3805ms.
[22:29:47] [Server thread/INFO]: [EssentialsChat] Enabling EssentialsChat v2.18.1.0
[22:29:47] [Server thread/INFO]: [EssentialsChat] Starting Metrics. Opt-out using the global bStats config.
[22:29:47] [Server thread/INFO]: [UltimateKits] Enabling UltimateKits v2.6.11
[22:29:47] [Server thread/INFO]:  
[22:29:47] [Server thread/INFO]: =============================
[22:29:47] [Server thread/INFO]: UltimateKits 2.6.11 by Songoda <3!
[22:29:47] [Server thread/INFO]: Action: Enabling...
[22:29:48] [Server thread/INFO]: [UltimateKits] Loaded locale "en_US"
[22:29:48] [Server thread/INFO]: [SongodaCore] Hooked UltimateKits.
[22:29:48] [Server thread/INFO]: [UltimateKits] Data handler connected using SQLite.
[22:29:48] [Server thread/INFO]: =============================
[22:29:48] [Server thread/INFO]:  
[22:29:48] [Server thread/INFO]: [PlayerWarps] Enabling PlayerWarps v6.2.1
[22:29:48] [Server thread/INFO]: [PlayerWarps] Vault found, now enabling PlayerWarps...
[22:29:48] [Server thread/INFO]: [PlayerWarps] Permissions plugin found!
[22:29:48] [Server thread/INFO]: [PlayerWarps] Economy plugin found!
[22:29:48] [Server thread/INFO]: [PlayerWarps] Chat plugin found!
[22:29:48] [Server thread/INFO]: [PlayerWarps] Found PlaceholderAPI adding support...
[22:29:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: pw
[22:29:48] [Server thread/INFO]: [PlayerWarps] SQLite database is enabling...
[22:29:48] [Server thread/INFO]: [PlayerWarps] Loading Metrics...
[22:29:48] [Server thread/INFO]: [PlayerWarps] Successfully loaded Metrics!
[22:29:48] [Server thread/INFO]: [Towny] Enabling Towny v0.96.2.0-for-1.12.2
[22:29:48] [Server thread/INFO]: ====================      Towny      ========================
[22:29:49] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[22:29:49] [Server thread/INFO]: [Towny] 393/393 residents have stored UUIDs.
[22:29:49] [Server thread/INFO]: [Towny] Database loaded in 262ms.
[22:29:49] [Server thread/INFO]: [Towny] Warning: Essentials Economy has been known to reset town and nation bank accounts to their default amount. The authors of Essentials recommend using another economy plugin until they have fixed this bug.
[22:29:49] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: townyadvanced
[22:29:49] [Server thread/INFO]: [Towny] Using: Vault 1.7.3-b131 via Vault 1.7.3-b131, Essentials Economy via Vault, PlaceholderAPI v2.10.9
[22:29:49] [Server thread/INFO]: [Towny] Time until a New Day: 13 hours, 30 minutes, 11 seconds
[22:29:49] [Server thread/INFO]: [Towny] Version: 0.96.2.0-for-1.12.2 - Mod Enabled
[22:29:49] [Server thread/INFO]: [TownyNameUpdater] Enabling TownyNameUpdater v4.0
[22:29:49] [Server thread/INFO]: [Dynmap-Towny] Enabling Dynmap-Towny v0.81
[22:29:49] [Server thread/INFO]: [Dynmap-Towny] initializing
[22:29:49] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-town will have no effect
[22:29:49] [Server thread/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-nation will have no effect
[22:29:49] [Server thread/INFO]: [Dynmap-Towny] version 0.81 is activated
[22:29:49] [Server thread/INFO]: [Sentinel] Enabling Sentinel v2.2.0-SNAPSHOT (build 373)
[22:29:49] [Server thread/INFO]: [Sentinel] Sentinel loading...
[22:29:49] [Server thread/INFO]: [Sentinel] Sentinel loaded on a fully supported Minecraft version. If you encounter any issues or need to ask a question, please join our Discord at https://discord.gg/Q6pZGSR and post in the '#sentinel' channel.
[22:29:50] [Server thread/INFO]: [Sentinel] Sentinel loaded!
[22:29:50] [Server thread/INFO]: [Sentinel] Vault linked! Group targets will work.
[22:29:50] [Server thread/INFO]: [Sentinel] Sentinel found Towny! Adding support for it!
[22:29:50] [Server thread/WARN]: [Sentinel] You are running an unsupported fork of Factions that has listed itself as Factions. Sentinel will not load the integration for it. Please inform the developer of your Factions fork to set the plugin name and classpath to their own plugin, to avoid issues with plugins built for the official version of Factions.
[22:29:50] [Server thread/INFO]: [FabledSkyBlock] Enabling FabledSkyBlock v2.3.11
[22:29:50] [Server thread/INFO]:  
[22:29:50] [Server thread/INFO]: =============================
[22:29:50] [Server thread/INFO]: FabledSkyBlock 2.3.11 by Songoda <3!
[22:29:50] [Server thread/INFO]: Action: Enabling...
[22:29:50] [Server thread/INFO]: [SongodaCore] Hooked FabledSkyBlock.
[22:29:50] [Server thread/INFO]: [SongodaCore] Hooked UltimateKits.
[22:29:50] [Server thread/INFO]: [SongodaCore] Hooked UltimateClaims.
[22:29:51] [Server thread/INFO]: Could not set generator for world 'island_normal_world': Plugin 'default' does not exist
[22:29:51] [Server thread/INFO]: Could not set generator for world 'island_nether_world': Plugin 'default' does not exist
[22:29:51] [Server thread/INFO]: Could not set generator for world 'island_end_world': Plugin 'default' does not exist
[22:29:51] [Server thread/INFO]: SkyBlock | Info: Generating Normal World 'island_normal_world'.
[22:29:51] [Server thread/INFO]: [MyPet] added island_normal_world to 'default' group.
[22:29:51] [Server thread/INFO]: BukkitPlotGenerator does not fully support: com.songoda.skyblock.world.generator.VoidGenerator@8114316
[22:29:51] [Server thread/INFO]: Preparing start region for level 1 (Seed: -6312344626393641889)
[22:29:51] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'island_normal_world'.
[22:29:51] [Server thread/INFO]: SkyBlock | Info: Generating Nether World 'island_nether_world'.
[22:29:51] [Server thread/INFO]: [MyPet] added island_nether_world to 'default' group.
[22:29:51] [Server thread/INFO]: BukkitPlotGenerator does not fully support: com.songoda.skyblock.world.generator.VoidGenerator@be7398f
[22:29:51] [Server thread/INFO]: Preparing start region for level 2 (Seed: -9021983352299310429)
[22:29:51] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'island_nether_world'.
[22:29:51] [Server thread/INFO]: SkyBlock | Info: Generating Void World 'island_end_world'.
[22:29:51] [Server thread/INFO]: [MyPet] added island_end_world to 'default' group.
[22:29:51] [Server thread/INFO]: BukkitPlotGenerator does not fully support: com.songoda.skyblock.world.generator.VoidGenerator@6eafe392
[22:29:51] [Server thread/INFO]: Preparing start region for level 3 (Seed: 1190537156896188074)
[22:29:52] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'island_end_world'.
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Starter loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Survivor loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Champions loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Sorcerers loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Alchemist loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock] Category Builders loaded with 9 challenges
[22:29:52] [Server thread/INFO]: [FabledSkyBlock]  challenges loaded with 6 categories
[22:29:52] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: fabledskyblock
[22:29:52] [Server thread/WARN]: [FabledSkyBlock] EconomyManager is default
[22:29:52] [Server thread/INFO]: =============================
[22:29:52] [Server thread/INFO]:  
[22:29:52] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v2.5.0-b727
[22:29:55] [Server thread/INFO]: [MyPet] added testingworld to 'default' group.
[22:29:55] [Server thread/INFO]: Preparing start region for level 4 (Seed: 1122987673713309673)
[22:29:56] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'testingworld'.
[22:29:56] [Server thread/INFO]: [MyPet] added SpeedrunFix to 'default' group.
[22:29:56] [Server thread/INFO]: Preparing start region for level 5 (Seed: 3270450849639735711)
[22:29:57] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'SpeedrunFix'.
[22:29:57] [Server thread/INFO]: [MyPet] added Prisons to 'default' group.
[22:29:57] [Server thread/INFO]: Preparing start region for level 6 (Seed: -936685395861057478)
[22:29:57] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Prisons'.
[22:29:58] [Server thread/INFO]: [P2] Detected world load for 'Creative'
[22:29:58] [Server thread/INFO]: [P2]  - generator: PlotSquared>PlotSquared
[22:29:58] [Server thread/INFO]: [P2]  - plotworld: com.intellectualcrafters.plot.generator.HybridPlotWorld
[22:29:58] [Server thread/INFO]: [P2]  - manager: com.intellectualcrafters.plot.generator.HybridPlotManager
[22:29:58] [Server thread/INFO]: [P2]  - schematic: false
[22:29:58] [Server thread/INFO]: [MyPet] added Creative to 'default' group.
[22:29:58] [Server thread/INFO]: World possibly already loaded: Creative
[22:29:58] [Server thread/INFO]: Preparing start region for level 7 (Seed: 8658674910402488203)
[22:29:59] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Creative'.
[22:29:59] [Server thread/INFO]: [MyPet] added BuildBattle to 'default' group.
[22:29:59] [Server thread/INFO]: Preparing start region for level 8 (Seed: -6405098551467267989)
[22:30:00] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'BuildBattle'.
[22:30:00] [Server thread/INFO]: [MyPet] added Factions_the_end to 'default' group.
[22:30:00] [Server thread/INFO]: Preparing start region for level 9 (Seed: -550488620990807927)
[22:30:00] [Server thread/INFO]: [WorldGuard] (Factions_the_end) TNT ignition is PERMITTED.
[22:30:00] [Server thread/INFO]: [WorldGuard] (Factions_the_end) Lighters are PERMITTED.
[22:30:00] [Server thread/INFO]: [WorldGuard] (Factions_the_end) Lava fire is PERMITTED.
[22:30:01] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Factions_the_end'.
[22:30:01] [Server thread/INFO]: [MyPet] added PlayerVersusPlayer to 'default' group.
[22:30:01] [Server thread/INFO]: Preparing start region for level 10 (Seed: -7766115991273157869)
[22:30:02] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'PlayerVersusPlayer'.
[22:30:03] [Server thread/INFO]: [MyPet] added TestWorld_6795 to 'default' group.
[22:30:03] [Server thread/INFO]: Preparing start region for level 11 (Seed: 4977988250103544478)
[22:30:04] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'TestWorld_6795'.
[22:30:05] [Server thread/INFO]: [MyPet] added Islands to 'default' group.
[22:30:05] [Server thread/INFO]: Preparing start region for level 12 (Seed: 27594263)
[22:30:05] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Islands'.
[22:30:06] [Server thread/INFO]: [MyPet] added SpeedrunRerun to 'default' group.
[22:30:06] [Server thread/INFO]: Preparing start region for level 13 (Seed: -4036529142838514821)
[22:30:07] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'SpeedrunRerun'.
[22:30:07] [Server thread/INFO]: [MyPet] added BuildBattleTest_Velepexon to 'default' group.
[22:30:07] [Server thread/INFO]: Preparing start region for level 14 (Seed: 851238659745739871)
[22:30:08] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'BuildBattleTest_Velepexon'.
[22:30:09] [Server thread/INFO]: [MyPet] added Survival_nether to 'default' group.
[22:30:09] [Server thread/INFO]: Preparing start region for level 15 (Seed: 3252366278834793720)
[22:30:10] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Survival_nether'.
[22:30:10] [Server thread/INFO]: [MyPet] added Ncal to 'default' group.
[22:30:10] [Server thread/INFO]: Preparing start region for level 16 (Seed: 7118271661457010928)
[22:30:11] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Ncal'.
[22:30:12] [Server thread/INFO]: [MyPet] added Builds to 'default' group.
[22:30:12] [Server thread/INFO]: Preparing start region for level 17 (Seed: 6115063581821385402)
[22:30:12] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Builds'.
[22:30:13] [Server thread/INFO]: [MyPet] added Starwars to 'default' group.
[22:30:13] [Server thread/INFO]: Preparing start region for level 18 (Seed: 7118271661457010928)
[22:30:14] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Starwars'.
[22:30:15] [Server thread/INFO]: [MyPet] added Factions to 'default' group.
[22:30:15] [Server thread/INFO]: Preparing start region for level 19 (Seed: 2523086541393605901)
[22:30:15] [Server thread/INFO]: [WorldGuard] (Factions) TNT ignition is PERMITTED.
[22:30:15] [Server thread/INFO]: [WorldGuard] (Factions) Lighters are PERMITTED.
[22:30:15] [Server thread/INFO]: [WorldGuard] (Factions) Lava fire is PERMITTED.
[22:30:17] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Factions'.
[22:30:19] [Server thread/INFO]: [MyPet] added Survival_the_end to 'default' group.
[22:30:19] [Server thread/INFO]: Preparing start region for level 20 (Seed: -6395515073551399289)
[22:30:21] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Survival_the_end'.
[22:30:21] [Server thread/INFO]: [MyPet] added EndlessCOD to 'default' group.
[22:30:21] [Server thread/INFO]: Preparing start region for level 21 (Seed: 2324550825211418957)
[22:30:22] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'EndlessCOD'.
[22:30:23] [Server thread/INFO]: [MyPet] added PvP to 'default' group.
[22:30:23] [Server thread/INFO]: Preparing start region for level 22 (Seed: 4294287540907153606)
[22:30:24] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'PvP'.
[22:30:25] [Server thread/INFO]: [MyPet] added Islands2 to 'default' group.
[22:30:25] [Server thread/INFO]: Preparing start region for level 23 (Seed: 7118271661457010928)
[22:30:25] [Server thread/INFO]: [WorldGuard] (Islands2) TNT ignition is PERMITTED.
[22:30:26] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Islands2'.
[22:30:26] [Server thread/INFO]: [MyPet] added Survival to 'default' group.
[22:30:26] [Server thread/INFO]: Preparing start region for level 24 (Seed: -4703799550496114303)
[22:30:27] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'Survival'.
[22:30:27] [Server thread/INFO]: [dynmap] Loaded 2 pending tile renders for world 'Survival'
[22:30:29] [Server thread/INFO]: [MyPet] added Factions_nether to 'default' group.
[22:30:29] [Server thread/INFO]: Preparing start region for level 25 (Seed: -6574206859215345514)
[22:30:29] [Server thread/INFO]: [WorldGuard] (Factions_nether) TNT ignition is PERMITTED.
[22:30:29] [Server thread/INFO]: [WorldGuard] (Factions_nether) Lighters are PERMITTED.
[22:30:29] [Server thread/INFO]: [WorldGuard] (Factions_nether) Lava fire is PERMITTED.
[22:30:30] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'Factions_nether'.
[22:30:31] [Server thread/INFO]: [MyPet] added TalentShow to 'default' group.
[22:30:31] [Server thread/INFO]: Preparing start region for level 26 (Seed: 7118271661457010928)
[22:30:32] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'TalentShow'.
[22:30:33] [Server thread/INFO]: [MyPet] added CowKilla to 'default' group.
[22:30:33] [Server thread/INFO]: Preparing start region for level 27 (Seed: 3631961465701377557)
[22:30:34] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'CowKilla'.
[22:30:35] [Server thread/INFO]: [Multiverse-Core] 28 - World(s) loaded.
[22:30:36] [Server thread/INFO]: [Multiverse-Core] Version 2.5.0-b727 (API v20) Enabled - By Rigby, fernferret, lithium3141, main-- and dumptruckman
[22:30:36] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.8
[22:30:36] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[22:30:36] [Server thread/INFO]: [GriefPrevention] 29 total claims loaded.
[22:30:36] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[22:30:36] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[22:30:36] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[22:30:36] [Server thread/INFO]: [GriefPrevention] Boot finished.
[22:30:36] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v2.5.2-SNAPSHOT-bUNKNOWN
[22:30:36] [Server thread/INFO]: [Multiverse-NetherPortals] - Version 2.5.2-SNAPSHOT-bUNKNOWN Enabled - By Rigby and fernferret
[22:30:38] [Server thread/INFO]: [EpicSpawners] Enabling EpicSpawners v6.4.8
[22:30:38] [Server thread/INFO]:  
[22:30:38] [Server thread/INFO]: =============================
[22:30:38] [Server thread/INFO]: EpicSpawners 6.4.8 by Songoda <3!
[22:30:38] [Server thread/INFO]: Action: Enabling...
[22:30:38] [Server thread/INFO]: [EpicSpawners] Loaded locale "en_US"
[22:30:38] [Server thread/INFO]: [SongodaCore] Hooked EpicSpawners.
[22:30:38] [Server thread/INFO]: [EpicSpawners] Data handler connected using SQLite.
[22:30:38] [Server thread/INFO]: =============================
[22:30:38] [Server thread/INFO]:  
[22:30:39] [Server thread/INFO]: [Plan] Enabling Plan v5.1 build 740
[22:30:39] [Server thread/INFO]:            ██▌
[22:30:39] [Server thread/INFO]:      ██▌   ██▌
[22:30:39] [Server thread/INFO]:   ██▌██▌██▌██▌  Player Analytics
[22:30:39] [Server thread/INFO]:   ██▌██▌██▌██▌  v5.1 build 740
[22:30:40] [Server thread/INFO]: [Plan] Locale: 'English' by Rsl1122
[22:30:40] [Server thread/INFO]: [Plan] MySQL-database connection established.
[22:30:40] [Server thread/INFO]: WebServer: Proxy-mode HTTPS enabled, make sure that your reverse-proxy is routing using HTTPS and Plan Alternative_IP.Link points to the Proxy
[22:30:40] [Server thread/INFO]: [Plan] Webserver running on PORT 8804 (https://apps.flatteredmc.dynu.net/plan)
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: AdvancedAchievements
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: AdvancedBan
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: Buycraft
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: Essentials
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: GriefPrevention
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: nuVotifier
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: Towny
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: Economy (Vault)
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: Permission Groups (Vault)
[22:30:41] [Server thread/INFO]: [Plan] Registered extension: ViaVersion
[22:30:41] [Server thread/INFO]: [Plan] Player Analytics Enabled. (2181 ms)
[22:30:41] [Server thread/INFO]: [Orebfuscator] Enabling Orebfuscator v5.0.1
[22:30:41] [Server thread/INFO]: [OFC] Searching NMS protocol for server version "v1_12_R1"!
[22:30:41] [Server thread/INFO]: [OFC] NMS protocol for server version "v1_12_R1" found!
[22:30:41] [Server thread/WARN]: world world is missing a world config
[22:30:41] [Server thread/WARN]: world island_normal_world is missing a world config
[22:30:41] [Server thread/WARN]: world island_nether_world is missing a world config
[22:30:41] [Server thread/WARN]: world island_end_world is missing a world config
[22:30:41] [Server thread/WARN]: world testingworld is missing a world config
[22:30:41] [Server thread/WARN]: world SpeedrunFix is missing a world config
[22:30:41] [Server thread/WARN]: world Prisons is missing a world config
[22:30:41] [Server thread/WARN]: world Creative is missing a world config
[22:30:41] [Server thread/WARN]: world BuildBattle is missing a world config
[22:30:41] [Server thread/WARN]: world PlayerVersusPlayer is missing a world config
[22:30:41] [Server thread/WARN]: world TestWorld_6795 is missing a world config
[22:30:41] [Server thread/WARN]: world Islands is missing a world config
[22:30:41] [Server thread/WARN]: world SpeedrunRerun is missing a world config
[22:30:41] [Server thread/WARN]: world BuildBattleTest_Velepexon is missing a world config
[22:30:41] [Server thread/WARN]: world Ncal is missing a world config
[22:30:41] [Server thread/WARN]: world Builds is missing a world config
[22:30:41] [Server thread/WARN]: world Starwars is missing a world config
[22:30:41] [Server thread/WARN]: world EndlessCOD is missing a world config
[22:30:41] [Server thread/WARN]: world PvP is missing a world config
[22:30:41] [Server thread/WARN]: world Islands2 is missing a world config
[22:30:41] [Server thread/WARN]: world TalentShow is missing a world config
[22:30:41] [Server thread/WARN]: world CowKilla is missing a world config
[22:30:41] [Server thread/WARN]: world world is missing a world config
[22:30:41] [Server thread/WARN]: world island_normal_world is missing a world config
[22:30:41] [Server thread/WARN]: world island_nether_world is missing a world config
[22:30:41] [Server thread/WARN]: world island_end_world is missing a world config
[22:30:41] [Server thread/WARN]: world testingworld is missing a world config
[22:30:41] [Server thread/WARN]: world SpeedrunFix is missing a world config
[22:30:41] [Server thread/WARN]: world Prisons is missing a world config
[22:30:41] [Server thread/WARN]: world Creative is missing a world config
[22:30:41] [Server thread/WARN]: world BuildBattle is missing a world config
[22:30:41] [Server thread/WARN]: world PlayerVersusPlayer is missing a world config
[22:30:41] [Server thread/WARN]: world TestWorld_6795 is missing a world config
[22:30:41] [Server thread/WARN]: world Islands is missing a world config
[22:30:41] [Server thread/WARN]: world SpeedrunRerun is missing a world config
[22:30:41] [Server thread/WARN]: world BuildBattleTest_Velepexon is missing a world config
[22:30:41] [Server thread/WARN]: world Ncal is missing a world config
[22:30:41] [Server thread/WARN]: world Builds is missing a world config
[22:30:41] [Server thread/WARN]: world Starwars is missing a world config
[22:30:41] [Server thread/WARN]: world EndlessCOD is missing a world config
[22:30:41] [Server thread/WARN]: world PvP is missing a world config
[22:30:41] [Server thread/WARN]: world Islands2 is missing a world config
[22:30:41] [Server thread/WARN]: world TalentShow is missing a world config
[22:30:41] [Server thread/WARN]: world CowKilla is missing a world config
[22:30:42] [Server thread/INFO]: [ChangeSkin] Enabling ChangeSkin v3.0
[22:30:42] [Server thread/WARN]: 134390 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Starting...

[22:30:42] [Server thread/WARN]: 134395 [Server thread] INFO com.zaxxer.hikari.HikariDataSource - HikariPool-2 - Start completed.

[22:30:42] [Server thread/INFO]: [NoCheatPlus] Enabling NoCheatPlus v3.17-SNAPSHOT-Updated-b57
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Running in Bukkit-API-only mode (git-Spigot-79a30d7-acbc348 (MC: 1.12.2)). If this is not intended, please check for updates and consider to request support.
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bukkit-API-only mode: Some features will likely not function properly, performance might suffer.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] McAccess set to: 1.6.1-1.14.4|? / Bukkit-API
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.5 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.6.1 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.7.2 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.8 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.9 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.10 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.11 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Added block-info for Minecraft 1.12 blocks.
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Applied block patches for multi client protocol support: water_lily, soil, grass_path, shulker_box
[22:30:42] [Server thread/INFO]: [NoCheatPlus] Update block-info: Block shape patch for multi client protocol support around 1.7.x - 1.14.x.
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): moving_piston
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_TUBE_CORAL
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_TUBE_CORAL_WALL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BRAIN_CORAL
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BRAIN_CORAL_WALL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BUBBLE_CORAL
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BUBBLE_CORAL_WALL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_FIRE_CORAL
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_FIRE_CORAL_WALL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_HORN_CORAL
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_HORN_CORAL_WALL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_TUBE_CORAL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BRAIN_CORAL_FAN
[22:30:42] [Server thread/WARN]: [NoCheatPlus] Bad block id (compatibility.blocks.overrideflags): DEAD_BUBBLE_CORAL_FAN
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Inventory checks: FastConsume is available, disabled InstantEat.
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Adding packet level hooks for ProtocolLib (MC 1.12.2)...
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Confirm teleport packet available (via name): TELEPORT_ACCEPT[class=PacketPlayInTeleportAccept, id=0]
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Available (and activated) packet level hooks: UseEntityAdapter | MovingFlying | OutgoingPosition | KeepAliveAdapter | SoundDistance | WrongTurnAdapter | NoSlow | Fight
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Force disable FastHeal on Minecraft 1.9 and later.
[22:30:43] [Server thread/INFO]: [NoCheatPlus] Version 3.17-SNAPSHOT-Updated-b57 is enabled.
[22:30:43] [Server thread/INFO]: [iDisguise] Enabling iDisguise v5.8.2
[22:30:44] [Server thread/INFO]: [iDisguise] iDisguise 5.8.2 enabled!
[22:30:44] [Server thread/INFO]: [SuperVanish] Enabling SuperVanish v6.2.0
[22:30:44] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: supervanish
[22:30:44] [Server thread/INFO]: [SuperVanish] Hooked into PlaceholderAPI
[22:30:44] [Server thread/INFO]: [SuperVanish] Hooked into dynmap
[22:30:44] [Server thread/INFO]: [SuperVanish] Hooked into Citizens
[22:30:44] [Server thread/INFO]: [SuperVanish] Hooked into Essentials
[22:30:44] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[22:30:53] [Server thread/INFO]: Done (123.204s)! For help, type "help" or "?"
[22:30:54] [Server thread/INFO]: (FAWE) Plugin 'WorldGuard' found. Using it now.
[22:30:54] [Server thread/INFO]: (FAWE) Plugin 'Towny' found. Using it now.
[22:30:54] [Server thread/INFO]: (FAWE) Plugin 'FactionsUUID' found. Using it now.
[22:30:54] [Server thread/INFO]: (FAWE) Plugin 'GriefPrevention' found. Using it now.
[22:30:54] [Server thread/INFO]: (FAWE) Optimizing PlotSquared
[22:30:54] [Server thread/INFO]: (FAWE)  - QueueProvider: class com.boydti.fawe.regions.general.plot.FaweLocalBlockQueue
[22:30:54] [Server thread/INFO]: (FAWE)  - HybridPlotManager.REGENERATIVE_CLEAR: false
[22:30:54] [Server thread/INFO]: (FAWE)  - SchematicHandler: com.boydti.fawe.regions.general.plot.FaweSchematicHandler@1d183d1f
[22:30:54] [Server thread/INFO]: (FAWE)  - ChunkManager: com.boydti.fawe.regions.general.plot.FaweChunkManager@468e0130
[22:30:54] [Server thread/INFO]: (FAWE) Plugin 'PlotSquared' found. Using it now.
[22:30:54] [Server thread/INFO]: (FAWE) Detected class org.bukkit.event.block.BlockExplodeEvent
[22:30:54] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.12.2(340)
[22:30:55] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Economy API
[22:30:55] [Server thread/INFO]: [AuctionHouse] Registered Service Provider Vault for Vault's Chat API
[22:30:55] [Server thread/INFO]: [JumpPads] CleanUp found no JumpPads to delete!
[22:30:55] [Server thread/WARN]: [HolographicDisplays] Hologram 'Bedwars' was in the world 'Bedwars_New' but it wasn't loaded.
[22:30:55] [Server thread/WARN]: [HolographicDisplays] Hologram 'bedwarsmap' was in the world 'Bedwars_New' but it wasn't loaded.
[22:30:55] [Server thread/WARN]: [HolographicDisplays] Hologram 'test' not found, skipping it.
[22:30:55] [Server thread/INFO]: [Skript] Loading variables...
[22:30:55] [Server thread/INFO]: [Skript] Loaded 1843 variables in 0.1 seconds
[22:30:58] [Server thread/ERROR]: [Skript] can't understand this condition: 'command /abby is executed' (Slap.sk, line 33: if command /abby is executed:')
[22:31:14] [Server thread/INFO]: THE BRIDGE -  Loading v.0.0.8... Plugin loaded!
[22:31:14] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: Bridge
[22:31:25] [Server thread/INFO]: [Skript] Loaded 30 scripts with a total of 126 triggers and 39 commands in 29.76 seconds
[22:31:25] [Server thread/INFO]: [Skript] Finished loading.
[22:31:25] [Server thread/INFO]: [ChatManager] Version: Final Beta 6.1 Starting... Created by Theindo448
[22:31:25] [Craft Scheduler Thread - 11/INFO]: [PlayerWarps] Loading player warps...
[22:31:25] [Server thread/INFO]: Multiverse already knows about 'island_normal_world'!
[22:31:25] [Server thread/INFO]: Success! Property generator was set to FabledSkyBlock
[22:31:25] [Server thread/INFO]: Multiverse already knows about 'island_nether_world'!
[22:31:25] [Server thread/INFO]: Success! Property generator was set to FabledSkyBlock
[22:31:25] [Server thread/INFO]: Multiverse already knows about 'island_end_world'!
[22:31:25] [Server thread/INFO]: Success! Property generator was set to FabledSkyBlock
[22:31:25] [Craft Scheduler Thread - 9/INFO]: SkyBlock | Info: Fetching user information from island data. This may take a while...
[22:31:25] [Craft Scheduler Thread - 9/INFO]: SkyBlock | Info: Finished fetching user information from island data. No users were ignored.
[22:31:25] [Craft Scheduler Thread - 5/INFO]: [Duels] No updates were available. You are on the latest version!
[22:31:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: plan
[22:31:26] [Server thread/INFO]: [NoCheatPlus] Post-enable running...
[22:31:26] [Craft Scheduler Thread - 9/INFO]: [NoCheatPlus] Added hook: AllViolations(NCP) [1.0].
[22:31:26] [Craft Scheduler Thread - 9/INFO]: [NoCheatPlus] Added hook: ViolationFrequency(NCP) [1.0].
[22:31:26] [Server thread/INFO]: [NoCheatPlus] Post-enable finished.
[22:31:26] [Craft Scheduler Thread - 6/INFO]: [Plan] You're using the latest version.
[22:31:26] [DefaultDispatcher-worker-1/INFO]: [TitleManager] An update was found!
[22:31:26] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[22:31:26] [Server thread/INFO]: [BlocksHub] Loading plugins...
[22:31:26] [Server thread/INFO]: [BlocksHub] Entry point Factions is disabled.
[22:31:26] [Server thread/INFO]: [BlocksHub] Registered GriefPrevention 16.8 access controller.
[22:31:26] [Server thread/INFO]: [BlocksHub] BlocksHub plugin GriefPrevention...enabled
[22:31:26] [Server thread/INFO]: [BlocksHub] Registered Towny 0.96.2.0-for-1.12.2 access controller.
[22:31:26] [Server thread/INFO]: [BlocksHub] BlocksHub plugin Towny...enabled
[22:31:26] [Server thread/INFO]: [BlocksHub] Registered WorldGuard 6.2.2-SNAPSHOT;8eeab68 access controller.
[22:31:26] [Server thread/INFO]: [BlocksHub] BlocksHub plugin WorldGuard...enabled
[22:31:26] [Server thread/INFO]: [BlocksHub] Registered CoreProtect 2.14.4 logger.
[22:31:26] [Server thread/INFO]: [BlocksHub] BlocksHub plugin CoreProtect...enabled
[22:31:29] [Server thread/INFO]: [Citizens] Loaded 214 NPCs.
[22:31:29] [Server thread/INFO]: [MythicMobs] ✓Using HolographicDisplays plugin for holograms
[22:31:33] [Server thread/INFO]: [VotingPlugin] Hooked into Vault permissions
[22:31:33] [Craft Scheduler Thread - 33/INFO]: [Vault] Checking for Updates ... 
[22:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[22:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials
[22:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player
[22:31:33] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[22:31:33] [Server thread/INFO]: 4 placeholder hooks successfully registered!
[22:31:33] [Craft Scheduler Thread - 33/INFO]: [Vault] No new version available
[22:31:33] [Dynmap Render Thread/INFO]: [dynmap] Loading resource pack PureBDcraft_32x_MC112.zip
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/glass/frame/block102.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/glass/frame/block20.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/glass/shine/block102a.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/glass/shine/block20a.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/black/hardened_clay_stained_black.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/blue/hardened_clay_stained_blue.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/brown/hardened_clay_stained_brown.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/cyan/hardened_clay_stained_cyan.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/gray/hardened_clay_stained_gray.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/green/hardened_clay_stained_green.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/light_blue/hardened_clay_stained_light_blue.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/lime/hardened_clay_stained_lime.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/magenta/hardened_clay_stained_magenta.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/normal/hardened_clay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/orange/hardened_clay_stained_orange.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/pink/hardened_clay_stained_pink.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/purple/hardened_clay_stained_purple.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/red/hardened_clay_stained_red.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/silver/hardened_clay_stained_silver.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/white/hardened_clay_stained_white.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/clay/yellow/hardened_clay_stained_yellow.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/sandstone/normal/sandstone_normal.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/sandstone/rednormal/red_sandstone_normal.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/sandstone/redsmooth/red_sandstone_smooth.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/hard_materials/sandstone/smooth/sandstone_smooth.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/gold/gold_block.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/iron/iron_block.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/lapis/lapis_block.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/quartz/side/quartz_block_sides.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/quartz/top/quartz_block_ends.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/redstone/anim/redstone_block.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/minerals/redstone/static/redstone_block.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/mushroom/brown/mushroom_block_skin_brown.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/mushroom/inside/mushroom_block_inside.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: ctm_compact
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/mushroom/red/mushroom_block_skin_red.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/0_clay/clay_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/1_red_sand/red_sand_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/2_sand/clay_alt_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/2_sand/sand_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/3_gravel/gravel_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/4_grass/grass_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Invalid CTM Method: overlay
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] No matching method: assets/minecraft/mcpatcher/ctm/transitions/5_snow/snow_overlay.properties
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Bad custom color block ID: 150158
[22:31:34] [Dynmap Render Thread/INFO]: [dynmap] Bad custom color block ID: 404
[22:31:34] [Server thread/INFO]: [VotingPlugin] Successfully hooked into Vault!
[22:31:34] [Craft Scheduler Thread - 33/INFO]: [TuSKe] Checking for latest update...
[22:31:34] [Craft Scheduler Thread - 31/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 5.13.6 New Version: 5.23.3 Use /av download to get the latest update!
[22:31:34] [Craft Scheduler Thread - 7/WARN]: 186810 [Craft Scheduler Thread - 7] INFO net.dv8tion.jda.api.JDA - Login Successful!

[22:31:35] [Craft Scheduler Thread - 33/INFO]: [TuSKe] New update available: v1.8.2
[22:31:35] [Craft Scheduler Thread - 33/INFO]: [TuSKe] Check what's new in: https://github.com/Tuke-Nuke/TuSKe/releases/tag/1.8.2
[22:31:35] [Craft Scheduler Thread - 33/INFO]: [TuSKe] You can download and update it with /tuske update.
[22:31:35] [Server thread/INFO]: Starting UUID caching
[22:31:35] [JDA MainWS-WriteThread/WARN]: 187577 [JDA MainWS-WriteThread] INFO net.dv8tion.jda.internal.requests.WebSocketClient - Connected to WebSocket

[22:31:35] [Craft Scheduler Thread - 31/INFO]: [P2] Starting player data caching for: world
[22:31:35] [Craft Scheduler Thread - 31/INFO]: Fast mode UUID caching enabled!
[22:31:36] [Server thread/INFO]: [EpicSpawners] Loading Crafting Recipes
[22:31:36] [Craft Scheduler Thread - 31/INFO]: [P2] Cached a total of: 128 UUIDs
[22:31:36] [Server thread/INFO]: [ChatManager] Checking for a new update ....
[22:31:36] [Craft Scheduler Thread - 33/WARN]: Sun Sep 27 22:31:36 GMT 2020 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
[22:31:37] [JDA MainWS-ReadThread/WARN]: 189136 [JDA MainWS-ReadThread] INFO net.dv8tion.jda.api.JDA - Finished Loading!

[22:31:37] [Server thread/INFO]: [Discord.sk] No players online :(
[22:31:37] [Craft Scheduler Thread - 33/INFO]: [Images] Loaded 3 images...
[22:31:38] [Server thread/WARN]: [LagMonitor] Plugin SkQuery is performing a blocking I/O operation (Socket: https://pastebin.com/raw/ZekQ8yk2) on the main thread. This could affect the server performance, because the thread pauses until it gets the response. Such operations should be performed asynchronous from the main thread. Keep in mind to keep the code thread-safe.Report it to the plugin author
[22:31:38] [Server thread/WARN]: [LagMonitor] The following exception is not an error. It's a hint for the plugin developer to find the source. LagMonitor doesn't prevent this action. It just warns you about it
java.lang.IllegalAccessException: null
    at com.github.games647.lagmonitor.threading.BlockingActionManager.logCurrentStack(BlockingActionManager.java:62) [LagMonitor.jar:?]
    at com.github.games647.lagmonitor.threading.BlockingActionManager.checkBlockingAction(BlockingActionManager.java:48) [LagMonitor.jar:?]
    at com.github.games647.lagmonitor.listeners.BlockingConnectionSelector.select(BlockingConnectionSelector.java:30) [LagMonitor.jar:?]
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1156) [?:1.8.0_265]
    at sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1056) [?:1.8.0_265]
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:177) [?:1.8.0_265]
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1570) [?:1.8.0_265]
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1498) [?:1.8.0_265]
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:268) [?:1.8.0_265]
    at java.net.URL.openStream(URL.java:1068) [?:1.8.0_265]
    at com.w00tmast3r.skquery.elements.expressions.ExprURLText.convert(ExprURLText.java:25) [SkQuery-4.1.3.jar:?]
    at com.w00tmast3r.skquery.elements.expressions.ExprURLText.convert(ExprURLText.java:12) [SkQuery-4.1.3.jar:?]
    at ch.njol.skript.registrations.Converters.convert(Converters.java:391) [Skript.jar:?]
    at ch.njol.skript.registrations.Converters.convertUnsafe(Converters.java:382) [Skript.jar:?]
    at ch.njol.skript.expressions.base.PropertyExpression.get(PropertyExpression.java:103) [Skript.jar:?]
    at ch.njol.skript.expressions.base.SimplePropertyExpression.get(SimplePropertyExpression.java:54) [Skript.jar:?]
    at ch.njol.skript.expressions.base.PropertyExpression.get(PropertyExpression.java:74) [Skript.jar:?]
    at ch.njol.skript.lang.util.SimpleExpression.check(SimpleExpression.java:160) [Skript.jar:?]
    at ch.njol.skript.conditions.CondCompare.check(CondCompare.java:309) [Skript.jar:?]
    at ch.njol.skript.lang.Condition.run(Condition.java:56) [Skript.jar:?]
    at ch.njol.skript.lang.Conditional.walk(Conditional.java:51) [Skript.jar:?]
    at ch.njol.skript.lang.TriggerItem.walk(TriggerItem.java:89) [Skript.jar:?]
    at ch.njol.skript.effects.Delay$1.run(Delay.java:109) [Skript.jar:?]
    at org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftTask.run(CraftTask.java:76) [server.jar:git-Spigot-79a30d7-acbc348]
    at org.bukkit.craftbukkit.v1_12_R1.scheduler.CraftScheduler.mainThreadHeartbeat(CraftScheduler.java:361) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.D(MinecraftServer.java:739) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.DedicatedServer.D(DedicatedServer.java:406) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.C(MinecraftServer.java:679) [server.jar:git-Spigot-79a30d7-acbc348]
    at net.minecraft.server.v1_12_R1.MinecraftServer.run(MinecraftServer.java:577) [server.jar:git-Spigot-79a30d7-acbc348]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_265]
[22:31:38] [Server thread/INFO]: [ChatManager] New Version: 1.3.1
[22:31:38] [Server thread/INFO]: You are using version Final Beta 6.1
[22:31:38] [Server thread/INFO]: Download New Version Now: 
 https://www.spigotmc.org/resources/chatmanager-skript.59753/
[22:31:39] [Craft Scheduler Thread - 39/INFO]: [TuSKe] Generating documentation of Skript & Addons.
[22:31:39] [Craft Scheduler Thread - 39/INFO]: [TuSKe] Documentation was generated successfully.