Paste #125327: Shop Problems

Date: 2024/08/06 10:58:23 UTC-07:00
Type: Server Log

View Raw Paste Download This Paste
Copy Link


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960


[13:31:27] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.3+9-LTS; Eclipse Adoptium Temurin-21.0.3+9) on Windows 10 10.0 (amd64)
[13:31:27] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21-126-master@7e44684 (2024-08-05T19:10:11Z) for Minecraft 1.21
[13:31:28] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[13:31:31] [ServerMain/INFO]: [FileProviderSource] The spark plugin will not be loaded as this server bundles the spark profiler.
[13:31:31] [ServerMain/INFO]: [PluginInitializerManager] Initialized 22 plugins
[13:31:31] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (22):
 - BetonQuest (2.1.3-DEV-46), CMI (9.7.4.9), CMILib (1.5.1.0), Citizens (2.0.35-SNAPSHOT (build 3492)), CoreProtect (22.4), Dynmap-Towny (1.1.2), Dynmap-WorldGuard (1.4-beta-1), InventoryRollbackPlus (1.6.17), LibsDisguises (1.0-SNAPSHOT), LuckPerms (5.4.131), Multiverse-Core (4.3.12), Multiverse-NetherPortals (4.2.3), MythicMobs (5.7.0-SNAPSHOT-db4fb162), ProtocolLib (5.3.0-SNAPSHOT-726), Towny (0.100.3.10), UltimateTimber (3.1.0-SNAPSHOT), WorldEdit (7.3.5+6880-8ba3d89), WorldEditSelectionVisualizer (2.1.7), WorldGuard (7.0.11-beta1+a801a9d), WorldGuardExtraFlags (4.2.4-SNAPSHOT), dynmap (3.7-SNAPSHOT-948), packetevents (2.4.0)
[13:31:40] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:31:43] [ServerMain/INFO]: Loaded 1290 recipes
[13:31:43] [ServerMain/INFO]: Loaded 1399 advancements
[13:31:44] [Server thread/INFO]: Starting minecraft server version 1.21
[13:31:44] [Server thread/INFO]: Loading properties
[13:31:44] [Server thread/INFO]: This server is running Paper version 1.21-126-master@7e44684 (2024-08-05T19:10:11Z) (Implementing API version 1.21-R0.1-SNAPSHOT)
[13:31:45] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[13:31:45] [Server thread/INFO]: Server Ping Player Sample Count: 12
[13:31:45] [Server thread/INFO]: Using 4 threads for Netty based IO
[13:31:46] [Server thread/WARN]: [!] The timings profiler has been enabled but has been scheduled for removal from Paper in the future.
    We recommend migrating to the spark profiler.
    For more information please visit: https://github.com/PaperMC/Paper/discussions/10565
