Paste #105982: DenizenMetaBot Auto-Repaste Of log From Hepno

Date: 2023/02/04 12:13:22 UTC-08:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366


[11:40:40] [main/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[11:40:40] [main/INFO]: Reloading ResourceManager: Default, bukkit
[11:40:41] [Worker-Main-5/INFO]: Loaded 7 recipes
[11:40:41] [Server thread/INFO]: Starting minecraft server version 1.16.5
[11:40:41] [Server thread/INFO]: Loading properties
[11:40:41] [Server thread/INFO]: This server is running Purpur version git-Purpur-1171 (MC: 1.16.5) (Implementing API version 1.16.5-R0.1-SNAPSHOT)
[11:40:41] [Server thread/INFO]: Debug logging is disabled
[11:40:41] [Server thread/INFO]: Server Ping Player Sample Count: 12
[11:40:41] [Server thread/INFO]: Using 4 threads for Netty based IO
[11:40:41] [Server thread/INFO]: Default game type: SURVIVAL
[11:40:41] [Server thread/INFO]: Generating keypair
[11:40:41] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[11:40:41] [Server thread/INFO]: Using epoll channel type
[11:40:41] [Server thread/INFO]: Tuinity: Using libdeflate (Linux x86_64) compression from Velocity.
[11:40:41] [Server thread/INFO]: Tuinity: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[11:40:42] [Server thread/WARN]: Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[11:40:43] [Server thread/WARN]: Legacy plugin ResourcePackDownloader v7.4 does not specify an api-version.
[11:40:43] [Server thread/WARN]: Legacy plugin ajStartCommands v2.0.3 does not specify an api-version.
[11:40:43] [Server thread/WARN]: Legacy plugin xStaff v2.0.2 does not specify an api-version.
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loading 2 libraries... please wait
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/inject/guice/5.1.0/guice-5.1.0.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/javax/inject/javax.inject/1/javax.inject-1.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/aopalliance/aopalliance/1.0/aopalliance-1.0.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/guava/30.1-jre/guava-30.1-jre.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/guava/listenablefuture/9999.0-empty-to-avoid-conflict-with-guava/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/org/checkerframework/checker-qual/3.5.0/checker-qual-3.5.0.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/errorprone/error_prone_annotations/2.3.4/error_prone_annotations-2.3.4.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/com/google/j2objc/j2objc-annotations/1.3/j2objc-annotations-1.3.jar
[11:40:43] [Server thread/INFO]: [WolfyUtilities] Loaded library /home/container/libraries/org/apache/commons/commons-lang3/3.12.0/commons-lang3-3.12.0.jar
[11:40:44] [Server thread/INFO]: [WolfyUtilities] NMS Version: v1_16_R3
[11:40:44] [Server thread/INFO]: [me.wolfyscript.lib.org.reflections.Reflections] Reflections took 163 ms to scan 1 urls, producing 1232 keys and 3846 values
[11:40:44] [Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait
[11:40:44] [Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[11:40:44] [Server thread/INFO]: [PremiumVanish] Loaded library /home/container/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[11:40:44] [Server thread/INFO]: [CustomCrafting] NMS Version: v1_16_R3
[11:40:44] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.52
[11:40:44] [Server thread/INFO]: [Chunky] Loading Chunky v1.2.217
[11:40:44] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2
[11:40:44] [Server thread/INFO]: [ResourcePackDownloader] Loading ResourcePackDownloader v7.4
[11:40:44] [Server thread/INFO]: [spark] Loading spark v1.9.43
[11:40:44] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b612
[11:40:45] [Server thread/INFO]: [ajStartCommands] Loading ajStartCommands v2.0.3
[11:40:45] [Server thread/INFO]: [LibsDisguises] Loading LibsDisguises v10.0.31
[11:40:45] [Server thread/INFO]: [FishingLoot] Loading FishingLoot v1.0.0
[11:40:45] [Server thread/INFO]: [PL-Hide] Loading PL-Hide v1.5.21
[11:40:45] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[11:40:45] [Server thread/INFO]: [voicechat] Loading voicechat v1.16.5-1.10.0
[11:40:45] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1
[11:40:45] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7ab611aa]
[11:40:45] [Server thread/INFO]: [xStaff] Loading xStaff v2.0.2
[11:40:45] [Server thread/INFO]: [VentureChat] Loading VentureChat v3.4.4
[11:40:45] [Server thread/INFO]: [DisablePotions] Loading DisablePotions v1.0
[11:40:45] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.7
[11:40:45] [Server thread/INFO]: [LiteBans] Loading LiteBans v2.10.4
[11:40:45] [Server thread/INFO]: [InvSee++] Loading InvSeePlusPlus v0.12.10-SNAPSHOT
[11:40:45] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.5+3827266
[11:40:45] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2753)
[11:40:45] [Server thread/INFO]: [MythicMobs] Loading MythicMobs v5.1.4-3aa1b5d2
[11:40:45] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[11:40:45] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.19.7
[11:40:45] [Server thread/INFO]: [WolfyUtilities] Loading WolfyUtilities v4.16.8.0
[11:40:45] [Server thread/INFO]: [WolfyUtilities] Register json serializer/deserializer
[11:40:45] [Server thread/INFO]: [WolfyUtilities] Register CustomItem meta checks
[11:40:45] [Server thread/INFO]: [TAB] Loading TAB v3.1.5
[11:40:45] [Server thread/INFO]: [ModelEngine] Loading ModelEngine vR2.5.2
[11:40:45] [Server thread/INFO]: [EssentialsSpawn] Loading EssentialsSpawn v2.19.7
[11:40:45] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2
[11:40:45] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.8.3
[11:40:45] [Server thread/INFO]: [MyrUtils2] Loading MyrUtils2 v2.0
[11:40:45] [Server thread/INFO]: [InvSee++_Clear] Loading InvSeePlusPlus_Clear v0.12.10-SNAPSHOT
[11:40:45] [Server thread/INFO]: [InvSee++_Give] Loading InvSeePlusPlus_Give v0.12.10-SNAPSHOT
[11:40:45] [Server thread/INFO]: [CustomCrafting] Loading CustomCrafting v4.16.3.2
[11:40:45] [Server thread/INFO]: [CustomCrafting] WolfyUtils API: v4.16.8.0
[11:40:45] [Server thread/INFO]: [CustomCrafting] CustomCrafting: v4.16.3.2
[11:40:45] [Server thread/INFO]: [CustomCrafting] Environment   : PROD
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering CustomItem Data
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Custom Block Data
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Result Extensions
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Result Merge Adapters
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Recipe Conditions
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Recipe Types
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Anvil Recipe Tasks
[11:40:45] [Server thread/INFO]: [CustomCrafting] Registering Type Registries
[11:40:45] [Server thread/INFO]: [PlugManX] Loading PlugManX v2.3.0
[11:40:45] [Server thread/INFO]: true
[11:40:45] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[11:40:45] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.52
[11:40:45] [Server thread/INFO]:         __    
[11:40:45] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.52
[11:40:45] [Server thread/INFO]:   |___ |      Running on Bukkit - Purpur
[11:40:45] [Server thread/INFO]: 
[11:40:45] [Server thread/INFO]: [LuckPerms] Loading configuration...
[11:40:45] [Server thread/INFO]: [LuckPerms] Loading storage provider... [MYSQL]
[11:40:45] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Starting...
[11:40:45] [Server thread/INFO]: [me.lucko.luckperms.lib.hikari.HikariDataSource] luckperms-hikari - Start completed.
[11:40:46] [Server thread/INFO]: [LuckPerms] Loading messaging service... [SQL]
[11:40:46] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[11:40:46] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[11:40:46] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 860ms)
[11:40:46] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[11:40:46] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[11:40:46] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.7 which is not a depend, softdepend or loadbefore of this plugin.
[11:40:46] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[11:40:46] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[11:40:46] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[11:40:46] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[11:40:46] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1
[11:40:46] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[11:40:46] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[11:40:46] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.Spigot_v1_16_R3 as the Bukkit adapter
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Enabling WolfyUtilities v4.16.8.0
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Minecraft version: 1.16.5
[11:40:46] [Server thread/INFO]: [WolfyUtilities] WolfyUtils version: 4.16.8.0
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Environment: PROD
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Loading Plugin integrations: 
[11:40:46] [Server thread/INFO]: [WolfyUtilities]  - MythicMobs
[11:40:46] [Server thread/INFO]: [WolfyUtilities]  - PlaceholderAPI
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Create & Init Plugin integrations: 
[11:40:46] [Server thread/INFO]: [WolfyUtilities] Register API references
[11:40:47] [Server thread/INFO]: [WolfyUtilities] Loading stored Custom Items
[11:40:47] [Server thread/INFO]: [WolfyUtilities] Loading Player Data
[11:40:47] [Server thread/INFO]: [WolfyUtilities] Loading Creative Mode Tabs
[11:40:47] [Server thread/INFO]: [PlugManX] Enabling PlugManX v2.3.0
[11:40:47] [Server thread/INFO]: Preparing level "world"
[11:40:47] [Server thread/INFO]: [Chunky] Enabling Chunky v1.2.217
[11:40:47] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[11:40:47] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[11:40:47] [Server thread/INFO]: [WolfyUtilities] init PAPI event
[11:40:47] [Server thread/INFO]: [ResourcePackDownloader] Enabling ResourcePackDownloader v7.4*
[11:40:47] [Server thread/INFO]: ------------------------------
[11:40:47] [Server thread/INFO]: Resource Pack Downloader
[11:40:47] [Server thread/INFO]:  
[11:40:47] [Server thread/INFO]: Running version: 7.4
[11:40:47] [Server thread/INFO]: Author: Joshb_
[11:40:47] [Server thread/INFO]:  
[11:40:47] [Server thread/INFO]: ------------------------------
[11:40:47] [Server thread/INFO]: [spark] Enabling spark v1.9.43
[11:40:47] [Server thread/INFO]: [spark] Using Paper ServerTickStartEvent for tick monitoring
[11:40:47] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: spark [1.9.43]
[11:40:47] [Server thread/INFO]: [spark] Registered PlaceholderAPI placeholders
[11:40:47] [Server thread/INFO]: [ajStartCommands] Enabling ajStartCommands v2.0.3*
[11:40:47] [Server thread/INFO]: ajStartCommands v2.0.3 by ajgeiss0702 has been enabled!
[11:40:47] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.31
[11:40:47] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises-10.0.31-Free.jar
[11:40:47] [Server thread/INFO]: [LibsDisguises] Discovered nms version: v1_16_R3
[11:40:47] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1119
[11:40:47] [Server thread/INFO]: [LibsDisguises] Build Date: 09/08/2022 06:41
[11:40:47] [Server thread/WARN]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[11:40:47] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[11:40:48] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[11:40:48] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[11:40:48] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[11:40:48] [Server thread/INFO]: [LibsDisguises] The author sees Metrics disabled, the author is sad
[11:40:48] [Server thread/INFO]: [FishingLoot] Enabling FishingLoot v1.0.0
[11:40:48] [Server thread/INFO]: [FishingLoot] Enchants loaded
[11:40:48] [Server thread/INFO]: [FishingLoot] Loot loaded
[11:40:48] [Server thread/INFO]: [PL-Hide] Enabling PL-Hide v1.5.21
[11:40:48] [Server thread/INFO]: [voicechat] Enabling voicechat v1.16.5-1.10.0
[11:40:48] [Server thread/INFO]: [voicechat] Compatibility version 10
[11:40:48] [Server thread/INFO]: [voicechat] Loading translations
[11:40:48] [VoiceChatServerThread/INFO]: [voicechat] Server started at port 24454
[11:40:48] [Server thread/INFO]: [xStaff] Enabling xStaff v2.0.2*
[11:40:48] [Server thread/INFO]: [xStaff]       _____ _         __  __ 
[11:40:48] [Server thread/INFO]: [xStaff]      /  ___| |       / _|/ _|
[11:40:48] [Server thread/INFO]: [xStaff] __  _\ `--.| |_ __ _| |_| |_ 
[11:40:48] [Server thread/INFO]: [xStaff] \ \/ /`--. \ __/ _` |  _|  _|
[11:40:48] [Server thread/INFO]: [xStaff]  >  </\__/ / || (_| | | | |  
[11:40:48] [Server thread/INFO]: [xStaff] /_/\_\____/ \__\__,_|_| |_|  
[11:40:48] [Server thread/INFO]: [xStaff]  
[11:40:52] [Server thread/INFO]: [xyz.invisraidinq.licenseapi.license.LicenseLogger] [xStaff Licensing] Your xStaff license has been authenticated.
[11:40:52] [Server thread/INFO]: [xyz.invisraidinq.licenseapi.license.LicenseLogger] [xStaff Licensing] Thank you for purchasing the plugin, Protagnst!
[11:40:55] [Server thread/INFO]: [xStaff] [xStaff] License Valid, plugin enabling...
[11:40:55] [Server thread/INFO]: [xStaff] Setting up permission type VAULT
[11:40:55] [Server thread/INFO]: [xStaff] Permission type VAULT has been set up
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the Broadcast module
[11:40:55] [Server thread/INFO]: [xStaff] The Broadcast module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the Freeze module
[11:40:55] [Server thread/INFO]: [xStaff] The Freeze module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the RandomTP module
[11:40:55] [Server thread/INFO]: [xStaff] The RandomTP module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the Staff Join and Leave module
[11:40:55] [Server thread/INFO]: [xStaff] The Staff Join and Leave module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the StaffChat module
[11:40:55] [Server thread/INFO]: [xStaff] The StaffChat module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Setting up the Staff Help module
[11:40:55] [Server thread/INFO]: [xStaff] The Staff Help module has been successfully enabled
[11:40:55] [Server thread/INFO]: [xStaff] Enabled a total of 6 modules
[11:40:55] [Server thread/INFO]: [xStaff] Plugin started in 7339ms
[11:40:55] [Server thread/INFO]: [VentureChat] Enabling VentureChat v3.4.4
[11:40:55] [Server thread/INFO]: [VentureChat] - Initializing...
[11:40:55] [Server thread/INFO]: [VentureChat] - Config found! Loading file.
[11:40:55] [Server thread/INFO]: [VentureChat] - Checking for Vault...
[11:40:55] [Server thread/INFO]: [VentureChat] - Loading player data
[11:40:55] [Server thread/INFO]: [VentureChat] - Registering Listeners
[11:40:55] [Server thread/INFO]: [VentureChat] - Attaching to Executors
[11:40:55] [Server thread/INFO]: [VentureChat] - Establishing BungeeCord
[11:40:55] [Server thread/INFO]: [VentureChat] - Enabling PlaceholderAPI Hook
[11:40:55] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: venturechat [3.4.4]
[11:40:55] [Server thread/INFO]: [VentureChat] - Enabled Successfully
[11:40:55] [Server thread/INFO]: [DisablePotions] Enabling DisablePotions v1.0
[11:40:55] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.7
[11:40:56] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[11:40:56] [Server thread/INFO]: [Essentials] No kits found to migrate.
[11:40:56] [Server thread/INFO]: [Essentials] Loaded 38132 items from items.json.
[11:40:56] [Server thread/INFO]: [Essentials] Using locale en_US
[11:40:56] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[11:40:56] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[11:40:56] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[11:40:56] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[11:40:56] [Server thread/INFO]: [LiteBans] Enabling LiteBans v2.10.4
[11:40:57] [Server thread/INFO]: [LiteBans] Loaded 4 templates from templates.yml!
[11:40:57] [Server thread/INFO]: [LiteBans] Loading SQL driver: mysql 8.0.29 (com.mysql.cj.jdbc.Driver)
[11:40:57] [Server thread/INFO]: [LiteBans] Connecting to database...
[11:40:57] [Server thread/INFO]: [LiteBans] litebans-pool - Starting...
[11:40:57] [Server thread/INFO]: [LiteBans] litebans-pool - Start completed.
[11:40:57] [Server thread/INFO]: [LiteBans] Connected to MySQL database successfully (54.8 ms).
[11:40:57] [Server thread/INFO]: [LiteBans] [Sync] Server name: Events
[11:40:57] [Server thread/INFO]: [LiteBans] [Sync] Server UUID: 5448015c999e4ebfacf938c56163cead <1>
[11:40:57] [Server thread/INFO]: [LiteBans] Database connection fully initialized (67.7 ms).
[11:40:57] [Server thread/INFO]: [LiteBans] v2.10.4 enabled. Startup took 122 ms.
[11:40:57] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.12.10-SNAPSHOT
[11:40:57] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.5+3827266
[11:40:57] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[11:40:57] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[11:40:57] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[11:40:57] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[11:40:57] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[11:40:57] [Server thread/INFO]: [WorldGuard] Loading region data...
[11:40:57] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2753)
[11:40:57] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[11:40:57] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[11:40:57] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.1.4-3aa1b5d2
[11:40:57] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.16.5)...
[11:40:57] [Server thread/INFO]: [MythicMobs] The server is running PaperSpigot; enabled PaperSpigot exclusive functionality
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 20 ms to scan 1 urls, producing 3 keys and 21 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 6 ms to scan 1 urls, producing 3 keys and 27 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 0 keys and 0 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 4 ms to scan 1 urls, producing 3 keys and 12 values 
[11:40:57] [Server thread/INFO]: [MythicMobs] MythicMobs LibsDisguises Support has been enabled!
[11:40:57] [Server thread/INFO]: [MythicMobs] MythicMobs PlaceholderAPI Support has been enabled!
[11:40:57] [Server thread/INFO]: [MythicMobs] MythicMobs ProtocolLib Support has been enabled!
[11:40:57] [Server thread/INFO]: [MythicMobs] MythicMobs Vault Support has been enabled!
[11:40:57] [Server thread/INFO]: [MythicMobs] MythicMobs WorldGuard Support has been enabled!
[11:40:57] [Server thread/INFO]: [MythicMobs] Loading Mob Registry...
[11:40:57] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/SavedData
[11:40:57] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/SavedData/worlds
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 12 ms to scan 1 urls, producing 11 keys and 423 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 17 ms to scan 1 urls, producing 27 keys and 843 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 5 ms to scan 1 urls, producing 9 keys and 152 values 
[11:40:57] [Server thread/INFO]: [io.lumine.mythic.utils.reflections.Reflections] Reflections took 3 ms to scan 1 urls, producing 2 keys and 11 values 
[11:40:57] [Server thread/INFO]: [MythicMobs] LOADED
[11:40:57] [Server thread/INFO]: [MythicMobs] Loading Packs...
[11:40:57] [Server thread/INFO]: [MythicMobs] Loading Items...
[11:40:57] [Server thread/INFO]: [MythicMobs] Loading Skills...
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '1.0E-5': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.x.double>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.y.double>+<random.float.-2to2>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<caster.l.z.double>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[11:40:58] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[11:40:58] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.01to0.01>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.01to0.01>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.01to0.01>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '<random.float.-0.1to0.1>': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 87 mobs.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 vanilla mob overrides.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 104 skills.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 67 random spawns.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 mythic items.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 drop tables.
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob spawners.
[11:40:58] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[11:40:58] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[11:40:58] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.1.4 ( build 3aa1b5d2 ) has been successfully loaded!
[11:40:58] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.19.7
[11:40:58] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[11:40:58] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[11:40:58] [Server thread/INFO]: [TAB] Enabling TAB v3.1.5
[11:40:58] [Server thread/INFO]: [TAB] Server version: 1.16.5 (v1_16_R3)
[11:40:58] [Server thread/INFO]: [TAB] Loaded NMS hook in 6ms
[11:40:58] [Server thread/INFO]: [TAB] Enabled in 37ms
[11:40:58] [Server thread/INFO]: [ModelEngine] Enabling ModelEngine vR2.5.2
[11:40:58] [Server thread/INFO]: [ModelEngine] Mythic Mobs v5 loaded
[11:40:58] [Server thread/INFO]: [Model Engine] Engine Activated.
[11:40:58] [Server thread/INFO]: [Model Engine] Generator Activated.
[11:40:58] [Server thread/INFO]: [Model Engine] Resource Pack generated.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating bear.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone left_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone right_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating bear_black.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone left_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone right_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating bear_parts.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: No-clip model.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Missing hitbox.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating bear_polar.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone left_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone right_back_leg. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [30.361193]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating bird_nest.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating elk.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone left_horn. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [-22.0]
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone right_horn. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [22.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating frog.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating frog_parts.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: No-clip model.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Missing hitbox.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating hedgehog.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating lil_bird.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: No-clip model.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Missing hitbox.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating lil_bird_flying.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: No-clip model.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Missing hitbox.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_angler_fish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_barracuda.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_betta_fish1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_betta_fish2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_betta_fish3.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_blue_glaucus.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_box_jellyfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_catfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_clam.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_clownfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_crab.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_dolphin.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_dory_fish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_eletric_eel.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_garden_eel.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_giant_squid.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_hammerhead_shark1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_hammerhead_shark2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_jellyfish1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_jellyfish2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_lionfish.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone right_fin. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [25.0]
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Invalid cube cube in bone left_fin. Setting angle to 0.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Cube is not rotated within -45 to 45, or not in 22.5 increment. [-25.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_lobster1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_lobster2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_mahi_mahi.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_manatee.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_manta_ray.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_mantis_shrimp.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_narwhal.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_nautilus.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_oar_fish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_ocean_snail.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_octopus_1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_octopus_2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_orca.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_piranha.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_pistol_shrimp.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_pufferfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_pufferfish_blown.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_sea_angel.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_sea_slug.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_seabass.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_seahorse1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_seahorse2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_seahorse3.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_shark_1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_shark_2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_spider_crab.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_starfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_stingray.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_sunfish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_sword_fish.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_tropical_fish1.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_tropical_fish2.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_tropical_fish3.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating mso_tropical_fish4.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating owl.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating owl_parts.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: No-clip model.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Missing hitbox.
[11:40:58] [Server thread/INFO]: [Model Engine]----Warning: Unusual eye height.
[11:40:58] [Server thread/INFO]: [Model Engine]------Reason: Eye height is under ground level. [0.0]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating raccoon.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating skunk.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Generating squirrel.
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered hedgehog [0.5, 0.4375] (0.1875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_shark_1 [0.625, 1.125] (0.5625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, bite, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_lobster1 [0.4375, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, pinch, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_orca [1.4375, 1.5] (0.75)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_octopus_1 [0.625, 1.0] (0.5)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, grab, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_seahorse2 [0.4375, 0.875] (0.4375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_pistol_shrimp [0.3125, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_angler_fish [0.5625, 0.8125] (0.40625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_pufferfish_blown [0.75, 0.625] (0.3125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_eletric_eel [0.5, 0.4375] (0.21875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_betta_fish2 [0.1875, 0.4375] (0.3125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_hammerhead_shark1 [0.625, 1.0625] (0.53125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_giant_squid [1.5, 1.625] (0.8125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, grab, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered bear_parts [0.0, 0.0] (0.0)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, get_up, idle_awake, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered owl [1.0, 1.375] (1.0625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle_land, fidget, walk, idle]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered bear_polar [2.5, 2.5] (1.625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, get_up, idle_awake, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_sea_angel [0.5, 0.9375] (0.46875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_manatee [0.75, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered lil_bird [0.0, 0.0] (0.0)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, fidget]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_ocean_snail [0.625, 0.8125] (0.40625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_clownfish [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_seahorse3 [0.4375, 0.875] (0.4375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_crab [0.875, 0.75] (0.375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_sword_fish [0.375, 0.625] (0.3125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death, death2]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_box_jellyfish [2.0625, 2.1875] (1.09375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered skunk [0.625, 0.625] (0.1875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, spray, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_sunfish [0.5, 1.4375] (0.71875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_lionfish [0.4375, 0.75] (0.375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_tropical_fish2 [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_tropical_fish4 [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_hammerhead_shark2 [0.625, 1.0625] (0.53125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_shark_2 [0.625, 1.125] (0.5625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, bite, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_manta_ray [1.5625, 0.1875] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_sea_slug [0.375, 0.5625] (0.2949037)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_lobster2 [0.4375, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, pinch, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered bird_nest [0.75, 0.5] (0.25)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_garden_eel [0.1875, 1.1875] (0.59375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, hurt, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_jellyfish2 [0.625, 0.625] (0.3125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_narwhal [0.8125, 0.875] (0.4375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_spider_crab [1.0, 0.9375] (0.46875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_tropical_fish3 [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered bear_black [2.5, 2.5] (1.625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, get_up, idle_awake, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_betta_fish3 [0.1875, 0.4375] (0.375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_octopus_2 [0.625, 1.0] (0.5)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, grab, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered elk [1.25, 1.75] (1.875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, fidget, fidget2, walk, run, run_death, death, elk_call]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered frog [0.375, 0.375] (0.25)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, jump, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_clam [1.0, 1.0] (0.5)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, open_idle, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_oar_fish [0.0625, 0.6875] (0.34375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_stingray [1.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_piranha [0.25, 0.4375] (0.21875)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_mahi_mahi [0.375, 0.6875] (0.34375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_starfish [0.625, 0.25] (0.125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_tropical_fish1 [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_mantis_shrimp [0.5625, 0.6875] (0.59375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered lil_bird_flying [0.0, 0.0] (0.0)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, fidget]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered squirrel [0.625, 0.625] (0.31314823)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_seahorse1 [0.4375, 0.875] (0.4375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered bear [2.5, 2.5] (1.625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, get_up, idle_awake, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered frog_parts [0.0, 0.0] (0.0)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, jump, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_seabass [0.25, 0.5] (0.25)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered raccoon [0.75, 0.75] (0.375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, run, fidget, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_jellyfish1 [0.625, 0.625] (0.3125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_catfish [0.6875, 0.75] (0.375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_dolphin [0.4375, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_betta_fish1 [0.1875, 0.4375] (0.4375)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_barracuda [0.3125, 0.5] (0.25)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, attack, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_dory_fish [0.1875, 0.3125] (0.15625)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_blue_glaucus [0.75, 0.3125] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered owl_parts [0.0, 0.0] (0.0)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: []
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_pufferfish [0.3125, 0.3125] (0.18747854)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [Model Engine]--Registered mso_nautilus [0.5, 0.5625] (0.28125)
[11:40:58] [Server thread/INFO]: [Model Engine]----State Priority [lowest -> highest]: [idle, walk, death]
[11:40:58] [Server thread/INFO]: 
[11:40:58] [Server thread/INFO]: [EssentialsSpawn] Enabling EssentialsSpawn v2.19.7
[11:40:58] [Server thread/INFO]: [EssentialsSpawn] Starting Metrics. Opt-out using the global bStats config.
[11:40:58] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2
[11:40:58] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[11:40:58] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[11:40:58] [Server thread/INFO]: --------------------
[11:40:58] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[11:40:58] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[11:40:58] [Server thread/INFO]: --------------------
[11:40:58] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.3
[11:40:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.3]
[11:40:59] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[11:40:59] [Server thread/INFO]: [PremiumVanish] Hooked into LibsDisguises
[11:40:59] [Server thread/INFO]: [PremiumVanish] Hooked into Essentials
[11:40:59] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[11:40:59] [Server thread/INFO]: [MyrUtils2] Enabling MyrUtils2 v2.0
[11:41:00] [Server thread/INFO]: Database connection successful
[11:41:00] [Server thread/INFO]: [InvSee++_Clear] Enabling InvSeePlusPlus_Clear v0.12.10-SNAPSHOT
[11:41:00] [Server thread/INFO]: [InvSee++_Give] Enabling InvSeePlusPlus_Give v0.12.10-SNAPSHOT
[11:41:00] [Server thread/INFO]: [CustomCrafting] Enabling CustomCrafting v4.16.3.2
[11:41:00] [Server thread/INFO]: [CustomCrafting] ____ _  _ ____ ___ ____ _  _ ____ ____ ____ ____ ___ _ _  _ ____ 
[11:41:00] [Server thread/INFO]: [CustomCrafting] |    |  | [__   |  |  | |\/| |    |__/ |__| |___  |  | |\ | | __ 
[11:41:00] [Server thread/INFO]: [CustomCrafting] |___ |__| ___]  |  |__| |  | |___ |  \ |  | |     |  | | \| |__]
[11:41:00] [Server thread/INFO]: [CustomCrafting]     Version    | v4.16.3.2
[11:41:00] [Server thread/INFO]: [CustomCrafting]     WolfyUtils | v4.16.8.0
[11:41:00] [Server thread/INFO]: [CustomCrafting]     Bukkit     | git-Purpur-1171 (MC: 1.16.5)(API: 1.16.5-R0.1-SNAPSHOT)
[11:41:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Spigot: v1_16_R3! Trying to find NMS support
[11:41:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] NMS support 'MC1_16_R3' loaded!
[11:41:00] [Server thread/INFO]: [NBTAPI] [NBTAPI] Found Gson: class com.google.gson.Gson
[11:41:00] [Server thread/INFO]: [CustomCrafting] 
[11:41:00] [Server thread/INFO]: [CustomCrafting] Special thanks to my Patrons for supporting this project: 
[11:41:00] [Server thread/INFO]: [CustomCrafting] Omarlatif, Nat R, Apprehentice, Junye Zhou, PwassonDoDouce, Mr_Mint_
[11:41:00] [Server thread/INFO]: [CustomCrafting] Mithran, Isabel Maskrey, Spunkerz, Teddy
[11:41:00] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[11:41:00] [Server thread/INFO]: [CustomCrafting] Loaded fallback language "en_US" v6.1.0 translated by WolfyScript
[11:41:00] [Server thread/INFO]: [CustomCrafting] Loaded active language "en_US" v6.1.0 translated by WolfyScript
[11:41:00] [Server thread/INFO]: [CustomCrafting] Detected ProtocolLib... initiating additional features.
[11:41:00] [Server thread/INFO]: [CustomCrafting] Registering PlaceHolder
[11:41:00] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: customcrafting [4.16.3.2]
[11:41:00] [Server thread/INFO]: [CustomCrafting] Data destination: LOCAL
[11:41:00] [Server thread/WARN]: [CustomCrafting] Looks like you are using 1.16. This will impact the Cooking Recipe Performance! Please update to 1.17 and/or use Paper!
[11:41:00] [Server thread/INFO]: [CustomCrafting] Initiating Inventory GUIs
[11:41:00] [Server thread/INFO]: [CustomCrafting] Register ItemCreator Tabs
[11:41:00] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[11:41:00] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 3 recipes; Skipped: 0 error/s, 0 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 3 recipes
[11:41:00] [Server thread/INFO]: [CustomCrafting] 
[11:41:00] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[11:41:00] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[11:41:00] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[11:41:00] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[11:41:00] [ForkJoinPool.commonPool-worker-53/WARN]: [PlaceholderAPI] Loaded class net.ess3.api.IEssentials from Essentials v2.19.7 which is not a depend, softdepend or loadbefore of this plugin.
[11:41:00] [Server thread/INFO]: Running delayed init tasks
[11:41:00] [Craft Scheduler Thread - 1 - Essentials/INFO]: [Essentials] Fetching version information...
[11:41:00] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [Model Engine] Generating zipped resource pack.
[11:41:00] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[11:41:00] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[11:41:00] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] Checking for Updates ... 
[11:41:00] [Server thread/INFO]: [Citizens] Loaded 0 NPCs.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'pelt' in 'DropItemMechanic': Drop type not found.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'pelt' in 'DropItemMechanic': Drop type not found.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'pelt' in 'DropItemMechanic': Drop type not found.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'Elk_Antlers 1 0.25' in 'wilderness.yml': Drop type not found.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'Elk_Meat 1 1' in 'wilderness.yml': Drop type not found.
[11:41:00] [Server thread/WARN]: [MythicMobs] ✗ Config Error for Drop 'Elk_Meat 1 1' in 'wilderness.yml': Drop type not found.
[11:41:00] [Server thread/INFO]: Done (19.323s)! For help, type "help"
[11:41:00] [Server thread/INFO]: Timings Reset
[11:41:00] [Server thread/INFO]: [WolfyUtilities] Dependencies Loaded. Calling DependenciesLoadedEvent!
[11:41:00] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[11:41:00] [Server thread/INFO]: [CustomCrafting] Loading Recipes & Items
[11:41:00] [Server thread/INFO]: [CustomCrafting] - - - - [Local Storage] - - - -
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Looking through data folder...
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Items
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loading Recipes
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 0 recipes; Skipped: 0 error/s, 3 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL_OLD] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL_LEGACY] Loaded 0 recipes; Skipped: 0 error/s, 0 already existing
[11:41:00] [Server thread/INFO]: [CustomCrafting] [LOCAL] Loaded 3 recipes
[11:41:00] [Server thread/INFO]: [CustomCrafting] 
[11:41:00] [Server thread/INFO]: [CustomCrafting] Indexing Recipe Book...
[11:41:00] [Server thread/INFO]: [CustomCrafting] Indexed Recipe Book!
[11:41:00] [Server thread/INFO]: [CustomCrafting] ------------------------------------------------------------------------
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@2bb5554[id=<null>,name=POSITIVE_ERROR,properties={},legacy=false] (/24.138.44.255:58066) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@1e8051cc[id=<null>,name=BengalTeaEnjoyer,properties={},legacy=false] (/74.102.1.193:64724) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@26a706be[id=<null>,name=CraftedRS,properties={},legacy=false] (/99.190.21.42:54102) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@30739f81[id=<null>,name=PeepoF,properties={},legacy=false] (/109.240.99.241:8811) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@ecc859a[id=<null>,name=x_Dr24k,properties={},legacy=false] (/85.146.4.28:60297) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@18b9dd2[id=<null>,name=Overseer_77,properties={},legacy=false] (/222.152.184.101:61258) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@1f87f9ab[id=<null>,name=here_to_live,properties={},legacy=false] (/174.126.148.31:24418) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@33a4f24d[id=<null>,name=connr1,properties={},legacy=false] (/76.169.173.194:58192) lost connection: Disconnected
[11:41:00] [Server thread/INFO]: com.mojang.authlib.GameProfile@592e41f6[id=<null>,name=soupy_TV,properties={},legacy=false] (/47.55.249.72:56575) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@2601c62d[id=<null>,name=InvertedLuck,properties={},legacy=false] (/27.253.81.78:60894) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@53003707[id=<null>,name=O_Doggy688,properties={},legacy=false] (/72.74.185.189:62130) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@57eadd85[id=<null>,name=PeepoF,properties={},legacy=false] (/109.240.99.241:8945) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@45927668[id=<null>,name=gamingghost74,properties={},legacy=false] (/86.21.84.147:57570) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@6d0af059[id=<null>,name=Nchilada,properties={},legacy=false] (/82.45.69.171:61380) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3f604af0[id=<null>,name=PKN_Dragozz,properties={},legacy=false] (/88.109.8.29:58966) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3e67ae6c[id=<null>,name=GamingSam7309,properties={},legacy=false] (/75.82.185.50:61144) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@6810aefe[id=<null>,name=Macus082,properties={},legacy=false] (/83.11.90.22:50391) lost connection: Disconnected
[11:41:01] [Craft Scheduler Thread - 4 - ModelEngine/INFO]: [Model Engine] Resource pack zipped.
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@52a2039d[id=<null>,name=TheFailedCat,properties={},legacy=false] (/188.183.153.121:49346) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@6f28e4f3[id=<null>,name=Dynants,properties={},legacy=false] (/77.248.181.92:49663) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@6cbf33b4[id=<null>,name=DrewBlue_,properties={},legacy=false] (/75.113.124.106:52862) lost connection: Disconnected
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@1b51783[id=<null>,name=Overseer_77,properties={},legacy=false] (/222.152.184.101:61277) lost connection: Disconnected
[11:41:01] [User Authenticator #1/INFO]: UUID of player Schway_Goose is 6eb34f77-60f9-47b5-83a8-c43d8da93278
[11:41:01] [User Authenticator #2/INFO]: UUID of player Hughin is b2c40489-0d49-400a-aea9-585aa78e1e8f
[11:41:01] [User Authenticator #4/INFO]: UUID of player EwwwApex is f4109ab9-08f4-4ff2-8bac-de17bb15f6a1
[11:41:01] [User Authenticator #3/INFO]: UUID of player Eek1122 is b82cccab-cb1e-454f-83f8-eb8b71398b4e
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3f459ffd[id=b2c40489-0d49-400a-aea9-585aa78e1e8f,name=Hughin,properties={textures=[com.mojang.authlib.properties.Property@795ab740]},legacy=false] (/135.19.17.101:64679): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #4/INFO]: UUID of player TheFlexur46 is 4f10caa2-5e07-41a1-b4d4-5354b2900d96
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1ab6bd80[id=6eb34f77-60f9-47b5-83a8-c43d8da93278,name=Schway_Goose,properties={textures=[com.mojang.authlib.properties.Property@3b34ba7f]},legacy=false] (/72.89.182.84:54792): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #1/INFO]: UUID of player TekkyDelta is 2bc844d1-cc68-4ad4-92c4-3bca2971856d
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1c553bd5[id=f4109ab9-08f4-4ff2-8bac-de17bb15f6a1,name=EwwwApex,properties={textures=[com.mojang.authlib.properties.Property@2de084bd]},legacy=false] (/206.21.138.211:58042): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@511b255d[id=4f10caa2-5e07-41a1-b4d4-5354b2900d96,name=TheFlexur46,properties={textures=[com.mojang.authlib.properties.Property@2718efcd]},legacy=false] (/92.187.217.118:62057): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #7/INFO]: UUID of player Lost_Cookie is efdef98b-0bb1-4acd-8ec8-a9533c161f16
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3f459ffd[id=b2c40489-0d49-400a-aea9-585aa78e1e8f,name=Hughin,properties={textures=[com.mojang.authlib.properties.Property@795ab740]},legacy=false] (/135.19.17.101:64679) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@1ab6bd80[id=6eb34f77-60f9-47b5-83a8-c43d8da93278,name=Schway_Goose,properties={textures=[com.mojang.authlib.properties.Property@3b34ba7f]},legacy=false] (/72.89.182.84:54792) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@1c553bd5[id=f4109ab9-08f4-4ff2-8bac-de17bb15f6a1,name=EwwwApex,properties={textures=[com.mojang.authlib.properties.Property@2de084bd]},legacy=false] (/206.21.138.211:58042) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #8/INFO]: UUID of player BalladOfAzazel is 9c9f3cf4-c178-4f84-874f-65f8af8b3f74
[11:41:01] [User Authenticator #10/INFO]: UUID of player TheCrazedJ is 4be58f18-c06f-4fac-9be9-ceeeb5dafce3
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3bcbbfde[id=b82cccab-cb1e-454f-83f8-eb8b71398b4e,name=Eek1122,properties={textures=[com.mojang.authlib.properties.Property@18c09e45]},legacy=false] (/68.91.149.47:49796): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5b160042[id=2bc844d1-cc68-4ad4-92c4-3bca2971856d,name=TekkyDelta,properties={textures=[com.mojang.authlib.properties.Property@4688fdd9]},legacy=false] (/70.50.40.176:65267): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #16/INFO]: UUID of player ExtraSeat is 002794b2-dd0a-4eb6-aafa-edb337a929f1
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@511b255d[id=4f10caa2-5e07-41a1-b4d4-5354b2900d96,name=TheFlexur46,properties={textures=[com.mojang.authlib.properties.Property@2718efcd]},legacy=false] (/92.187.217.118:62057) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@dc00dbc[id=9c9f3cf4-c178-4f84-874f-65f8af8b3f74,name=BalladOfAzazel,properties={textures=[com.mojang.authlib.properties.Property@475e0aa0]},legacy=false] (/47.229.83.125:50325): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3bcbbfde[id=b82cccab-cb1e-454f-83f8-eb8b71398b4e,name=Eek1122,properties={textures=[com.mojang.authlib.properties.Property@18c09e45]},legacy=false] (/68.91.149.47:49796) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #6/INFO]: UUID of player duckycamp18 is 871612f1-32be-46a7-988f-5edd76960dcb
[11:41:01] [User Authenticator #5/INFO]: UUID of player Blinci is bd5bb475-9ef5-4a29-8dbf-712259214c3b
[11:41:01] [User Authenticator #11/INFO]: UUID of player Chatterbox00 is 713d07ba-42c8-479c-9473-13580f8d06ef
[11:41:01] [User Authenticator #19/INFO]: UUID of player CyberneticSteve is b1d5bf3a-1e9e-49f3-a45c-7203284691f5
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@46ede420[id=002794b2-dd0a-4eb6-aafa-edb337a929f1,name=ExtraSeat,properties={textures=[com.mojang.authlib.properties.Property@3b34f2a9]},legacy=false] (/50.27.232.163:54508): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@5b160042[id=2bc844d1-cc68-4ad4-92c4-3bca2971856d,name=TekkyDelta,properties={textures=[com.mojang.authlib.properties.Property@4688fdd9]},legacy=false] (/70.50.40.176:65267) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5d477d88[id=efdef98b-0bb1-4acd-8ec8-a9533c161f16,name=Lost_Cookie,properties={textures=[com.mojang.authlib.properties.Property@d20f576]},legacy=false] (/159.235.122.2:63333): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #8/INFO]: UUID of player Wooffffer is 0f0ef893-271d-42b4-b2ce-8d9c29a9cae8
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3d4abc95[id=871612f1-32be-46a7-988f-5edd76960dcb,name=duckycamp18,properties={textures=[com.mojang.authlib.properties.Property@7f845609]},legacy=false] (/173.178.109.174:57641): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@b6842d[id=713d07ba-42c8-479c-9473-13580f8d06ef,name=Chatterbox00,properties={textures=[com.mojang.authlib.properties.Property@3540c8d9]},legacy=false] (/68.115.32.225:64548): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #14/INFO]: UUID of player Lumibon is b8c76e41-aa34-4c42-9dcc-658ad4b04fb8
[11:41:01] [User Authenticator #15/INFO]: UUID of player Butterfingered69 is bdef12bd-b02f-4d18-b8be-a0cc48b8283d
[11:41:01] [User Authenticator #10/INFO]: UUID of player AMIDONBTW is a8aa64bc-977c-4c4a-aa2c-909ad9fd98c8
[11:41:01] [User Authenticator #3/INFO]: UUID of player True_Penut is c0841620-88e8-4c6d-a23c-a0a13e7b6825
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@8b1ceb2[id=bd5bb475-9ef5-4a29-8dbf-712259214c3b,name=Blinci,properties={textures=[com.mojang.authlib.properties.Property@71396422]},legacy=false] (/50.92.44.31:50184): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@dc00dbc[id=9c9f3cf4-c178-4f84-874f-65f8af8b3f74,name=BalladOfAzazel,properties={textures=[com.mojang.authlib.properties.Property@475e0aa0]},legacy=false] (/47.229.83.125:50325) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@46ede420[id=002794b2-dd0a-4eb6-aafa-edb337a929f1,name=ExtraSeat,properties={textures=[com.mojang.authlib.properties.Property@3b34f2a9]},legacy=false] (/50.27.232.163:54508) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@5d477d88[id=efdef98b-0bb1-4acd-8ec8-a9533c161f16,name=Lost_Cookie,properties={textures=[com.mojang.authlib.properties.Property@d20f576]},legacy=false] (/159.235.122.2:63333) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3d4abc95[id=871612f1-32be-46a7-988f-5edd76960dcb,name=duckycamp18,properties={textures=[com.mojang.authlib.properties.Property@7f845609]},legacy=false] (/173.178.109.174:57641) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #13/INFO]: UUID of player KonLud is 04f5d6cb-530a-4da5-b76f-58192891d043
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@e8b0adc[id=bdef12bd-b02f-4d18-b8be-a0cc48b8283d,name=Butterfingered69,properties={textures=[com.mojang.authlib.properties.Property@65042730]},legacy=false] (/75.57.3.95:63878): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #1/INFO]: UUID of player Skyknight36 is aec16c8a-30ab-4b76-981b-ad0e64dd1936
[11:41:01] [User Authenticator #16/INFO]: UUID of player Dasshlin is 8388f824-8745-4c1c-8c5b-6d888125a9ca
[11:41:01] [User Authenticator #17/INFO]: UUID of player elbobos is ae87925b-bcbc-4fb6-b68a-cbd36f432af0
[11:41:01] [User Authenticator #4/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:41:01] [User Authenticator #12/INFO]: UUID of player Cornker is ef676744-d107-4009-8b5f-02fb4cdafa3c
[11:41:01] [User Authenticator #23/INFO]: UUID of player EnderCube is f58ffb36-53d1-4c34-a5e5-c1c7e0b455f9
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7bba8117[id=a8aa64bc-977c-4c4a-aa2c-909ad9fd98c8,name=AMIDONBTW,properties={textures=[com.mojang.authlib.properties.Property@43022e29]},legacy=false] (/82.78.85.68:62678): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@b6842d[id=713d07ba-42c8-479c-9473-13580f8d06ef,name=Chatterbox00,properties={textures=[com.mojang.authlib.properties.Property@3540c8d9]},legacy=false] (/68.115.32.225:64548) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #22/INFO]: UUID of player Willbot_ is f2b9b55c-deac-45a1-9445-bab9cc4017ff
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4e7e3ad8[id=c0841620-88e8-4c6d-a23c-a0a13e7b6825,name=True_Penut,properties={textures=[com.mojang.authlib.properties.Property@1238f535]},legacy=false] (/91.36.255.38:59138): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@8b1ceb2[id=bd5bb475-9ef5-4a29-8dbf-712259214c3b,name=Blinci,properties={textures=[com.mojang.authlib.properties.Property@71396422]},legacy=false] (/50.92.44.31:50184) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #18/INFO]: UUID of player DaAwesomeVoltage is 09e544a5-f299-4fdf-8f3b-b9387b9a73f7
[11:41:01] [User Authenticator #19/INFO]: UUID of player yeojyeojo is 53630d39-f71d-425e-9889-0f79927566ba
[11:41:01] [User Authenticator #20/INFO]: UUID of player Shadow_Nevermore is 748ed43d-95dc-4934-9fd3-380b77117500
[11:41:01] [User Authenticator #2/INFO]: UUID of player ultimateminer30 is f16b4ad8-427b-4971-bd63-f8d04a5bebc8
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@273fe305[id=f58ffb36-53d1-4c34-a5e5-c1c7e0b455f9,name=EnderCube,properties={textures=[com.mojang.authlib.properties.Property@4a9dc155]},legacy=false] (/172.113.150.129:60681): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@15d35055[id=f16b4ad8-427b-4971-bd63-f8d04a5bebc8,name=ultimateminer30,properties={textures=[com.mojang.authlib.properties.Property@20f39d8b]},legacy=false] (/98.219.4.52:60088): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #11/INFO]: UUID of player Dragst2LeRetour is 13d2b37f-1f9d-439f-8d78-3848c800021a
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@756c47a3[id=09e544a5-f299-4fdf-8f3b-b9387b9a73f7,name=DaAwesomeVoltage,properties={textures=[com.mojang.authlib.properties.Property@3cc7feb8]},legacy=false] (/172.124.248.165:57516): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@e8b0adc[id=bdef12bd-b02f-4d18-b8be-a0cc48b8283d,name=Butterfingered69,properties={textures=[com.mojang.authlib.properties.Property@65042730]},legacy=false] (/75.57.3.95:63878) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@7bba8117[id=a8aa64bc-977c-4c4a-aa2c-909ad9fd98c8,name=AMIDONBTW,properties={textures=[com.mojang.authlib.properties.Property@43022e29]},legacy=false] (/82.78.85.68:62678) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@4e7e3ad8[id=c0841620-88e8-4c6d-a23c-a0a13e7b6825,name=True_Penut,properties={textures=[com.mojang.authlib.properties.Property@1238f535]},legacy=false] (/91.36.255.38:59138) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@273fe305[id=f58ffb36-53d1-4c34-a5e5-c1c7e0b455f9,name=EnderCube,properties={textures=[com.mojang.authlib.properties.Property@4a9dc155]},legacy=false] (/172.113.150.129:60681) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@15d35055[id=f16b4ad8-427b-4971-bd63-f8d04a5bebc8,name=ultimateminer30,properties={textures=[com.mojang.authlib.properties.Property@20f39d8b]},legacy=false] (/98.219.4.52:60088) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@756c47a3[id=09e544a5-f299-4fdf-8f3b-b9387b9a73f7,name=DaAwesomeVoltage,properties={textures=[com.mojang.authlib.properties.Property@3cc7feb8]},legacy=false] (/172.124.248.165:57516) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@70338046[id=aec16c8a-30ab-4b76-981b-ad0e64dd1936,name=Skyknight36,properties={textures=[com.mojang.authlib.properties.Property@4173361c]},legacy=false] (/74.140.197.171:57548): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #23/INFO]: UUID of player Taylorie is 3e998d8a-ff82-465a-b5e8-fe19aa9814b9
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@741559a0[id=53630d39-f71d-425e-9889-0f79927566ba,name=yeojyeojo,properties={textures=[com.mojang.authlib.properties.Property@628a4540]},legacy=false] (/98.61.196.87:62643): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@50dc6165[id=13d2b37f-1f9d-439f-8d78-3848c800021a,name=Dragst2LeRetour,properties={textures=[com.mojang.authlib.properties.Property@25355d36]},legacy=false] (/31.36.247.172:62578): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #21/INFO]: UUID of player HarryStew is 348333d3-59b0-4ae6-8a9d-d8e20b1363f4
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6b06d4b0[id=348333d3-59b0-4ae6-8a9d-d8e20b1363f4,name=HarryStew,properties={textures=[com.mojang.authlib.properties.Property@3be3fb38]},legacy=false] (/74.207.136.244:56630): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@70338046[id=aec16c8a-30ab-4b76-981b-ad0e64dd1936,name=Skyknight36,properties={textures=[com.mojang.authlib.properties.Property@4173361c]},legacy=false] (/74.140.197.171:57548) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7b58737f[id=3e998d8a-ff82-465a-b5e8-fe19aa9814b9,name=Taylorie,properties={textures=[com.mojang.authlib.properties.Property@4065aa25]},legacy=false] (/75.142.37.36:59826): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@741559a0[id=53630d39-f71d-425e-9889-0f79927566ba,name=yeojyeojo,properties={textures=[com.mojang.authlib.properties.Property@628a4540]},legacy=false] (/98.61.196.87:62643) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@50dc6165[id=13d2b37f-1f9d-439f-8d78-3848c800021a,name=Dragst2LeRetour,properties={textures=[com.mojang.authlib.properties.Property@25355d36]},legacy=false] (/31.36.247.172:62578) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@15ec0598[id=f2b9b55c-deac-45a1-9445-bab9cc4017ff,name=Willbot_,properties={textures=[com.mojang.authlib.properties.Property@77db0c76]},legacy=false] (/81.135.22.237:59710): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@6b06d4b0[id=348333d3-59b0-4ae6-8a9d-d8e20b1363f4,name=HarryStew,properties={textures=[com.mojang.authlib.properties.Property@3be3fb38]},legacy=false] (/74.207.136.244:56630) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@7b58737f[id=3e998d8a-ff82-465a-b5e8-fe19aa9814b9,name=Taylorie,properties={textures=[com.mojang.authlib.properties.Property@4065aa25]},legacy=false] (/75.142.37.36:59826) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@15ec0598[id=f2b9b55c-deac-45a1-9445-bab9cc4017ff,name=Willbot_,properties={textures=[com.mojang.authlib.properties.Property@77db0c76]},legacy=false] (/81.135.22.237:59710) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #9/INFO]: UUID of player Nickyhaha is 2ca3a6b0-929b-484f-95f7-92e79db8a546
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@45c8a2d7[id=b1d5bf3a-1e9e-49f3-a45c-7203284691f5,name=CyberneticSteve,properties={textures=[com.mojang.authlib.properties.Property@68722e30]},legacy=false] (/45.23.38.134:61439): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@787cef96[id=8388f824-8745-4c1c-8c5b-6d888125a9ca,name=Dasshlin,properties={textures=[com.mojang.authlib.properties.Property@74ce1184]},legacy=false] (/24.20.189.122:60259): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@314a90ac[id=0f0ef893-271d-42b4-b2ce-8d9c29a9cae8,name=Wooffffer,properties={textures=[com.mojang.authlib.properties.Property@794ccec5]},legacy=false] (/45.20.105.112:54800): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #15/INFO]: UUID of player DuskxXiao is b981d8dc-d4b3-4772-b45c-0a354bcd4cfb
[11:41:01] [User Authenticator #21/INFO]: UUID of player allgamecorner is 0fb0876c-e886-48ff-ab03-312299528723
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2a223638[id=b981d8dc-d4b3-4772-b45c-0a354bcd4cfb,name=DuskxXiao,properties={textures=[com.mojang.authlib.properties.Property@6378148c]},legacy=false] (/212.197.138.189:65051): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@45c8a2d7[id=b1d5bf3a-1e9e-49f3-a45c-7203284691f5,name=CyberneticSteve,properties={textures=[com.mojang.authlib.properties.Property@68722e30]},legacy=false] (/45.23.38.134:61439) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@787cef96[id=8388f824-8745-4c1c-8c5b-6d888125a9ca,name=Dasshlin,properties={textures=[com.mojang.authlib.properties.Property@74ce1184]},legacy=false] (/24.20.189.122:60259) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@314a90ac[id=0f0ef893-271d-42b4-b2ce-8d9c29a9cae8,name=Wooffffer,properties={textures=[com.mojang.authlib.properties.Property@794ccec5]},legacy=false] (/45.20.105.112:54800) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3d673a1f[id=2ca3a6b0-929b-484f-95f7-92e79db8a546,name=Nickyhaha,properties={textures=[com.mojang.authlib.properties.Property@3788e9d1]},legacy=false] (/46.69.82.152:59743): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@761aa5d5[id=b8c76e41-aa34-4c42-9dcc-658ad4b04fb8,name=Lumibon,properties={textures=[com.mojang.authlib.properties.Property@5dec19dc]},legacy=false] (/86.9.76.173:58606): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@2a223638[id=b981d8dc-d4b3-4772-b45c-0a354bcd4cfb,name=DuskxXiao,properties={textures=[com.mojang.authlib.properties.Property@6378148c]},legacy=false] (/212.197.138.189:65051) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@3d673a1f[id=2ca3a6b0-929b-484f-95f7-92e79db8a546,name=Nickyhaha,properties={textures=[com.mojang.authlib.properties.Property@3788e9d1]},legacy=false] (/46.69.82.152:59743) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@761aa5d5[id=b8c76e41-aa34-4c42-9dcc-658ad4b04fb8,name=Lumibon,properties={textures=[com.mojang.authlib.properties.Property@5dec19dc]},legacy=false] (/86.9.76.173:58606) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@750cc0a3[id=0fb0876c-e886-48ff-ab03-312299528723,name=allgamecorner,properties={textures=[com.mojang.authlib.properties.Property@261670c9]},legacy=false] (/141.168.189.128:57873): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@24ff3731[id=ae87925b-bcbc-4fb6-b68a-cbd36f432af0,name=elbobos,properties={textures=[com.mojang.authlib.properties.Property@1699a062]},legacy=false] (/91.178.252.210:59279): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4c742532[id=748ed43d-95dc-4934-9fd3-380b77117500,name=Shadow_Nevermore,properties={textures=[com.mojang.authlib.properties.Property@5d11dfcb]},legacy=false] (/88.88.91.236:60515): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.3]
[11:41:01] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[11:41:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.7.1]
[11:41:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: essentials [1.5.1]
[11:41:01] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend, softdepend or loadbefore of this plugin.
[11:41:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2]
[11:41:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.1]
[11:41:01] [Server thread/INFO]: 5 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@750cc0a3[id=0fb0876c-e886-48ff-ab03-312299528723,name=allgamecorner,properties={textures=[com.mojang.authlib.properties.Property@261670c9]},legacy=false] (/141.168.189.128:57873) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@24ff3731[id=ae87925b-bcbc-4fb6-b68a-cbd36f432af0,name=elbobos,properties={textures=[com.mojang.authlib.properties.Property@1699a062]},legacy=false] (/91.178.252.210:59279) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@4c742532[id=748ed43d-95dc-4934-9fd3-380b77117500,name=Shadow_Nevermore,properties={textures=[com.mojang.authlib.properties.Property@5d11dfcb]},legacy=false] (/88.88.91.236:60515) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4246f36c[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@474faa91]},legacy=false] (/82.45.69.171:61383): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@609fca6e[id=ef676744-d107-4009-8b5f-02fb4cdafa3c,name=Cornker,properties={textures=[com.mojang.authlib.properties.Property@620029be]},legacy=false] (/76.28.143.75:50570): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4b46e42a[id=4be58f18-c06f-4fac-9be9-ceeeb5dafce3,name=TheCrazedJ,properties={textures=[com.mojang.authlib.properties.Property@8756f1f]},legacy=false] (/192.101.185.164:51403): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@4246f36c[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@474faa91]},legacy=false] (/82.45.69.171:61383) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@609fca6e[id=ef676744-d107-4009-8b5f-02fb4cdafa3c,name=Cornker,properties={textures=[com.mojang.authlib.properties.Property@620029be]},legacy=false] (/76.28.143.75:50570) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@4b46e42a[id=4be58f18-c06f-4fac-9be9-ceeeb5dafce3,name=TheCrazedJ,properties={textures=[com.mojang.authlib.properties.Property@8756f1f]},legacy=false] (/192.101.185.164:51403) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #7/INFO]: UUID of player soupy_TV is d76acc78-3bb9-4b03-b2e0-3e3e68456e14
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@596668ab[id=04f5d6cb-530a-4da5-b76f-58192891d043,name=KonLud,properties={textures=[com.mojang.authlib.properties.Property@77d6a298]},legacy=false] (/81.78.156.232:50134): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@56f3717c[id=d76acc78-3bb9-4b03-b2e0-3e3e68456e14,name=soupy_TV,properties={textures=[com.mojang.authlib.properties.Property@207d557f]},legacy=false] (/47.55.249.72:56578): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #21/INFO]: UUID of player Pug_8 is 08cc5364-126b-4a82-b6a4-b6a6b2d1c88a
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@113badda[id=08cc5364-126b-4a82-b6a4-b6a6b2d1c88a,name=Pug_8,properties={textures=[com.mojang.authlib.properties.Property@6a8f1316]},legacy=false] (/84.238.195.17:31314): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@596668ab[id=04f5d6cb-530a-4da5-b76f-58192891d043,name=KonLud,properties={textures=[com.mojang.authlib.properties.Property@77d6a298]},legacy=false] (/81.78.156.232:50134) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@56f3717c[id=d76acc78-3bb9-4b03-b2e0-3e3e68456e14,name=soupy_TV,properties={textures=[com.mojang.authlib.properties.Property@207d557f]},legacy=false] (/47.55.249.72:56578) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [User Authenticator #15/INFO]: UUID of player LazyCryingCat_ is 0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc
[11:41:01] [Thread-25/INFO]: --------------------
[11:41:01] [Thread-25/INFO]: [CoreProtect] Version 21.3 is now available.
[11:41:01] [Thread-25/INFO]: [CoreProtect] Download: www.coreprotect.net/download/
[11:41:01] [Thread-25/INFO]: --------------------
[11:41:01] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@53c9ab3f[id=0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc,name=LazyCryingCat_,properties={textures=[com.mojang.authlib.properties.Property@703e4d1d]},legacy=false] (/92.81.60.132:61183): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:01] [Server thread/INFO]: com.mojang.authlib.GameProfile@113badda[id=08cc5364-126b-4a82-b6a4-b6a6b2d1c88a,name=Pug_8,properties={textures=[com.mojang.authlib.properties.Property@6a8f1316]},legacy=false] (/84.238.195.17:31314) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@53c9ab3f[id=0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc,name=LazyCryingCat_,properties={textures=[com.mojang.authlib.properties.Property@703e4d1d]},legacy=false] (/92.81.60.132:61183) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [User Authenticator #15/INFO]: UUID of player FireThreads is 852014bf-afea-4368-9b93-de143ff4773a
[11:41:02] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2aa2917a[id=852014bf-afea-4368-9b93-de143ff4773a,name=FireThreads,properties={textures=[com.mojang.authlib.properties.Property@720dc1d3]},legacy=false] (/205.185.99.29:53927): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@2aa2917a[id=852014bf-afea-4368-9b93-de143ff4773a,name=FireThreads,properties={textures=[com.mojang.authlib.properties.Property@720dc1d3]},legacy=false] (/205.185.99.29:53927) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:02] [User Authenticator #15/INFO]: UUID of player Viridianseafoam is 252bd594-4708-4212-a0d4-21f52e4dcab0
[11:41:02] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@19896c20[id=252bd594-4708-4212-a0d4-21f52e4dcab0,name=Viridianseafoam,properties={textures=[com.mojang.authlib.properties.Property@7a9cbde0]},legacy=false] (/73.177.90.6:59519): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@19896c20[id=252bd594-4708-4212-a0d4-21f52e4dcab0,name=Viridianseafoam,properties={textures=[com.mojang.authlib.properties.Property@7a9cbde0]},legacy=false] (/73.177.90.6:59519) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [CC-update-check/WARN]: [CustomCrafting] Failed to check for a update on spigot
[11:41:02] [User Authenticator #15/INFO]: UUID of player aidosb is ccf82958-cc68-4e89-996d-2157c576a8c8
[11:41:02] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@277f34cb[id=ccf82958-cc68-4e89-996d-2157c576a8c8,name=aidosb,properties={textures=[com.mojang.authlib.properties.Property@24abdef1]},legacy=false] (/85.165.8.10:53074): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:02] [Server thread/INFO]: Server lockdown activated (reason: "HOLD FOR THE DEV TEAM - APOLOGIES")
[11:41:02] [Server thread/INFO]: com.mojang.authlib.GameProfile@277f34cb[id=ccf82958-cc68-4e89-996d-2157c576a8c8,name=aidosb,properties={textures=[com.mojang.authlib.properties.Property@24abdef1]},legacy=false] (/85.165.8.10:53074) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #15/INFO]: UUID of player BengalTeaEnjoyer is b9700209-5c33-4719-ade0-41989e0e9cee
[11:41:03] [User Authenticator #21/INFO]: UUID of player Protagnst is 3302a69c-2c66-4c90-b3ea-ca3e44310e81
[11:41:03] [User Authenticator #7/INFO]: UUID of player dinosaur_digger is dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce
[11:41:03] [User Authenticator #21/INFO]: UUID of player XxON1xX is e5260a30-6898-461d-b0b7-622cadf51616
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@71290c8b[id=e5260a30-6898-461d-b0b7-622cadf51616,name=XxON1xX,properties={textures=[com.mojang.authlib.properties.Property@666c3657]},legacy=false] (/46.173.125.42:9475): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5da37101[id=b9700209-5c33-4719-ade0-41989e0e9cee,name=BengalTeaEnjoyer,properties={textures=[com.mojang.authlib.properties.Property@13f1ceb]},legacy=false] (/74.102.1.193:58872): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@71290c8b[id=e5260a30-6898-461d-b0b7-622cadf51616,name=XxON1xX,properties={textures=[com.mojang.authlib.properties.Property@666c3657]},legacy=false] (/46.173.125.42:9475) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@5da37101[id=b9700209-5c33-4719-ade0-41989e0e9cee,name=BengalTeaEnjoyer,properties={textures=[com.mojang.authlib.properties.Property@13f1ceb]},legacy=false] (/74.102.1.193:58872) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@18eadc93[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@5dc8354b]},legacy=false] (/73.44.39.11:64353): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Netty Epoll Server IO #2/INFO]: [voicechat] Received secret request of Protagnst
[11:41:03] [Netty Epoll Server IO #2/INFO]: [voicechat] Sent secret to Protagnst
[11:41:03] [Server thread/INFO]: Protagnst[/96.52.125.99:62242] logged in with entity id 163 at ([world]-185.547114813714, 102.44530069309435, -200.21473192749428)
[11:41:03] [User Authenticator #21/INFO]: UUID of player buddyboy333 is edd73eec-c6c6-4294-8754-ddb8495eded7
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@18eadc93[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@5dc8354b]},legacy=false] (/73.44.39.11:64353) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@47a098e1[id=edd73eec-c6c6-4294-8754-ddb8495eded7,name=buddyboy333,properties={textures=[com.mojang.authlib.properties.Property@5eb11639]},legacy=false] (/76.192.99.126:57997): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Thread-24/WARN]: [NBTAPI] [NBTAPI] The NBT-API located at 'package com.wolfyscript.lib.nbt.nbtapi' seems to be outdated!
[11:41:03] [Thread-24/WARN]: [NBTAPI] [NBTAPI] Current Version: '2.10.0' Newest Version: 2.11.1'
[11:41:03] [Thread-24/WARN]: [NBTAPI] [NBTAPI] Please update the NBTAPI or the plugin that contains the api(nag the mod author when the newest release has an old version, not the NBTAPI dev)!
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@47a098e1[id=edd73eec-c6c6-4294-8754-ddb8495eded7,name=buddyboy333,properties={textures=[com.mojang.authlib.properties.Property@5eb11639]},legacy=false] (/76.192.99.126:57997) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #21/INFO]: UUID of player GamingSam7309 is 4d57ae38-f395-48fb-a9fd-5c5c3013e582
[11:41:03] [User Authenticator #7/INFO]: UUID of player Macus082 is e3eda97e-4474-4903-a595-25ad5c82e1fb
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@8122505[id=4d57ae38-f395-48fb-a9fd-5c5c3013e582,name=GamingSam7309,properties={textures=[com.mojang.authlib.properties.Property@61da3fed]},legacy=false] (/75.82.185.50:61531): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #15/INFO]: UUID of player TheFailedCat is 16d038e5-17f3-46c7-9c48-f0eb6ef3ab7e
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@75ba4211[id=e3eda97e-4474-4903-a595-25ad5c82e1fb,name=Macus082,properties={textures=[com.mojang.authlib.properties.Property@3fd1b76]},legacy=false] (/83.11.90.22:50409): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@8122505[id=4d57ae38-f395-48fb-a9fd-5c5c3013e582,name=GamingSam7309,properties={textures=[com.mojang.authlib.properties.Property@61da3fed]},legacy=false] (/75.82.185.50:61531) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4f1f9224[id=16d038e5-17f3-46c7-9c48-f0eb6ef3ab7e,name=TheFailedCat,properties={textures=[com.mojang.authlib.properties.Property@672a414c]},legacy=false] (/188.183.153.121:49353): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@75ba4211[id=e3eda97e-4474-4903-a595-25ad5c82e1fb,name=Macus082,properties={textures=[com.mojang.authlib.properties.Property@3fd1b76]},legacy=false] (/83.11.90.22:50409) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@4f1f9224[id=16d038e5-17f3-46c7-9c48-f0eb6ef3ab7e,name=TheFailedCat,properties={textures=[com.mojang.authlib.properties.Property@672a414c]},legacy=false] (/188.183.153.121:49353) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #15/INFO]: UUID of player FunkyPilot9299 is 19203a37-c92b-4dce-aad3-32865fa78829
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4d0edeaf[id=19203a37-c92b-4dce-aad3-32865fa78829,name=FunkyPilot9299,properties={textures=[com.mojang.authlib.properties.Property@1ed3a4b5]},legacy=false] (/99.9.14.228:61363): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 3302a69c-2c66-4c90-b3ea-ca3e44310e81
[11:41:03] [User Authenticator #15/INFO]: UUID of player WelcominTV is 450ce967-97e2-4796-b387-48c082387adc
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@4d0edeaf[id=19203a37-c92b-4dce-aad3-32865fa78829,name=FunkyPilot9299,properties={textures=[com.mojang.authlib.properties.Property@1ed3a4b5]},legacy=false] (/99.9.14.228:61363) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@b84f353[id=450ce967-97e2-4796-b387-48c082387adc,name=WelcominTV,properties={textures=[com.mojang.authlib.properties.Property@54f7fc6c]},legacy=false] (/68.54.232.137:62079): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@b84f353[id=450ce967-97e2-4796-b387-48c082387adc,name=WelcominTV,properties={textures=[com.mojang.authlib.properties.Property@54f7fc6c]},legacy=false] (/68.54.232.137:62079) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #15/INFO]: UUID of player ZeroSpaceBannana is 884d4377-ed6e-49e6-8f9a-7353bef96935
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@f36e81e[id=884d4377-ed6e-49e6-8f9a-7353bef96935,name=ZeroSpaceBannana,properties={textures=[com.mojang.authlib.properties.Property@21a15971]},legacy=false] (/146.115.235.56:50271): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@f36e81e[id=884d4377-ed6e-49e6-8f9a-7353bef96935,name=ZeroSpaceBannana,properties={textures=[com.mojang.authlib.properties.Property@21a15971]},legacy=false] (/146.115.235.56:50271) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #15/INFO]: UUID of player Mackflurp is fb69aa4b-93b1-43d3-b9e2-2cb830e15fee
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@130b8802[id=fb69aa4b-93b1-43d3-b9e2-2cb830e15fee,name=Mackflurp,properties={textures=[com.mojang.authlib.properties.Property@3c43ad66]},legacy=false] (/217.121.254.152:50923): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #21/INFO]: UUID of player PumpkinReeses is 0bdf22d8-ae90-464d-88a4-3f21773858bb
[11:41:03] [Server thread/INFO]: com.mojang.authlib.GameProfile@130b8802[id=fb69aa4b-93b1-43d3-b9e2-2cb830e15fee,name=Mackflurp,properties={textures=[com.mojang.authlib.properties.Property@3c43ad66]},legacy=false] (/217.121.254.152:50923) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@262b3bfd[id=0bdf22d8-ae90-464d-88a4-3f21773858bb,name=PumpkinReeses,properties={textures=[com.mojang.authlib.properties.Property@6c9be5f1]},legacy=false] (/65.32.70.145:50581): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:03] [User Authenticator #7/INFO]: UUID of player mysticthanato is 7544088a-ead6-43dc-a0a1-229d28945535
[11:41:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1505de9e[id=7544088a-ead6-43dc-a0a1-229d28945535,name=mysticthanato,properties={textures=[com.mojang.authlib.properties.Property@75eaba3]},legacy=false] (/73.241.225.44:62986): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@262b3bfd[id=0bdf22d8-ae90-464d-88a4-3f21773858bb,name=PumpkinReeses,properties={textures=[com.mojang.authlib.properties.Property@6c9be5f1]},legacy=false] (/65.32.70.145:50581) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@1505de9e[id=7544088a-ead6-43dc-a0a1-229d28945535,name=mysticthanato,properties={textures=[com.mojang.authlib.properties.Property@75eaba3]},legacy=false] (/73.241.225.44:62986) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [User Authenticator #7/INFO]: UUID of player Lilac_Meadow is ada410fb-5549-416f-bd89-ba85fffd6f93
[11:41:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7c936288[id=ada410fb-5549-416f-bd89-ba85fffd6f93,name=Lilac_Meadow,properties={textures=[com.mojang.authlib.properties.Property@2e7caa82]},legacy=false] (/129.1.195.101:44823): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@7c936288[id=ada410fb-5549-416f-bd89-ba85fffd6f93,name=Lilac_Meadow,properties={textures=[com.mojang.authlib.properties.Property@2e7caa82]},legacy=false] (/129.1.195.101:44823) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Craft Scheduler Thread - 16 - Vault/INFO]: [Vault] No new version available
[11:41:04] [User Authenticator #7/INFO]: UUID of player TheEmeraldLord is b260c19a-7c28-465a-9d76-fb102caac4ed
[11:41:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@589adb46[id=b260c19a-7c28-465a-9d76-fb102caac4ed,name=TheEmeraldLord,properties={textures=[com.mojang.authlib.properties.Property@420c290c]},legacy=false] (/86.106.136.124:64541): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@589adb46[id=b260c19a-7c28-465a-9d76-fb102caac4ed,name=TheEmeraldLord,properties={textures=[com.mojang.authlib.properties.Property@420c290c]},legacy=false] (/86.106.136.124:64541) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [User Authenticator #7/INFO]: UUID of player Abhiii708 is 6c84dff6-87c2-4895-94e3-25ec02959898
[11:41:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@183eeaae[id=6c84dff6-87c2-4895-94e3-25ec02959898,name=Abhiii708,properties={textures=[com.mojang.authlib.properties.Property@456d0bba]},legacy=false] (/152.58.69.2:41537): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@183eeaae[id=6c84dff6-87c2-4895-94e3-25ec02959898,name=Abhiii708,properties={textures=[com.mojang.authlib.properties.Property@456d0bba]},legacy=false] (/152.58.69.2:41537) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [User Authenticator #7/INFO]: UUID of player FlamingSamurai is 639584b3-2e94-4014-8923-9dd7a87ba74f
[11:41:04] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@46af1e9e[id=639584b3-2e94-4014-8923-9dd7a87ba74f,name=FlamingSamurai,properties={textures=[com.mojang.authlib.properties.Property@3ad31f70]},legacy=false] (/122.62.45.41:56874): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [Server thread/INFO]: com.mojang.authlib.GameProfile@46af1e9e[id=639584b3-2e94-4014-8923-9dd7a87ba74f,name=FlamingSamurai,properties={textures=[com.mojang.authlib.properties.Property@3ad31f70]},legacy=false] (/122.62.45.41:56874) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:04] [User Authenticator #21/INFO]: UUID of player NoahAtlantis is d7477ee6-55b2-4f97-9d54-c40ac471e122
[11:41:04] [User Authenticator #15/INFO]: UUID of player Hepno is d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@173d781f[id=d7477ee6-55b2-4f97-9d54-c40ac471e122,name=NoahAtlantis,properties={textures=[com.mojang.authlib.properties.Property@216f47d0]},legacy=false] (/98.214.36.99:60985): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [User Authenticator #7/INFO]: UUID of player Darwix83 is 43f89662-66e8-4573-9d98-589458cc54c8
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@173d781f[id=d7477ee6-55b2-4f97-9d54-c40ac471e122,name=NoahAtlantis,properties={textures=[com.mojang.authlib.properties.Property@216f47d0]},legacy=false] (/98.214.36.99:60985) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: Hepno[/178.78.200.152:62999] logged in with entity id 320 at ([world]-158.3671447478401, 221.0, -260.0948443728003)
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@546eb72b[id=43f89662-66e8-4573-9d98-589458cc54c8,name=Darwix83,properties={textures=[com.mojang.authlib.properties.Property@6d78b704]},legacy=false] (/71.249.121.171:65036): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@546eb72b[id=43f89662-66e8-4573-9d98-589458cc54c8,name=Darwix83,properties={textures=[com.mojang.authlib.properties.Property@6d78b704]},legacy=false] (/71.249.121.171:65036) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Netty Epoll Server IO #3/INFO]: [voicechat] Received secret request of Hepno
[11:41:05] [Netty Epoll Server IO #3/INFO]: [voicechat] Sent secret to Hepno
[11:41:05] [User Authenticator #7/INFO]: UUID of player vpastor12 is a09db427-afd7-4791-b9b8-a536895d8200
[11:41:05] [User Authenticator #15/INFO]: UUID of player dusty172 is 163221b9-bb93-4c19-b36e-c255b70b9aff
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@431aa58[id=a09db427-afd7-4791-b9b8-a536895d8200,name=vpastor12,properties={textures=[com.mojang.authlib.properties.Property@76f7a241]},legacy=false] (/190.237.37.26:38575): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6d1380a6[id=163221b9-bb93-4c19-b36e-c255b70b9aff,name=dusty172,properties={textures=[com.mojang.authlib.properties.Property@7951aed]},legacy=false] (/75.134.172.84:60344): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@431aa58[id=a09db427-afd7-4791-b9b8-a536895d8200,name=vpastor12,properties={textures=[com.mojang.authlib.properties.Property@76f7a241]},legacy=false] (/190.237.37.26:38575) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@6d1380a6[id=163221b9-bb93-4c19-b36e-c255b70b9aff,name=dusty172,properties={textures=[com.mojang.authlib.properties.Property@7951aed]},legacy=false] (/75.134.172.84:60344) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [CC-update-check/WARN]: [CustomCrafting] Failed to check for a update on spigot
[11:41:05] [User Authenticator #15/INFO]: UUID of player QUAGLYY is c6398ee3-4055-4f6e-999b-817836ddf189
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7a51f964[id=c6398ee3-4055-4f6e-999b-817836ddf189,name=QUAGLYY,properties={textures=[com.mojang.authlib.properties.Property@2194a227]},legacy=false] (/67.171.215.248:59443): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@7a51f964[id=c6398ee3-4055-4f6e-999b-817836ddf189,name=QUAGLYY,properties={textures=[com.mojang.authlib.properties.Property@2194a227]},legacy=false] (/67.171.215.248:59443) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [User Authenticator #15/INFO]: UUID of player Bondikcrew is 0d4e7d58-6c9d-4a87-8fc7-35bd1f4f584d
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@279be09a[id=0d4e7d58-6c9d-4a87-8fc7-35bd1f4f584d,name=Bondikcrew,properties={textures=[com.mojang.authlib.properties.Property@4d78cb1e]},legacy=false] (/95.85.248.61:56399): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@279be09a[id=0d4e7d58-6c9d-4a87-8fc7-35bd1f4f584d,name=Bondikcrew,properties={textures=[com.mojang.authlib.properties.Property@4d78cb1e]},legacy=false] (/95.85.248.61:56399) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [User Authenticator #15/INFO]: UUID of player Houlethefool is b85342ea-8b4b-4f70-bfec-a631854138d2
[11:41:05] [User Authenticator #7/INFO]: UUID of player ZeroLast7 is 96bc92b2-faea-4021-921c-b234b9cd3b0f
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6e21b74c[id=96bc92b2-faea-4021-921c-b234b9cd3b0f,name=ZeroLast7,properties={textures=[com.mojang.authlib.properties.Property@34332272]},legacy=false] (/85.224.84.219:51711): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:05] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@40378516[id=b85342ea-8b4b-4f70-bfec-a631854138d2,name=Houlethefool,properties={textures=[com.mojang.authlib.properties.Property@6f1bfdff]},legacy=false] (/142.112.159.115:52520): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@6e21b74c[id=96bc92b2-faea-4021-921c-b234b9cd3b0f,name=ZeroLast7,properties={textures=[com.mojang.authlib.properties.Property@34332272]},legacy=false] (/85.224.84.219:51711) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:05] [Server thread/INFO]: com.mojang.authlib.GameProfile@40378516[id=b85342ea-8b4b-4f70-bfec-a631854138d2,name=Houlethefool,properties={textures=[com.mojang.authlib.properties.Property@6f1bfdff]},legacy=false] (/142.112.159.115:52520) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [User Authenticator #7/INFO]: UUID of player Viridianseafoam is 252bd594-4708-4212-a0d4-21f52e4dcab0
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@17225953[id=252bd594-4708-4212-a0d4-21f52e4dcab0,name=Viridianseafoam,properties={textures=[com.mojang.authlib.properties.Property@43256938]},legacy=false] (/73.177.90.6:59521): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@17225953[id=252bd594-4708-4212-a0d4-21f52e4dcab0,name=Viridianseafoam,properties={textures=[com.mojang.authlib.properties.Property@43256938]},legacy=false] (/73.177.90.6:59521) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [User Authenticator #7/INFO]: UUID of player Naohmaise is 6ffd28d0-578a-4bb1-aea6-07dae584785a
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2ce0b503[id=6ffd28d0-578a-4bb1-aea6-07dae584785a,name=Naohmaise,properties={textures=[com.mojang.authlib.properties.Property@29072dd1]},legacy=false] (/99.226.50.239:61634): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@2ce0b503[id=6ffd28d0-578a-4bb1-aea6-07dae584785a,name=Naohmaise,properties={textures=[com.mojang.authlib.properties.Property@29072dd1]},legacy=false] (/99.226.50.239:61634) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [User Authenticator #7/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7c0c4630[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@10e76009]},legacy=false] (/82.45.69.171:61386): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@7c0c4630[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@10e76009]},legacy=false] (/82.45.69.171:61386) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [User Authenticator #7/INFO]: UUID of player dinosaur_digger is dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3086171c[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@51396f66]},legacy=false] (/73.44.39.11:64380): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [User Authenticator #15/INFO]: UUID of player CookieMan12 is c1f2fa29-1f84-4a3b-8a81-e68488e7e7ba
[11:41:06] [User Authenticator #7/INFO]: UUID of player Kiabeta is 908cbfa1-bcc7-447a-9b6e-de16fb57a1de
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2a5d6afe[id=908cbfa1-bcc7-447a-9b6e-de16fb57a1de,name=Kiabeta,properties={textures=[com.mojang.authlib.properties.Property@1fa71163]},legacy=false] (/24.236.139.59:56089): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@3086171c[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@51396f66]},legacy=false] (/73.44.39.11:64380) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@60f39cb6[id=c1f2fa29-1f84-4a3b-8a81-e68488e7e7ba,name=CookieMan12,properties={textures=[com.mojang.authlib.properties.Property@29d6bb5a]},legacy=false] (/98.109.204.100:53663): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@2a5d6afe[id=908cbfa1-bcc7-447a-9b6e-de16fb57a1de,name=Kiabeta,properties={textures=[com.mojang.authlib.properties.Property@1fa71163]},legacy=false] (/24.236.139.59:56089) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:06] [Server thread/INFO]: com.mojang.authlib.GameProfile@60f39cb6[id=c1f2fa29-1f84-4a3b-8a81-e68488e7e7ba,name=CookieMan12,properties={textures=[com.mojang.authlib.properties.Property@29d6bb5a]},legacy=false] (/98.109.204.100:53663) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [User Authenticator #7/INFO]: UUID of player MaggieDrawz is 1526cad3-a7aa-4ba9-aa1d-9f8dfbb0b8c9
[11:41:07] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@50d87a84[id=1526cad3-a7aa-4ba9-aa1d-9f8dfbb0b8c9,name=MaggieDrawz,properties={textures=[com.mojang.authlib.properties.Property@41226610]},legacy=false] (/176.250.33.188:50930): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [Server thread/INFO]: com.mojang.authlib.GameProfile@50d87a84[id=1526cad3-a7aa-4ba9-aa1d-9f8dfbb0b8c9,name=MaggieDrawz,properties={textures=[com.mojang.authlib.properties.Property@41226610]},legacy=false] (/176.250.33.188:50930) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [User Authenticator #15/INFO]: UUID of player MrWaltDisney is c06cfdc9-0775-4970-bd1d-aae478fcbb0e
[11:41:07] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3fbbaec4[id=c06cfdc9-0775-4970-bd1d-aae478fcbb0e,name=MrWaltDisney,properties={textures=[com.mojang.authlib.properties.Property@25cdd97d]},legacy=false] (/174.20.178.86:62397): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [User Authenticator #7/INFO]: UUID of player Lads_Official is e6a4d0d6-38ad-4710-bb88-6f42d949f942
[11:41:07] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@597123cd[id=e6a4d0d6-38ad-4710-bb88-6f42d949f942,name=Lads_Official,properties={textures=[com.mojang.authlib.properties.Property@cee434d]},legacy=false] (/58.167.140.162:61712): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [Server thread/INFO]: com.mojang.authlib.GameProfile@3fbbaec4[id=c06cfdc9-0775-4970-bd1d-aae478fcbb0e,name=MrWaltDisney,properties={textures=[com.mojang.authlib.properties.Property@25cdd97d]},legacy=false] (/174.20.178.86:62397) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [Server thread/INFO]: com.mojang.authlib.GameProfile@597123cd[id=e6a4d0d6-38ad-4710-bb88-6f42d949f942,name=Lads_Official,properties={textures=[com.mojang.authlib.properties.Property@cee434d]},legacy=false] (/58.167.140.162:61712) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [User Authenticator #7/INFO]: UUID of player POSITIVE_ERROR is b23126e4-3de6-4092-af63-460d1e66dc1d
[11:41:07] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@223e2f9b[id=b23126e4-3de6-4092-af63-460d1e66dc1d,name=POSITIVE_ERROR,properties={textures=[com.mojang.authlib.properties.Property@56de1eb3]},legacy=false] (/24.138.44.255:58069): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [Server thread/INFO]: com.mojang.authlib.GameProfile@223e2f9b[id=b23126e4-3de6-4092-af63-460d1e66dc1d,name=POSITIVE_ERROR,properties={textures=[com.mojang.authlib.properties.Property@56de1eb3]},legacy=false] (/24.138.44.255:58069) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:07] [User Authenticator #7/INFO]: UUID of player LegacyAN is f208eae0-3d65-4bb6-98ff-5ac88bfca8e2
[11:41:08] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1848f2db[id=f208eae0-3d65-4bb6-98ff-5ac88bfca8e2,name=LegacyAN,properties={textures=[com.mojang.authlib.properties.Property@28ab852a]},legacy=false] (/69.88.191.16:57876): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@1848f2db[id=f208eae0-3d65-4bb6-98ff-5ac88bfca8e2,name=LegacyAN,properties={textures=[com.mojang.authlib.properties.Property@28ab852a]},legacy=false] (/69.88.191.16:57876) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [User Authenticator #7/INFO]: UUID of player sowl___ is 0fc476b5-ce39-491c-ad61-9d2836a7df4c
[11:41:08] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5980626[id=0fc476b5-ce39-491c-ad61-9d2836a7df4c,name=sowl___,properties={textures=[com.mojang.authlib.properties.Property@7d9d24e4]},legacy=false] (/190.196.174.204:59701): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@5980626[id=0fc476b5-ce39-491c-ad61-9d2836a7df4c,name=sowl___,properties={textures=[com.mojang.authlib.properties.Property@7d9d24e4]},legacy=false] (/190.196.174.204:59701) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [User Authenticator #7/INFO]: UUID of player mysticthanato is 7544088a-ead6-43dc-a0a1-229d28945535
[11:41:08] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6b954399[id=7544088a-ead6-43dc-a0a1-229d28945535,name=mysticthanato,properties={textures=[com.mojang.authlib.properties.Property@55124d0c]},legacy=false] (/73.241.225.44:62992): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@6b954399[id=7544088a-ead6-43dc-a0a1-229d28945535,name=mysticthanato,properties={textures=[com.mojang.authlib.properties.Property@55124d0c]},legacy=false] (/73.241.225.44:62992) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [User Authenticator #15/INFO]: UUID of player nwvy is 315eceff-f736-4bb9-8a88-ffa9e8d8c4be
[11:41:08] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5c3795f0[id=315eceff-f736-4bb9-8a88-ffa9e8d8c4be,name=nwvy,properties={textures=[com.mojang.authlib.properties.Property@76ce5fba]},legacy=false] (/93.40.185.235:54480): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:08] [Server thread/INFO]: com.mojang.authlib.GameProfile@5c3795f0[id=315eceff-f736-4bb9-8a88-ffa9e8d8c4be,name=nwvy,properties={textures=[com.mojang.authlib.properties.Property@76ce5fba]},legacy=false] (/93.40.185.235:54480) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [User Authenticator #15/INFO]: UUID of player fvvk is 058dcf59-ef77-4089-9034-e069c201a30a
[11:41:09] [User Authenticator #15/INFO]: UUID of player FunkyPilot9299 is 19203a37-c92b-4dce-aad3-32865fa78829
[11:41:09] [Server thread/INFO]: fvvk[/86.27.48.30:55930] logged in with entity id 431 at ([world]-1357.2597335150233, 93.14486472344132, 43.053366270976824)
[11:41:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@bcf9403[id=19203a37-c92b-4dce-aad3-32865fa78829,name=FunkyPilot9299,properties={textures=[com.mojang.authlib.properties.Property@7edbcb77]},legacy=false] (/99.9.14.228:61368): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@bcf9403[id=19203a37-c92b-4dce-aad3-32865fa78829,name=FunkyPilot9299,properties={textures=[com.mojang.authlib.properties.Property@7edbcb77]},legacy=false] (/99.9.14.228:61368) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [User Authenticator #15/INFO]: UUID of player SBF8 is cb1c985f-5b4c-4191-96d0-e44fdeec0284
[11:41:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@63cc7b98[id=cb1c985f-5b4c-4191-96d0-e44fdeec0284,name=SBF8,properties={textures=[com.mojang.authlib.properties.Property@5c2403bd]},legacy=false] (/124.149.183.148:52988): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@63cc7b98[id=cb1c985f-5b4c-4191-96d0-e44fdeec0284,name=SBF8,properties={textures=[com.mojang.authlib.properties.Property@5c2403bd]},legacy=false] (/124.149.183.148:52988) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [User Authenticator #15/INFO]: UUID of player clearrcat is a91d93df-e301-4dd6-b511-be63eed753a1
[11:41:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1db9a220[id=a91d93df-e301-4dd6-b511-be63eed753a1,name=clearrcat,properties={textures=[com.mojang.authlib.properties.Property@65b1df90]},legacy=false] (/79.155.94.141:61099): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@1db9a220[id=a91d93df-e301-4dd6-b511-be63eed753a1,name=clearrcat,properties={textures=[com.mojang.authlib.properties.Property@65b1df90]},legacy=false] (/79.155.94.141:61099) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [User Authenticator #15/INFO]: UUID of player x_Dr24k is d45164f7-084f-4b58-a5fa-d400e1e629b0
[11:41:09] [User Authenticator #7/INFO]: UUID of player Taylorie is 3e998d8a-ff82-465a-b5e8-fe19aa9814b9
[11:41:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@d890b1[id=3e998d8a-ff82-465a-b5e8-fe19aa9814b9,name=Taylorie,properties={textures=[com.mojang.authlib.properties.Property@1ee6772e]},legacy=false] (/75.142.37.36:59828): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1f865ca4[id=d45164f7-084f-4b58-a5fa-d400e1e629b0,name=x_Dr24k,properties={textures=[com.mojang.authlib.properties.Property@12d60e01]},legacy=false] (/85.146.4.28:60306): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@d890b1[id=3e998d8a-ff82-465a-b5e8-fe19aa9814b9,name=Taylorie,properties={textures=[com.mojang.authlib.properties.Property@1ee6772e]},legacy=false] (/75.142.37.36:59828) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:09] [Server thread/INFO]: com.mojang.authlib.GameProfile@1f865ca4[id=d45164f7-084f-4b58-a5fa-d400e1e629b0,name=x_Dr24k,properties={textures=[com.mojang.authlib.properties.Property@12d60e01]},legacy=false] (/85.146.4.28:60306) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:10] [Netty Epoll Server IO #3/INFO]: [voicechat] Received secret request of fvvk
[11:41:10] [Netty Epoll Server IO #3/INFO]: [voicechat] Sent secret to fvvk
[11:41:10] [User Authenticator #7/INFO]: UUID of player Dqshing is b016e93e-a3cf-4126-a084-89a6515107f7
[11:41:10] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7cd65592[id=b016e93e-a3cf-4126-a084-89a6515107f7,name=Dqshing,properties={textures=[com.mojang.authlib.properties.Property@58485404]},legacy=false] (/121.200.5.32:53753): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:10] [Server thread/INFO]: com.mojang.authlib.GameProfile@7cd65592[id=b016e93e-a3cf-4126-a084-89a6515107f7,name=Dqshing,properties={textures=[com.mojang.authlib.properties.Property@58485404]},legacy=false] (/121.200.5.32:53753) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:10] [User Authenticator #7/INFO]: UUID of player DrewBlue_ is b352594d-d8f6-4981-b0b5-39fcd4d8b765
[11:41:10] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3920e509[id=b352594d-d8f6-4981-b0b5-39fcd4d8b765,name=DrewBlue_,properties={textures=[com.mojang.authlib.properties.Property@39fa79c2]},legacy=false] (/75.113.124.106:52867): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:10] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Successfully authenticated player 058dcf59-ef77-4089-9034-e069c201a30a
[11:41:10] [Server thread/INFO]: com.mojang.authlib.GameProfile@3920e509[id=b352594d-d8f6-4981-b0b5-39fcd4d8b765,name=DrewBlue_,properties={textures=[com.mojang.authlib.properties.Property@39fa79c2]},legacy=false] (/75.113.124.106:52867) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:11] [User Authenticator #7/INFO]: UUID of player FlamingSamurai is 639584b3-2e94-4014-8923-9dd7a87ba74f
[11:41:11] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@76dcfa14[id=639584b3-2e94-4014-8923-9dd7a87ba74f,name=FlamingSamurai,properties={textures=[com.mojang.authlib.properties.Property@144c58c9]},legacy=false] (/122.62.45.41:56880): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:11] [Server thread/INFO]: com.mojang.authlib.GameProfile@76dcfa14[id=639584b3-2e94-4014-8923-9dd7a87ba74f,name=FlamingSamurai,properties={textures=[com.mojang.authlib.properties.Property@144c58c9]},legacy=false] (/122.62.45.41:56880) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:11] [User Authenticator #7/INFO]: UUID of player Sr9900 is ef622765-5353-4edd-a444-61d708eea20c
[11:41:11] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@22ee3e87[id=ef622765-5353-4edd-a444-61d708eea20c,name=Sr9900,properties={textures=[com.mojang.authlib.properties.Property@2b546fd3]},legacy=false] (/86.8.254.161:56487): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:11] [Server thread/INFO]: com.mojang.authlib.GameProfile@22ee3e87[id=ef622765-5353-4edd-a444-61d708eea20c,name=Sr9900,properties={textures=[com.mojang.authlib.properties.Property@2b546fd3]},legacy=false] (/86.8.254.161:56487) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [User Authenticator #7/INFO]: UUID of player dinosaur_digger is dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce
[11:41:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@52910daa[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@25454a4c]},legacy=false] (/73.44.39.11:64382): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@52910daa[id=dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce,name=dinosaur_digger,properties={textures=[com.mojang.authlib.properties.Property@25454a4c]},legacy=false] (/73.44.39.11:64382) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [User Authenticator #7/INFO]: UUID of player anfhony is da6f1893-e3b1-4c01-b76b-020e31ef50b7
[11:41:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@59718a2a[id=da6f1893-e3b1-4c01-b76b-020e31ef50b7,name=anfhony,properties={textures=[com.mojang.authlib.properties.Property@3d2fbfda]},legacy=false] (/206.188.75.132:58060): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@59718a2a[id=da6f1893-e3b1-4c01-b76b-020e31ef50b7,name=anfhony,properties={textures=[com.mojang.authlib.properties.Property@3d2fbfda]},legacy=false] (/206.188.75.132:58060) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [User Authenticator #7/INFO]: UUID of player QUAGLYY is c6398ee3-4055-4f6e-999b-817836ddf189
[11:41:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@d4b6857[id=c6398ee3-4055-4f6e-999b-817836ddf189,name=QUAGLYY,properties={textures=[com.mojang.authlib.properties.Property@2fc4352a]},legacy=false] (/67.171.215.248:59451): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@d4b6857[id=c6398ee3-4055-4f6e-999b-817836ddf189,name=QUAGLYY,properties={textures=[com.mojang.authlib.properties.Property@2fc4352a]},legacy=false] (/67.171.215.248:59451) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [User Authenticator #7/INFO]: UUID of player XxON1xX is e5260a30-6898-461d-b0b7-622cadf51616
[11:41:12] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@38e49d[id=e5260a30-6898-461d-b0b7-622cadf51616,name=XxON1xX,properties={textures=[com.mojang.authlib.properties.Property@31243312]},legacy=false] (/46.173.125.42:9491): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:12] [Server thread/INFO]: com.mojang.authlib.GameProfile@38e49d[id=e5260a30-6898-461d-b0b7-622cadf51616,name=XxON1xX,properties={textures=[com.mojang.authlib.properties.Property@31243312]},legacy=false] (/46.173.125.42:9491) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [User Authenticator #7/INFO]: UUID of player EwwwApex is f4109ab9-08f4-4ff2-8bac-de17bb15f6a1
[11:41:13] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6a53cfb7[id=f4109ab9-08f4-4ff2-8bac-de17bb15f6a1,name=EwwwApex,properties={textures=[com.mojang.authlib.properties.Property@7f3929b1]},legacy=false] (/206.21.138.211:58091): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@6a53cfb7[id=f4109ab9-08f4-4ff2-8bac-de17bb15f6a1,name=EwwwApex,properties={textures=[com.mojang.authlib.properties.Property@7f3929b1]},legacy=false] (/206.21.138.211:58091) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [User Authenticator #7/INFO]: UUID of player here_to_live is f70a4d5a-9910-42c2-b99e-79c525f3fbaf
[11:41:13] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7778fdcd[id=f70a4d5a-9910-42c2-b99e-79c525f3fbaf,name=here_to_live,properties={textures=[com.mojang.authlib.properties.Property@32e18fb4]},legacy=false] (/174.126.148.31:61346): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@7778fdcd[id=f70a4d5a-9910-42c2-b99e-79c525f3fbaf,name=here_to_live,properties={textures=[com.mojang.authlib.properties.Property@32e18fb4]},legacy=false] (/174.126.148.31:61346) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [User Authenticator #7/INFO]: UUID of player O_Doggy688 is 7657e9a2-7672-4439-b2c1-9c123360f1e1
[11:41:13] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1438fc[id=7657e9a2-7672-4439-b2c1-9c123360f1e1,name=O_Doggy688,properties={textures=[com.mojang.authlib.properties.Property@24a7ede6]},legacy=false] (/72.74.185.189:62151): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@1438fc[id=7657e9a2-7672-4439-b2c1-9c123360f1e1,name=O_Doggy688,properties={textures=[com.mojang.authlib.properties.Property@24a7ede6]},legacy=false] (/72.74.185.189:62151) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [User Authenticator #7/INFO]: UUID of player LazyCryingCat_ is 0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc
[11:41:13] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@4db311bf[id=0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc,name=LazyCryingCat_,properties={textures=[com.mojang.authlib.properties.Property@5424cc81]},legacy=false] (/92.81.60.132:61190): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:13] [Server thread/INFO]: com.mojang.authlib.GameProfile@4db311bf[id=0cf9d2cf-3a9f-4d3b-87e2-6cc177f3f9bc,name=LazyCryingCat_,properties={textures=[com.mojang.authlib.properties.Property@5424cc81]},legacy=false] (/92.81.60.132:61190) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [User Authenticator #7/INFO]: UUID of player aidosb is ccf82958-cc68-4e89-996d-2157c576a8c8
[11:41:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3ef4efda[id=ccf82958-cc68-4e89-996d-2157c576a8c8,name=aidosb,properties={textures=[com.mojang.authlib.properties.Property@747c048b]},legacy=false] (/85.165.8.10:53078): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@3ef4efda[id=ccf82958-cc68-4e89-996d-2157c576a8c8,name=aidosb,properties={textures=[com.mojang.authlib.properties.Property@747c048b]},legacy=false] (/85.165.8.10:53078) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [User Authenticator #7/INFO]: UUID of player ItsCoach is 8a8c312f-b823-438f-b4b5-f9bf79a5971a
[11:41:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@675c0c54[id=8a8c312f-b823-438f-b4b5-f9bf79a5971a,name=ItsCoach,properties={textures=[com.mojang.authlib.properties.Property@5f833d9f]},legacy=false] (/108.80.196.69:63111): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@675c0c54[id=8a8c312f-b823-438f-b4b5-f9bf79a5971a,name=ItsCoach,properties={textures=[com.mojang.authlib.properties.Property@5f833d9f]},legacy=false] (/108.80.196.69:63111) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [User Authenticator #7/INFO]: UUID of player sowl___ is 0fc476b5-ce39-491c-ad61-9d2836a7df4c
[11:41:14] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@7fbaa0d7[id=0fc476b5-ce39-491c-ad61-9d2836a7df4c,name=sowl___,properties={textures=[com.mojang.authlib.properties.Property@5c1542d2]},legacy=false] (/190.196.174.204:59711): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:14] [Server thread/INFO]: com.mojang.authlib.GameProfile@7fbaa0d7[id=0fc476b5-ce39-491c-ad61-9d2836a7df4c,name=sowl___,properties={textures=[com.mojang.authlib.properties.Property@5c1542d2]},legacy=false] (/190.196.174.204:59711) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [User Authenticator #7/INFO]: UUID of player buddyboy333 is edd73eec-c6c6-4294-8754-ddb8495eded7
[11:41:15] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@57b8d181[id=edd73eec-c6c6-4294-8754-ddb8495eded7,name=buddyboy333,properties={textures=[com.mojang.authlib.properties.Property@3a4ef2b6]},legacy=false] (/76.192.99.126:58010): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@57b8d181[id=edd73eec-c6c6-4294-8754-ddb8495eded7,name=buddyboy333,properties={textures=[com.mojang.authlib.properties.Property@3a4ef2b6]},legacy=false] (/76.192.99.126:58010) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [User Authenticator #7/INFO]: UUID of player Glorious_Morning is 013d82c9-8d02-4c11-b9c8-86e6d6b864e1
[11:41:15] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@14f3242e[id=013d82c9-8d02-4c11-b9c8-86e6d6b864e1,name=Glorious_Morning,properties={textures=[com.mojang.authlib.properties.Property@4e182d53]},legacy=false] (/68.131.19.159:55177): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@14f3242e[id=013d82c9-8d02-4c11-b9c8-86e6d6b864e1,name=Glorious_Morning,properties={textures=[com.mojang.authlib.properties.Property@4e182d53]},legacy=false] (/68.131.19.159:55177) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [User Authenticator #7/INFO]: UUID of player KonLud is 04f5d6cb-530a-4da5-b76f-58192891d043
[11:41:15] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@5bfb0988[id=04f5d6cb-530a-4da5-b76f-58192891d043,name=KonLud,properties={textures=[com.mojang.authlib.properties.Property@4594b753]},legacy=false] (/81.78.156.232:50139): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:15] [Server thread/INFO]: com.mojang.authlib.GameProfile@5bfb0988[id=04f5d6cb-530a-4da5-b76f-58192891d043,name=KonLud,properties={textures=[com.mojang.authlib.properties.Property@4594b753]},legacy=false] (/81.78.156.232:50139) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:16] [User Authenticator #7/INFO]: UUID of player Abhiii708 is 6c84dff6-87c2-4895-94e3-25ec02959898
[11:41:16] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@76ba36cc[id=6c84dff6-87c2-4895-94e3-25ec02959898,name=Abhiii708,properties={textures=[com.mojang.authlib.properties.Property@1d89c61c]},legacy=false] (/152.58.69.2:34121): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:16] [Server thread/INFO]: com.mojang.authlib.GameProfile@76ba36cc[id=6c84dff6-87c2-4895-94e3-25ec02959898,name=Abhiii708,properties={textures=[com.mojang.authlib.properties.Property@1d89c61c]},legacy=false] (/152.58.69.2:34121) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:17] [User Authenticator #7/INFO]: UUID of player Pidgey00 is d0098b67-ca63-475b-a8e2-8ed5528156a6
[11:41:17] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@504bf557[id=d0098b67-ca63-475b-a8e2-8ed5528156a6,name=Pidgey00,properties={textures=[com.mojang.authlib.properties.Property@64a12c6c]},legacy=false] (/108.173.237.54:60600): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:17] [Server thread/INFO]: com.mojang.authlib.GameProfile@504bf557[id=d0098b67-ca63-475b-a8e2-8ed5528156a6,name=Pidgey00,properties={textures=[com.mojang.authlib.properties.Property@64a12c6c]},legacy=false] (/108.173.237.54:60600) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [User Authenticator #7/INFO]: UUID of player domcraft_ is 6251485d-a37f-42ba-aff4-1da1f52019ae
[11:41:18] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@667a9b5[id=6251485d-a37f-42ba-aff4-1da1f52019ae,name=domcraft_,properties={textures=[com.mojang.authlib.properties.Property@5106f1a]},legacy=false] (/64.130.176.34:56607): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [Server thread/INFO]: com.mojang.authlib.GameProfile@667a9b5[id=6251485d-a37f-42ba-aff4-1da1f52019ae,name=domcraft_,properties={textures=[com.mojang.authlib.properties.Property@5106f1a]},legacy=false] (/64.130.176.34:56607) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [User Authenticator #7/INFO]: UUID of player itzxFabi is 5801d30e-fd83-4858-a09c-cb6124b3869e
[11:41:18] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6f8f8189[id=5801d30e-fd83-4858-a09c-cb6124b3869e,name=itzxFabi,properties={textures=[com.mojang.authlib.properties.Property@154128cd]},legacy=false] (/77.116.115.18:51801): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [Server thread/INFO]: com.mojang.authlib.GameProfile@6f8f8189[id=5801d30e-fd83-4858-a09c-cb6124b3869e,name=itzxFabi,properties={textures=[com.mojang.authlib.properties.Property@154128cd]},legacy=false] (/77.116.115.18:51801) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [User Authenticator #7/INFO]: UUID of player eevilmuffin is 46172f2e-33df-49ac-a387-68bc0372a1f1
[11:41:18] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@45e041c2[id=46172f2e-33df-49ac-a387-68bc0372a1f1,name=eevilmuffin,properties={textures=[com.mojang.authlib.properties.Property@1203c020]},legacy=false] (/187.190.30.50:55220): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [User Authenticator #15/INFO]: UUID of player Zotao is c430e444-47bb-4792-81fd-54cae71b6e5c
[11:41:18] [Server thread/INFO]: com.mojang.authlib.GameProfile@45e041c2[id=46172f2e-33df-49ac-a387-68bc0372a1f1,name=eevilmuffin,properties={textures=[com.mojang.authlib.properties.Property@1203c020]},legacy=false] (/187.190.30.50:55220) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2ca899fa[id=c430e444-47bb-4792-81fd-54cae71b6e5c,name=Zotao,properties={textures=[com.mojang.authlib.properties.Property@4de09d87]},legacy=false] (/184.147.80.115:54507): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [Server thread/INFO]: com.mojang.authlib.GameProfile@2ca899fa[id=c430e444-47bb-4792-81fd-54cae71b6e5c,name=Zotao,properties={textures=[com.mojang.authlib.properties.Property@4de09d87]},legacy=false] (/184.147.80.115:54507) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:18] [Server thread/INFO]: Hepno issued server command: /spawn
[11:41:19] [User Authenticator #15/INFO]: UUID of player Kazha_ is 2dab30aa-b1a8-4a8e-b86a-68b453c3f2d6
[11:41:19] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3fa5e09d[id=2dab30aa-b1a8-4a8e-b86a-68b453c3f2d6,name=Kazha_,properties={textures=[com.mojang.authlib.properties.Property@44d4b923]},legacy=false] (/212.3.192.14:59558): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:19] [Server thread/INFO]: com.mojang.authlib.GameProfile@3fa5e09d[id=2dab30aa-b1a8-4a8e-b86a-68b453c3f2d6,name=Kazha_,properties={textures=[com.mojang.authlib.properties.Property@44d4b923]},legacy=false] (/212.3.192.14:59558) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [User Authenticator #15/INFO]: UUID of player apeaboi is 77384815-4380-4038-be47-b669ecffc0a6
[11:41:20] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@644d03be[id=77384815-4380-4038-be47-b669ecffc0a6,name=apeaboi,properties={textures=[com.mojang.authlib.properties.Property@12ae7dea]},legacy=false] (/108.45.107.179:54728): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@644d03be[id=77384815-4380-4038-be47-b669ecffc0a6,name=apeaboi,properties={textures=[com.mojang.authlib.properties.Property@12ae7dea]},legacy=false] (/108.45.107.179:54728) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [User Authenticator #15/INFO]: UUID of player InvertedLuck is 73bc3512-98a1-435a-8924-e4e547725e6d
[11:41:20] [User Authenticator #7/INFO]: UUID of player Pcstar1 is 1d51651f-7ddc-4c2f-810e-a55f7ce93c59
[11:41:20] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@1ac1e379[id=1d51651f-7ddc-4c2f-810e-a55f7ce93c59,name=Pcstar1,properties={textures=[com.mojang.authlib.properties.Property@3348e51]},legacy=false] (/73.232.63.103:64339): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@147d273a[id=73bc3512-98a1-435a-8924-e4e547725e6d,name=InvertedLuck,properties={textures=[com.mojang.authlib.properties.Property@7d1cf85f]},legacy=false] (/27.253.81.78:59602): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@1ac1e379[id=1d51651f-7ddc-4c2f-810e-a55f7ce93c59,name=Pcstar1,properties={textures=[com.mojang.authlib.properties.Property@3348e51]},legacy=false] (/73.232.63.103:64339) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:20] [Server thread/INFO]: com.mojang.authlib.GameProfile@147d273a[id=73bc3512-98a1-435a-8924-e4e547725e6d,name=InvertedLuck,properties={textures=[com.mojang.authlib.properties.Property@7d1cf85f]},legacy=false] (/27.253.81.78:59602) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [User Authenticator #7/INFO]: UUID of player Lads_Official is e6a4d0d6-38ad-4710-bb88-6f42d949f942
[11:41:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@19357736[id=e6a4d0d6-38ad-4710-bb88-6f42d949f942,name=Lads_Official,properties={textures=[com.mojang.authlib.properties.Property@7303536b]},legacy=false] (/58.167.140.162:61727): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@19357736[id=e6a4d0d6-38ad-4710-bb88-6f42d949f942,name=Lads_Official,properties={textures=[com.mojang.authlib.properties.Property@7303536b]},legacy=false] (/58.167.140.162:61727) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [User Authenticator #7/INFO]: UUID of player m1nts is 690cf170-2b7c-4286-8d74-659d70dd19dd
[11:41:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@3d52cf09[id=690cf170-2b7c-4286-8d74-659d70dd19dd,name=m1nts,properties={textures=[com.mojang.authlib.properties.Property@35fd6324]},legacy=false] (/173.52.212.156:58134): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@3d52cf09[id=690cf170-2b7c-4286-8d74-659d70dd19dd,name=m1nts,properties={textures=[com.mojang.authlib.properties.Property@35fd6324]},legacy=false] (/173.52.212.156:58134) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [User Authenticator #7/INFO]: UUID of player Janelas is 61e43761-4615-400b-86f5-81d693bb7be5
[11:41:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@57301459[id=61e43761-4615-400b-86f5-81d693bb7be5,name=Janelas,properties={textures=[com.mojang.authlib.properties.Property@4f61420d]},legacy=false] (/78.29.162.221:57427): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@57301459[id=61e43761-4615-400b-86f5-81d693bb7be5,name=Janelas,properties={textures=[com.mojang.authlib.properties.Property@4f61420d]},legacy=false] (/78.29.162.221:57427) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [User Authenticator #7/INFO]: UUID of player Mackflurp is fb69aa4b-93b1-43d3-b9e2-2cb830e15fee
[11:41:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@2b2fe78b[id=fb69aa4b-93b1-43d3-b9e2-2cb830e15fee,name=Mackflurp,properties={textures=[com.mojang.authlib.properties.Property@623d4f87]},legacy=false] (/217.121.254.152:50931): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@2b2fe78b[id=fb69aa4b-93b1-43d3-b9e2-2cb830e15fee,name=Mackflurp,properties={textures=[com.mojang.authlib.properties.Property@623d4f87]},legacy=false] (/217.121.254.152:50931) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [User Authenticator #7/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:41:21] [Server thread/INFO]: Disconnecting com.mojang.authlib.GameProfile@6c1c501e[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@7941021]},legacy=false] (/82.45.69.171:61391): Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: com.mojang.authlib.GameProfile@6c1c501e[id=be8291ec-1f66-41bf-ac21-2940def29d92,name=Nchilada,properties={textures=[com.mojang.authlib.properties.Property@7941021]},legacy=false] (/82.45.69.171:61391) lost connection: Server lockdown active, try again later.
Reason: HOLD FOR THE DEV TEAM - APOLOGIES
[11:41:21] [Server thread/INFO]: Hepno issued server command: /suicide
[11:41:22] [User Authenticator #15/INFO]: UUID of player Dragst2LeRetour is 13d2b37f-1f9d-439f-8d78-3848c800021a
[11:41:22] [Server thread/INFO]: Database connection successful
[11:41:22] [User Authenticator #15/INFO]: UUID of player TheEmeraldLord is b260c19a-7c28-465a-9d76-fb102caac4ed
[11:41:22] [User Authenticator #15/INFO]: UUID of player DaAwesomeVoltage is 09e544a5-f299-4fdf-8f3b-b9387b9a73f7
[11:41:23] [User Authenticator #15/INFO]: UUID of player CATASTlC is 96880f49-e8fd-4661-aa85-dd7186b7ee67
[11:41:23] [User Authenticator #15/INFO]: UUID of player vbrookerye is 0926b059-bd9d-4e24-a575-6d42bf82c38e
[11:41:23] [User Authenticator #15/INFO]: UUID of player BalladOfAzazel is 9c9f3cf4-c178-4f84-874f-65f8af8b3f74
[11:41:24] [User Authenticator #15/INFO]: UUID of player buddyboy333 is edd73eec-c6c6-4294-8754-ddb8495eded7
[11:41:24] [User Authenticator #7/INFO]: UUID of player Skyknight36 is aec16c8a-30ab-4b76-981b-ad0e64dd1936
[11:41:24] [User Authenticator #7/INFO]: UUID of player soupy_TV is d76acc78-3bb9-4b03-b2e0-3e3e68456e14
[11:41:24] [User Authenticator #15/INFO]: UUID of player x_Dr24k is d45164f7-084f-4b58-a5fa-d400e1e629b0
[11:41:24] [User Authenticator #15/INFO]: UUID of player WelcominTV is 450ce967-97e2-4796-b387-48c082387adc
[11:41:24] [User Authenticator #15/INFO]: UUID of player Willbot_ is f2b9b55c-deac-45a1-9445-bab9cc4017ff
[11:41:26] [User Authenticator #15/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:41:27] [User Authenticator #15/INFO]: UUID of player Sr9900 is ef622765-5353-4edd-a444-61d708eea20c
[11:41:27] [User Authenticator #7/INFO]: UUID of player Human_Apostle is 6c652ce8-90b8-48a7-8812-cfb1b02fb30e
[11:41:29] [User Authenticator #7/INFO]: UUID of player PapiPotassium is c85ae2e7-9927-4750-ac10-cdf59deb002a
[11:41:30] [User Authenticator #7/INFO]: UUID of player ExtraSeat is 002794b2-dd0a-4eb6-aafa-edb337a929f1
[11:41:30] [User Authenticator #7/INFO]: UUID of player AMIDONBTW is a8aa64bc-977c-4c4a-aa2c-909ad9fd98c8
[11:41:30] [User Authenticator #15/INFO]: UUID of player Wooffffer is 0f0ef893-271d-42b4-b2ce-8d9c29a9cae8
[11:41:31] [User Authenticator #15/INFO]: UUID of player GamingSam7309 is 4d57ae38-f395-48fb-a9fd-5c5c3013e582
[11:41:31] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:31] [Paper Watchdog Thread/ERROR]: The server has not responded for 10 seconds! Creating thread dump
[11:41:31] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:31] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:31] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:31] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:31] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:31] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:31] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:31] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:31] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:31] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:31] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:31] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:31] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:31] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:31] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:31] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:31] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:31] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:31] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:31] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:31] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:31] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:31] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:31] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:31] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:31] [User Authenticator #15/INFO]: UUID of player MrWaltDisney is c06cfdc9-0775-4970-bd1d-aae478fcbb0e
[11:41:31] [User Authenticator #7/INFO]: UUID of player REvON9 is 5042ee92-8654-4f58-acf1-4f9486297e23
[11:41:32] [User Authenticator #7/INFO]: UUID of player Naohmaise is 6ffd28d0-578a-4bb1-aea6-07dae584785a
[11:41:32] [User Authenticator #7/INFO]: UUID of player aidosb is ccf82958-cc68-4e89-996d-2157c576a8c8
[11:41:32] [User Authenticator #7/INFO]: UUID of player HarryStew is 348333d3-59b0-4ae6-8a9d-d8e20b1363f4
[11:41:32] [User Authenticator #15/INFO]: UUID of player elbobos is ae87925b-bcbc-4fb6-b68a-cbd36f432af0
[11:41:32] [User Authenticator #15/INFO]: UUID of player Nickyhaha is 2ca3a6b0-929b-484f-95f7-92e79db8a546
[11:41:33] [User Authenticator #15/INFO]: UUID of player FireThreads is 852014bf-afea-4368-9b93-de143ff4773a
[11:41:33] [User Authenticator #21/INFO]: UUID of player Sevenwraith is 9d46f6ec-eb3a-42d8-acd8-19a9bf77aa2d
[11:41:34] [User Authenticator #7/INFO]: UUID of player here_to_live is f70a4d5a-9910-42c2-b99e-79c525f3fbaf
[11:41:34] [User Authenticator #15/INFO]: UUID of player TechWizard_ is dd1af30b-4929-415f-b2fc-1e9495257666
[11:41:34] [User Authenticator #21/INFO]: UUID of player Janelas is 61e43761-4615-400b-86f5-81d693bb7be5
[11:41:36] [User Authenticator #21/INFO]: UUID of player DrewBlue_ is b352594d-d8f6-4981-b0b5-39fcd4d8b765
[11:41:36] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:36] [Paper Watchdog Thread/ERROR]: The server has not responded for 15 seconds! Creating thread dump
[11:41:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:36] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:36] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:36] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:36] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:36] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:36] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:36] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:36] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:36] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:36] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:36] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:36] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:36] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:36] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:36] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:36] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:36] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:36] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:36] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:36] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:36] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:36] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:36] [User Authenticator #21/INFO]: UUID of player KingThorgrim is cb1791ba-e151-48b3-bcf0-85197092acae
[11:41:37] [User Authenticator #21/INFO]: UUID of player buddyboy333 is edd73eec-c6c6-4294-8754-ddb8495eded7
[11:41:37] [User Authenticator #21/INFO]: UUID of player Cornker is ef676744-d107-4009-8b5f-02fb4cdafa3c
[11:41:38] [User Authenticator #21/INFO]: UUID of player TheFailedCat is 16d038e5-17f3-46c7-9c48-f0eb6ef3ab7e
[11:41:38] [User Authenticator #21/INFO]: UUID of player True_Penut is c0841620-88e8-4c6d-a23c-a0a13e7b6825
[11:41:39] [User Authenticator #21/INFO]: UUID of player EwwwApex is f4109ab9-08f4-4ff2-8bac-de17bb15f6a1
[11:41:39] [User Authenticator #21/INFO]: UUID of player Wooffffer is 0f0ef893-271d-42b4-b2ce-8d9c29a9cae8
[11:41:39] [User Authenticator #21/INFO]: UUID of player RowansForge is d24826d0-96a4-4b47-b714-b004ca6c01dd
[11:41:39] [User Authenticator #21/INFO]: UUID of player x_Dr24k is d45164f7-084f-4b58-a5fa-d400e1e629b0
[11:41:40] [User Authenticator #21/INFO]: UUID of player Lads_Official is e6a4d0d6-38ad-4710-bb88-6f42d949f942
[11:41:40] [User Authenticator #21/INFO]: UUID of player LaggingPotato is 314f3398-3275-4463-865e-8ca4d618f447
[11:41:41] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:41] [Paper Watchdog Thread/ERROR]: The server has not responded for 20 seconds! Creating thread dump
[11:41:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:41] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:41] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:41] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:41] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:41] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:41] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:41] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:41] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:41] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:41] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:41] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:41] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:41] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:41] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:41] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:41] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:41] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:41] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:41] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:41] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:41] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:41] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:42] [User Authenticator #21/INFO]: UUID of player Pug_8 is 08cc5364-126b-4a82-b6a4-b6a6b2d1c88a
[11:41:43] [User Authenticator #21/INFO]: UUID of player TechWizard_ is dd1af30b-4929-415f-b2fc-1e9495257666
[11:41:43] [User Authenticator #15/INFO]: UUID of player vpastor12 is a09db427-afd7-4791-b9b8-a536895d8200
[11:41:43] [User Authenticator #15/INFO]: UUID of player Willbot_ is f2b9b55c-deac-45a1-9445-bab9cc4017ff
[11:41:44] [User Authenticator #15/INFO]: UUID of player Ghiugist is 6aa39d9d-81d7-4af1-a21d-8cad292e2d17
[11:41:45] [User Authenticator #15/INFO]: UUID of player AbdulJabar is 9099e3a9-a0d2-48d2-ba13-1a41ef964bb4
[11:41:46] [User Authenticator #15/INFO]: UUID of player duckycamp18 is 871612f1-32be-46a7-988f-5edd76960dcb
[11:41:46] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:46] [Paper Watchdog Thread/ERROR]: The server has not responded for 25 seconds! Creating thread dump
[11:41:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:46] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:46] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:46] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:46] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:46] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:46] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:46] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:46] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:46] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:46] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:46] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:46] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:46] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:46] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:46] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:46] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:46] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:46] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:46] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:46] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:46] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:46] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:47] [User Authenticator #15/INFO]: UUID of player Blinci is bd5bb475-9ef5-4a29-8dbf-712259214c3b
[11:41:47] [User Authenticator #21/INFO]: UUID of player Eek1122 is b82cccab-cb1e-454f-83f8-eb8b71398b4e
[11:41:47] [User Authenticator #15/INFO]: UUID of player PKN_Dragozz is 7c2c8980-16a3-43d9-9343-3c0ce0164f56
[11:41:47] [User Authenticator #21/INFO]: UUID of player Viridianseafoam is 252bd594-4708-4212-a0d4-21f52e4dcab0
[11:41:47] [User Authenticator #21/INFO]: UUID of player Houlethefool is b85342ea-8b4b-4f70-bfec-a631854138d2
[11:41:48] [User Authenticator #21/INFO]: UUID of player connr1 is b636ce5c-64d0-40cc-a342-709bd383a42e
[11:41:48] [User Authenticator #15/INFO]: UUID of player superhempfi is 2df90f12-5c67-4456-9a37-fa5ab841a1eb
[11:41:49] [User Authenticator #15/INFO]: Disconnecting com.mojang.authlib.GameProfile@2b9f1366[id=7c4ad2dc-4c84-4bd8-afec-67c12bbb0ba9,name=SEG15_024,properties={textures=[com.mojang.authlib.properties.Property@4d1ac44]},legacy=false] (/64.189.142.100:64289): You are banned from this server!

Banned on: 2023-02-04
Banned by: Console
Reason: You have died. If you believe this death was un-canonical, and you deserve an unban, you can apply for an appeal on the Discord Server.

You are permanently banned!

[11:41:50] [User Authenticator #15/INFO]: UUID of player DrewBlue_ is b352594d-d8f6-4981-b0b5-39fcd4d8b765
[11:41:51] [User Authenticator #21/INFO]: UUID of player Alrix_ is f7fe52b7-9add-4d62-87a1-d80169c5b5d6
[11:41:51] [User Authenticator #15/INFO]: UUID of player Randoes is 0d98315c-c684-453f-bb5e-e59326193ef0
[11:41:51] [User Authenticator #15/INFO]: UUID of player Mr_Babanana is 6f01e2eb-5ecf-4b6f-9d4e-f2b7afc7b9ab
[11:41:51] [User Authenticator #15/INFO]: UUID of player KonLud is 04f5d6cb-530a-4da5-b76f-58192891d043
[11:41:51] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:51] [Paper Watchdog Thread/ERROR]: The server has not responded for 30 seconds! Creating thread dump
[11:41:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:51] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:51] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:51] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:51] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:51] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:51] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:51] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:51] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:51] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:51] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:51] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:51] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:51] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:51] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:51] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:51] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:51] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:51] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:51] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:51] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:51] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:51] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:53] [User Authenticator #15/INFO]: UUID of player Dynants is 7de7a409-0cc8-48cc-badd-06cf6a514cc2
[11:41:53] [User Authenticator #15/INFO]: UUID of player elbobos is ae87925b-bcbc-4fb6-b68a-cbd36f432af0
[11:41:53] [User Authenticator #15/INFO]: UUID of player Lads_Official is e6a4d0d6-38ad-4710-bb88-6f42d949f942
[11:41:53] [User Authenticator #21/INFO]: UUID of player Pcstar1 is 1d51651f-7ddc-4c2f-810e-a55f7ce93c59
[11:41:53] [User Authenticator #15/INFO]: UUID of player ExtraSeat is 002794b2-dd0a-4eb6-aafa-edb337a929f1
[11:41:54] [User Authenticator #15/INFO]: UUID of player Pug_8 is 08cc5364-126b-4a82-b6a4-b6a6b2d1c88a
[11:41:54] [User Authenticator #15/INFO]: UUID of player ItsCoach is 8a8c312f-b823-438f-b4b5-f9bf79a5971a
[11:41:55] [User Authenticator #15/INFO]: UUID of player Schway_Goose is 6eb34f77-60f9-47b5-83a8-c43d8da93278
[11:41:55] [User Authenticator #15/INFO]: UUID of player Hijxcked is e9bac80c-2f23-41f9-b4bb-56189ca94265
[11:41:56] [User Authenticator #15/INFO]: UUID of player soupy_TV is d76acc78-3bb9-4b03-b2e0-3e3e68456e14
[11:41:56] [User Authenticator #21/INFO]: UUID of player O_Doggy688 is 7657e9a2-7672-4439-b2c1-9c123360f1e1
[11:41:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:41:56] [Paper Watchdog Thread/ERROR]: The server has not responded for 35 seconds! Creating thread dump
[11:41:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:56] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:41:56] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:41:56] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:41:56] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:41:56] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:41:56] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:41:56] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:41:56] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:41:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:56] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:41:56] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:41:56] [Paper Watchdog Thread/ERROR]:     Stack:
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:41:56] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:41:56] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:41:56] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:41:56] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:41:56] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:41:56] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:41:56] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:41:56] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:41:56] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:41:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:56] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:41:56] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:41:58] [User Authenticator #21/INFO]: UUID of player Butterfingered69 is bdef12bd-b02f-4d18-b8be-a0cc48b8283d
[11:41:58] [User Authenticator #21/INFO]: UUID of player XxON1xX is e5260a30-6898-461d-b0b7-622cadf51616
[11:41:58] [User Authenticator #21/INFO]: UUID of player Dragst2LeRetour is 13d2b37f-1f9d-439f-8d78-3848c800021a
[11:41:59] [User Authenticator #21/INFO]: UUID of player b_men_apo is 64512fdb-d48f-418d-a54e-e15f741db6f1
[11:42:00] [User Authenticator #21/INFO]: UUID of player Suntar_ is ffe89e35-fec3-4046-944e-1fed55c70ac0
[11:42:00] [User Authenticator #21/INFO]: UUID of player DuskxXiao is b981d8dc-d4b3-4772-b45c-0a354bcd4cfb
[11:42:01] [User Authenticator #21/INFO]: UUID of player TheFailedCat is 16d038e5-17f3-46c7-9c48-f0eb6ef3ab7e
[11:42:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:42:01] [Paper Watchdog Thread/ERROR]: The server has not responded for 40 seconds! Creating thread dump
[11:42:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:01] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:42:01] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:42:01] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:42:01] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:42:01] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:42:01] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:42:01] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:42:01] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:42:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:01] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:42:01] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:42:01] [Paper Watchdog Thread/ERROR]:     Stack:
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:42:01] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:42:01] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:42:01] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:42:01] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:42:01] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:42:01] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:42:01] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:42:01] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:42:01] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:42:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:01] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:42:01] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player 3302a69c-2c66-4c90-b3ea-ca3e44310e81 timed out
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Reconnecting player Protagnst
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Sent secret to Protagnst
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player 058dcf59-ef77-4089-9034-e069c201a30a timed out
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Reconnecting player fvvk
[11:42:02] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Sent secret to fvvk
[11:42:03] [User Authenticator #21/INFO]: UUID of player ultimateminer30 is f16b4ad8-427b-4971-bd63-f8d04a5bebc8
[11:42:03] [User Authenticator #15/INFO]: UUID of player Lumibon is b8c76e41-aa34-4c42-9dcc-658ad4b04fb8
[11:42:03] [User Authenticator #21/INFO]: UUID of player here_to_live is f70a4d5a-9910-42c2-b99e-79c525f3fbaf
[11:42:04] [User Authenticator #21/INFO]: UUID of player O_Doggy688 is 7657e9a2-7672-4439-b2c1-9c123360f1e1
[11:42:04] [User Authenticator #15/INFO]: UUID of player PapiPotassium is c85ae2e7-9927-4750-ac10-cdf59deb002a
[11:42:04] [User Authenticator #15/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:42:04] [User Authenticator #21/INFO]: UUID of player BlocksaverMax is 0a7ea703-fc07-4924-985b-78a508f9c5ad
[11:42:04] [User Authenticator #21/INFO]: UUID of player Willbot_ is f2b9b55c-deac-45a1-9445-bab9cc4017ff
[11:42:05] [User Authenticator #21/INFO]: UUID of player TheUltimateDix is f9579882-e00b-46ed-a1fe-1d1c02162d3f
[11:42:05] [User Authenticator #21/INFO]: UUID of player Nickyhaha is 2ca3a6b0-929b-484f-95f7-92e79db8a546
[11:42:05] [User Authenticator #15/INFO]: UUID of player TheCrazedJ is 4be58f18-c06f-4fac-9be9-ceeeb5dafce3
[11:42:06] [User Authenticator #15/INFO]: UUID of player CraftedRS is 0750aafa-4fe8-4c5d-9c3a-5b37865e28a0
[11:42:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:42:06] [Paper Watchdog Thread/ERROR]: The server has not responded for 45 seconds! Creating thread dump
[11:42:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:06] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:42:06] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:42:06] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:42:06] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:42:06] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:42:06] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:42:06] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:42:06] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:42:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:06] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:42:06] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:42:06] [Paper Watchdog Thread/ERROR]:     Stack:
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:42:06] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:42:06] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:42:06] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:42:06] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:42:06] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:42:06] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:42:06] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:42:06] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:42:06] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:42:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:06] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:42:06] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:07] [User Authenticator #21/INFO]: UUID of player FireThreads is 852014bf-afea-4368-9b93-de143ff4773a
[11:42:07] [User Authenticator #21/INFO]: UUID of player Lost_Cookie is efdef98b-0bb1-4acd-8ec8-a9533c161f16
[11:42:09] [User Authenticator #21/INFO]: UUID of player GamingSam7309 is 4d57ae38-f395-48fb-a9fd-5c5c3013e582
[11:42:09] [User Authenticator #21/INFO]: UUID of player Mackflurp is fb69aa4b-93b1-43d3-b9e2-2cb830e15fee
[11:42:09] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Player d2f6c64e-0034-400f-9ea6-4b47367d51a7 timed out
[11:42:09] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Reconnecting player Hepno
[11:42:09] [VoiceChatPacketProcessingThread/INFO]: [voicechat] Sent secret to Hepno
[11:42:10] [User Authenticator #21/INFO]: UUID of player DreadMask is 9a75cffd-462c-4c52-82d2-5e194e7a1c8e
[11:42:11] [User Authenticator #21/INFO]: UUID of player Kazha_ is 2dab30aa-b1a8-4a8e-b86a-68b453c3f2d6
[11:42:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:42:11] [Paper Watchdog Thread/ERROR]: The server has not responded for 50 seconds! Creating thread dump
[11:42:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:11] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:42:11] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:42:11] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:42:11] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:42:11] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:42:11] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:42:11] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:42:11] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:42:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:11] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:42:11] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:42:11] [Paper Watchdog Thread/ERROR]:     Stack:
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:42:11] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:42:11] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:42:11] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:42:11] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:42:11] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:42:11] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:42:11] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:42:11] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:42:11] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:42:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:11] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:42:11] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:12] [User Authenticator #21/INFO]: UUID of player DrewBlue_ is b352594d-d8f6-4981-b0b5-39fcd4d8b765
[11:42:13] [User Authenticator #21/INFO]: UUID of player KingThorgrim is cb1791ba-e151-48b3-bcf0-85197092acae
[11:42:13] [User Authenticator #21/INFO]: UUID of player PapaPapachino is 0f2ec6e1-16b8-4f9b-a58b-aef7272a1a09
[11:42:13] [User Authenticator #15/INFO]: UUID of player Eek1122 is b82cccab-cb1e-454f-83f8-eb8b71398b4e
[11:42:13] [User Authenticator #15/INFO]: UUID of player tropicul_ is 9c49e3e3-deb9-4b45-9641-5123bd582f45
[11:42:13] [User Authenticator #21/INFO]: UUID of player Hughin is b2c40489-0d49-400a-aea9-585aa78e1e8f
[11:42:14] [User Authenticator #15/INFO]: UUID of player AMIDONBTW is a8aa64bc-977c-4c4a-aa2c-909ad9fd98c8
[11:42:14] [User Authenticator #21/INFO]: UUID of player KaranBlanks is 54af66be-faca-4f53-8686-4ca8b50a60cf
[11:42:14] [User Authenticator #7/INFO]: UUID of player PapiPotassium is c85ae2e7-9927-4750-ac10-cdf59deb002a
[11:42:14] [User Authenticator #7/INFO]: UUID of player Skyknight36 is aec16c8a-30ab-4b76-981b-ad0e64dd1936
[11:42:14] [User Authenticator #21/INFO]: UUID of player TechWizard_ is dd1af30b-4929-415f-b2fc-1e9495257666
[11:42:16] [User Authenticator #21/INFO]: UUID of player CookieMan12 is c1f2fa29-1f84-4a3b-8a81-e68488e7e7ba
[11:42:16] [User Authenticator #7/INFO]: UUID of player Pug_8 is 08cc5364-126b-4a82-b6a4-b6a6b2d1c88a
[11:42:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH  - git-Purpur-1171 (MC: 1.16.5) ---
[11:42:16] [Paper Watchdog Thread/ERROR]: The server has not responded for 55 seconds! Creating thread dump
[11:42:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:16] [Paper Watchdog Thread/ERROR]: Server thread dump (Look for plugins here before reporting to Paper!):
[11:42:16] [Paper Watchdog Thread/ERROR]: Ticking entity: minecraft:player, entity class: net.minecraft.server.v1_16_R3.EntityPlayer
[11:42:16] [Paper Watchdog Thread/ERROR]: Entity status: dead: false, valid: true, alive: true, is passenger: false
[11:42:16] [Paper Watchdog Thread/ERROR]: Entity UUID: d2f6c64e-0034-400f-9ea6-4b47367d51a7
[11:42:16] [Paper Watchdog Thread/ERROR]: Position: world: 'world' at location (-158.30000001192093, 221.0, -264.69999998807907)
[11:42:16] [Paper Watchdog Thread/ERROR]: Velocity: (0.0, -0.0784000015258789, 0.0) (in blocks per tick)
[11:42:16] [Paper Watchdog Thread/ERROR]: Entity AABB: AABB[-158.60000002384186, 221.0, -265.0] -> [-158.0, 222.79999995231628, -264.39999997615814]
[11:42:16] [Paper Watchdog Thread/ERROR]: Total packets processed on the main thread for all players: 600
[11:42:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:16] [Paper Watchdog Thread/ERROR]: Current Thread: Server thread
[11:42:16] [Paper Watchdog Thread/ERROR]:     PID: 36 | Suspended: false | Native: true | State: RUNNABLE
[11:42:16] [Paper Watchdog Thread/ERROR]:     Stack:
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.Net.poll(Native Method)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:181)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.park(NioSocketImpl.java:190)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:314)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.net.Socket$SocketInputStream.read(Socket.java:976)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.fill(ReadAheadInputStream.java:107)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.readFromUnderlyingStreamIfNecessary(ReadAheadInputStream.java:150)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.ReadAheadInputStream.read(ReadAheadInputStream.java:180)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.io.FilterInputStream.read(FilterInputStream.java:132)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.FullReadInputStream.readFully(FullReadInputStream.java:64)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:63)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.SimplePacketReader.readHeader(SimplePacketReader.java:45)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:52)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.TimeTrackingPacketReader.readHeader(TimeTrackingPacketReader.java:41)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:54)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.MultiPacketReader.readHeader(MultiPacketReader.java:44)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.readMessage(NativeProtocol.java:540)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.checkErrorMessage(NativeProtocol.java:710)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendCommand(NativeProtocol.java:649)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryPacket(NativeProtocol.java:948)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.protocol.a.NativeProtocol.sendQueryString(NativeProtocol.java:894)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.NativeSession.execSQL(NativeSession.java:1073)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//com.mysql.cj.jdbc.StatementImpl.executeQuery(StatementImpl.java:1166)
[11:42:16] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Database.getBase64byID(Database.java:38)
[11:42:16] [Paper Watchdog Thread/ERROR]:         dev.hepno.myrutils2.Events.DeathBan.onPlayerDeath(DeathBan.java:110)
[11:42:16] [Paper Watchdog Thread/ERROR]:         com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor491.execute(Unknown Source)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor.lambda$create$1(EventExecutor.java:69)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.EventExecutor$$Lambda$5019/0x0000000801b5eaf8.execute(Unknown Source)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:76)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:624)
[11:42:16] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.Commandsuicide.run(Commandsuicide.java:20)
[11:42:16] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.commands.EssentialsCommand.run(EssentialsCommand.java:170)
[11:42:16] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommandEssentials(Essentials.java:814)
[11:42:16] [Paper Watchdog Thread/ERROR]:         com.earth2me.essentials.Essentials.onCommand(Essentials.java:717)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.PluginCommand.execute(PluginCommand.java:45)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.command.SimpleCommandMap.dispatch(SimpleCommandMap.java:172)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//org.bukkit.craftbukkit.v1_16_R3.CraftServer.dispatchCommand(CraftServer.java:826)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.handleCommand(PlayerConnection.java:2315)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.c(PlayerConnection.java:2130)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnection.a(PlayerConnection.java:2083)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:49)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PacketPlayInChat.a(PacketPlayInChat.java:7)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils.lambda$ensureMainThread$1(PlayerConnectionUtils.java:55)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.PlayerConnectionUtils$$Lambda$8142/0x0000000802957640.run(Unknown Source)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.TickTask.run(SourceFile:18)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeTask(IAsyncTaskHandler.java:136)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandlerReentrant.executeTask(SourceFile:23)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.executeNext(IAsyncTaskHandler.java:109)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.bb(MinecraftServer.java:1339)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.executeNext(MinecraftServer.java:1332)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.IAsyncTaskHandler.awaitTasks(IAsyncTaskHandler.java:119)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.sleepForTick(MinecraftServer.java:1308)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.w(MinecraftServer.java:1152)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer.lambda$a$0(MinecraftServer.java:293)
[11:42:16] [Paper Watchdog Thread/ERROR]:         app//net.minecraft.server.v1_16_R3.MinecraftServer$$Lambda$3184/0x0000000801347490.run(Unknown Source)
[11:42:16] [Paper Watchdog Thread/ERROR]:         [email protected]/java.lang.Thread.run(Thread.java:831)
[11:42:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:16] [Paper Watchdog Thread/ERROR]: --- DO NOT REPORT THIS TO PAPER - THIS IS NOT A BUG OR A CRASH ---
[11:42:16] [Paper Watchdog Thread/ERROR]: ------------------------------
[11:42:17] [User Authenticator #7/INFO]: UUID of player dinosaur_digger is dee5f2a4-60dc-4fd0-a7ff-7fcf57dce9ce
[11:42:18] [User Authenticator #7/INFO]: UUID of player True_Penut is c0841620-88e8-4c6d-a23c-a0a13e7b6825
[11:42:19] [User Authenticator #7/INFO]: UUID of player GamingSam7309 is 4d57ae38-f395-48fb-a9fd-5c5c3013e582
[11:42:19] [User Authenticator #21/INFO]: UUID of player Nchilada is be8291ec-1f66-41bf-ac21-2940def29d92
[11:42:19] [User Authenticator #21/INFO]: UUID of player Blinci is bd5bb475-9ef5-4a29-8dbf-712259214c3b
[11:42:19] [User Authenticator #21/INFO]: UUID of player Sevenwraith is 9d46f6ec-eb3a-42d8-acd8-19a9bf77aa2d