Paste #106986: server log

Date: 2023/03/07 08:56:01 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


[17:54:51] [ServerMain/INFO]: Building unoptimized datafixer
[17:54:52] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[17:54:53] [ServerMain/INFO]: Loaded 7 recipes
[17:54:53] [Server thread/INFO]: Starting minecraft server version 1.19.3
[17:54:53] [Server thread/INFO]: Loading properties
[17:54:53] [Server thread/INFO]: This server is running Paper version git-Paper-445 (MC: 1.19.3) (Implementing API version 1.19.3-R0.1-SNAPSHOT) (Git: 4d7269e)
[17:54:53] [Server thread/INFO]: Server Ping Player Sample Count: 12
[17:54:53] [Server thread/INFO]: Using 4 threads for Netty based IO
[17:54:53] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 8 worker threads, and gen parallelism of 8 threads
[17:54:54] [Server thread/INFO]: Default game type: SURVIVAL
[17:54:54] [Server thread/INFO]: Generating keypair
[17:54:54] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25566
[17:54:54] [Server thread/INFO]: Using epoll channel type
[17:54:54] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[17:54:54] [Server thread/INFO]: Paper: Using OpenSSL 3.0.x (Linux x86_64) cipher from Velocity.
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loading 1 libraries... please wait
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [PremiumVanish] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loading 4 libraries... please wait
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/org/eclipse/persistence/javax.persistence/2.1.0/javax.persistence-2.1.0.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/com/j256/ormlite/ormlite-core/5.0/ormlite-core-5.0.jar
[17:54:54] [Server thread/INFO]: [SpigotLibraryLoader] [FeatherBoard] Loaded library /home/amp/.ampdata/instances/Lobby/Minecraft/libraries/com/j256/ormlite/ormlite-jdbc/5.0/ormlite-jdbc-5.0.jar
[17:54:54] [Server thread/WARN]: [org.bukkit.craftbukkit.v1_19_R2.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[17:54:57] [Server thread/WARN]: Legacy plugin LaunchPads v1.5-SNAPSHOT does not specify an api-version.
[17:54:57] [Server thread/WARN]: Legacy plugin GuiShopManager v1.1.2 does not specify an api-version.
[17:54:57] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v4.6.0-23w04a-SNAPSHOT
[17:54:57] [Server thread/INFO]: [ViaVersion] ViaVersion 4.6.0-23w04a-SNAPSHOT is now loaded, injecting!
[17:54:57] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading 1.12 -> 1.13 mappings...
[17:54:57] [Via-Mappingloader-1/INFO]: [ViaVersion] Loading 1.13 -> 1.13.2 mappings...
[17:54:57] [Via-Mappingloader-2/INFO]: [ViaVersion] Loading 1.13.2 -> 1.14 mappings...
[17:54:57] [Via-Mappingloader-3/INFO]: [ViaVersion] Loading 1.14 -> 1.15 mappings...
[17:54:57] [Via-Mappingloader-4/INFO]: [ViaVersion] Loading 1.15 -> 1.16 mappings...
[17:54:57] [Via-Mappingloader-5/INFO]: [ViaVersion] Loading 1.16 -> 1.16.2 mappings...
[17:54:57] [Via-Mappingloader-6/INFO]: [ViaVersion] Loading 1.16.2 -> 1.17 mappings...
[17:54:57] [Via-Mappingloader-7/INFO]: [ViaVersion] Loading 1.17 -> 1.18 mappings...
[17:54:57] [Via-Mappingloader-8/INFO]: [ViaVersion] Loading 1.18 -> 1.19 mappings...
[17:54:57] [Via-Mappingloader-9/INFO]: [ViaVersion] Loading 1.19 -> 1.19.3 mappings...
[17:54:57] [Via-Mappingloader-10/INFO]: [ViaVersion] Loading 1.19.3 -> 1.19.3 mappings...
[17:54:57] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.0.0-SNAPSHOT-b612
[17:54:58] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.2
[17:54:58] [Server thread/INFO]: [NetworkManager] Loading server plugin NetworkManager v2.12.12
[17:54:58] [Server thread/INFO]: [NetworkManager] Loading Libraries...
[17:54:58] [Server thread/INFO]: [NetworkManager] Note: This might take a few minutes on first run. Kindly ensure internet connectivity.
[17:54:58] [Server thread/INFO]: [NetworkManager] Loaded libraries in 0.357 seconds
[17:54:58] [Server thread/INFO]: [Vault] Loading server plugin Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[17:54:58] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.5.3-SNAPSHOT-379;f702633
[17:54:59] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@1e07e5e5]
[17:54:59] [Server thread/INFO]: [VoidGen] Loading server plugin VoidGen v2.2.1
[17:54:59] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.8-beta-01+cbb2ba7
[17:54:59] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.1-b861
[17:54:59] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.30-SNAPSHOT (build 2954)
[17:54:59] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.2.4.5
[17:54:59] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.3.1.6
[17:54:59] [Server thread/INFO]: [HeadDatabase] Loading server plugin HeadDatabase v4.17.0
[17:54:59] [Server thread/INFO]: [PlayerParticles] Loading server plugin PlayerParticles v8.3
[17:54:59] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v4.6.0-23w03a-SNAPSHOT
[17:54:59] [Server thread/INFO]: [ViaBackwards] Loading translations...
[17:54:59] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.10 -> 1.9.4 mappings...
[17:54:59] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.11 -> 1.10 mappings...
[17:54:59] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.12 -> 1.11 mappings...
[17:54:59] [Via-Mappingloader-6/INFO]: [ViaBackwards] Loading 1.13 -> 1.12 mappings...
[17:54:59] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.13.2 -> 1.13 mappings...
[17:54:59] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.14 -> 1.13.2 mappings...
[17:54:59] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.15 -> 1.14 mappings...
[17:54:59] [Via-Mappingloader-10/INFO]: [ViaBackwards] Loading 1.16 -> 1.15 mappings...
[17:54:59] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.16.2 -> 1.16 mappings...
[17:54:59] [Via-Mappingloader-8/INFO]: [ViaBackwards] Loading 1.17 -> 1.16.2 mappings...
[17:54:59] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.18 -> 1.17 mappings...
[17:54:59] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.19 -> 1.18 mappings...
[17:54:59] [Via-Mappingloader-9/INFO]: [ViaBackwards] Loading 1.19.3 -> 1.19 mappings...
[17:54:59] [Via-Mappingloader-10/INFO]: [ViaVersion] Loading 1.19.3 -> 1.19.3 mappings...
[17:54:59] [Server thread/INFO]: [PremiumVanish] Loading server plugin PremiumVanish v2.8.0
[17:54:59] [Server thread/INFO]: [VoidSpawn] Loading server plugin VoidSpawn v1.20.0
[17:54:59] [Server thread/INFO]: [FeatherBoard] Loading server plugin FeatherBoard v5.1.0
[17:54:59] [Server thread/INFO]: [Spartan] Loading server plugin Spartan vPhase 498
[17:54:59] [Server thread/INFO]: [TCRestart] Loading server plugin TCRestart v3.5
[17:54:59] [Server thread/INFO]: [LaunchPads] Loading server plugin LaunchPads v1.5-SNAPSHOT
[17:54:59] [Server thread/INFO]: [SimplePets] Loading server plugin SimplePets v5.0-BUILD-197
[17:54:59] [Server thread/INFO]: [DoubleJump4NCP] Loading server plugin DoubleJump4NCP v2.4-ChimpGamer
[17:54:59] [Server thread/INFO]: [InteractiveBoard] Loading server plugin InteractiveBoard v19.1
[17:54:59] [Server thread/INFO]: [BossShopPro] Loading server plugin BossShopPro v2.1.3
[17:54:59] [Server thread/INFO]: [ParticlesMenu] Loading server plugin ParticlesMenu v1.8
[17:54:59] [Server thread/INFO]: [BuycraftX] Loading server plugin BuycraftX v12.0.8
[17:54:59] [Server thread/INFO]: [GuiShopManager] Loading server plugin GuiShopManager v1.1.2
[17:54:59] [Server thread/INFO]: [UltraCosmetics] Loading server plugin UltraCosmetics v2.9.4-RELEASE
[17:54:59] [Server thread/INFO]: [UltimateVotes] Loading server plugin UltimateVotes v2.0.3-9065030
[17:54:59] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.14
[17:54:59] [Server thread/INFO]: [ViaRewind] Loading server plugin ViaRewind v2.0.3-SNAPSHOT
[17:54:59] [Server thread/INFO]: [HubParkour] Loading server plugin HubParkour v2.7.3
[17:54:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[17:54:59] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b612
[17:54:59] [Server thread/INFO]: [NetworkManager] Enabling NetworkManager v2.12.12
[17:54:59] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] networkmanager-pool - Starting...
[17:54:59] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] networkmanager-pool - Start completed.
[17:55:00] [Server thread/INFO]: [NetworkManager] Initializing Messaging Service... [Redis]
[17:55:00] [Server thread/INFO]: [NetworkManager] | Starting NetworkManager
[17:55:00] [Server thread/INFO]: [NetworkManager] Initialized Brigadier support!
[17:55:00] [Server thread/INFO]: [NetworkManager] Initialized Asynchronous Completion support!
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling extensions...
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling Extension EssentialAdditions v1.0.8-SNAPSHOT, by [ChimpGamer]
[17:55:00] [Server thread/INFO]: [NetworkManager] Extension EssentialAdditions has been enabled.
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling Extension TokenEconomy v2.0.7, by [ChimpGamer]
[17:55:00] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] tokeneconomy-pool - Starting...
[17:55:00] [Server thread/INFO]: [nl.chimpgamer.networkmanager.lib.hikari.HikariDataSource] tokeneconomy-pool - Start completed.
[17:55:00] [Server thread/INFO]: [NetworkManager] Extension TokenEconomy has been enabled.
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling Extension Trampoline v1.0.2, by [ChimpGamer]
[17:55:00] [Server thread/INFO]: [NetworkManager] Extension Trampoline has been enabled.
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling Extension TorchieSpigot v1.0.8, by [ChimpGamer]
[17:55:00] [Server thread/INFO]: [NetworkManager] Extension TorchieSpigot has been enabled.
[17:55:00] [Server thread/INFO]: [NetworkManager] Enabling Extension SimpleChat v2.0.2, by [ChimpGamer]
[17:55:00] [Server thread/INFO]: [SimpleChat] Successfully loaded format default
[17:55:00] [Server thread/INFO]: [SimpleChat] Successfully loaded format default
[17:55:00] [Server thread/INFO]: [NetworkManager] Extension SimpleChat has been enabled.
[17:55:00] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[17:55:00] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[17:55:00] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[17:55:00] [Server thread/INFO]: [NetworkManager] | NetworkManager hooked into Vault version 1.7.3-b${env.TRAVIS_BUILD_NUMBER}
[17:55:00] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.5.3-SNAPSHOT-379;f702633
[17:55:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[17:55:00] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[17:55:00] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[17:55:00] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[17:55:01] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_19_R2.PaperweightFaweAdapter as the Bukkit adapter
[17:55:01] [Server thread/INFO]: [VoidGen] Enabling VoidGen v2.2.1
[17:55:01] [Server thread/INFO]: [VoidGen] Using VoidChunkGen: VERSION_UNKNOWN
[17:55:01] [Server thread/INFO]: [ViaRewind] Enabling ViaRewind v2.0.3-SNAPSHOT
[17:55:01] [Server thread/WARN]: **** SERVER IS RUNNING IN OFFLINE/INSECURE MODE!
[17:55:01] [Server thread/WARN]: The server will make no attempt to authenticate usernames. Beware.
[17:55:01] [Server thread/WARN]: Whilst this makes it possible to use BungeeCord, unless access to your server is properly restricted, it also opens up the ability for hackers to connect with any username they choose.
[17:55:01] [Server thread/WARN]: Please see http://www.spigotmc.org/wiki/firewall-guide/ for further information.
[17:55:01] [Server thread/WARN]: To change this, set "online-mode" to "true" in the server.properties file.
[17:55:01] [Server thread/INFO]: Preparing level "lobby"
[17:55:01] [Server thread/INFO]: -------- World Settings For [lobby] --------
[17:55:01] [Server thread/INFO]: Item Merge Radius: 3.5
[17:55:01] [Server thread/INFO]: Experience Merge Radius: 6.0
[17:55:01] [Server thread/INFO]: View Distance: 6
[17:55:01] [Server thread/INFO]: Simulation Distance: 8
[17:55:01] [Server thread/INFO]: Mob Spawn Range: 3
[17:55:01] [Server thread/INFO]: Item Despawn Rate: 3000
[17:55:01] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:600
[17:55:01] [Server thread/INFO]: Zombie Aggressive Towards Villager: false
[17:55:01] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:55:01] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:55:01] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 30 / Tiv true / Isa false
[17:55:01] [Server thread/INFO]: Entity Tracking Range: Pl 32 / An 32 / Mo 32 / Mi 32 / Other 48
[17:55:01] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:55:01] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:55:01] [Server thread/INFO]: Max TNT Explosions: 100
[17:55:01] [Server thread/INFO]: Tile Max Tick Time: 8ms Entity max Tick Time: 16ms
[17:55:01] [Server thread/INFO]: -------- World Settings For [lobby_nether] --------
[17:55:01] [Server thread/INFO]: Item Merge Radius: 3.5
[17:55:01] [Server thread/INFO]: Experience Merge Radius: 6.0
[17:55:01] [Server thread/INFO]: View Distance: 6
[17:55:01] [Server thread/INFO]: Simulation Distance: 8
[17:55:01] [Server thread/INFO]: Mob Spawn Range: 3
[17:55:01] [Server thread/INFO]: Item Despawn Rate: 3000
[17:55:01] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:600
[17:55:01] [Server thread/INFO]: Zombie Aggressive Towards Villager: false
[17:55:01] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:55:01] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:55:01] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[17:55:01] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 30 / Tiv true / Isa false
[17:55:01] [Server thread/INFO]: Entity Tracking Range: Pl 32 / An 32 / Mo 32 / Mi 32 / Other 48
[17:55:01] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:55:01] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:55:01] [Server thread/INFO]: Max TNT Explosions: 100
[17:55:01] [Server thread/INFO]: Tile Max Tick Time: 8ms Entity max Tick Time: 16ms
[17:55:01] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[17:55:01] [Server thread/INFO]: Time elapsed: 54 ms
[17:55:01] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[17:55:01] [Server thread/INFO]: Time elapsed: 15 ms
[17:55:01] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v4.6.0-23w04a-SNAPSHOT
[17:55:01] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2
[17:55:01] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[17:55:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tokeneconomy [2.0.7]
[17:55:01] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7
[17:55:01] [Server thread/WARN]: [WorldGuard] Sponge simulation is deprecated for removal in a future version. We recommend using CraftBook's sponge simulation instead.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby) TNT ignition is PERMITTED.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby) Lighters are PERMITTED.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby) Lava fire is blocked.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby) All fire spread is disabled.
[17:55:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby'
[17:55:01] [Server thread/WARN]: [WorldGuard] Sponge simulation is deprecated for removal in a future version. We recommend using CraftBook's sponge simulation instead.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby_nether) TNT ignition is PERMITTED.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lighters are PERMITTED.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby_nether) Lava fire is blocked.
[17:55:01] [Server thread/INFO]: [WorldGuard] (lobby_nether) All fire spread is disabled.
[17:55:01] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby_nether'
[17:55:01] [Server thread/INFO]: [WorldGuard] Loading region data...
[17:55:01] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.1-b861
[17:55:01] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.1-b861" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[17:55:01] [Server thread/INFO]: [Multiverse-Core] We are aware of the warning about the deprecated event. There is no alternative that allows us to do what we need to do and performance impact is negligible. It is safe to ignore.
[17:55:02] [Server thread/INFO]: [VoidGen] Generator settings "plains" syntax is not valid. Using default values:
[17:55:02] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[17:55:02] [Server thread/INFO]: -------- World Settings For [lobbyjubileum] --------
[17:55:02] [Server thread/INFO]: Item Merge Radius: 3.5
[17:55:02] [Server thread/INFO]: Experience Merge Radius: 6.0
[17:55:02] [Server thread/INFO]: View Distance: 6
[17:55:02] [Server thread/INFO]: Simulation Distance: 8
[17:55:02] [Server thread/INFO]: Mob Spawn Range: 3
[17:55:02] [Server thread/INFO]: Item Despawn Rate: 3000
[17:55:02] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:600
[17:55:02] [Server thread/INFO]: Zombie Aggressive Towards Villager: false
[17:55:02] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:55:02] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:55:02] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 30 / Tiv true / Isa false
[17:55:02] [Server thread/INFO]: Entity Tracking Range: Pl 32 / An 32 / Mo 32 / Mi 32 / Other 48
[17:55:02] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:55:02] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:55:02] [Server thread/INFO]: Max TNT Explosions: 100
[17:55:02] [Server thread/INFO]: Tile Max Tick Time: 8ms Entity max Tick Time: 16ms
[17:55:02] [Server thread/INFO]: Preparing start region for dimension minecraft:lobbyjubileum
[17:55:02] [Server thread/INFO]: Time elapsed: 260 ms
[17:55:02] [Server thread/WARN]: [WorldGuard] Sponge simulation is deprecated for removal in a future version. We recommend using CraftBook's sponge simulation instead.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobbyjubileum) TNT ignition is PERMITTED.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobbyjubileum) Lighters are PERMITTED.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobbyjubileum) Lava fire is blocked.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobbyjubileum) All fire spread is disabled.
[17:55:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobbyjubileum'
[17:55:02] [Server thread/INFO]: [VoidGen] Generator settings "plains" syntax is not valid. Using default values:
[17:55:02] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[17:55:02] [Server thread/INFO]: [VoidGen] Generator settings "plains" syntax is not valid. Using default values:
[17:55:02] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[17:55:02] [Server thread/INFO]: -------- World Settings For [lobby2020juni] --------
[17:55:02] [Server thread/INFO]: Item Merge Radius: 3.5
[17:55:02] [Server thread/INFO]: Experience Merge Radius: 6.0
[17:55:02] [Server thread/INFO]: View Distance: 6
[17:55:02] [Server thread/INFO]: Simulation Distance: 8
[17:55:02] [Server thread/INFO]: Mob Spawn Range: 3
[17:55:02] [Server thread/INFO]: Item Despawn Rate: 3000
[17:55:02] [Server thread/INFO]: Arrow Despawn Rate: 600 Trident Respawn Rate:600
[17:55:02] [Server thread/INFO]: Zombie Aggressive Towards Villager: false
[17:55:02] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[17:55:02] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: true
[17:55:02] [Server thread/INFO]: Cactus Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Cane Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Melon Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Sapling Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Carrot Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Potato Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Wheat Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Vine Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Kelp Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: TwistingVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: WeepingVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: CaveVines Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: GlowBerry Growth Modifier: 100%
[17:55:02] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 30 / Tiv true / Isa false
[17:55:02] [Server thread/INFO]: Entity Tracking Range: Pl 32 / An 32 / Mo 32 / Mi 32 / Other 48
[17:55:02] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1 Hopper Can Load Chunks: false
[17:55:02] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Nether: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[17:55:02] [Server thread/INFO]: Max TNT Explosions: 100
[17:55:02] [Server thread/INFO]: Tile Max Tick Time: 8ms Entity max Tick Time: 16ms
[17:55:02] [Server thread/INFO]: Preparing start region for dimension minecraft:lobby2020juni
[17:55:02] [Server thread/INFO]: Time elapsed: 424 ms
[17:55:02] [Server thread/WARN]: [WorldGuard] Sponge simulation is deprecated for removal in a future version. We recommend using CraftBook's sponge simulation instead.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobby2020juni) TNT ignition is PERMITTED.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobby2020juni) Lighters are PERMITTED.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobby2020juni) Lava fire is blocked.
[17:55:02] [Server thread/INFO]: [WorldGuard] (lobby2020juni) All fire spread is disabled.
[17:55:02] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lobby2020juni'
[17:55:02] [Server thread/INFO]: [VoidGen] Generator settings "plains" syntax is not valid. Using default values:
[17:55:02] [Server thread/INFO]: [VoidGen] {"caves":false,"decoration":false,"mobs":false,"structures":false,"noise":false,"surface":false,"bedrock":false}
[17:55:02] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[17:55:02] [Server thread/WARN]: [Multiverse-Core] Buscript failed to load! The script command will be disabled! If you would like not to see this message, use `/mv conf enablebuscript false` to disable Buscript from loading.
[17:55:02] [Server thread/INFO]: [Multiverse-Core] Version 4.3.1-b861 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[17:55:02] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2954)
[17:55:02] [Server thread/INFO]: [Citizens] Loading external libraries
[17:55:03] [Server thread/INFO]: [Citizens] Loading shops from disk...
[17:55:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0]
[17:55:03] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault.
[17:55:03] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.4.5
[17:55:03] [Server thread/INFO]: Server version: v1_19_R2 - 1.19.3 - paper
[17:55:03] [Server thread/INFO]: CMI hooked.
[17:55:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.4.5]
[17:55:03] [Server thread/INFO]: PlaceholderAPI hooked.
[17:55:03] [Server thread/INFO]: Updated (EN) language file. Took 38ms
[17:55:03] [Server thread/INFO]: Updated (NL) language file. Took 23ms
[17:55:03] [Server thread/INFO]: [CMI] Enabling CMI v9.3.1.6
[17:55:04] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[17:55:04] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[17:55:04] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[17:55:04] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[17:55:04] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[17:55:04] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[17:55:04] [Server thread/INFO]: _______________________________________________________
[17:55:04] [Server thread/INFO]:   Integrating PaperSpigot async methods
[17:55:04] [Server thread/INFO]:   Citizens found.
[17:55:04] [Server thread/INFO]:   48 Enabled and 9 Disabled modules
[17:55:04] [Server thread/INFO]:   Loaded (4) portals into memory. Took 8ms
[17:55:04] [Server thread/INFO]:   Permission plugin: Vault
[17:55:04] [Server thread/INFO]:   Initialized Cipher256 AES
[17:55:04] [Server thread/INFO]:   Loaded (60) regular alias into memory. Took 26ms
[17:55:04] [Server thread/INFO]:   Loaded (3) custom text's into memory. Took 1ms
[17:55:04] [Server thread/INFO]:   3.36.0 data base type detected
[17:55:04] [Server thread/INFO]:   Started SqLite data base. Took 91ms
[17:55:05] [Server thread/INFO]: [CMI] Vault was found but economy engine is missing. Use one from list provided in https://dev.bukkit.org/bukkit-plugins/vault/
[17:55:05] [Server thread/INFO]: [CMI] Alternatively you can enable CMI economy in config.yml file
[17:55:05] [Server thread/INFO]:   Vault was found but not economy plugin, you will have limited economy support
[17:55:05] [Server thread/INFO]:   Loaded (43) holograms into memory. Took 23ms
[17:55:05] [Server thread/INFO]:   Loaded (5) warning categories into memory. Took 0ms
[17:55:05] [Server thread/INFO]:   Loaded (3) warning commands into memory. Took 0ms
[17:55:05] [Server thread/INFO]:   Loaded (138) custom mob heads into memory. Took 7ms
[17:55:05] [Server thread/INFO]:   Loaded (6) cooldowns into memory. Took 14ms
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for lobby world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for lobby world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for lobby world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for lobby world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for lobby2020juni world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for lobby2020juni world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for lobby2020juni world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for lobby2020juni world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border X coordinate bounds for lobbyjubileum world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border X coordinate bounds for lobbyjubileum world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of minimal world border Z coordinate bounds for lobbyjubileum world. Please update values.
[17:55:05] [Server thread/INFO]:   Random teleport location is out of maximal world border Z coordinate bounds for lobbyjubileum world. Please update values.
[17:55:05] [Server thread/INFO]:   Enabling BungeeCord Support
[17:55:05] [Server thread/INFO]:   Initializing BungeeCord
[17:55:05] [Server thread/INFO]:   Loaded (5) kits into memory. Took 7ms
[17:55:05] [Server thread/INFO]:   Loaded (7) ranks into memory. Took 7ms
[17:55:05] [Server thread/INFO]:   Loaded (8) playtime rewards into memory. Took 1ms
[17:55:06] [Server thread/INFO]:   Loaded (98072) player data into memory. Took 1152ms
[17:55:06] [Server thread/INFO]:   Loaded (0) playtime records into memory. Took 0ms
[17:55:06] [Server thread/INFO]:   Loaded (0) playtime reward records into memory. Took 1ms
[17:55:06] [Server thread/INFO]:   Loaded (19) custom alias into memory. Took 1ms
[17:55:06] [Server thread/INFO]:   Registered events. Took 59ms
[17:55:06] [Server thread/INFO]:   Loaded (0) event action commands into memory. Took 1ms
[17:55:06] [Server thread/INFO]:   Updated (EN) language file. Took 62ms
[17:55:06] [Server thread/INFO]:   Updated (NL) language file. Took 56ms
[17:55:06] [Server thread/INFO]:   Loaded (245) worth values into memory. Took 25ms
[17:55:06] [Server thread/INFO]:   Loaded (1) warps into memory. Took 1ms
[17:55:06] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.3.1.6]
[17:55:06] [Server thread/INFO]:   PlaceholderAPI hooked.
[17:55:06] [Server thread/INFO]:   PlaceholderAPI was found - Enabling capabilities.
[17:55:06] [Server thread/INFO]:   Starting world timer.
[17:55:06] [Server thread/INFO]:   Initializing world manager.
[17:55:06] [Server thread/INFO]:   Loaded (5) schedules into memory. Took 4ms
[17:55:06] [Server thread/INFO]:   Loaded GeoIP
[17:55:06] [Server thread/INFO]:   Loaded (78) skin cache entries into memory. Took 2ms
[17:55:06] [Server thread/INFO]:   Loaded (0) ArmorStand templates into memory. Took 0ms
[17:55:06] [Server thread/INFO]:   Version 9.3.1.6 has been enabled
[17:55:06] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾
[17:55:06] [Server thread/INFO]: [HeadDatabase] Enabling HeadDatabase v4.17.0
[17:55:06] [Server thread/INFO]: [HeadDatabase] Using default "en_US.lang" created by Arcaniax
[17:55:07] [Server thread/WARN]: [HeadDatabase] Economy was not loaded, some features will be disabled!
[17:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hdb [4.17.0]
[17:55:07] [Server thread/INFO]: [PlayerParticles] Enabling PlayerParticles v8.3
[17:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playerparticles [8.3]
[17:55:07] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v4.6.0-23w03a-SNAPSHOT
[17:55:07] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.8.0
[17:55:07] [Server thread/INFO]: [PremiumVanish] Your PremiumVanish-files are not up to date. You can use '/pv recreatefiles' to recreate them.
  Recreating PremiumVanish's files is optional and gives you access to newer config settings and messages of the plugin.
[17:55:07] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.8.0]
[17:55:07] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI
[17:55:07] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens
[17:55:07] [Server thread/INFO]: [PremiumVanish] Hooked into CMI
[17:55:07] [Server thread/INFO]: [VoidSpawn] Enabling VoidSpawn v1.20.0
[17:55:07] [Server thread/INFO]: [VoidSpawn] No SkyBlock plugins found, disabling island mode support.
[17:55:07] [Server thread/INFO]: [VoidSpawn] v1.20.0 by EnderCrest enabled
[17:55:07] [Server thread/INFO]: [FeatherBoard] Enabling FeatherBoard v5.1.0
[17:55:08] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[17:55:08] [Server thread/INFO]: [FeatherBoard] Plugin: FeatherBoard v5.1.0
[17:55:08] [Server thread/INFO]: [FeatherBoard] Framework version: 2021-12
[17:55:08] [Server thread/INFO]: [FeatherBoard] Author: Maximvdw (Maxim Van de Wynckel)
[17:55:08] [Server thread/INFO]: [FeatherBoard] Site: https://www.mvdw-software.com/
[17:55:08] [Server thread/INFO]: [FeatherBoard] Copyright: 2013-2021 All Rights Received
[17:55:08] [Server thread/INFO]: [FeatherBoard] -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
[17:55:08] [Server thread/INFO]: [FeatherBoard] Loading configuration ...
[17:55:08] [Server thread/INFO]: [FeatherBoard] Loading messages ...
[17:55:08] [Server thread/INFO]: [FeatherBoard] Loading language file: lang_en
[17:55:09] [Server thread/INFO]: [FeatherBoard] Checking for module updates ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Fetching modules from server ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example3' ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example3
[17:55:09] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example1' ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example1
[17:55:09] [Server thread/INFO]: [FeatherBoard] Loading custom effect 'example2' ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Creating new custom effect: example2
[17:55:09] [Server thread/INFO]: [FeatherBoard] Using OPTIMAL as the update strategy
[17:55:09] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'default' ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Loading scoreboard 'lobbyNieuw' ...
[17:55:09] [Server thread/INFO]: [FeatherBoard] Added 'PERMISSION' as the default assigning method
[17:55:09] [Server thread/INFO]: [FeatherBoard] Your version is up to date!
[17:55:09] [Server thread/INFO]: [FeatherBoard] Toggle persistence is disabled!
[17:55:09] [Server thread/INFO]: [FeatherBoard] Adding command 'featherboard'
[17:55:09] [Server thread/INFO]: [PremiumVanish] Hooked into FeatherBoard
[17:55:09] [Server thread/INFO]: [Spartan] Enabling Spartan vPhase 498
[17:55:10] [Server thread/INFO]: [TCRestart] Enabling TCRestart v3.5
[17:55:10] [Server thread/INFO]: [LaunchPads] Enabling LaunchPads v1.5-SNAPSHOT*
[17:55:10] [Server thread/INFO]: [LaunchPads] Created by NickTheDev, http://nikdev.net/
[17:55:10] [Server thread/INFO]: [LaunchPads] 2 Launch Pad(s) successfully loaded!
[17:55:10] [Server thread/INFO]: [SimplePets] Enabling SimplePets v5.0-BUILD-197
[17:55:10] [Server thread/INFO]: [SimplePets Warning] Failed to register the 'shulker' pet (Missing 'EntityShulkerPet' class for your version) [Will not effect your server]
[17:55:10] [Server thread/INFO]: [SimplePets Debug] Initializing Menu Items...
[17:55:10] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Item Files...
[17:55:10] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[17:55:10] [Server thread/INFO]: [DoubleJump4NCP] Enabling DoubleJump4NCP v2.4-ChimpGamer
[17:55:10] [Server thread/INFO]: [DoubleJump4NCP] Spartan found, hooking into Spartan!
[17:55:10] [Server thread/INFO]: [DoubleJump4NCP] PlaceholderAPI found, hooking into PlaceholderAPI
[17:55:10] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: DoubleJump4NCP [2.4-ChimpGamer]
[17:55:10] [Server thread/INFO]: [InteractiveBoard] Enabling InteractiveBoard v19.1
[17:55:11] [Server thread/INFO]: [BossShopPro] Enabling BossShopPro v2.1.3
[17:55:11] [Server thread/INFO]: [BossShopPro] Loading data...
[17:55:11] [Server thread/INFO]: [BossShopPro] Hooked into PlaceholderAPI.
[17:55:11] [Server thread/INFO]: [ParticlesMenu] Enabling ParticlesMenu v1.8
[17:55:11] [Server thread/INFO]: [BuycraftX] Enabling BuycraftX v12.0.8
[17:55:11] [Server thread/INFO]: [BuycraftX] Validating your server key...
[17:55:11] [Server thread/INFO]: [BuycraftX] Fetching all server packages...
[17:55:13] [Server thread/INFO]: [GuiShopManager] Enabling GuiShopManager v1.1.2*
[17:55:13] [Server thread/INFO]: [BossShopPro] Enabling Addon GuiShopManager
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Enabling UltraCosmetics v2.9.4-RELEASE
[17:55:16] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[17:55:16] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics v2.9.4-RELEASE is loading... (server: 1.19.3)
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Thanks for downloading it!
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Plugin by iSach.
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Link: http://bit.ly/UltraCosmetics
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Initializing module v1_19
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Entity registry is not vanilla, skipping unfreeze and refreeze
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Module initialized
[17:55:16] [Server thread/INFO]: [UltraCosmetics] 
[17:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultracosmetics [2.9.4-RELEASE]
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Hooked into PlaceholderAPI
[17:55:16] [Server thread/INFO]: [WorldGuard] Registering session handler be.isach.ultracosmetics.worldguard.FlagManager
[17:55:16] [Server thread/INFO]: [UltraCosmetics] 
[17:55:16] [Server thread/INFO]: [UltraCosmetics] WorldGuard custom flags enabled
[17:55:16] [Server thread/INFO]: [UltraCosmetics] 
[17:55:16] [Server thread/INFO]: [UltraCosmetics] Found Vault but no economy, please check whether your economy plugin supports Vault.
[17:55:16] [Server thread/INFO]: [UltraCosmetics] 
[17:55:16] [Server thread/INFO]: [UltraCosmetics] 
[17:55:16] [Server thread/INFO]: [UltraCosmetics] UltraCosmetics successfully finished loading and is now enabled!
[17:55:16] [Server thread/INFO]: [UltraCosmetics] -------------------------------------------------------------------
[17:55:16] [Server thread/INFO]: [UltimateVotes] Enabling UltimateVotes v2.0.3-9065030
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] WorldEdit found! hooking into plugin!
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Warning] Material Helper NMS version not identified as legacy or latest, defaulting to latest. This can usually happen if you are using a newer version of spigot.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] Material Helper setup complete.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Warning] WorldEdit version not identified as legacy or latest, defaulting to latest. This can usually happen if you are using a WorldEdit version not matching 6.X or 7.X.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] WorldEdit Selection Helper setup complete.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Warning] NMS version not identified as legacy or latest, defaulting to latest. This can usually happen if you are using a newer version of spigot.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] UUID Fetcher setup complete.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] Votifier / NuVotifier NOT found, listening for votes has been DISABLED.
[17:55:16] [Server thread/INFO]: [UltimateVotes] [Info] Vote reminders ENABLED.
[17:55:16] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.14
[17:55:16] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_19_R2
[17:55:16] [Server thread/INFO]: [NametagEdit] Found NetworkManager! Hooking in.
[17:55:16] [Server thread/INFO]: [PremiumVanish] Hooked into NametagEdit
[17:55:16] [Server thread/INFO]: [HubParkour] Enabling HubParkour v2.7.3
[17:55:16] [Server thread/INFO]: [HubParkour] 1.13+ server version detected.
[17:55:16] [Server thread/INFO]: [HubParkour] Server UUID has been registered as: 8f6cdd87-5d9e-48c3-b713-7cf43f40bda9
[17:55:16] [Server thread/INFO]: [HubParkour] PlaceholderAPI detected, registering HubParkour placeholder expansion.
[17:55:16] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: hubparkour [2.7.3]
[17:55:16] [Server thread/INFO]: [HubParkour] Plugin successfully enabled!
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[17:55:17] [Server thread/INFO]: Running delayed init tasks
[17:55:17] [Craft Scheduler Thread - 5 - PlayerParticles/INFO]: [PlayerParticles] Data handler connected using SQLite.
[17:55:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[17:55:17] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[17:55:17] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.19.3 (761)
[17:55:17] [Server thread/INFO]: [SimplePets Debug] Found support for version(s): [1.19.3]
[17:55:17] [Server thread/INFO]: [SimplePets Debug] Targeting version: 1.19.3
[17:55:17] [Server thread/INFO]: [SimplePets Debug] Initializing Inventories...
[17:55:17] [Server thread/INFO]: [SimplePets Debug] Loading Customizable Inventories Files...
[17:55:17] [Server thread/INFO]: [SimplePets Debug] Files have been loaded.
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 0: Almighty Cees literal{Almighty Cees}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 0: Almighty Cees literal{Almighty Cees}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 0{Almighty Cees, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 0{Almighty Cees, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 46: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 46: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 46{Jale1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 46{Jale1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 44: clyde literal{clyde}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 44: clyde literal{clyde}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 44{clyde, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 44{clyde, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 43: Bonnie literal{Bonnie}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 43: Bonnie literal{Bonnie}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 43{Bonnie, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 43{Bonnie, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 42: Jale1 literal{Jale1}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 42: Jale1 literal{Jale1}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 42{Jale1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 42{Jale1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 39: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 39: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 39{Saint, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 39{Saint, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 38: SUP3RK3V1N104 literal{SUP3RK3V1N104}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 38: SUP3RK3V1N104 literal{SUP3RK3V1N104}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 38{SUP3RK3V1N104, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 38{SUP3RK3V1N104, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 34: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 34: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 34{P2Paul, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 34{P2Paul, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 33: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 33: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 33{Kamiel, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 33{Kamiel, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 31: Pixiio literal{Pixiio}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 31: Pixiio literal{Pixiio}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 31{Pixiio, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 31{Pixiio, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 28: Tendonsie literal{Tendonsie}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 28: Tendonsie literal{Tendonsie}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 28{Tendonsie, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 28{Tendonsie, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 27: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 27: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 27{ChimpGamer, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 27{ChimpGamer, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 26: Cees literal{Cees}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 26: Cees literal{Cees}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 26{Cees, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 26{Cees, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 23: Raoulh literal{Raoulh}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 23: Raoulh literal{Raoulh}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 23{Raoulh, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 23{Raoulh, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 22: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 22: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 22{Kamiel, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 22{Kamiel, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 21: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 21: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 21{Jale1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 21{Jale1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 20: KhadaTom literal{KhadaTom}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 20: KhadaTom literal{KhadaTom}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 20{KhadaTom, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 20{KhadaTom, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 19: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 19: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 19{Saint, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 19{Saint, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 16: Bakker literal{Bakker}[style={color=gold,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 16: Bakker literal{Bakker}[style={color=gold,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 16{Bakker, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 16{Bakker, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 10: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 10: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 10{ChimpGamer, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 10{ChimpGamer, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 9: Pixiio literal{Pixiio}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 9: Pixiio literal{Pixiio}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 9{Pixiio, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 9{Pixiio, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 3: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 3: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 3{P2Paul, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 3{P2Paul, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 2: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 2: Kamiel literal{Kamiel}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 2{Kamiel, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 2{Kamiel, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 1: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 1: Saint literal{Saint}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 1{Saint, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 1{Saint, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 52: Betsie literal{Betsie}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 52: Betsie literal{Betsie}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 52{Betsie, COW} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 52{Betsie, COW} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 51: Raoulh literal{Raoulh}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 51: Raoulh literal{Raoulh}[style={color=aqua,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 51{Raoulh, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 51{Raoulh, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 49: Dolly literal{Dolly}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 49: Dolly literal{Dolly}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 49{Dolly, SHEEP} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 49{Dolly, SHEEP} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 53: troes1 literal{troes1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 53: troes1 literal{troes1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 53{troes1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 53{troes1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 59: Behh literal{Behh}[style={color=yellow,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 59: Behh literal{Behh}[style={color=yellow,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 59{Behh, SHEEP} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 59{Behh, SHEEP} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 58: Knor literal{Knor}[style={color=yellow,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 58: Knor literal{Knor}[style={color=yellow,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Craft Scheduler Thread - 4 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 51313 heads!
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 58{Knor, PIG} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 58{Knor, PIG} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 56: troes1 literal{troes1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 56: troes1 literal{troes1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 56{troes1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 56{troes1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 55: 111age literal{111age}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 55: 111age literal{111age}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 55{111age, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 55{111age, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 54: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 54: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 54{Jale1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 54{Jale1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 65: Jeroen123 literal{Jeroen123}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 65: Jeroen123 literal{Jeroen123}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 65{Jeroen123, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 65{Jeroen123, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 64: Tobjas literal{Tobjas}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 64: Tobjas literal{Tobjas}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 64{Tobjas, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 64{Tobjas, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 63: SUP3RK3V1N104 literal{SUP3RK3V1N104}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 63: SUP3RK3V1N104 literal{SUP3RK3V1N104}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 63{SUP3RK3V1N104, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 63{SUP3RK3V1N104, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 62: 111age literal{111age}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 62: 111age literal{111age}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 62{111age, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 62{111age, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 61: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 61: Jale1 literal{Jale1}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 61{Jale1, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 61{Jale1, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 60: Tobjas literal{Tobjas}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 60: Tobjas literal{Tobjas}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 60{Tobjas, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 60{Tobjas, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 66: smileyman03 literal{smileyman03}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 66: smileyman03 literal{smileyman03}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 66{smileyman03, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 66{smileyman03, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 70:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 70:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 70{, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 70{, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 69:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 69:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 69{, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 69{, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 67:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 67:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 67{, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 67{, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 92: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 92: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 92{ChimpGamer, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 92{ChimpGamer, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 91: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 91: ChimpGamer literal{ChimpGamer}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 91{ChimpGamer, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 91{ChimpGamer, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 88: Jeroen123 literal{Jeroen123}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 88: Jeroen123 literal{Jeroen123}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 88{Jeroen123, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 88{Jeroen123, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 83: Vik literal{Vik}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 83: Vik literal{Vik}[style={}]
[17:55:17] [Craft Scheduler Thread - 4 - HeadDatabase/INFO]: [HeadDatabase] Successfully loaded 13 featured tags!
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 83{Vik, CHICKEN} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 83{Vik, CHICKEN} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 76: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 76: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 76{P2Paul, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 76{P2Paul, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 102: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 102: P2Paul literal{P2Paul}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 102{P2Paul, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 102{P2Paul, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 107: Jeroen123 literal{Jeroen123}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 107: Jeroen123 literal{Jeroen123}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 107{Jeroen123, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 107{Jeroen123, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 109: SlamBam140 literal{SlamBam140}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 109: SlamBam140 literal{SlamBam140}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 109{SlamBam140, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 109{SlamBam140, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 112: DanceGirlAmbie literal{DanceGirlAmbie}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 112: DanceGirlAmbie literal{DanceGirlAmbie}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 112{DanceGirlAmbie, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 112{DanceGirlAmbie, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 119: DanceGirlAmbie literal{DanceGirlAmbie}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 119: DanceGirlAmbie literal{DanceGirlAmbie}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 119{DanceGirlAmbie, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 119{DanceGirlAmbie, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 129: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 129: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 129{Klik hier!, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 129{Klik hier!, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 130:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 130:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 130{, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 130{, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 134: Jeroen123 literal{Jeroen123}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 134: Jeroen123 literal{Jeroen123}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 134{Jeroen123, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 134{Jeroen123, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 133: SlamBam140 literal{SlamBam140}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 133: SlamBam140 literal{SlamBam140}[style={color=dark_red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 133{SlamBam140, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 133{SlamBam140, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 139:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 139:  empty[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 139{, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 139{, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 138: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 138: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 138{Klik hier!, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 138{Klik hier!, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 137: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 137: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 137{Klik hier!, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 137{Klik hier!, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 136: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 136: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 136{Klik hier!, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 136{Klik hier!, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 135: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 135: Klik hier! literal{Klik hier!}[style={color=green,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 135{Klik hier!, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 135{Klik hier!, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 142: Bingetje literal{Bingetje}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 142: Bingetje literal{Bingetje}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 142{Bingetje, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 142{Bingetje, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 141: Pixiio literal{Pixiio}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 141: Pixiio literal{Pixiio}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 141{Pixiio, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 141{Pixiio, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 140: Mappors literal{Mappors}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 140: Mappors literal{Mappors}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 140{Mappors, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 140{Mappors, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 143: alococa literal{alococa}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 143: alococa literal{alococa}[style={color=red,!bold,!italic,!underlined,!strikethrough,!obfuscated}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 143{alococa, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 143{alococa, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 144: %ultimatevotes_lastmonth_topvoters_1_name% literal{%ultimatevotes_lastmonth_topvoters_1_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 144: %ultimatevotes_lastmonth_topvoters_1_name% literal{%ultimatevotes_lastmonth_topvoters_1_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 144{%ultimatevotes_lastmonth_topvoters_1_name%, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 0: %ultimatevotes_lastmonth_topvoters_1_name% literal{%ultimatevotes_lastmonth_topvoters_1_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 0{%ultimatevotes_lastmonth_topvoters_1_name%, PLAYER} due to SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 0{%ultimatevotes_lastmonth_topvoters_1_name%, ARMOR_STAND} SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 144{%ultimatevotes_lastmonth_topvoters_1_name%, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 146: %ultimatevotes_lastmonth_topvoters_3_name% literal{%ultimatevotes_lastmonth_topvoters_3_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 146: %ultimatevotes_lastmonth_topvoters_3_name% literal{%ultimatevotes_lastmonth_topvoters_3_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 146{%ultimatevotes_lastmonth_topvoters_3_name%, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 0: %ultimatevotes_lastmonth_topvoters_3_name% literal{%ultimatevotes_lastmonth_topvoters_3_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 0{%ultimatevotes_lastmonth_topvoters_3_name%, PLAYER} due to SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 0{%ultimatevotes_lastmonth_topvoters_3_name%, ARMOR_STAND} SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 146{%ultimatevotes_lastmonth_topvoters_3_name%, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 145: %ultimatevotes_lastmonth_topvoters_2_name% literal{%ultimatevotes_lastmonth_topvoters_2_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 145: %ultimatevotes_lastmonth_topvoters_2_name% literal{%ultimatevotes_lastmonth_topvoters_2_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 145{%ultimatevotes_lastmonth_topvoters_2_name%, PLAYER} due to SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Parsed name 0: %ultimatevotes_lastmonth_topvoters_2_name% literal{%ultimatevotes_lastmonth_topvoters_2_name%}[style={}]
[17:55:17] [Server thread/INFO]: [Citizens] Removing respawns of 0{%ultimatevotes_lastmonth_topvoters_2_name%, PLAYER} due to SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 0{%ultimatevotes_lastmonth_topvoters_2_name%, ARMOR_STAND} SpawnReason.PLUGIN
[17:55:17] [Server thread/INFO]: [Citizens] Spawned 145{%ultimatevotes_lastmonth_topvoters_2_name%, PLAYER} SpawnReason.RESPAWN
[17:55:17] [Server thread/INFO]: [Citizens] Loading shops... 0 0
[17:55:17] [Server thread/INFO]: [Citizens] Loaded 69 NPCs.
[17:55:17] [Server thread/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor!
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: ultimatevotes [1.0.1]
[17:55:17] [Server thread/INFO]: [BuycraftAPI] Successfully connected to bstats
[17:55:17] [Server thread/INFO]: [BuycraftAPI] Successfully hooked into Vault for BuyCraftAPI v4.1
[17:55:17] [Server thread/INFO]: [BuycraftAPI] Loading API Tasks...
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: buycraftAPI [4.1]
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: bungee [2.1]
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault [1.8.1]
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server [2.6.2]
[17:55:17] [Server thread/INFO]: [PAPI] [Javascript-Expansion] 2 scripts loaded!
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: javascript [2.1.0]
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: player [2.0.4]
[17:55:17] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: networkmanager [1.2.4]
[17:55:17] [Server thread/INFO]: 8 placeholder hook(s) registered! 1 placeholder hook(s) have an update available.
[17:55:17] [Server thread/INFO]: [FeatherBoard] PAPI expansions loaded. Checking for missing expansions ...
[17:55:17] [Server thread/INFO]: Done (23.968s)! For help, type "help"
[17:55:17] [Server thread/INFO]: Timings Reset
[17:55:18] [Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetching all due players...
[17:55:18] [Server thread/INFO]: [Citizens] Parsed name 0: No Result literal{No Result}[style={}]
[17:55:18] [Server thread/INFO]: [Citizens] Parsed name 0: No Result literal{No Result}[style={}]
[17:55:18] [Server thread/INFO]: [Citizens] Parsed name 0: No Result literal{No Result}[style={}]
[17:55:18] [Craft Scheduler Thread - 16 - BuycraftX/INFO]: [BuycraftX] Fetched due players (0 found).
[17:55:18] [User Authenticator #0/INFO]: [TokenEconomy] &6AsyncPlayerPreLoginEvent for ChimpGamer took &c8ms
[17:55:19] [User Authenticator #0/INFO]: UUID of player ChimpGamer is bfae0d10-b2de-44d8-b6c9-e70387cc3aea
[17:55:19] [Server thread/INFO]: [Citizens] Parsed name 0: Vanhout literal{Vanhout}[style={}]
[17:55:19] [Server thread/INFO]: [Citizens] Parsed name 0: DragstarX literal{DragstarX}[style={}]
[17:55:19] [Server thread/INFO]: [Citizens] Parsed name 0: DokterNausea literal{DokterNausea}[style={}]
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:19] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (15 true)
[17:55:20] [Server thread/INFO]: [SimplePets ADDON] Loading modules for the VanishAddon addon
[17:55:21] [Craft Scheduler Thread - 20 - BossShopPro/INFO]: [BossShopPro] Loaded 5 Shops!
[17:55:21] [Craft Scheduler Thread - 20 - BossShopPro/INFO]: [BossShopPro] Vault found.
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (60 true)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:22] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:23] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:24] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-7b922e825da9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_3_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-423c1c4951ab} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_2_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=CIT-a9d955058ce9} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Skin name invalid length '%ultimatevotes_lastmonth_topvoters_1_name%'
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=alococa} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Bingetje} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Pixiio} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Mappors} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=DanceGirlAmbie} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=SlamBam140} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=ChimpGamer} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=Jeroen123} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=P2Paul} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)
[17:55:25] [Server thread/INFO]: [Citizens] Sending skin from CraftPlayer{name=} to CraftPlayer{name=ChimpGamer} (10 false)