[13:31:46] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and population gen parallelism of 1 threads
[13:31:47] [Server thread/INFO]: Default game type: SURVIVAL
[13:31:47] [Server thread/INFO]: Generating keypair
[13:31:47] [Server thread/INFO]: Starting Minecraft server on *:25565
[13:31:47] [Server thread/INFO]: Using default channel type
[13:31:47] [Server thread/INFO]: Paper: Using Java compression from Velocity.
[13:31:47] [Server thread/INFO]: Paper: Using Java cipher from Velocity.
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-api\4.16.0\adventure-api-4.16.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-key\4.16.0\adventure-key-4.16.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\examination-api\1.3.0\examination-api-1.3.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\examination-string\1.3.0\examination-string-1.3.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\org\jetbrains\annotations\24.1.0\annotations-24.1.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-platform-bukkit\4.3.2\adventure-platform-bukkit-4.3.2.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-platform-api\4.3.2\adventure-platform-api-4.3.2.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-serializer-bungeecord\4.3.2\adventure-text-serializer-bungeecord-4.3.2.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-serializer-legacy\4.13.1\adventure-text-serializer-legacy-4.13.1.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-nbt\4.13.1\adventure-nbt-4.13.1.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-serializer-gson-legacy-impl\4.13.1\adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-platform-facet\4.3.2\adventure-platform-facet-4.3.2.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-platform-viaversion\4.3.2\adventure-platform-viaversion-4.3.2.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-minimessage\4.16.0\adventure-text-minimessage-4.16.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-serializer-gson\4.16.0\adventure-text-serializer-gson-4.16.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\adventure-text-serializer-json\4.16.0\adventure-text-serializer-json-4.16.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\net\kyori\option\1.0.0\option-1.0.0.jar
[13:31:49] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library G:\Minecraft 127\libraries\com\google\code\gson\gson\2.8.0\gson-2.8.0.jar
[13:31:50] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.3.0-SNAPSHOT-726
[13:31:50] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.0) has not yet been tested! Proceed with caution.
[13:31:50] [Server thread/INFO]: [WorldEdit] Loading server plugin WorldEdit v7.3.5+6880-8ba3d89
[13:31:53] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@7c693dcc]
[13:31:53] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.4.0
[13:31:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.131
[13:31:58] [Server thread/INFO]: [CoreProtect] Loading server plugin CoreProtect v22.4
[13:31:58] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.11-beta1+a801a9d
[13:31:58] [Server thread/INFO]: [Multiverse-Core] Loading server plugin Multiverse-Core v4.3.12
[13:31:58] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v1.0-SNAPSHOT
[13:31:58] [Server thread/INFO]: [dynmap] Loading server plugin dynmap v3.7-SNAPSHOT-948
[13:31:58] [Server thread/INFO]: [dynmap] version=1.21-126-7e44684 (MC: 1.21)
[13:31:58] [Server thread/INFO]: [dynmap] Mod Support API available
[13:31:58] [Server thread/INFO]: [Towny] Loading server plugin Towny v0.100.3.10
[13:31:58] [Server thread/INFO]: [CMILib] Loading server plugin CMILib v1.5.1.0
[13:31:58] [Server thread/INFO]: [Citizens] Loading server plugin Citizens v2.0.35-SNAPSHOT (build 3492)
[13:31:58] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.7.0-SNAPSHOT-db4fb162
[13:31:58] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[13:31:58] [Server thread/INFO]: [MythicMobs] Mythic Enabled!
[13:31:58] [Server thread/INFO]: [WorldGuardExtraFlags] Loading server plugin WorldGuardExtraFlags v4.2.4-SNAPSHOT
[13:31:59] [Server thread/INFO]: [WESV] Loading server plugin WorldEditSelectionVisualizer v2.1.7
[13:31:59] [Server thread/INFO]: [UltimateTimber] Loading server plugin UltimateTimber v3.1.0-SNAPSHOT
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.mariadb.jdbc:mariadb-java-client:3.2.0 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'mariadb-java-client-3.2.0' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.apache.commons:commons-text:1.12.0 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'commons-text-1.12.0' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.jooq:jooq:3.14.16 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'jooq-3.14.16' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency com.zaxxer:HikariCP:4.0.3 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'HikariCP-4.0.3' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.reactivestreams:reactive-streams:1.0.2 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'reactive-streams-1.0.2' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.apache.commons:commons-lang3:3.14.0 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'commons-lang3-3.14.0' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency com.h2database:h2:1.4.200 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'h2-1.4.200' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency com.github.cryptomorin:XSeries:11.1.0 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'XSeries-11.1.0' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loading dependency org.slf4j:slf4j-api:2.0.11 from https://repo1.maven.org/maven2
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] Loaded dependency 'slf4j-api-2.0.11' successfully.
[13:31:59] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] ----------------------------
[13:31:59] [Server thread/INFO]: [Multiverse-NetherPortals] Loading server plugin Multiverse-NetherPortals v4.2.3
[13:31:59] [Server thread/INFO]: [InventoryRollbackPlus] Loading server plugin InventoryRollbackPlus v1.6.17
[13:31:59] [Server thread/INFO]: [Dynmap-WorldGuard] Loading server plugin Dynmap-WorldGuard v1.4-beta-1
[13:31:59] [Server thread/INFO]: [Dynmap-Towny] Loading server plugin Dynmap-Towny v1.1.2
[13:31:59] [Server thread/INFO]: [CMI] Loading server plugin CMI v9.7.4.9
[13:31:59] [Server thread/INFO]: [BetonQuest] Loading server plugin BetonQuest v2.1.3-DEV-46
[13:31:59] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[13:31:59] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.3.0-SNAPSHOT-726
[13:31:59] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.3.5+6880-8ba3d89
[13:31:59] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[13:31:59] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[13:31:59] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_21.PaperweightAdapter as the Bukkit adapter
[13:32:01] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.131
[13:32:02] [Server thread/INFO]:         __    
[13:32:02] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.131
[13:32:02] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[13:32:02] [Server thread/INFO]: 
[13:32:02] [Server thread/INFO]: [LuckPerms] Loading configuration...
[13:32:02] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[13:32:03] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[13:32:03] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[13:32:03] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1819ms)
[13:32:03] [Server thread/INFO]: Preparing level "TrickyTrials"
[13:32:04] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[13:32:05] [Server thread/INFO]: Time elapsed: 1009 ms
[13:32:05] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[13:32:05] [Server thread/INFO]: Time elapsed: 132 ms
[13:32:05] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[13:32:05] [Server thread/INFO]: Time elapsed: 150 ms
[13:32:05] [Server thread/INFO]: [packetevents] Enabling packetevents v2.4.0
[13:32:05] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[13:32:05] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v22.4
[13:32:06] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[13:32:06] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[13:32:06] [Server thread/INFO]: --------------------
[13:32:06] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[13:32:06] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[13:32:06] [Server thread/INFO]: --------------------
[13:32:06] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.11-beta1+a801a9d
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials) TNT ignition is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials) Lighters are PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials) Lava fire is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials) Fire spread is UNRESTRICTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TrickyTrials'
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_nether) TNT ignition is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_nether) Lighters are PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_nether) Lava fire is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_nether) Fire spread is UNRESTRICTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TrickyTrials_nether'
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_the_end) TNT ignition is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_the_end) Lighters are PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_the_end) Lava fire is PERMITTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] (TrickyTrials_the_end) Fire spread is UNRESTRICTED.
[13:32:06] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'TrickyTrials_the_end'
[13:32:06] [Server thread/INFO]: [WorldGuard] Loading region data...
[13:32:07] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.4.0)
[13:32:07] [Server thread/INFO]: [Multiverse-Core] Enabling Multiverse-Core v4.3.12
[13:32:07] [Server thread/WARN]: [Multiverse-Core] "Multiverse-Core v4.3.12" has registered a listener for org.bukkit.event.entity.EntityCreatePortalEvent on method "public void com.onarandombox.MultiverseCore.listeners.MVPortalListener.entityPortalCreate(org.bukkit.event.entity.EntityCreatePortalEvent)", but the event is Deprecated. "Server performance will be affected"; please notify the authors [dumptruckman, Rigby, fernferret, lithium3141, main--].
[13:32:07] [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.
[13:32:07] [Server thread/INFO]: Preparing start region for dimension minecraft:lab3
[13:32:08] [Server thread/INFO]: Time elapsed: 218 ms
[13:32:08] [Server thread/INFO]: [WorldGuard] (lab3) TNT ignition is PERMITTED.
[13:32:08] [Server thread/INFO]: [WorldGuard] (lab3) Lighters are PERMITTED.
[13:32:08] [Server thread/INFO]: [WorldGuard] (lab3) Lava fire is PERMITTED.
[13:32:08] [Server thread/INFO]: [WorldGuard] (lab3) Fire spread is UNRESTRICTED.
[13:32:08] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'lab3'
[13:32:08] [Server thread/INFO]: [Multiverse-Core] 4 - World(s) loaded.
[13:32:08] [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.
[13:32:08] [Server thread/INFO]: [Multiverse-Core] Version 4.3.12 (API v24) Enabled - By dumptruckman, Rigby, fernferret, lithium3141 and main--
[13:32:08] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v1.0-SNAPSHOT
[13:32:08] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[13:32:08] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R1) (MC: 1.21)
[13:32:08] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1375
[13:32:08] [Server thread/INFO]: [LibsDisguises] Build Date: 18/07/2024 09:44
[13:32:08] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[13:32:08] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[13:32:08] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[13:32:12] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[13:32:12] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise scout
[13:32:12] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Chest
[13:32:12] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise Chest2
[13:32:12] [Server thread/INFO]: [LibsDisguises] Loaded 4 custom disguises
[13:32:12] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[13:32:12] [Server thread/INFO]: [dynmap] Enabling dynmap v3.7-SNAPSHOT-948
[13:32:12] [Server thread/INFO]: [dynmap] Added 20 custom biome mappings
[13:32:12] [Server thread/INFO]: [dynmap] Using LuckPerms 5.4.131 for access control
[13:32:13] [Server thread/INFO]: [dynmap] Mod Support processing completed
[13:32:16] [Server thread/INFO]: [dynmap] Loaded 27 shaders.
[13:32:16] [Server thread/INFO]: [dynmap] Loaded 83 perspectives.
[13:32:16] [Server thread/INFO]: [dynmap] Loaded 22 lightings.
[13:32:16] [Server thread/INFO]: [dynmap] Starting enter/exit processing
[13:32:16] [Dynmap Render Thread/INFO]: [dynmap] Finish marker initialization
[13:32:17] [Server thread/INFO]: [dynmap] Web server started on address 0.0.0.0:8123
[13:32:17] [Server thread/INFO]: [dynmap] version 3.7-SNAPSHOT-948 is enabled - core version 3.7-SNAPSHOT-949
[13:32:17] [Server thread/INFO]: [dynmap] For support, visit our Discord at https://discord.gg/s3rd5qn
[13:32:17] [Server thread/INFO]: [dynmap] For news, visit https://reddit.com/r/Dynmap or follow https://universeodon.com/@dynmap
[13:32:17] [Server thread/INFO]: [dynmap] To report or track bugs, visit https://github.com/webbukkit/dynmap/issues
[13:32:17] [Server thread/INFO]: [dynmap] If you'd like to donate, please visit https://www.patreon.com/dynmap or https://ko-fi.com/michaelprimm
[13:32:17] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'TrickyTrials'.
[13:32:17] [Server thread/INFO]: [dynmap] Loaded 7 pending tile renders for world 'TrickyTrials'
[13:32:17] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'TrickyTrials_nether'.
[13:32:17] [Server thread/INFO]: [dynmap] Loaded 2 maps of world 'TrickyTrials_the_end'.
[13:32:17] [Server thread/INFO]: [dynmap] Loaded 3 maps of world 'lab3'.
[13:32:17] [Server thread/INFO]: [dynmap] Enabled
[13:32:17] [Server thread/INFO]: [Towny] Enabling Towny v0.100.3.10
[13:32:17] [Server thread/INFO]: ====================      Towny      ========================
[13:32:19] [Server thread/INFO]: [Towny] Successfully loaded translations for 42 languages.
[13:32:19] [Server thread/INFO]: [Towny] Config: Loaded 9 townblock types: shop, inn, arena, jail, default, bank, wilds, farm, embassy.
[13:32:19] [Server thread/INFO]: [Towny] Database: [Load] flatfile [Save] flatfile
[13:32:19] [Server thread/INFO]: [Towny] Database: Loaded in 332ms.
[13:32:19] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Cleaning up old backups...
[13:32:19] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Successfully cleaned backups.
[13:32:19] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Making backup...
[13:32:19] [Folia Async Scheduler Thread #0/INFO]: [Towny] Time until a New Day: 22 hours, 27 minutes, 41 seconds
[13:32:20] [Folia Async Scheduler Thread #1/INFO]: [Towny] Checking for updates...
[13:32:20] [Server thread/INFO]: [Towny] Searching for third-party plugins...
[13:32:20] [Server thread/INFO]: [Towny] Plugins found: 
[13:32:20] [Server thread/INFO]: [Towny]   Permissions: TownyPerms, BukkitPermissions
[13:32:20] [Server thread/INFO]: [Towny]   Add-ons: Dynmap-Towny v1.1.2
[13:32:20] [Server thread/INFO]: [Towny]   Warning: No compatible Economy plugins found. Install
                           Vault.jar or Reserve.jar with any of the supported eco
                           systems. If you do not want an economy to be used, set
                           using_economy: false in your Towny config.yml.
[13:32:20] [Folia Async Scheduler Thread #1/INFO]: [Towny] New update available: 0.100.3.11 | Current version: 0.100.3.10
[13:32:20] [Folia Async Scheduler Thread #1/INFO]: [Towny] Download it here: https://github.com/TownyAdvanced/Towny/releases/tag/0.100.3.11
[13:32:20] [ForkJoinPool.commonPool-worker-1/INFO]: [Towny] Towny flatfiles and settings successfully backed up.
[13:32:21] [Server thread/INFO]: =============================================================
[13:32:21] [Server thread/INFO]: [Towny] Version: 0.100.3.10 - Plugin Enabled
[13:32:21] [Server thread/INFO]: =============================================================
[13:32:21] [Server thread/INFO]: [CMILib] Enabling CMILib v1.5.1.0
[13:32:23] [Server thread/INFO]: Server version: v1_21_R1 - 1.21.0 - paper  1.21-126-7e44684 (MC: 1.21)
[13:32:23] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[13:32:23] [Server thread/INFO]: CMI hooked.
[13:32:23] [Server thread/INFO]: Updated (EN) language file. Took 72ms
[13:32:23] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.35-SNAPSHOT (build 3492)
[13:32:23] [Server thread/INFO]: [Citizens] Loading external libraries
[13:32:24] [Server thread/INFO]: [Citizens] Using mojmapped server, avoiding server package checks
[13:32:24] [Server thread/INFO]: [Citizens] Loaded 0 templates.
[13:32:25] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.7.0-SNAPSHOT-db4fb162
[13:32:25] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.0)...
[13:32:25] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] END_SPAWN_POINT
[13:32:27] [Server thread/WARN]: Nag author(s): '[Lumine]' of 'MythicMobs v5.7.0-SNAPSHOT-db4fb162' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DELAY
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DURATION
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DELAY
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DURATION
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] LOGGER
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_TIME_NO_TICK
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] MAX_SCHEDULED_TICKS_PER_TICK
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] players
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkSource
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] server
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] serverLevelData
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] lastSpawnChunkRadius
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickList
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] gameEventDispatcher
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] noSave
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] sleepStatus
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] emptyTime
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] portalForcer
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] blockTicks
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] fluidTicks
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] pathTypesByPosCache
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] navigatingMobs
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] isUpdatingNavigations
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] raids
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEvents
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEventsToReschedule
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] handlingTick
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] customSpawners
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonFight
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonParts
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] structureManager
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] structureCheck
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] tickTime
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] randomSequences
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] convertable
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] uuid
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] hasPhysicsEvent
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] hasEntityMoveEvent
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] wireHandler
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] markedClosing
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] viewDistanceHolder
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkLoader
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] entityDataController
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] poiDataController
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkDataController
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkTaskScheduler
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] lastMidTickFailure
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] tickedBlocksOrFluids
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] nearbyPlayers
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_CHUNK_AND_HOLDERS
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] loadedChunks
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] tickingChunks
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickingChunks
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] lagCompensationTick
[13:32:27] [Server thread/INFO]: [MythicMobs] [STDOUT] currentlyTickingEntity
[13:32:27] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[13:32:27] [Server thread/INFO]: [MythicMobs] Mythic ProtocolLib Support has been enabled!
[13:32:27] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[13:32:27] [Server thread/INFO]: [MythicMobs] Base directory G:\Minecraft 127\plugins\MythicMobs\data
[13:32:27] [Server thread/INFO]: [MythicMobs] Module directory G:\Minecraft 127\plugins\MythicMobs\data\worlds
[13:32:31] [Server thread/INFO]: [MythicMobs] Loading Packs...
[13:32:32] [Server thread/INFO]: [MythicMobs] Loading Items...
[13:32:32] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[13:32:32] [Server thread/INFO]: [MythicMobs] Loading Skills...
[13:32:33] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[13:32:33] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[13:32:33] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 23 mobs.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 85 skills.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 4 mythic items.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ Loaded 1 mob spawners.
[13:32:33] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[13:32:33] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[13:32:33] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs Premium v5.7.0 ( build db4fb162 ) has been successfully loaded!
[13:32:33] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[13:32:33] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[13:32:33] [Server thread/INFO]: [WESV] Enabling WorldEditSelectionVisualizer v2.1.7
[13:32:33] [Server thread/INFO]: [WESV] Using WorldEdit 7 api
[13:32:34] [Server thread/INFO]: [UltimateTimber] Enabling UltimateTimber v3.1.0-SNAPSHOT
[13:32:34] [Server thread/INFO]:  
[13:32:34] [Server thread/INFO]: =============================
[13:32:34] [Server thread/INFO]: UltimateTimber 3.1.0-SNAPSHOT by Songoda <3!
[13:32:34] [Server thread/INFO]: Action: Enabling...
[13:32:34] [Server thread/INFO]: [UltimateTimber] Loaded locale "en_US"
[13:32:34] [Server thread/INFO]: [com.craftaro.ultimatetimber.core.CoreLogger] [UltimateTimber] [CraftaroCore] [CraftaroCore] Hooked UltimateTimber.
[13:32:34] [Server thread/INFO]: =============================
[13:32:34] [Server thread/INFO]:  
[13:32:34] [Server thread/INFO]: [Multiverse-NetherPortals] Enabling Multiverse-NetherPortals v4.2.3
[13:32:34] [Server thread/INFO]: [Multiverse-NetherPortals 4.2.3]  Enabled - By Rigby and fernferret
[13:32:34] [Server thread/INFO]: [InventoryRollbackPlus] Enabling InventoryRollbackPlus v1.6.17
[13:32:34] [Server thread/INFO]: [InventoryRollbackPlus] Attempting Paper support for version: 1.21-R0.1-SNAPSHOT
[13:32:34] [Server thread/INFO]: [InventoryRollbackPlus] Found CraftBukkit Package Version: v1_21_R1
[13:32:34] [Server thread/INFO]: [InventoryRollbackPlus] Inventory backup data is set to save to: YAML
[13:32:34] [Server thread/INFO]: [InventoryRollbackPlus] bStats are enabled
[13:32:35] [Server thread/INFO]: [Dynmap-WorldGuard] Enabling Dynmap-WorldGuard v1.4-beta-1
[13:32:35] [Server thread/INFO]: [Dynmap-WorldGuard] initializing
[13:32:35] [Server thread/INFO]: [Dynmap-WorldGuard] version 1.4-beta-1 is activated
[13:32:35] [Server thread/INFO]: [Dynmap-Towny] Enabling Dynmap-Towny v1.1.2
[13:32:35] [Server thread/INFO]: [Dynmap-Towny] Initializing DynmapTowny.
[13:32:35] [Server thread/INFO]: [Dynmap-Towny] Towny version 0.100.3.10 found.
[13:32:35] [Server thread/INFO]: [Dynmap-Towny] Config.yml loaded successfully.
[13:32:35] [Server thread/INFO]: [Dynmap-Towny] version 1.1.2 is activated
[13:32:35] [Server thread/INFO]: [CMI] Enabling CMI v9.7.4.9
[13:32:36] [Server thread/INFO]: _______________________________________________________
[13:32:36] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓
[13:32:36] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛
[13:32:36] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃  ┃┃ 
[13:32:36] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃  ┃┃ 
[13:32:36] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓
[13:32:36] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛
[13:32:36] [Server thread/INFO]: _______________________________________________________
[13:32:36] [Server thread/INFO]: Integrating PaperSpigot async methods
[13:32:36] [Server thread/INFO]: Citizens found. (Loaded: true)
[13:32:37] [Server thread/INFO]: 66 Enabled and 0 Disabled modules
[13:32:37] [Server thread/INFO]: Loaded (2) portals into memory. Took 309ms
[13:32:37] [Server thread/INFO]: ProtocolLib found. (Loaded: true)
[13:32:37] [Server thread/INFO]: Permission plugin: LuckPerms5.4.131
[13:32:38] [Server thread/INFO]: Initialized Cipher256 AES
[13:32:41] [Server thread/INFO]: Loaded (61) regular alias into memory. Took 99ms
[13:32:41] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 15ms
[13:32:41] [Server thread/INFO]: 3.46.0 data base type detected
[13:32:41] [Server thread/INFO]: Started SqLite data base. Took 205ms
[13:32:42] [Server thread/INFO]: Towny found. (Loaded: true)
[13:32:42] [Server thread/INFO]: Vault was not found, you will have limited economy support
[13:32:42] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 0ms
[13:32:42] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms
[13:32:43] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 0ms
[13:32:43] [Server thread/INFO]: Loaded (147) custom mob heads into memory. Took 28ms
[13:32:43] [Server thread/INFO]: Loaded (7) warmups into memory. Took 1ms
[13:32:43] [Server thread/INFO]: Loaded (1) kits into memory. Took 13ms
[13:32:43] [Server thread/INFO]: Loaded (7) ranks into memory. Took 50ms
[13:32:43] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 5ms
[13:32:43] [Server thread/INFO]: Loaded (8) player data into memory. Took 17ms
[13:32:43] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 1ms
[13:32:43] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms
[13:32:43] [Server thread/INFO]: Loaded (2) custom alias into memory. Took 2ms
[13:32:44] [Server thread/INFO]: Loaded (1) interactive commands into memory. Took 10ms
[13:32:44] [Server thread/INFO]: dynmap found. (Loaded: true)
[13:32:44] [Server thread/INFO]: Registered events. Took 328ms
[13:32:44] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 14ms
[13:32:44] [Server thread/INFO]: Loaded (EN) language file into memory. Took 111ms
[13:32:44] [Server thread/INFO]: Loaded (245) worth values into memory. Took 45ms
[13:32:44] [Server thread/INFO]: Loaded (3) warps into memory. Took 11ms
[13:32:44] [Server thread/INFO]: Starting world timer.
[13:32:44] [Server thread/INFO]: Initializing world manager.
[13:32:44] [Server thread/INFO]: Loaded (4) schedules into memory. Took 39ms
[13:32:44] [Server thread/INFO]: Loaded GeoIP
[13:32:44] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 2ms
[13:32:44] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms
[13:32:45] [Server thread/INFO]: Version 9.7.4.9 has been enabled
[13:32:45] [Server thread/INFO]: _______________________________________________________
[13:32:45] [Server thread/INFO]: [BetonQuest] Enabling BetonQuest v2.1.3-DEV-46
[13:32:45] [Server thread/INFO]: [BetonQuest] Running on JRE 21.0.3 (build 9, optional LTS, pre-release info N/A) by Eclipse Adoptium
[13:32:46] [Server thread/INFO]: [BetonQuest] Using SQLite for storing data!
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into ProtocolLib
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into WorldEdit
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into LuckPerms
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into WorldGuard
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into Citizens
[13:32:47] [Server thread/INFO]: [BetonQuest] Hooking into MythicMobs
[13:32:47] [Server thread/INFO]: [BetonQuest] BetonQuest successfully enabled!
[13:32:48] [Server thread/INFO]: [spark] Starting background profiler...
[13:32:48] [Server thread/INFO]: [spark] The async-profiler engine is not supported for your os/arch (windows10/amd64), so the built-in Java engine will be used instead.
[13:32:48] [Server thread/INFO]: Done preparing level "TrickyTrials" (44.721s)
[13:32:48] [Server thread/INFO]: Running delayed init tasks
[13:32:48] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[13:32:48] [Server thread/INFO]: [BetonQuest] Enabled compatibility for LuckPerms, WorldEdit, WorldGuard, ProtocolLib, Citizens, MythicMobs!
[13:32:48] [Craft Scheduler Thread - 8 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] Checking for updates...
[13:32:48] [Craft Scheduler Thread - 8 - InventoryRollbackPlus/INFO]: [InventoryRollbackPlus] You are running the latest version.
[13:32:48] [Server thread/INFO]: [BetonQuest] There are 15 conditions, 104 events, 1 objectives and 15 conversations loaded from 2 packages.
[13:32:48] [Server thread/INFO]: [BetonQuest] Reloaded 0 menus
[13:32:49] [Server thread/INFO]: [Citizens] Loaded 26 NPCs.
[13:32:50] [Server thread/INFO]: Done (85.064s)! For help, type "help"
[13:32:50] [Server thread/WARN]: Can't keep up! Is the server overloaded? Running 2623ms or 52 ticks behind
[13:32:50] [Server thread/INFO]: Timings Reset
[13:32:50] [Craft Scheduler Thread - 11 - BetonQuest/INFO]: [BetonQuest] Found newer version '2.1.3-DEV-49', it will be installed, if you execute '/q update'!
[13:32:51] [Dynmap Render Thread/INFO]: [dynmap] Loading default resource pack
[13:32:52] [Dynmap Render Thread/WARN]: [dynmap] Resource assets/minecraft/textures/all.png for mod minecraft not found
[13:32:54] [Craft Scheduler Thread - 11 - Dynmap-Towny/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-nation will have no effect
[13:32:54] [Craft Scheduler Thread - 11 - Dynmap-Towny/INFO]: [Dynmap-Towny] Dynmap does not have player-info-protected enabled - visibility-by-nation will have no effect
[13:33:56] [User Authenticator #0/INFO]: UUID of player magcynic is f71e2935-be14-4b20-a76d-eb90dd76a084
[13:33:57] [Server thread/INFO]: magcynic joined the game
[13:33:58] [Server thread/INFO]: magcynic[/127.0.0.1:54646] logged in with entity id 285 at ([TrickyTrials]93.08413213665511, 254.0, -203.67791593393082)
[13:34:06] [Server thread/ERROR]: Could not pass event TradeSelectEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NoSuchMethodError: 'org.bukkit.inventory.view.MerchantView org.bukkit.event.inventory.TradeSelectEvent.getView()'
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onTradeSelect(ShopTrait.java:994) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor873.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callTradeSelectEvent(CraftEventFactory.java:375) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleSelectTrade(ServerGamePacketListenerImpl.java:1107) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:15) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:34:07] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:34:13] [Server thread/INFO]: magcynic issued server command: /gm 1
[13:34:31] [Server thread/ERROR]: Could not pass event TradeSelectEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NoSuchMethodError: 'org.bukkit.inventory.view.MerchantView org.bukkit.event.inventory.TradeSelectEvent.getView()'
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onTradeSelect(ShopTrait.java:994) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor873.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callTradeSelectEvent(CraftEventFactory.java:375) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleSelectTrade(ServerGamePacketListenerImpl.java:1107) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:15) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:34:32] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:34:33] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:06] [Server thread/ERROR]: Could not pass event TradeSelectEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NoSuchMethodError: 'org.bukkit.inventory.view.MerchantView org.bukkit.event.inventory.TradeSelectEvent.getView()'
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onTradeSelect(ShopTrait.java:994) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor873.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callTradeSelectEvent(CraftEventFactory.java:375) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleSelectTrade(ServerGamePacketListenerImpl.java:1107) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:15) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:07] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:07] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:08] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:08] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:08] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:08] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:08] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:36:14] [Server thread/INFO]: magcynic issued server command: /npc select
[13:36:37] [Server thread/INFO]: magcynic issued server command: /npc shop edit
[13:39:01] [Server thread/ERROR]: Could not pass event TradeSelectEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NoSuchMethodError: 'org.bukkit.inventory.view.MerchantView org.bukkit.event.inventory.TradeSelectEvent.getView()'
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onTradeSelect(ShopTrait.java:994) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor873.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at org.bukkit.craftbukkit.event.CraftEventFactory.callTradeSelectEvent(CraftEventFactory.java:375) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleSelectTrade(ServerGamePacketListenerImpl.java:1107) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundSelectTradePacket.handle(ServerboundSelectTradePacket.java:15) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.runAllTasks(BlockableEventLoop.java:114) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.tickServer(MinecraftServer.java:1629) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1304) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:39:02] [Server thread/ERROR]: Could not pass event InventoryClickEvent to Citizens v2.0.35-SNAPSHOT (build 3492)
java.lang.NullPointerException: Cannot invoke "net.citizensnpcs.trait.ShopTrait$NPCShopItem.onClick(net.citizensnpcs.trait.ShopTrait$NPCShop, org.bukkit.entity.Player, net.citizensnpcs.util.InventoryMultiplexer, boolean, boolean)" because the return value of "java.util.Map.get(Object)" is null
    at Citizens-2.0.35-b3492.jar/net.citizensnpcs.trait.ShopTrait$NPCTraderShopViewer.onInventoryClick(ShopTrait.java:978) ~[Citizens-2.0.35-b3492.jar:?]
    at com.destroystokyo.paper.event.executor.asm.generated.GeneratedEventExecutor871.execute(Unknown Source) ~[?:?]
    at org.bukkit.plugin.EventExecutor$2.execute(EventExecutor.java:77) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at co.aikar.timings.TimedEventExecutor.execute(TimedEventExecutor.java:84) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:1.21-126-7e44684]
    at org.bukkit.plugin.RegisteredListener.callEvent(RegisteredListener.java:70) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.plugin.manager.PaperEventManager.callEvent(PaperEventManager.java:54) ~[paper-1.21.jar:1.21-126-7e44684]
    at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.callEvent(PaperPluginManagerImpl.java:131) ~[paper-1.21.jar:1.21-126-7e44684]
    at org.bukkit.plugin.SimplePluginManager.callEvent(SimplePluginManager.java:628) ~[paper-api-1.21-R0.1-SNAPSHOT.jar:?]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.handleContainerClick(ServerGamePacketListenerImpl.java:3122) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:69) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.game.ServerboundContainerClickPacket.handle(ServerboundContainerClickPacket.java:33) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.network.protocol.PacketUtils.lambda$ensureRunningOnSameThread$0(PacketUtils.java:56) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:151) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1537) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:201) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:125) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1514) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1507) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:135) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1466) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1473) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1318) ~[paper-1.21.jar:1.21-126-7e44684]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:330) ~[paper-1.21.jar:1.21-126-7e44684]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[13:42:35] [Server thread/INFO]: Stopping the server
