Paste #103748: Unnamed Java Paste

Date: 2022/12/07 14:34:52 UTC-08:00
Type: Java

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


[17:32:51] [main/INFO]: Loading tweak class name optifine.OptiFineTweaker
[17:32:51] [main/INFO]: Using primary tweak class name optifine.OptiFineTweaker
[17:32:51] [main/INFO]: Calling tweak class optifine.OptiFineTweaker
[17:32:51] [main/INFO]: [OptiFine] OptiFineTweaker: acceptOptions
[17:32:51] [main/INFO]: [OptiFine] OptiFineTweaker: injectIntoClassLoader
[17:32:51] [main/INFO]: [OptiFine] OptiFine ClassTransformer
[17:32:51] [main/INFO]: [OptiFine] OptiFine ZIP file: C:\Users\user\AppData\Roaming\.minecraft\libraries\optifine\OptiFine\1.19.2_HD_U_H9\OptiFine-1.19.2_HD_U_H9.jar
[17:32:51] [main/INFO]: [OptiFine] OptiFineTweaker: getLaunchArguments
[17:32:51] [main/INFO]: [OptiFine] OptiFineTweaker: getLaunchTarget
[17:32:52] [main/INFO]: Launching wrapped minecraft {net.minecraft.client.main.Main}
[17:32:53] [main/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.eventbus.api.Event$Result
[17:32:53] [main/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.extensions.IForgeEntity
[17:32:53] [main/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.logging.CrashReportExtender
[17:32:53] [main/INFO]: [OptiFine] (Reflector) Method not present: aks.create
[17:32:54] [main/INFO]: Building optimized datafixer
[17:32:56] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ForgeHooksClient
[17:32:56] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[17:32:57] [Render thread/INFO]: Setting user: ScruffySnub
[17:32:57] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.settings.KeyConflictContext
[17:32:57] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: efs.getKeyModifier
[17:32:57] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.settings.KeyModifier
[17:32:57] [Render thread/INFO]: Backend library: LWJGL version 3.3.1 build 7
[17:32:57] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.fml.loading.progress.EarlyProgressVisualization.handOffWindow
[17:32:57] [Render thread/INFO]: [OptiFine] 
[17:32:57] [Render thread/INFO]: [OptiFine] OptiFine_1.19.2_HD_U_H9
[17:32:57] [Render thread/INFO]: [OptiFine] Build: 20220820-230904
[17:32:57] [Render thread/INFO]: [OptiFine] OS: Windows 10 (amd64) version 10.0
[17:32:57] [Render thread/INFO]: [OptiFine] Java: 17.0.3, Microsoft
[17:32:57] [Render thread/INFO]: [OptiFine] VM: OpenJDK 64-Bit Server VM (mixed mode), Microsoft
[17:32:57] [Render thread/INFO]: [OptiFine] LWJGL: 3.4.0 Win32 WGL Null EGL OSMesa VisualC DLL
[17:32:57] [Render thread/INFO]: [OptiFine] OpenGL: NVIDIA GeForce RTX 3060/PCIe/SSE2, version 3.2.0 NVIDIA 516.94, NVIDIA Corporation
[17:32:57] [Render thread/INFO]: [OptiFine] OpenGL Version: 3.2.0
[17:32:57] [Render thread/INFO]: [OptiFine] Maximum texture size: 32768x32768
[17:32:57] [Render thread/INFO]: [Shaders] OpenGL Version: 3.2.0 NVIDIA 516.94
[17:32:57] [Render thread/INFO]: [Shaders] Vendor:  NVIDIA Corporation
[17:32:57] [Render thread/INFO]: [Shaders] Renderer: NVIDIA GeForce RTX 3060/PCIe/SSE2
[17:32:57] [Render thread/INFO]: [Shaders] Capabilities:  2.0  2.1  3.0  3.2  - 
[17:32:57] [VersionCheck/INFO]: [OptiFine] Checking for new version
[17:32:57] [Render thread/INFO]: [Shaders] GL_MAX_DRAW_BUFFERS: 8
[17:32:57] [Render thread/INFO]: [Shaders] GL_MAX_COLOR_ATTACHMENTS: 8
[17:32:57] [Render thread/INFO]: [Shaders] GL_MAX_TEXTURE_IMAGE_UNITS: 32
[17:32:57] [Render thread/INFO]: [Shaders] Load shaders configuration.
[17:32:57] [Render thread/INFO]: [Shaders] Save shaders configuration.
[17:32:57] [Render thread/INFO]: [Shaders] No shaderpack loaded.
[17:32:57] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.ModList
[17:32:58] [VersionCheck/INFO]: [OptiFine] java.io.FileNotFoundException: http://optifine.net/version/1.19.2/HD_U.txt
[17:32:58] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: sun.misc.SharedSecrets
[17:32:58] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: jdk.internal.misc.SharedSecrets
[17:32:58] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.ClassNotFoundException: sun.misc.VM
[17:32:58] [Render thread/WARN]: [OptiFine] (Reflector) java.lang.reflect.InaccessibleObjectException: Unable to make public static long jdk.internal.misc.VM.maxDirectMemory() accessible: module java.base does not "exports jdk.internal.misc" to unnamed module @ae06bd1
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.ForgeItemModelShaper
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.lighting.ForgeModelBlockRenderer
[17:32:58] [Render thread/INFO]: Narrator library for x64 successfully loaded
[17:32:58] [Render thread/INFO]: Reloading ResourceManager: Default, PureBDcraft 128x MC119.zip
[17:32:58] [Render thread/INFO]: [OptiFine] *** Reloading textures ***
[17:32:58] [Render thread/INFO]: [OptiFine] Resource packs: PureBDcraft 128x MC119.zip
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.gui.ModListScreen
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.gui.TitleScreenModUpdateIndicator
[17:32:58] [Render thread/INFO]: [OptiFine] *** Reflector Forge ***
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.internal.BrandingControl
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.capabilities.ICapabilityProvider
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.client.extensions.common.IClientItemExtensions.of
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.capabilities.CapabilityProvider
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.loading.ClientModLoader
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.level.ChunkDataEvent$Save
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.level.ChunkEvent$Load
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.level.ChunkEvent$Unload
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.ColorResolverManager
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityRenderersEvent$AddLayers
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.EntityRenderersEvent$CreateSkullModels
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.entity.EntityLeaveLevelEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.ViewportEvent$ComputeCameraAngles
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.entity.EntityJoinLevelEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.eventbus.api.Event.isCanceled
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.eventbus.api.Event.getResult
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.eventbus.api.IEventBus
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: fai.getTexture
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: fao.emissivity
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.common.extensions.IForgeBlockState.getLightEmission
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.common.extensions.IForgeBlockState.getSoundType
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.common.extensions.IForgeBlockState.getStateAtViewpoint
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.common.extensions.IForgeBlockState.shouldDisplayFluidOverlay
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.extensions.IForgePlayer
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: afs.currentlyLoading
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.ForgeEventFactory
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeHooks
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraftforge.common.ForgeConfig$Client.experimentalForgeLightPipelineEnabled
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraftforge.common.ForgeConfig$Client.useCombinedDepthStencilAttachment
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraftforge.common.ForgeConfigSpec.childConfig
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraftforge.common.ForgeConfigSpec$ConfigValue.defaultSupplier
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: net.minecraftforge.common.ForgeConfigSpec$ConfigValue.spec
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: net.minecraftforge.common.ForgeConfigSpec$ConfigValue.get
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: cxj.getWorldForge
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.extensions.IForgeItem
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.extensions.IForgeItemStack
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.ForgeI18n
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: efs.setKeyConflictContext
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: efs.setKeyModifierAndCode
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: drd.render
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: cbn.getStyleModifier
[17:32:58] [Worker-Main-4/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.geometry.GeometryLoaderManager
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Field not present: agk.forceTicks
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: agk.isForceTicks
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.extensions.IForgeBlockEntity
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.extensions.IForgeDimensionSpecialEffects
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.common.MinecraftForge
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.ModContainer
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.fml.ModLoader
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.PlayLevelSoundEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.pipeline.QuadBakingVertexConsumer
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.QuadTransformers
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.model.IQuadTransformer
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RegisterShadersEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderBlockScreenEffectEvent$OverlayType
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.CustomizeGuiOverlayEvent$BossEventProgress
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderItemInFrameEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Pre
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderLivingEvent$Post
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.RenderNameTagEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.client.event.ScreenshotEvent
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.server.ServerLifecycleHooks
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Method not present: eyj.updateSprite
[17:32:58] [Render thread/INFO]: [OptiFine] (Reflector) Class not present: net.minecraftforge.event.level.LevelEvent$Load
[17:32:58] [Render thread/INFO]: [OptiFine] *** Reflector Vanilla ***
[17:32:59] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:32:59] [Render thread/INFO]: [OptiFine] Loading optifine/color.properties
[17:32:59] [Render thread/INFO]: [OptiFine] screen.loading = 1e1e1e
[17:32:59] [Render thread/INFO]: [OptiFine] screen.loading.bar = ffffff
[17:32:59] [Render thread/INFO]: [OptiFine] screen.loading.progress = b4c8ff
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/elytra/broken_elytra.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/aqua_affinity.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/bane_of_arthropods.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/binding_curse.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/blast_protection.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/channeling.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/chopping.properties
[17:33:00] [Worker-Main-4/WARN]: [OptiFine] Invalid value: chopping
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/depth_strider.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/efficiency.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/feather_falling.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_aspect.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_protection.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/flame.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fortune.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/frost_walker.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/impaling.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/infinity.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/knockback.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/looting.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/loyalty.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/luck_of_the_sea.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/lure.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/mending.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/multishot.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/piercing.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/power.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/projectile_protection.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/protection.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/punch.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/quick_charge.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/respiration.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/riptide.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sharpness.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/silk_touch.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/smite.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/soul_speed.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sweeping.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/thorns.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/unbreaking.properties
[17:33:00] [Worker-Main-4/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/vanishing_curse.properties
[17:33:00] [Worker-Main-5/INFO]: [OptiFine] Multitexture: false
[17:33:01] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:01] [Worker-Main-4/INFO]: [OptiFine] Multipass connected textures: false
[17:33:01] [Worker-Main-4/INFO]: [OptiFine] Multipass connected textures: false
[17:33:01] [Worker-Main-4/INFO]: [OptiFine] BetterGrass: Parsing configuration optifine/bettergrass.properties
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 7
[17:33:02] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:item/light, 16 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind, 64 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:block/redstone_dust_overlay, 16 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:block/lightning_rod_on, 16 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind_vertical, 64 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:block/conduit, 16 -> 128
[17:33:02] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:block/water_overlay, 32 -> 128
[17:33:02] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [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]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Sprite size: 512
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Mipmap levels: 9
[17:33:03] [Worker-Main-4/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:03] [Worker-Main-4/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:03] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play
[17:33:03] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[17:33:03] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Speakers (ASUS Xonar DGX Audio Device)
[17:33:03] [Render thread/INFO]: Sound engine started
[17:33:03] [Render thread/INFO]: Created: 8192x4096x4 minecraft:textures/atlas/blocks.png-atlas
[17:33:03] [Render thread/INFO]: [OptiFine] Animated sprites: 53
[17:33:03] [Render thread/INFO]: Created: 2048x1024x4 minecraft:textures/atlas/signs.png-atlas
[17:33:03] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:03] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/banner_patterns.png-atlas
[17:33:03] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:03] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/shield_patterns.png-atlas
[17:33:04] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:04] [Render thread/INFO]: Created: 2048x2048x4 minecraft:textures/atlas/chest.png-atlas
[17:33:04] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:04] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/beds.png-atlas
[17:33:04] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:04] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[17:33:04] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:05] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[17:33:05] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/particles.png-atlas
[17:33:05] [Render thread/INFO]: [OptiFine] Animated sprites: 1
[17:33:05] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/paintings.png-atlas
[17:33:05] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:05] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/mob_effects.png-atlas
[17:33:05] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:05] [Render thread/INFO]: [OptiFine] *** Reloading custom textures ***
[17:33:05] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/campfire_fire
[17:33:05] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/soul_campfire_fire
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampgrass.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampfoliage.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sky0.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/fog0.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/underwater.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Loading optifine/color.properties
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: drop.water = 93b9f1
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: fog.end = 150018
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: sky.end = 000000
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/stone.png = andesite polished_andesite andesite_wall andesite_stairs polished_andesite_stairs andesite_slab polished_andesite_slab diorite polished_diorite diorite_wall diorite_stairs polished_diorite_stairs diorite_slab polished_diorite_slab granite polished_granite granite_wall granite_stairs polished_granite_stairs granite_slab polished_granite_slab stone stone_stairs stone_slab stone_button stone_pressure_plate infested_stone smooth_stone smooth_stone_slab cobblestone cobblestone_wall cobblestone_stairs cobblestone_slab infested_cobblestone mossy_cobblestone mossy_cobblestone_wall mossy_cobblestone_stairs mossy_cobblestone_slab stone_bricks stone_brick_wall stone_brick_stairs stone_brick_slab infested_stone_bricks cracked_stone_bricks infested_cracked_stone_bricks chiseled_stone_bricks infested_chiseled_stone_bricks mossy_stone_bricks mossy_stone_brick_wall mossy_stone_brick_stairs mossy_stone_brick_slab infested_mossy_stone_bricks sandstone sandstone_wall sandstone_slab sandstone_stairs smooth_sandstone smooth_sandstone_slab smooth_sandstone_stairs chiseled_sandstone cut_sandstone cut_sandstone_slab red_sandstone red_sandstone_wall red_sandstone_slab red_sandstone_stairs smooth_red_sandstone smooth_red_sandstone_slab smooth_red_sandstone_stairs chiseled_red_sandstone cut_red_sandstone cut_red_sandstone_slab gravel clay coal_ore copper_ore diamond_ore emerald_ore gold_ore iron_ore lapis_ore redstone_ore dispenser dropper furnace observer piston sticky_piston comparator repeater lever
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/stone.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/sand.png = sand red_sand
[17:33:05] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sand.png
[17:33:05] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky1.properties
[17:33:05] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky2.properties
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/steve.png, variants: 10
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/dolphin.png, properties: optifine/mob/dolphin.properties
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/creeper/creeper.png, properties: optifine/mob/creeper/creeper.properties
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MountainEdge
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedGravellyMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: JungleHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungle
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungleEdge
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BadlandsPlateau
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertLakes
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ShatteredSavannaPlateau
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedWoodedBadlandsPlateau
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedBadlandsPlateau
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MushroomFieldShore
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cat/cat_collar.png, properties: optifine/mob/cat/cat_collar.properties
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cow/cow.png, variants: 3
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/iron_golem/iron_golem.png, variants: 2
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/skeleton/skeleton.png, variants: 4
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/enderman/enderman_eyes.png, variants: 3
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/slime/magmacube.png, variants: 2
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/silverfish.png, variants: 3
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/squid/squid.png, variants: 6
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/spider/spider.png, variants: 3
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_angry.png, properties: optifine/mob/wolf/wolf.properties
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf.png, properties: optifine/mob/wolf/wolf.properties
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_tame.png, properties: optifine/mob/wolf/wolf.properties
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_collar.png, properties: optifine/mob/wolf/wolf_collar.properties
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/pig/pig.png, variants: 3
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/illager/evoker.png, variants: 2
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/zombie.png, properties: optifine/mob/zombie/zombie.properties
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:05] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/husk.png, variants: 2
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/drowned.png, properties: optifine/mob/zombie/drowned.properties
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast_shooting.png, variants: 2
[17:33:05] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast.png, variants: 2
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/cave_spider.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/chicken.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/evocation_illager.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/iron_golem.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/skeleton.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/spider.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vex.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vindication_illager.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/zombie.jem
[17:33:06] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker_box.jem
[17:33:06] [Render thread/INFO]: [OptiFine] Texture pack clouds: fast
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/ender_chest.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_black.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_blue.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_brown.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_cyan.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_gray.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_green.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_blue.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_gray.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_lime.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_magenta.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_orange.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_pink.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_purple.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_red.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_white.properties
[17:33:06] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_yellow.properties
[17:33:06] [Render thread/INFO]: [OptiFine] Disable Forge light pipeline
[17:33:29] [Render thread/INFO]: Connecting to localhost, 25565
[17:33:31] [Netty Client IO #1/INFO]: Found file C:\Users\user\AppData\Roaming\.minecraft\server-resource-packs\21b06ea6da07e71128c126816596b6be732d4e32 matching requested hash 9d2c7b7b8cc988f31bb97662b8841ea204238583
[17:33:31] [Netty Client IO #1/INFO]: Applying server pack C:\Users\user\AppData\Roaming\.minecraft\server-resource-packs\21b06ea6da07e71128c126816596b6be732d4e32
[17:33:31] [Render thread/WARN]: Unknown custom packed identifier: minecraft:register
[17:33:32] [Render thread/INFO]: [System] [CHAT] ScruffySnub joined the game
[17:33:32] [Render thread/INFO]: Reloading ResourceManager: Default, PureBDcraft 128x MC119.zip, 21b06ea6da07e71128c126816596b6be732d4e32
[17:33:32] [Render thread/INFO]: [OptiFine] *** Reloading textures ***
[17:33:32] [Render thread/INFO]: [OptiFine] Resource packs: PureBDcraft 128x MC119.zip, 21b06ea6da07e71128c126816596b6be732d4e32
[17:33:32] [Render thread/INFO]: Loaded 381 advancements
[17:33:33] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
[17:33:33] [Worker-Main-5/INFO]: [OptiFine] Multitexture: false
[17:33:33] [Worker-Main-11/INFO]: [OptiFine] Multitexture: false
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/elytra/broken_elytra.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/aqua_affinity.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/bane_of_arthropods.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/binding_curse.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/blast_protection.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/channeling.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/chopping.properties
[17:33:33] [Worker-Main-6/WARN]: [OptiFine] Invalid value: chopping
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/depth_strider.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/efficiency.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/feather_falling.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_aspect.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_protection.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/flame.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fortune.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/frost_walker.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/impaling.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/infinity.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/knockback.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/looting.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/loyalty.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/luck_of_the_sea.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/lure.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/mending.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/multishot.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/piercing.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/power.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/projectile_protection.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/protection.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/punch.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/quick_charge.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/respiration.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/riptide.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sharpness.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/silk_touch.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/smite.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/soul_speed.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sweeping.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/thorns.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/unbreaking.properties
[17:33:33] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/vanishing_curse.properties
[17:33:33] [Render thread/INFO]: [OptiFine] Loading optifine/color.properties
[17:33:33] [Render thread/INFO]: [OptiFine] screen.loading = 1e1e1e
[17:33:33] [Render thread/INFO]: [OptiFine] screen.loading.bar = ffffff
[17:33:33] [Render thread/INFO]: [OptiFine] screen.loading.progress = b4c8ff
[17:33:34] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:34] [Worker-Main-6/INFO]: [OptiFine] Multipass connected textures: false
[17:33:34] [Worker-Main-6/INFO]: [OptiFine] Multipass connected textures: false
[17:33:34] [Worker-Main-6/INFO]: [OptiFine] Multipass connected textures: false
[17:33:34] [Worker-Main-6/INFO]: [OptiFine] BetterGrass: Parsing configuration optifine/bettergrass.properties
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 7
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:item/light, 16 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:alpha, 1 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind, 64 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:bigdig_textures/wooden_gear, 64 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/redstone_dust_overlay, 16 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/lightning_rod_on, 16 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind_vertical, 64 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/conduit, 16 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:bigdig_textures/paper_edict, 64 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/water_overlay, 32 -> 128
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:bigdig_textures/paper_scroll, 64 -> 128
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [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]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:35] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:35] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:36] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:36] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:36] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:36] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:36] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play
[17:33:36] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[17:33:36] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Speakers (ASUS Xonar DGX Audio Device)
[17:33:36] [Render thread/INFO]: Sound engine started
[17:33:36] [Render thread/INFO]: Created: 8192x4096x4 minecraft:textures/atlas/blocks.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 53
[17:33:36] [Render thread/INFO]: Created: 2048x1024x4 minecraft:textures/atlas/signs.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:36] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/banner_patterns.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:36] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/shield_patterns.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:36] [Render thread/INFO]: Created: 2048x2048x4 minecraft:textures/atlas/chest.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:36] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/beds.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:36] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[17:33:36] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:37] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[17:33:37] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/particles.png-atlas
[17:33:37] [Render thread/INFO]: [OptiFine] Animated sprites: 1
[17:33:37] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/paintings.png-atlas
[17:33:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:37] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/mob_effects.png-atlas
[17:33:37] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:37] [Render thread/INFO]: [OptiFine] *** Reloading custom textures ***
[17:33:37] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/campfire_fire
[17:33:37] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/soul_campfire_fire
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampgrass.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampfoliage.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sky0.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/fog0.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/underwater.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Loading optifine/color.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: drop.water = 93b9f1
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: fog.end = 150018
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: sky.end = 000000
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/stone.png = andesite polished_andesite andesite_wall andesite_stairs polished_andesite_stairs andesite_slab polished_andesite_slab diorite polished_diorite diorite_wall diorite_stairs polished_diorite_stairs diorite_slab polished_diorite_slab granite polished_granite granite_wall granite_stairs polished_granite_stairs granite_slab polished_granite_slab stone stone_stairs stone_slab stone_button stone_pressure_plate infested_stone smooth_stone smooth_stone_slab cobblestone cobblestone_wall cobblestone_stairs cobblestone_slab infested_cobblestone mossy_cobblestone mossy_cobblestone_wall mossy_cobblestone_stairs mossy_cobblestone_slab stone_bricks stone_brick_wall stone_brick_stairs stone_brick_slab infested_stone_bricks cracked_stone_bricks infested_cracked_stone_bricks chiseled_stone_bricks infested_chiseled_stone_bricks mossy_stone_bricks mossy_stone_brick_wall mossy_stone_brick_stairs mossy_stone_brick_slab infested_mossy_stone_bricks sandstone sandstone_wall sandstone_slab sandstone_stairs smooth_sandstone smooth_sandstone_slab smooth_sandstone_stairs chiseled_sandstone cut_sandstone cut_sandstone_slab red_sandstone red_sandstone_wall red_sandstone_slab red_sandstone_stairs smooth_red_sandstone smooth_red_sandstone_slab smooth_red_sandstone_stairs chiseled_red_sandstone cut_red_sandstone cut_red_sandstone_slab gravel clay coal_ore copper_ore diamond_ore emerald_ore gold_ore iron_ore lapis_ore redstone_ore dispenser dropper furnace observer piston sticky_piston comparator repeater lever
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/stone.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/sand.png = sand red_sand
[17:33:37] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sand.png
[17:33:37] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky1.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky2.properties
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/steve.png, variants: 10
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/dolphin.png, properties: optifine/mob/dolphin.properties
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/creeper/creeper.png, properties: optifine/mob/creeper/creeper.properties
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MountainEdge
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedGravellyMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: JungleHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungle
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungleEdge
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BadlandsPlateau
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertLakes
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ShatteredSavannaPlateau
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedWoodedBadlandsPlateau
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedBadlandsPlateau
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MushroomFieldShore
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cat/cat_collar.png, properties: optifine/mob/cat/cat_collar.properties
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cow/cow.png, variants: 3
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/iron_golem/iron_golem.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/skeleton/skeleton.png, variants: 4
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/enderman/enderman_eyes.png, variants: 3
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/slime/magmacube.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/silverfish.png, variants: 3
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/squid/squid.png, variants: 6
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/spider/spider.png, variants: 3
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_angry.png, properties: optifine/mob/wolf/wolf.properties
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf.png, properties: optifine/mob/wolf/wolf.properties
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_tame.png, properties: optifine/mob/wolf/wolf.properties
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_collar.png, properties: optifine/mob/wolf/wolf_collar.properties
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/pig/pig.png, variants: 3
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/illager/evoker.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/zombie.png, properties: optifine/mob/zombie/zombie.properties
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:37] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/husk.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/drowned.png, properties: optifine/mob/zombie/drowned.properties
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast_shooting.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast.png, variants: 2
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/cave_spider.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/chicken.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/evocation_illager.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/iron_golem.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/skeleton.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/spider.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vex.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vindication_illager.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/zombie.jem
[17:33:37] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker_box.jem
[17:33:37] [Render thread/INFO]: [OptiFine] Texture pack clouds: fast
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/ender_chest.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_black.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_blue.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_brown.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_cyan.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_gray.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_green.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_blue.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_gray.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_lime.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_magenta.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_orange.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_pink.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_purple.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_red.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_white.properties
[17:33:37] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_yellow.properties
[17:33:37] [Render thread/INFO]: [OptiFine] Disable Forge light pipeline
[17:33:46] [Render thread/INFO]: Reloading ResourceManager: Default, PureBDcraft 128x MC119.zip
[17:33:46] [Render thread/INFO]: [OptiFine] *** Reloading textures ***
[17:33:46] [Render thread/INFO]: [OptiFine] Resource packs: PureBDcraft 128x MC119.zip
[17:33:46] [Render thread/INFO]: [OptiFine] Loading optifine/color.properties
[17:33:46] [Render thread/INFO]: [OptiFine] screen.loading = 1e1e1e
[17:33:46] [Render thread/INFO]: [OptiFine] screen.loading.bar = ffffff
[17:33:46] [Render thread/INFO]: [OptiFine] screen.loading.progress = b4c8ff
[17:33:46] [Worker-Main-10/INFO]: [OptiFine] Multitexture: false
[17:33:46] [Worker-Main-4/INFO]: [OptiFine] Multitexture: false
[17:33:46] [Worker-Main-5/INFO]: [OptiFine] Multitexture: false
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/elytra/broken_elytra.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/aqua_affinity.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/bane_of_arthropods.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/binding_curse.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/blast_protection.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/channeling.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/chopping.properties
[17:33:47] [Worker-Main-6/WARN]: [OptiFine] Invalid value: chopping
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/depth_strider.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/efficiency.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/feather_falling.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_aspect.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fire_protection.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/flame.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/fortune.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/frost_walker.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/impaling.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/infinity.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/knockback.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/looting.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/loyalty.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/luck_of_the_sea.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/lure.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/mending.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/multishot.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/piercing.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/power.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/projectile_protection.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/protection.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/punch.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/quick_charge.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/respiration.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/riptide.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sharpness.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/silk_touch.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/smite.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/soul_speed.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/sweeping.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/thorns.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/unbreaking.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] CustomItems: optifine/cit/enchants/vanishing_curse.properties
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] Multipass connected textures: false
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] Multipass connected textures: false
[17:33:47] [Worker-Main-6/INFO]: [OptiFine] BetterGrass: Parsing configuration optifine/bettergrass.properties
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 7
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:item/light, 16 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind, 64 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/redstone_dust_overlay, 16 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/lightning_rod_on, 16 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:entity/conduit/wind_vertical, 64 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/conduit, 16 -> 128
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:block/water_overlay, 32 -> 128
[17:33:48] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [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]
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:48] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:48] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:48] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:48] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:48] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:49] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Multitexture: false
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Sprite size: 512
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Mipmap levels: 9
[17:33:49] [Worker-Main-6/INFO]: [OptiFine] Scaled too small texture: minecraft:optifine/ctm/default/empty, 16 -> 512
[17:33:49] [Worker-Main-6/WARN]: Unused frames in sprite minecraft:missingno: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674, 675, 676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687, 688, 689, 690, 691, 692, 693, 694, 695, 696, 697, 698, 699, 700, 701, 702, 703, 704, 705, 706, 707, 708, 709, 710, 711, 712, 713, 714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740, 741, 742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765, 766, 767, 768, 769, 770, 771, 772, 773, 774, 775, 776, 777, 778, 779, 780, 781, 782, 783, 784, 785, 786, 787, 788, 789, 790, 791, 792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804, 805, 806, 807, 808, 809, 810, 811, 812, 813, 814, 815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836, 837, 838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860, 861, 862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872, 873, 874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884, 885, 886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896, 897, 898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908, 909, 910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920, 921, 922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932, 933, 934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944, 945, 946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980, 981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991, 992, 993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, 1023]
[17:33:49] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play
[17:33:49] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break
[17:33:49] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on Speakers (ASUS Xonar DGX Audio Device)
[17:33:49] [Render thread/INFO]: Sound engine started
[17:33:49] [Render thread/INFO]: Created: 8192x4096x4 minecraft:textures/atlas/blocks.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 53
[17:33:49] [Render thread/INFO]: Created: 2048x1024x4 minecraft:textures/atlas/signs.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:49] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/banner_patterns.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:49] [Render thread/INFO]: Created: 4096x4096x4 minecraft:textures/atlas/shield_patterns.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:49] [Render thread/INFO]: Created: 2048x2048x4 minecraft:textures/atlas/chest.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:49] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/beds.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:49] [Render thread/INFO]: Created: 4096x2048x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[17:33:49] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:50] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program.
[17:33:50] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/particles.png-atlas
[17:33:50] [Render thread/INFO]: [OptiFine] Animated sprites: 1
[17:33:50] [Render thread/INFO]: Created: 2048x2048x0 minecraft:textures/atlas/paintings.png-atlas
[17:33:50] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:50] [Render thread/INFO]: Created: 512x512x0 minecraft:textures/atlas/mob_effects.png-atlas
[17:33:50] [Render thread/INFO]: [OptiFine] Animated sprites: 0
[17:33:50] [Render thread/INFO]: [OptiFine] *** Reloading custom textures ***
[17:33:50] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/campfire_fire
[17:33:50] [Render thread/WARN]: [OptiFine] Sprite not found: minecraft:block/soul_campfire_fire
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampgrass.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/swampfoliage.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sky0.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/fog0.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/underwater.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Loading optifine/color.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: drop.water = 93b9f1
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: fog.end = 150018
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: sky.end = 000000
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/stone.png = andesite polished_andesite andesite_wall andesite_stairs polished_andesite_stairs andesite_slab polished_andesite_slab diorite polished_diorite diorite_wall diorite_stairs polished_diorite_stairs diorite_slab polished_diorite_slab granite polished_granite granite_wall granite_stairs polished_granite_stairs granite_slab polished_granite_slab stone stone_stairs stone_slab stone_button stone_pressure_plate infested_stone smooth_stone smooth_stone_slab cobblestone cobblestone_wall cobblestone_stairs cobblestone_slab infested_cobblestone mossy_cobblestone mossy_cobblestone_wall mossy_cobblestone_stairs mossy_cobblestone_slab stone_bricks stone_brick_wall stone_brick_stairs stone_brick_slab infested_stone_bricks cracked_stone_bricks infested_cracked_stone_bricks chiseled_stone_bricks infested_chiseled_stone_bricks mossy_stone_bricks mossy_stone_brick_wall mossy_stone_brick_stairs mossy_stone_brick_slab infested_mossy_stone_bricks sandstone sandstone_wall sandstone_slab sandstone_stairs smooth_sandstone smooth_sandstone_slab smooth_sandstone_stairs chiseled_sandstone cut_sandstone cut_sandstone_slab red_sandstone red_sandstone_wall red_sandstone_slab red_sandstone_stairs smooth_red_sandstone smooth_red_sandstone_slab smooth_red_sandstone_stairs chiseled_red_sandstone cut_red_sandstone cut_red_sandstone_slab gravel clay coal_ore copper_ore diamond_ore emerald_ore gold_ore iron_ore lapis_ore redstone_ore dispenser dropper furnace observer piston sticky_piston comparator repeater lever
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/stone.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Block palette: palette.block.~/colormap/sand.png = sand red_sand
[17:33:50] [Render thread/INFO]: [OptiFine] CustomColors: Colormap optifine/colormap/sand.png
[17:33:50] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky1.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomSky properties: optifine/sky/world0/sky2.properties
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/steve.png, variants: 10
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/dolphin.png, properties: optifine/mob/dolphin.properties
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/creeper/creeper.png, properties: optifine/mob/creeper/creeper.properties
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MountainEdge
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedGravellyMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: JungleHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungle
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedJungleEdge
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BadlandsPlateau
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertLakes
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ShatteredSavannaPlateau
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedWoodedBadlandsPlateau
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: ModifiedBadlandsPlateau
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: MushroomFieldShore
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cat/cat_collar.png, properties: optifine/mob/cat/cat_collar.properties
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/cow/cow.png, variants: 3
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/iron_golem/iron_golem.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/skeleton/skeleton.png, variants: 4
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/enderman/enderman_eyes.png, variants: 3
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/slime/magmacube.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/silverfish.png, variants: 3
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/squid/squid.png, variants: 6
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/spider/spider.png, variants: 3
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_angry.png, properties: optifine/mob/wolf/wolf.properties
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf.png, properties: optifine/mob/wolf/wolf.properties
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_tame.png, properties: optifine/mob/wolf/wolf.properties
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaiga
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTundra
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/wolf/wolf_collar.png, properties: optifine/mob/wolf/wolf_collar.properties
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/pig/pig.png, variants: 3
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/illager/evoker.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/zombie.png, properties: optifine/mob/zombie/zombie.properties
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DesertHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: WoodedHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: BirchForestHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TallBirchHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DarkForestHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantTreeTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: TaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: GiantSpruceTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaHills
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SnowyTaigaMountains
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: DeepWarmOcean
[17:33:50] [Render thread/WARN]: [OptiFine] RandomEntities: Biome not found: SwampHills
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/husk.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/zombie/drowned.png, properties: optifine/mob/zombie/drowned.properties
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast_shooting.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] RandomEntities: textures/entity/ghast/ghast.png, variants: 2
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/cave_spider.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/chicken.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/evocation_illager.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/iron_golem.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/skeleton.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/spider.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vex.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/vindication_illager.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/zombie.jem
[17:33:50] [Render thread/INFO]: [OptiFine] CustomEntityModel: optifine/cem/shulker_box.jem
[17:33:50] [Render thread/INFO]: [OptiFine] Texture pack clouds: fast
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/ender_chest.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_black.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_blue.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_brown.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_cyan.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_gray.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_green.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_blue.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_light_gray.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_lime.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_magenta.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_orange.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_pink.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_purple.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_red.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_white.properties
[17:33:50] [Render thread/INFO]: [OptiFine] CustomGuis: optifine/gui/container/shulker_box/shulker_box_yellow.properties
[17:33:50] [Render thread/INFO]: [OptiFine] Disable Forge light pipeline
[17:33:53] [Render thread/INFO]: Stopping!


Highlighting for 'Other' types handled by Highlight.JS, which was released under the BSD 3-Clause License.