[13:42:35] [Server thread/INFO]: Stopping server
[13:42:35] [Server thread/INFO]: [BetonQuest] Disabling BetonQuest v2.1.3-DEV-46
[13:42:35] [Server thread/INFO]: [BetonQuest] BetonQuest succesfully disabled!
[13:42:35] [Server thread/INFO]: [CMI] Disabling CMI v9.7.4.9
[13:42:35] [Server thread/INFO]: [CMI] Closed db connections
[13:42:35] [Server thread/INFO]: [Dynmap-Towny] Disabling Dynmap-Towny v1.1.2
[13:42:35] [Server thread/INFO]: [Dynmap-WorldGuard] Disabling Dynmap-WorldGuard v1.4-beta-1
[13:42:35] [Server thread/INFO]: [InventoryRollbackPlus] Disabling InventoryRollbackPlus v1.6.17
[13:42:35] [Server thread/INFO]: [InventoryRollbackPlus] Setting shutdown state
[13:42:35] [Server thread/INFO]: [InventoryRollbackPlus] Saving player inventories...
[13:42:35] [Server thread/INFO]: [InventoryRollbackPlus] Done saving player inventories!
[13:42:35] [Server thread/INFO]: [InventoryRollbackPlus] Plugin is disabled!
[13:42:35] [Server thread/INFO]: [Multiverse-NetherPortals] Disabling Multiverse-NetherPortals v4.2.3
[13:42:35] [Server thread/INFO]: [Multiverse-NetherPortals] - Disabled
[13:42:35] [Server thread/INFO]: [UltimateTimber] Disabling UltimateTimber v3.1.0-SNAPSHOT
[13:42:35] [Server thread/INFO]:  
[13:42:35] [Server thread/INFO]: =============================
[13:42:35] [Server thread/INFO]: UltimateTimber 3.1.0-SNAPSHOT by Songoda <3!
[13:42:35] [Server thread/INFO]: Action: Disabling...
[13:42:36] [Server thread/INFO]: =============================
[13:42:36] [Server thread/INFO]:  
[13:42:36] [Server thread/INFO]: [WESV] Disabling WorldEditSelectionVisualizer v2.1.7
[13:42:36] [Server thread/INFO]: [WorldGuardExtraFlags] Disabling WorldGuardExtraFlags v4.2.4-SNAPSHOT
[13:42:36] [Server thread/INFO]: [MythicMobs] Disabling MythicMobs v5.7.0-SNAPSHOT-db4fb162
[13:42:36] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[13:42:36] [Server thread/INFO]: [MythicMobs] - 
[13:42:36] [Server thread/INFO]: [MythicMobs] - Unloading Mythic...
[13:42:36] [Server thread/INFO]: [MythicMobs] - 
[13:42:36] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[13:42:36] [Server thread/INFO]: [MythicMobs] - Spawners saved and unloaded...
[13:42:36] [Server thread/INFO]: [MythicMobs] - Mobs saved and unloaded...
[13:42:36] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[13:42:36] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[13:42:36] [Server thread/INFO]: [MythicMobs] - Variables saved...
[13:42:36] [Server thread/INFO]: [MythicMobs] - All active settings have been saved!
[13:42:36] [Server thread/INFO]: [MythicMobs] - Mythic has been unloaded!
[13:42:36] [Server thread/INFO]: [MythicMobs] ------------------------------------------------------------
[13:42:36] [Server thread/INFO]: [MythicMobs] Saving plugin data...
[13:42:36] [Server thread/INFO]: [MythicMobs] ✓Saving Finished
[13:42:36] [Server thread/INFO]: [Citizens] Disabling Citizens v2.0.35-SNAPSHOT (build 3492)
[13:42:36] [Server thread/INFO]: [CMILib] Disabling CMILib v1.5.1.0
[13:42:36] [Server thread/INFO]: [Towny] Disabling Towny v0.100.3.10
[13:42:36] [Server thread/INFO]: ==============================================================
[13:42:36] [Server thread/INFO]: [Towny] Finishing File IO Tasks...
[13:42:36] [Server thread/INFO]: [Towny] Finishing Universe Tasks...
[13:42:36] [Server thread/INFO]: [Towny] Version: 0.100.3.10 - Plugin Disabled
[13:42:36] [Server thread/INFO]: =============================================================
[13:42:36] [Server thread/INFO]: [dynmap] Disabling dynmap v3.7-SNAPSHOT-948
[13:42:36] [Server thread/INFO]: [dynmap] Unloaded 11 components.
[13:42:36] [Server thread/INFO]: [dynmap] Stopping map renderer...
[13:42:37] [Server thread/INFO]: [dynmap] Disabled
[13:42:37] [Server thread/INFO]: [LibsDisguises] Disabling LibsDisguises v1.0-SNAPSHOT
[13:42:37] [Server thread/INFO]: [Multiverse-Core] Disabling Multiverse-Core v4.3.12
[13:42:37] [Server thread/INFO]: [WorldGuard] Disabling WorldGuard v7.0.11-beta1+a801a9d
[13:42:37] [Server thread/INFO]: [WorldGuard] Shutting down executor and cancelling any pending tasks...
[13:42:37] [Server thread/INFO]: [CoreProtect] Disabling CoreProtect v22.4
[13:42:37] [Server thread/INFO]: [CoreProtect] Finishing up data logging. Please wait...
[13:42:38] [Server thread/INFO]: [CoreProtect] Success! Disabled CoreProtect v22.4
[13:42:38] [Server thread/INFO]: [LuckPerms] Disabling LuckPerms v5.4.131
[13:42:38] [Server thread/INFO]: [LuckPerms] Starting shutdown process...
[13:42:38] [Server thread/INFO]: [LuckPerms] Closing storage...
[13:42:38] [Server thread/INFO]: [LuckPerms] Goodbye!
[13:42:38] [Server thread/INFO]: [packetevents] Disabling packetevents v2.4.0
[13:42:38] [Server thread/INFO]: [WorldEdit] Disabling WorldEdit v7.3.5+6880-8ba3d89
[13:42:38] [Server thread/INFO]: Unregistering com.sk89q.worldedit.bukkit.BukkitServerInterface from WorldEdit
[13:42:38] [Server thread/INFO]: [ProtocolLib] Disabling ProtocolLib v5.3.0-SNAPSHOT-726
[13:42:38] [Server thread/INFO]: Saving players
[13:42:38] [Server thread/INFO]: magcynic lost connection: Server closed
[13:42:38] [Server thread/INFO]: magcynic left the game
[13:42:38] [Server thread/INFO]: Saving worlds
[13:42:38] [Server thread/INFO]: Saving chunks for level 'ServerLevel[TrickyTrials]'/minecraft:overworld
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'TrickyTrials'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'TrickyTrials'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'TrickyTrials'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saved 3 block chunks, 292 entity chunks, 0 poi chunks in world 'TrickyTrials' in 0.12s
[13:42:38] [Server thread/INFO]: Saving chunks for level 'ServerLevel[TrickyTrials_nether]'/minecraft:the_nether
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'TrickyTrials_nether'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'TrickyTrials_nether'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'TrickyTrials_nether'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 0 entity chunks, 0 poi chunks in world 'TrickyTrials_nether' in 0.00s
[13:42:38] [Server thread/INFO]: Saving chunks for level 'ServerLevel[TrickyTrials_the_end]'/minecraft:the_end
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'TrickyTrials_the_end'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'TrickyTrials_the_end'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'TrickyTrials_the_end'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saved 0 block chunks, 10 entity chunks, 0 poi chunks in world 'TrickyTrials_the_end' in 0.02s
[13:42:38] [Server thread/INFO]: Saving chunks for level 'ServerLevel[lab3]'/minecraft:lab3
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Waiting 60s for chunk system to halt for world 'lab3'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Halted chunk system for world 'lab3'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saving all chunkholders for world 'lab3'
[13:42:38] [Server thread/INFO]: [ChunkHolderManager] Saved 1 block chunks, 5 entity chunks, 0 poi chunks in world 'lab3' in 0.02s
[13:42:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (TrickyTrials): All chunks are saved
[13:42:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[13:42:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[13:42:38] [Server thread/INFO]: ThreadedAnvilChunkStorage (lab3): All chunks are saved
[13:42:38] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved