-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhs_err_pid10504.log
3635 lines (3575 loc) · 375 KB
/
hs_err_pid10504.log
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
#
# There is insufficient memory for the Java Runtime Environment to continue.
# Native memory allocation (malloc) failed to allocate 497056 bytes for Chunk::new
# Possible reasons:
# The system is out of physical RAM or swap space
# The process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
# Possible solutions:
# Reduce memory load on the system
# Increase physical memory or swap space
# Check if swap backing store is full
# Decrease Java heap size (-Xmx/-Xms)
# Decrease number of Java threads
# Decrease Java thread stack sizes (-Xss)
# Set larger code cache with -XX:ReservedCodeCacheSize=
# JVM is running with Zero Based Compressed Oops mode in which the Java heap is
# placed in the first 32GB address space. The Java Heap base address is the
# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
# to set the Java Heap base and to place the Java Heap above 32GB virtual address.
# This output file may be truncated or incomplete.
#
# Out of Memory Error (arena.cpp:189), pid=10504, tid=1216
#
# JRE version: OpenJDK Runtime Environment (17.0.7) (build 17.0.7+0-b2043.56-10550314)
# Java VM: OpenJDK 64-Bit Server VM (17.0.7+0-b2043.56-10550314, mixed mode, tiered, compressed oops, compressed class ptrs, parallel gc, windows-amd64)
# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
#
--------------- S U M M A R Y ------------
Command Line: -XX:+UseParallelGC --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED -Xmx6g -Dfile.encoding=UTF-8 -Duser.country=RU -Duser.language=ru -Duser.variant -javaagent:C:\Users\mrTwister\.gradle\wrapper\dists\gradle-8.2-bin\bbg7u40eoinfdyxsxr3z4i7ta\gradle-8.2\lib\agents\gradle-instrumentation-agent-8.2.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.2
Host: Intel(R) Core(TM) i3-4160 CPU @ 3.60GHz, 4 cores, 11G, Windows 10 , 64 bit Build 19041 (10.0.19041.3636)
Time: Thu Jan 11 15:54:45 2024 RTZ 2 (s 10 , 64 bit Build 19041 (10.0.19041.3636) elapsed time: 837.622375 seconds (0d 0h 13m 57s)
--------------- T H R E A D ---------------
Current thread (0x000002446da91b50): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=1216, stack(0x000000860f700000,0x000000860f800000)]
Current CompileTask:
C2: 837658 52964 4 com.android.tools.r8.internal.dO::a (524 bytes)
Stack: [0x000000860f700000,0x000000860f800000]
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [jvm.dll+0x683bfa]
V [jvm.dll+0x8430a4]
V [jvm.dll+0x8449be]
V [jvm.dll+0x845023]
V [jvm.dll+0x24ad2f]
V [jvm.dll+0xac25c]
V [jvm.dll+0xac82c]
V [jvm.dll+0x2b218f]
V [jvm.dll+0x58c2f7]
V [jvm.dll+0x225a12]
V [jvm.dll+0x225def]
V [jvm.dll+0x21f0b5]
V [jvm.dll+0x21c56b]
V [jvm.dll+0x1a605d]
V [jvm.dll+0x22c148]
V [jvm.dll+0x22a209]
V [jvm.dll+0x7f858c]
V [jvm.dll+0x7f2aea]
V [jvm.dll+0x682a35]
C [ucrtbase.dll+0x21bb2]
C [KERNEL32.DLL+0x17344]
C [ntdll.dll+0x526b1]
--------------- P R O C E S S ---------------
Threads class SMR info:
_java_thread_list=0x000002441e625180, length=103, elements={
0x000002446def0dd0, 0x000002446da4a620, 0x000002446da4cc90, 0x000002446da35d80,
0x000002446da36b00, 0x000002446da6e060, 0x000002446da8e000, 0x000002446da91b50,
0x000002446da94810, 0x000002446da974d0, 0x00000244133bb8f0, 0x00000244135dd9d0,
0x0000024415759950, 0x00000244147c2080, 0x00000244147b2f20, 0x000002441585fc90,
0x0000024415860160, 0x00000244151dd690, 0x0000024415819020, 0x00000244151965a0,
0x00000244154cc230, 0x00000244154cb3c0, 0x00000244154cda40, 0x00000244154cb890,
0x00000244154ccbd0, 0x00000244154cbd60, 0x00000244154cd570, 0x00000244154ca080,
0x00000244154cd0a0, 0x00000244154ca550, 0x00000244154caa20, 0x0000024415a0f230,
0x0000024415a12bf0, 0x0000024415a0fbd0, 0x0000024415a12720, 0x0000024415a12250,
0x0000024415a113e0, 0x0000024415a0def0, 0x0000024415a13a60, 0x0000024415a10570,
0x0000024415a0ed60, 0x0000024415a0e3c0, 0x0000024415a14400, 0x0000024415a0d550,
0x000002441817d810, 0x000002441817dce0, 0x000002441817b660, 0x000002441817e1b0,
0x0000024418178fe0, 0x0000024418179980, 0x000002441817e680, 0x000002441817ce70,
0x0000024418180830, 0x0000024418179e50, 0x0000024418180360, 0x0000024415a0f700,
0x0000024415a10a40, 0x000002441817b190, 0x00000244154caef0, 0x00000244189efa20,
0x00000244189f1bd0, 0x00000244189f6400, 0x00000244189efef0, 0x00000244189f33e0,
0x00000244189f0890, 0x00000244189f20a0, 0x00000244189f2570, 0x00000244189ef080,
0x00000244189f1230, 0x00000244189f4250, 0x00000244189f03c0, 0x00000244189f4720,
0x00000244189ef550, 0x00000244189f1700, 0x00000244189f2f10, 0x00000244189f38b0,
0x00000244189f5a60, 0x00000244190dbde0, 0x00000244190dd5f0, 0x00000244190da100,
0x00000244190db440, 0x00000244190dc780, 0x00000244190dcc50, 0x00000244190dd120,
0x000002441817f020, 0x00000244189f5f30, 0x00000244177d0b10, 0x00000244177ccc80,
0x00000244177d0170, 0x00000244177cafa0, 0x00000244177d0640, 0x00000244177caad0,
0x00000244177cd620, 0x00000244177cdfc0, 0x00000244177ce960, 0x00000244177ca130,
0x00000244177ca600, 0x000002441ec0bad0, 0x0000024418d8bd60, 0x000002441f07b750,
0x0000024418b514e0, 0x000002441e76b890, 0x000002441e76aef0
}
Java Threads: ( => current thread )
0x000002446def0dd0 JavaThread "main" [_thread_blocked, id=10996, stack(0x000000860ee00000,0x000000860ef00000)]
0x000002446da4a620 JavaThread "Reference Handler" daemon [_thread_blocked, id=5452, stack(0x000000860f100000,0x000000860f200000)]
0x000002446da4cc90 JavaThread "Finalizer" daemon [_thread_blocked, id=11344, stack(0x000000860f200000,0x000000860f300000)]
0x000002446da35d80 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10732, stack(0x000000860f300000,0x000000860f400000)]
0x000002446da36b00 JavaThread "Attach Listener" daemon [_thread_blocked, id=8792, stack(0x000000860f400000,0x000000860f500000)]
0x000002446da6e060 JavaThread "Service Thread" daemon [_thread_blocked, id=8128, stack(0x000000860f500000,0x000000860f600000)]
0x000002446da8e000 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=1224, stack(0x000000860f600000,0x000000860f700000)]
=>0x000002446da91b50 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=1216, stack(0x000000860f700000,0x000000860f800000)]
0x000002446da94810 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=11296, stack(0x000000860f800000,0x000000860f900000)]
0x000002446da974d0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=6416, stack(0x000000860f900000,0x000000860fa00000)]
0x00000244133bb8f0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=2476, stack(0x000000860fa00000,0x000000860fb00000)]
0x00000244135dd9d0 JavaThread "Notification Thread" daemon [_thread_blocked, id=2260, stack(0x000000860fb00000,0x000000860fc00000)]
0x0000024415759950 JavaThread "Daemon health stats" [_thread_blocked, id=9716, stack(0x0000008610100000,0x0000008610200000)]
0x00000244147c2080 JavaThread "Incoming local TCP Connector on port 60625" [_thread_in_native, id=3704, stack(0x0000008610200000,0x0000008610300000)]
0x00000244147b2f20 JavaThread "Daemon periodic checks" [_thread_blocked, id=11820, stack(0x0000008610300000,0x0000008610400000)]
0x000002441585fc90 JavaThread "Daemon" [_thread_blocked, id=9092, stack(0x0000008610400000,0x0000008610500000)]
0x0000024415860160 JavaThread "Handler for socket connection from /127.0.0.1:60625 to /127.0.0.1:60626" [_thread_in_native, id=9240, stack(0x0000008610500000,0x0000008610600000)]
0x00000244151dd690 JavaThread "Cancel handler" [_thread_blocked, id=7992, stack(0x0000008610600000,0x0000008610700000)]
0x0000024415819020 JavaThread "Daemon worker" [_thread_blocked, id=11532, stack(0x0000008610700000,0x0000008610800000)]
0x00000244151965a0 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:60625 to /127.0.0.1:60626" [_thread_blocked, id=11496, stack(0x0000008610800000,0x0000008610900000)]
0x00000244154cc230 JavaThread "Daemon client event forwarder" [_thread_blocked, id=8044, stack(0x0000008610a00000,0x0000008610b00000)]
0x00000244154cb3c0 JavaThread "Cache worker for journal cache (C:\Users\mrTwister\.gradle\caches\journal-1)" [_thread_blocked, id=1204, stack(0x0000008610b00000,0x0000008610c00000)]
0x00000244154cda40 JavaThread "File lock request listener" [_thread_in_native, id=8376, stack(0x0000008610c00000,0x0000008610d00000)]
0x00000244154cb890 JavaThread "Cache worker for file hash cache (C:\Users\mrTwister\.gradle\caches\8.2\fileHashes)" [_thread_blocked, id=10476, stack(0x0000008610d00000,0x0000008610e00000)]
0x00000244154ccbd0 JavaThread "File watcher server" daemon [_thread_in_native, id=12216, stack(0x0000008610e00000,0x0000008610f00000)]
0x00000244154cbd60 JavaThread "File watcher consumer" daemon [_thread_blocked, id=11784, stack(0x0000008610f00000,0x0000008611000000)]
0x00000244154cd570 JavaThread "Cache worker for checksums cache (E:\ANDROIDprj\YESMusicPlayer\.gradle\8.2\checksums)" [_thread_blocked, id=11412, stack(0x0000008611000000,0x0000008611100000)]
0x00000244154ca080 JavaThread "Cache worker for cache directory md-rule (C:\Users\mrTwister\.gradle\caches\8.2\md-rule)" [_thread_blocked, id=3288, stack(0x0000008611100000,0x0000008611200000)]
0x00000244154cd0a0 JavaThread "Cache worker for file content cache (C:\Users\mrTwister\.gradle\caches\8.2\fileContent)" [_thread_blocked, id=9888, stack(0x0000008611200000,0x0000008611300000)]
0x00000244154ca550 JavaThread "Cache worker for file hash cache (E:\ANDROIDprj\YESMusicPlayer\.gradle\8.2\fileHashes)" [_thread_blocked, id=8164, stack(0x0000008611300000,0x0000008611400000)]
0x00000244154caa20 JavaThread "Cache worker for cache directory md-supplier (C:\Users\mrTwister\.gradle\caches\8.2\md-supplier)" [_thread_blocked, id=8672, stack(0x0000008611400000,0x0000008611500000)]
0x0000024415a0f230 JavaThread "Cache worker for execution history cache (C:\Users\mrTwister\.gradle\caches\8.2\executionHistory)" [_thread_blocked, id=8668, stack(0x0000008611500000,0x0000008611600000)]
0x0000024415a12bf0 JavaThread "jar transforms" [_thread_blocked, id=12240, stack(0x0000008611600000,0x0000008611700000)]
0x0000024415a0fbd0 JavaThread "jar transforms Thread 2" [_thread_blocked, id=11544, stack(0x0000008611700000,0x0000008611800000)]
0x0000024415a12720 JavaThread "jar transforms Thread 3" [_thread_blocked, id=3592, stack(0x0000008611800000,0x0000008611900000)]
0x0000024415a12250 JavaThread "jar transforms Thread 4" [_thread_blocked, id=8688, stack(0x0000008611900000,0x0000008611a00000)]
0x0000024415a113e0 JavaThread "Cache worker for dependencies-accessors (E:\ANDROIDprj\YESMusicPlayer\.gradle\8.2\dependencies-accessors)" [_thread_blocked, id=6372, stack(0x0000008611a00000,0x0000008611b00000)]
0x0000024415a0def0 JavaThread "Cache worker for Build Output Cleanup Cache (E:\ANDROIDprj\YESMusicPlayer\.gradle\buildOutputCleanup)" [_thread_blocked, id=4160, stack(0x0000008610000000,0x0000008610100000)]
0x0000024415a13a60 JavaThread "Unconstrained build operations" [_thread_blocked, id=9516, stack(0x0000008611c00000,0x0000008611d00000)]
0x0000024415a10570 JavaThread "Unconstrained build operations Thread 2" [_thread_blocked, id=6720, stack(0x0000008611d00000,0x0000008611e00000)]
0x0000024415a0ed60 JavaThread "Unconstrained build operations Thread 3" [_thread_blocked, id=10048, stack(0x0000008611e00000,0x0000008611f00000)]
0x0000024415a0e3c0 JavaThread "build event listener" [_thread_blocked, id=11488, stack(0x0000008611b00000,0x0000008611c00000)]
0x0000024415a14400 JavaThread "Memory manager" [_thread_blocked, id=10084, stack(0x0000008612000000,0x0000008612100000)]
0x0000024415a0d550 JavaThread "build event listener" [_thread_blocked, id=10384, stack(0x0000008612100000,0x0000008612200000)]
0x000002441817d810 JavaThread "included builds" [_thread_blocked, id=7456, stack(0x0000008612400000,0x0000008612500000)]
0x000002441817dce0 JavaThread "Execution worker" [_thread_blocked, id=32, stack(0x0000008612500000,0x0000008612600000)]
0x000002441817b660 JavaThread "Execution worker Thread 2" [_thread_blocked, id=11272, stack(0x0000008612600000,0x0000008612700000)]
0x000002441817e1b0 JavaThread "Execution worker Thread 3" [_thread_in_Java, id=9400, stack(0x0000008612700000,0x0000008612800000)]
0x0000024418178fe0 JavaThread "Unconstrained build operations Thread 4" [_thread_blocked, id=11304, stack(0x0000008612800000,0x0000008612900000)]
0x0000024418179980 JavaThread "Unconstrained build operations Thread 5" [_thread_blocked, id=1396, stack(0x0000008612900000,0x0000008612a00000)]
0x000002441817e680 JavaThread "Unconstrained build operations Thread 6" [_thread_blocked, id=10304, stack(0x0000008612a00000,0x0000008612b00000)]
0x000002441817ce70 JavaThread "Unconstrained build operations Thread 7" [_thread_blocked, id=11076, stack(0x0000008612b00000,0x0000008612c00000)]
0x0000024418180830 JavaThread "Unconstrained build operations Thread 8" [_thread_blocked, id=4664, stack(0x0000008612c00000,0x0000008612d00000)]
0x0000024418179e50 JavaThread "Unconstrained build operations Thread 9" [_thread_blocked, id=4488, stack(0x0000008612d00000,0x0000008612e00000)]
0x0000024418180360 JavaThread "Cache worker for execution history cache (E:\ANDROIDprj\YESMusicPlayer\.gradle\8.2\executionHistory)" [_thread_blocked, id=5096, stack(0x0000008612e00000,0x0000008612f00000)]
0x0000024415a0f700 JavaThread "Unconstrained build operations Thread 10" [_thread_blocked, id=9088, stack(0x000000860ec00000,0x000000860ed00000)]
0x0000024415a10a40 JavaThread "Unconstrained build operations Thread 11" [_thread_blocked, id=5236, stack(0x000000860ed00000,0x000000860ee00000)]
0x000002441817b190 JavaThread "Unconstrained build operations Thread 12" [_thread_blocked, id=5620, stack(0x0000008610900000,0x0000008610a00000)]
0x00000244154caef0 JavaThread "Unconstrained build operations Thread 13" [_thread_blocked, id=11848, stack(0x000000860eb00000,0x000000860ec00000)]
0x00000244189efa20 JavaThread "Unconstrained build operations Thread 14" [_thread_blocked, id=11228, stack(0x0000008612300000,0x0000008612400000)]
0x00000244189f1bd0 JavaThread "Unconstrained build operations Thread 15" [_thread_blocked, id=7772, stack(0x0000008612f00000,0x0000008613000000)]
0x00000244189f6400 JavaThread "Unconstrained build operations Thread 16" [_thread_blocked, id=6572, stack(0x0000008613200000,0x0000008613300000)]
0x00000244189efef0 JavaThread "Unconstrained build operations Thread 17" [_thread_blocked, id=10348, stack(0x0000008613500000,0x0000008613600000)]
0x00000244189f33e0 JavaThread "Unconstrained build operations Thread 18" [_thread_blocked, id=11512, stack(0x0000008613600000,0x0000008613700000)]
0x00000244189f0890 JavaThread "Unconstrained build operations Thread 19" [_thread_blocked, id=11508, stack(0x0000008613700000,0x0000008613800000)]
0x00000244189f20a0 JavaThread "WorkerExecutor Queue Thread 3" [_thread_blocked, id=11548, stack(0x0000008613400000,0x0000008613500000)]
0x00000244189f2570 JavaThread "Unconstrained build operations Thread 20" [_thread_blocked, id=7488, stack(0x0000008613800000,0x0000008613900000)]
0x00000244189ef080 JavaThread "Unconstrained build operations Thread 21" [_thread_blocked, id=12280, stack(0x0000008613b00000,0x0000008613c00000)]
0x00000244189f1230 JavaThread "Unconstrained build operations Thread 22" [_thread_blocked, id=9488, stack(0x0000008613c00000,0x0000008613d00000)]
0x00000244189f4250 JavaThread "Unconstrained build operations Thread 23" [_thread_blocked, id=9844, stack(0x0000008613d00000,0x0000008613e00000)]
0x00000244189f03c0 JavaThread "Unconstrained build operations Thread 24" [_thread_blocked, id=10128, stack(0x0000008613a00000,0x0000008613b00000)]
0x00000244189f4720 JavaThread "Unconstrained build operations Thread 25" [_thread_blocked, id=6284, stack(0x0000008613e00000,0x0000008613f00000)]
0x00000244189ef550 JavaThread "Unconstrained build operations Thread 26" [_thread_blocked, id=11180, stack(0x0000008613f00000,0x0000008614000000)]
0x00000244189f1700 JavaThread "Unconstrained build operations Thread 27" [_thread_blocked, id=4032, stack(0x0000008614100000,0x0000008614200000)]
0x00000244189f2f10 JavaThread "Unconstrained build operations Thread 28" [_thread_blocked, id=9080, stack(0x0000008614200000,0x0000008614300000)]
0x00000244189f38b0 JavaThread "Unconstrained build operations Thread 29" [_thread_blocked, id=11524, stack(0x0000008614300000,0x0000008614400000)]
0x00000244189f5a60 JavaThread "Unconstrained build operations Thread 30" [_thread_blocked, id=11276, stack(0x0000008614400000,0x0000008614500000)]
0x00000244190dbde0 JavaThread "Java2D Disposer" daemon [_thread_blocked, id=3596, stack(0x0000008614000000,0x0000008614100000)]
0x00000244190dd5f0 JavaThread "AWT-Windows" daemon [_thread_in_native, id=8544, stack(0x0000008614a00000,0x0000008614b00000)]
0x00000244190da100 JavaThread "Unconstrained build operations Thread 31" [_thread_blocked, id=11584, stack(0x0000008614800000,0x0000008614900000)]
0x00000244190db440 JavaThread "Unconstrained build operations Thread 32" [_thread_blocked, id=9680, stack(0x0000008614900000,0x0000008614a00000)]
0x00000244190dc780 JavaThread "Unconstrained build operations Thread 33" [_thread_blocked, id=8644, stack(0x0000008614b00000,0x0000008614c00000)]
0x00000244190dcc50 JavaThread "Unconstrained build operations Thread 34" [_thread_blocked, id=3652, stack(0x0000008614c00000,0x0000008614d00000)]
0x00000244190dd120 JavaThread "Unconstrained build operations Thread 35" [_thread_blocked, id=8640, stack(0x0000008614d00000,0x0000008614e00000)]
0x000002441817f020 JavaThread "Unconstrained build operations Thread 36" [_thread_blocked, id=8000, stack(0x0000008614e00000,0x0000008614f00000)]
0x00000244189f5f30 JavaThread "Unconstrained build operations Thread 37" [_thread_blocked, id=10388, stack(0x0000008614f00000,0x0000008615000000)]
0x00000244177d0b10 JavaThread "Unconstrained build operations Thread 38" [_thread_blocked, id=5588, stack(0x0000008615000000,0x0000008615100000)]
0x00000244177ccc80 JavaThread "Unconstrained build operations Thread 39" [_thread_blocked, id=11772, stack(0x0000008615100000,0x0000008615200000)]
0x00000244177d0170 JavaThread "Unconstrained build operations Thread 40" [_thread_blocked, id=2188, stack(0x0000008615200000,0x0000008615300000)]
0x00000244177cafa0 JavaThread "RMI Scheduler(0)" daemon [_thread_blocked, id=5436, stack(0x0000008615300000,0x0000008615400000)]
0x00000244177d0640 JavaThread "RMI GC Daemon" daemon [_thread_blocked, id=10932, stack(0x0000008615500000,0x0000008615600000)]
0x00000244177caad0 JavaThread "RMI TCP Accept-0" daemon [_thread_in_native, id=11792, stack(0x0000008615600000,0x0000008615700000)]
0x00000244177cd620 JavaThread "RMI Reaper" [_thread_blocked, id=6356, stack(0x0000008615700000,0x0000008615800000)]
0x00000244177cdfc0 JavaThread "Cache worker for Java compile cache (C:\Users\mrTwister\.gradle\caches\8.2\javaCompile)" [_thread_blocked, id=1276, stack(0x0000008615900000,0x0000008615a00000)]
0x00000244177ce960 JavaThread "Build operations" [_thread_blocked, id=3896, stack(0x0000008613000000,0x0000008613100000)]
0x00000244177ca130 JavaThread "Build operations Thread 2" [_thread_blocked, id=10208, stack(0x0000008615a00000,0x0000008615b00000)]
0x00000244177ca600 JavaThread "Build operations Thread 3" [_thread_blocked, id=9816, stack(0x0000008615b00000,0x0000008615c00000)]
0x000002441ec0bad0 JavaThread "WorkerExecutor Queue Thread 6" [_thread_blocked, id=6120, stack(0x0000008611f00000,0x0000008612000000)]
0x0000024418d8bd60 JavaThread "WorkerExecutor Queue Thread 7" [_thread_blocked, id=13136, stack(0x0000008613100000,0x0000008613200000)]
0x000002441f07b750 JavaThread "Build operations Thread 4" [_thread_blocked, id=12480, stack(0x0000008612200000,0x0000008612300000)]
0x0000024418b514e0 JavaThread "WorkerExecutor Queue Thread 11" [_thread_blocked, id=8240, stack(0x0000008615d00000,0x0000008615e00000)]
0x000002441e76b890 JavaThread "RMI TCP Connection(idle)" daemon [_thread_blocked, id=12728, stack(0x0000008614500000,0x0000008614600000)]
0x000002441e76aef0 JavaThread "RMI TCP Connection(36)-127.0.0.1" daemon [_thread_in_native, id=9264, stack(0x0000008613900000,0x0000008613a00000)]
Other Threads:
0x000002446dfbeb70 VMThread "VM Thread" [stack: 0x000000860f000000,0x000000860f100000] [id=8964]
0x00000244135ddea0 WatcherThread [stack: 0x000000860fc00000,0x000000860fd00000] [id=7580]
0x000002446df08770 GCTaskThread "GC Thread#0" [stack: 0x000000860ef00000,0x000000860f000000] [id=10032]
0x0000024413728e10 GCTaskThread "GC Thread#1" [stack: 0x000000860fd00000,0x000000860fe00000] [id=7496]
0x0000024414134d00 GCTaskThread "GC Thread#2" [stack: 0x000000860fe00000,0x000000860ff00000] [id=8008]
0x00000244141b8d80 GCTaskThread "GC Thread#3" [stack: 0x000000860ff00000,0x0000008610000000] [id=11356]
Threads with active compile tasks:
C2 CompilerThread0 839351 52964 4 com.android.tools.r8.internal.dO::a (524 bytes)
VM state: not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap address: 0x0000000680000000, size: 6144 MB, Compressed Oops mode: Zero based, Oop shift amount: 3
CDS archive(s) not mapped
Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824
Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000
GC Precious Log:
CPUs: 4 total, 4 available
Memory: 12213M
Large Page Support: Disabled
NUMA Support: Disabled
Compressed Oops: Enabled (Zero based)
Alignments: Space 512K, Generation 512K, Heap 2M
Heap Min Capacity: 8M
Heap Initial Capacity: 192M
Heap Max Capacity: 6G
Pre-touch: Disabled
Parallel Workers: 4
Heap:
PSYoungGen total 1881600K, used 925025K [0x0000000780000000, 0x0000000800000000, 0x0000000800000000)
eden space 1677312K, 54% used [0x0000000780000000,0x00000007b802f120,0x00000007e6600000)
from space 204288K, 3% used [0x00000007e6600000,0x00000007e6d29670,0x00000007f2d80000)
to space 206336K, 0% used [0x00000007f3680000,0x00000007f3680000,0x0000000800000000)
ParOldGen total 435712K, used 324597K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693cfd7e8,0x000000069a980000)
Metaspace used 251733K, committed 253568K, reserved 1310720K
class space used 32209K, committed 33088K, reserved 1048576K
Card table byte_map: [0x00000244713d0000,0x0000024471fe0000] _byte_map_base: 0x000002446dfd0000
Marking Bits: (ParMarkBitMap*) 0x00007ff873b5b720
Begin Bits: [0x00000244727e0000, 0x00000244787e0000)
End Bits: [0x00000244787e0000, 0x000002447e7e0000)
Polling page: 0x000002446be20000
Metaspace:
Usage:
Non-class: 214.38 MB used.
Class: 31.45 MB used.
Both: 245.83 MB used.
Virtual space:
Non-class space: 256.00 MB reserved, 215.31 MB ( 84%) committed, 4 nodes.
Class space: 1.00 GB reserved, 32.31 MB ( 3%) committed, 1 nodes.
Both: 1.25 GB reserved, 247.62 MB ( 19%) committed.
Chunk freelists:
Non-Class: 8.16 MB
Class: 15.70 MB
Both: 23.86 MB
MaxMetaspaceSize: unlimited
CompressedClassSpaceSize: 1.00 GB
Initial GC threshold: 21.00 MB
Current GC threshold: 299.19 MB
CDS: off
MetaspaceReclaimPolicy: balanced
- commit_granule_bytes: 65536.
- commit_granule_words: 8192.
- virtual_space_node_default_size: 8388608.
- enlarge_chunks_in_place: 1.
- new_chunks_are_fully_committed: 0.
- uncommit_free_chunks: 1.
- use_allocation_guard: 0.
- handle_deallocations: 1.
Internal statistics:
num_allocs_failed_limit: 15.
num_arena_births: 3056.
num_arena_deaths: 104.
num_vsnodes_births: 5.
num_vsnodes_deaths: 0.
num_space_committed: 4245.
num_space_uncommitted: 285.
num_chunks_returned_to_freelist: 930.
num_chunks_taken_from_freelist: 14962.
num_chunk_merges: 343.
num_chunk_splits: 9628.
num_chunks_enlarged: 5826.
num_inconsistent_stats: 0.
CodeHeap 'non-profiled nmethods': size=120000Kb used=41688Kb max_used=41688Kb free=78311Kb
bounds [0x0000024407ad0000, 0x000002440a390000, 0x000002440f000000]
CodeHeap 'profiled nmethods': size=120000Kb used=70779Kb max_used=71755Kb free=49220Kb
bounds [0x0000024400000000, 0x0000024404720000, 0x0000024407530000]
CodeHeap 'non-nmethods': size=5760Kb used=2616Kb max_used=2730Kb free=3143Kb
bounds [0x0000024407530000, 0x00000244077e0000, 0x0000024407ad0000]
total_blobs=38182 nmethods=36983 adapters=1111
compilation: enabled
stopped_count=0, restarted_count=0
full_count=0
Compilation events (20 events):
Event: 833.029 Thread 0x000002446da94810 nmethod 52955 0x0000024404068f10 code [0x00000244040690c0, 0x00000244040692c8]
Event: 835.841 Thread 0x000002446da94810 52957 % 3 com.android.tools.r8.internal.Ia::a @ 3918 (4479 bytes)
Event: 835.880 Thread 0x000002446da94810 nmethod 52957% 0x000002440448ca10 code [0x000002440448e9c0, 0x00000244044a75a8]
Event: 835.939 Thread 0x000002446da94810 52958 % 3 com.android.tools.r8.internal.Ia::a @ 3263 (4479 bytes)
Event: 835.973 Thread 0x000002446da94810 nmethod 52958% 0x00000244046e0010 code [0x00000244046e1fc0, 0x00000244046faa48]
Event: 836.093 Thread 0x000002446da94810 52959 3 com.android.tools.r8.internal.Ia::a (4479 bytes)
Event: 836.094 Thread 0x000002446da91b50 52960 4 com.android.tools.r8.graph.y4$$Lambda$5350/0x0000000801da49e8::accept (16 bytes)
Event: 836.098 Thread 0x000002446da91b50 nmethod 52960 0x000002440a385210 code [0x000002440a3853c0, 0x000002440a3855e8]
Event: 836.119 Thread 0x000002446da91b50 52961 4 com.android.tools.r8.synthesis.H::a (7 bytes)
Event: 836.119 Thread 0x000002446da91b50 nmethod 52961 0x000002440a385890 code [0x000002440a385a00, 0x000002440a385a98]
Event: 836.119 Thread 0x000002446da91b50 52962 4 com.android.tools.r8.synthesis.H::a (7 bytes)
Event: 836.120 Thread 0x000002446da91b50 nmethod 52962 0x000002440a385b90 code [0x000002440a385d00, 0x000002440a385d98]
Event: 836.150 Thread 0x000002446da94810 nmethod 52959 0x00000244046b8190 code [0x00000244046ba120, 0x00000244046d2588]
Event: 836.959 Thread 0x000002446da94810 52963 3 com.android.tools.r8.graph.g::l (11 bytes)
Event: 836.959 Thread 0x000002446da94810 nmethod 52963 0x0000024403bd5b10 code [0x0000024403bd5ca0, 0x0000024403bd5e78]
Event: 837.082 Thread 0x000002446da91b50 52964 4 com.android.tools.r8.internal.dO::a (524 bytes)
Event: 837.084 Thread 0x000002446da94810 52966 3 com.android.tools.r8.graph.q2::a (349 bytes)
Event: 837.088 Thread 0x000002446da94810 nmethod 52966 0x000002440454a090 code [0x000002440454a660, 0x000002440454db58]
Event: 837.089 Thread 0x000002446da94810 52967 3 com.android.tools.r8.graph.Y2::b (56 bytes)
Event: 837.090 Thread 0x000002446da94810 nmethod 52967 0x000002440220a990 code [0x000002440220abc0, 0x000002440220b4f8]
GC Heap History (20 events):
Event: 730.465 GC heap before
{Heap before GC invocations=46 (full 7):
PSYoungGen total 1204224K, used 1202203K [0x0000000780000000, 0x00000007e2680000, 0x0000000800000000)
eden space 1032704K, 100% used [0x0000000780000000,0x00000007bf080000,0x00000007bf080000)
from space 171520K, 98% used [0x00000007bf080000,0x00000007c9606fb8,0x00000007c9800000)
to space 195584K, 0% used [0x00000007d6780000,0x00000007d6780000,0x00000007e2680000)
ParOldGen total 435712K, used 257583K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 59% used [0x0000000680000000,0x000000068fb8be98,0x000000069a980000)
Metaspace used 251094K, committed 252928K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 730.773 GC heap after
{Heap after GC invocations=46 (full 7):
PSYoungGen total 1399296K, used 163265K [0x0000000780000000, 0x00000007e6180000, 0x0000000800000000)
eden space 1203712K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007c9780000)
from space 195584K, 83% used [0x00000007d6780000,0x00000007e06f0578,0x00000007e2680000)
to space 212992K, 0% used [0x00000007c9780000,0x00000007c9780000,0x00000007d6780000)
ParOldGen total 435712K, used 257591K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 59% used [0x0000000680000000,0x000000068fb8de98,0x000000069a980000)
Metaspace used 251094K, committed 252928K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 736.894 GC heap before
{Heap before GC invocations=47 (full 7):
PSYoungGen total 1399296K, used 1366977K [0x0000000780000000, 0x00000007e6180000, 0x0000000800000000)
eden space 1203712K, 100% used [0x0000000780000000,0x00000007c9780000,0x00000007c9780000)
from space 195584K, 83% used [0x00000007d6780000,0x00000007e06f0578,0x00000007e2680000)
to space 212992K, 0% used [0x00000007c9780000,0x00000007c9780000,0x00000007d6780000)
ParOldGen total 435712K, used 257591K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 59% used [0x0000000680000000,0x000000068fb8de98,0x000000069a980000)
Metaspace used 251132K, committed 252992K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 739.473 GC heap after
{Heap after GC invocations=47 (full 7):
PSYoungGen total 1416704K, used 151003K [0x0000000780000000, 0x00000007fa400000, 0x0000000800000000)
eden space 1203712K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007c9780000)
from space 212992K, 70% used [0x00000007c9780000,0x00000007d2af6f00,0x00000007d6780000)
to space 221696K, 0% used [0x00000007ecb80000,0x00000007ecb80000,0x00000007fa400000)
ParOldGen total 435712K, used 268016K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 61% used [0x0000000680000000,0x00000006905bc168,0x000000069a980000)
Metaspace used 251132K, committed 252992K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 743.313 GC heap before
{Heap before GC invocations=48 (full 7):
PSYoungGen total 1416704K, used 1354715K [0x0000000780000000, 0x00000007fa400000, 0x0000000800000000)
eden space 1203712K, 100% used [0x0000000780000000,0x00000007c9780000,0x00000007c9780000)
from space 212992K, 70% used [0x00000007c9780000,0x00000007d2af6f00,0x00000007d6780000)
to space 221696K, 0% used [0x00000007ecb80000,0x00000007ecb80000,0x00000007fa400000)
ParOldGen total 435712K, used 268016K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 61% used [0x0000000680000000,0x00000006905bc168,0x000000069a980000)
Metaspace used 251163K, committed 252992K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 746.872 GC heap after
{Heap after GC invocations=48 (full 7):
PSYoungGen total 1700352K, used 160568K [0x0000000780000000, 0x00000007f8680000, 0x0000000800000000)
eden space 1508864K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007dc180000)
from space 191488K, 83% used [0x00000007ecb80000,0x00000007f684e2d0,0x00000007f8680000)
to space 231936K, 0% used [0x00000007dc180000,0x00000007dc180000,0x00000007ea400000)
ParOldGen total 435712K, used 280551K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 64% used [0x0000000680000000,0x00000006911f9d20,0x000000069a980000)
Metaspace used 251163K, committed 252992K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 756.442 GC heap before
{Heap before GC invocations=49 (full 7):
PSYoungGen total 1700352K, used 1669432K [0x0000000780000000, 0x00000007f8680000, 0x0000000800000000)
eden space 1508864K, 100% used [0x0000000780000000,0x00000007dc180000,0x00000007dc180000)
from space 191488K, 83% used [0x00000007ecb80000,0x00000007f684e2d0,0x00000007f8680000)
to space 231936K, 0% used [0x00000007dc180000,0x00000007dc180000,0x00000007ea400000)
ParOldGen total 435712K, used 280551K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 64% used [0x0000000680000000,0x00000006911f9d20,0x000000069a980000)
Metaspace used 251246K, committed 253120K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 768.778 GC heap after
{Heap after GC invocations=49 (full 7):
PSYoungGen total 1740800K, used 124409K [0x0000000780000000, 0x0000000800000000, 0x0000000800000000)
eden space 1508864K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007dc180000)
from space 231936K, 53% used [0x00000007dc180000,0x00000007e3afe5c8,0x00000007ea400000)
to space 225792K, 0% used [0x00000007f2380000,0x00000007f2380000,0x0000000800000000)
ParOldGen total 435712K, used 308887K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 70% used [0x0000000680000000,0x0000000692da5ee8,0x000000069a980000)
Metaspace used 251246K, committed 253120K, reserved 1310720K
class space used 32195K, committed 33088K, reserved 1048576K
}
Event: 776.658 GC heap before
{Heap before GC invocations=50 (full 7):
PSYoungGen total 1740800K, used 1633273K [0x0000000780000000, 0x0000000800000000, 0x0000000800000000)
eden space 1508864K, 100% used [0x0000000780000000,0x00000007dc180000,0x00000007dc180000)
from space 231936K, 53% used [0x00000007dc180000,0x00000007e3afe5c8,0x00000007ea400000)
to space 225792K, 0% used [0x00000007f2380000,0x00000007f2380000,0x0000000800000000)
ParOldGen total 435712K, used 308887K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 70% used [0x0000000680000000,0x0000000692da5ee8,0x000000069a980000)
Metaspace used 251348K, committed 253184K, reserved 1310720K
class space used 32203K, committed 33088K, reserved 1048576K
}
Event: 788.347 GC heap after
{Heap after GC invocations=50 (full 7):
PSYoungGen total 1857024K, used 46853K [0x0000000780000000, 0x00000007ff800000, 0x0000000800000000)
eden space 1639424K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e4100000)
from space 217600K, 21% used [0x00000007f2380000,0x00000007f51416d8,0x00000007ff800000)
to space 224768K, 0% used [0x00000007e4100000,0x00000007e4100000,0x00000007f1c80000)
ParOldGen total 435712K, used 316784K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 72% used [0x0000000680000000,0x000000069355c3f8,0x000000069a980000)
Metaspace used 251348K, committed 253184K, reserved 1310720K
class space used 32203K, committed 33088K, reserved 1048576K
}
Event: 804.782 GC heap before
{Heap before GC invocations=51 (full 7):
PSYoungGen total 1857024K, used 1686277K [0x0000000780000000, 0x00000007ff800000, 0x0000000800000000)
eden space 1639424K, 100% used [0x0000000780000000,0x00000007e4100000,0x00000007e4100000)
from space 217600K, 21% used [0x00000007f2380000,0x00000007f51416d8,0x00000007ff800000)
to space 224768K, 0% used [0x00000007e4100000,0x00000007e4100000,0x00000007f1c80000)
ParOldGen total 435712K, used 316784K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 72% used [0x0000000680000000,0x000000069355c3f8,0x000000069a980000)
Metaspace used 251404K, committed 253248K, reserved 1310720K
class space used 32205K, committed 33088K, reserved 1048576K
}
Event: 804.885 GC heap after
{Heap after GC invocations=51 (full 7):
PSYoungGen total 1864192K, used 58906K [0x0000000780000000, 0x00000007ffd00000, 0x0000000800000000)
eden space 1639424K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e4100000)
from space 224768K, 26% used [0x00000007e4100000,0x00000007e7a86980,0x00000007f1c80000)
to space 219648K, 0% used [0x00000007f2680000,0x00000007f2680000,0x00000007ffd00000)
ParOldGen total 435712K, used 319506K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 73% used [0x0000000680000000,0x0000000693804b90,0x000000069a980000)
Metaspace used 251404K, committed 253248K, reserved 1310720K
class space used 32205K, committed 33088K, reserved 1048576K
}
Event: 813.633 GC heap before
{Heap before GC invocations=52 (full 7):
PSYoungGen total 1864192K, used 1698330K [0x0000000780000000, 0x00000007ffd00000, 0x0000000800000000)
eden space 1639424K, 100% used [0x0000000780000000,0x00000007e4100000,0x00000007e4100000)
from space 224768K, 26% used [0x00000007e4100000,0x00000007e7a86980,0x00000007f1c80000)
to space 219648K, 0% used [0x00000007f2680000,0x00000007f2680000,0x00000007ffd00000)
ParOldGen total 435712K, used 319506K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 73% used [0x0000000680000000,0x0000000693804b90,0x000000069a980000)
Metaspace used 251476K, committed 253312K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 813.721 GC heap after
{Heap after GC invocations=52 (full 7):
PSYoungGen total 1856000K, used 71010K [0x0000000780000000, 0x00000007fed00000, 0x0000000800000000)
eden space 1652736K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e4e00000)
from space 203264K, 34% used [0x00000007f2680000,0x00000007f6bd8bf0,0x00000007fed00000)
to space 212480K, 0% used [0x00000007e4e00000,0x00000007e4e00000,0x00000007f1d80000)
ParOldGen total 435712K, used 321816K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 73% used [0x0000000680000000,0x0000000693a46318,0x000000069a980000)
Metaspace used 251476K, committed 253312K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 820.577 GC heap before
{Heap before GC invocations=53 (full 7):
PSYoungGen total 1856000K, used 1723746K [0x0000000780000000, 0x00000007fed00000, 0x0000000800000000)
eden space 1652736K, 100% used [0x0000000780000000,0x00000007e4e00000,0x00000007e4e00000)
from space 203264K, 34% used [0x00000007f2680000,0x00000007f6bd8bf0,0x00000007fed00000)
to space 212480K, 0% used [0x00000007e4e00000,0x00000007e4e00000,0x00000007f1d80000)
ParOldGen total 435712K, used 321816K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 73% used [0x0000000680000000,0x0000000693a46318,0x000000069a980000)
Metaspace used 251532K, committed 253376K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 820.637 GC heap after
{Heap after GC invocations=53 (full 7):
PSYoungGen total 1865216K, used 56165K [0x0000000780000000, 0x00000007fff00000, 0x0000000800000000)
eden space 1652736K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e4e00000)
from space 212480K, 26% used [0x00000007e4e00000,0x00000007e84d9750,0x00000007f1d80000)
to space 207360K, 0% used [0x00000007f3480000,0x00000007f3480000,0x00000007fff00000)
ParOldGen total 435712K, used 324445K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693cd77e8,0x000000069a980000)
Metaspace used 251532K, committed 253376K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 823.686 GC heap before
{Heap before GC invocations=54 (full 7):
PSYoungGen total 1865216K, used 1708901K [0x0000000780000000, 0x00000007fff00000, 0x0000000800000000)
eden space 1652736K, 100% used [0x0000000780000000,0x00000007e4e00000,0x00000007e4e00000)
from space 212480K, 26% used [0x00000007e4e00000,0x00000007e84d9750,0x00000007f1d80000)
to space 207360K, 0% used [0x00000007f3480000,0x00000007f3480000,0x00000007fff00000)
ParOldGen total 435712K, used 324445K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693cd77e8,0x000000069a980000)
Metaspace used 251547K, committed 253376K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 823.721 GC heap after
{Heap after GC invocations=54 (full 7):
PSYoungGen total 1874432K, used 40098K [0x0000000780000000, 0x00000007ff500000, 0x0000000800000000)
eden space 1677312K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e6600000)
from space 197120K, 20% used [0x00000007f3480000,0x00000007f5ba8a78,0x00000007ff500000)
to space 204288K, 0% used [0x00000007e6600000,0x00000007e6600000,0x00000007f2d80000)
ParOldGen total 435712K, used 324525K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693ceb7e8,0x000000069a980000)
Metaspace used 251547K, committed 253376K, reserved 1310720K
class space used 32207K, committed 33088K, reserved 1048576K
}
Event: 829.039 GC heap before
{Heap before GC invocations=55 (full 7):
PSYoungGen total 1874432K, used 1717410K [0x0000000780000000, 0x00000007ff500000, 0x0000000800000000)
eden space 1677312K, 100% used [0x0000000780000000,0x00000007e6600000,0x00000007e6600000)
from space 197120K, 20% used [0x00000007f3480000,0x00000007f5ba8a78,0x00000007ff500000)
to space 204288K, 0% used [0x00000007e6600000,0x00000007e6600000,0x00000007f2d80000)
ParOldGen total 435712K, used 324525K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693ceb7e8,0x000000069a980000)
Metaspace used 251580K, committed 253440K, reserved 1310720K
class space used 32208K, committed 33088K, reserved 1048576K
}
Event: 829.047 GC heap after
{Heap after GC invocations=55 (full 7):
PSYoungGen total 1881600K, used 7333K [0x0000000780000000, 0x0000000800000000, 0x0000000800000000)
eden space 1677312K, 0% used [0x0000000780000000,0x0000000780000000,0x00000007e6600000)
from space 204288K, 3% used [0x00000007e6600000,0x00000007e6d29670,0x00000007f2d80000)
to space 206336K, 0% used [0x00000007f3680000,0x00000007f3680000,0x0000000800000000)
ParOldGen total 435712K, used 324597K [0x0000000680000000, 0x000000069a980000, 0x0000000780000000)
object space 435712K, 74% used [0x0000000680000000,0x0000000693cfd7e8,0x000000069a980000)
Metaspace used 251580K, committed 253440K, reserved 1310720K
class space used 32208K, committed 33088K, reserved 1048576K
}
Dll operation events (4 events):
Event: 0.007 Loaded shared library E:\ANDROID\jbr\bin\java.dll
Event: 0.150 Loaded shared library E:\ANDROID\jbr\bin\zip.dll
Event: 0.491 Loaded shared library E:\ANDROID\jbr\bin\verify.dll
Event: 292.100 Unloaded dll "C:\Users\mrTwister\AppData\Local\Temp\sqlite-3.36.0-6880ac41-e57a-41b2-98d9-ba5d487b230b-sqlitejdbc.dll" [0x0000000070bc0000]
Deoptimization events (20 events):
Event: 835.840 Thread 0x00000244189f1230 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002440a2f7900 relative=0x0000000000008f80
Event: 835.840 Thread 0x00000244189f1230 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002440a2f7900 method=com.android.tools.r8.internal.Ia.a(Lcom/android/tools/r8/internal/Qa;[Lcom/android/tools/r8/internal/T3;I)V @ 707 c2
Event: 835.840 Thread 0x00000244189f1230 DEOPT PACKING pc=0x000002440a2f7900 sp=0x0000008613cfb300
Event: 835.840 Thread 0x00000244189f1230 DEOPT UNPACKING pc=0x00000244075866a3 sp=0x0000008613cfb320 mode 2
Event: 836.961 Thread 0x000002441817e1b0 DEOPT PACKING pc=0x00000244046d17d1 sp=0x00000086127f7420
Event: 836.961 Thread 0x000002441817e1b0 DEOPT UNPACKING pc=0x0000024407586e43 sp=0x00000086127f6d38 mode 0
Event: 836.998 Thread 0x00000244189f1230 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000024409dbafc8 relative=0x0000000000000288
Event: 836.998 Thread 0x00000244189f1230 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000024409dbafc8 method=com.android.tools.r8.internal.YH.a(Lcom/android/tools/r8/internal/XH;Ljava/util/function/Function;)Lcom/android/tools/r8/internal/DS; @ 38 c2
Event: 836.998 Thread 0x00000244189f1230 DEOPT PACKING pc=0x0000024409dbafc8 sp=0x0000008613cfa840
Event: 836.998 Thread 0x00000244189f1230 DEOPT UNPACKING pc=0x00000244075866a3 sp=0x0000008613cfa7e0 mode 2
Event: 837.084 Thread 0x00000244189f1230 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002440a19e1d4 relative=0x0000000000001914
Event: 837.084 Thread 0x00000244189f1230 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002440a19e1d4 method=com.android.tools.r8.graph.q2.a(Lcom/android/tools/r8/graph/m;Lcom/android/tools/r8/dex/L;Lcom/android/tools/r8/internal/lB;)V @ 137 c2
Event: 837.084 Thread 0x00000244189f1230 DEOPT PACKING pc=0x000002440a19e1d4 sp=0x0000008613cfb590
Event: 837.084 Thread 0x00000244189f1230 DEOPT UNPACKING pc=0x00000244075866a3 sp=0x0000008613cfb548 mode 2
Event: 837.093 Thread 0x00000244189f1230 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002440a20de90 relative=0x0000000000003770
Event: 837.093 Thread 0x00000244189f1230 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002440a20de90 method=com.android.tools.r8.dex.K.c(Lcom/android/tools/r8/graph/q2;)V @ 132 c2
Event: 837.093 Thread 0x00000244189f1230 DEOPT PACKING pc=0x000002440a20de90 sp=0x0000008613cfaf00
Event: 837.093 Thread 0x00000244189f1230 DEOPT UNPACKING pc=0x00000244075866a3 sp=0x0000008613cfaf08 mode 2
Event: 837.161 Thread 0x000002441817e1b0 DEOPT PACKING pc=0x00000244046d1873 sp=0x00000086127f7580
Event: 837.162 Thread 0x000002441817e1b0 DEOPT UNPACKING pc=0x0000024407586e43 sp=0x00000086127f6e98 mode 0
Classes unloaded (20 events):
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fb3f8 'jdk/internal/jimage/ImageHeader'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fb1a0 'jdk/internal/jimage/BasicImageReader$2'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011faf48 'jdk/internal/jimage/BasicImageReader$1'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011facb8 'jdk/internal/jimage/ImageReader$Resource'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011faa28 'jdk/internal/jimage/ImageReader$LinkNode'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fa798 'jdk/internal/jimage/ImageReader$Directory'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fa508 'jdk/internal/jimage/ImageReader$Node'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fa2e8 'jdk/internal/jimage/ImageStrings'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011fa000 'jdk/internal/jimage/ImageReader$SharedImageReader'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f9b90 'jdk/internal/jimage/BasicImageReader'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f9948 'jdk/internal/jimage/ImageReader'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f96f8 'jdk/internal/jrtfs/SystemImage$2'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f94b8 'jdk/internal/jrtfs/SystemImage$$Lambda$1947+0x00000008011f94b8'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f9260 'jdk/internal/jrtfs/ExplodedImage'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f9000 'jdk/internal/jrtfs/SystemImage$1'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f8c50 'jdk/internal/jrtfs/SystemImage'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f89c8 'jdk/internal/jrtfs/JrtFileStore'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f8628 'jdk/internal/jrtfs/JrtPath'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f8308 'jdk/internal/jrtfs/JrtFileSystem'
Event: 290.444 Thread 0x000002446dfbeb70 Unloading class 0x00000008011f8000 'jdk/internal/jrtfs/JrtFileSystemProvider'
Classes redefined (0 events):
No events
Internal exceptions (20 events):
Event: 826.709 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007c8d3f688}> (0x00000007c8d3f688)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 827.179 Thread 0x00000244189f4250 Exception <a 'sun/nio/fs/WindowsException'{0x00000007cfa4f3d8}> (0x00000007cfa4f3d8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 827.188 Thread 0x00000244189f1230 Exception <a 'sun/nio/fs/WindowsException'{0x00000007cd9070d8}> (0x00000007cd9070d8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 827.803 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007d0ea0248}> (0x00000007d0ea0248)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 827.820 Thread 0x000002441817e1b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000007d81b4750}> (0x00000007d81b4750)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 827.929 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007dadfec58}> (0x00000007dadfec58)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.050 Thread 0x000002441817e1b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000007d9ff4bc8}> (0x00000007d9ff4bc8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.055 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007db451cd8}> (0x00000007db451cd8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.636 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007e2050110}> (0x00000007e2050110)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.707 Thread 0x00000244189f4250 Exception <a 'sun/nio/fs/WindowsException'{0x00000007e3f4e998}> (0x00000007e3f4e998)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.716 Thread 0x00000244189f4250 Exception <a 'sun/nio/fs/WindowsException'{0x00000007e4157d70}> (0x00000007e4157d70)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.722 Thread 0x000002441817e1b0 Implicit null exception at 0x000002440a14eed4 to 0x000002440a152208
Event: 828.866 Thread 0x000002441817e1b0 Exception <a 'sun/nio/fs/WindowsException'{0x00000007e4cf3208}> (0x00000007e4cf3208)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 828.991 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x00000007e2894058}> (0x00000007e2894058)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 829.160 Thread 0x00000244189f4250 Exception <a 'sun/nio/fs/WindowsException'{0x00000007828b03a8}> (0x00000007828b03a8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 829.903 Thread 0x00000244189f4250 Exception <a 'sun/nio/fs/WindowsException'{0x000000078f594038}> (0x000000078f594038)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 831.215 Thread 0x00000244189f0890 Exception <a 'sun/nio/fs/WindowsException'{0x000000079555e960}> (0x000000079555e960)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 831.504 Thread 0x000002441817e1b0 Exception <a 'sun/nio/fs/WindowsException'{0x0000000795aff918}> (0x0000000795aff918)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 835.839 Thread 0x00000244189f1230 Exception <a 'sun/nio/fs/WindowsException'{0x0000000781b2f7c8}> (0x0000000781b2f7c8)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
Event: 837.095 Thread 0x00000244189f1230 Exception <a 'sun/nio/fs/WindowsException'{0x00000007a57cabd0}> (0x00000007a57cabd0)
thrown [s\src\hotspot\share\prims\jni.cpp, line 517]
VM Operations (20 events):
Event: 823.660 Executing VM operation: Cleanup
Event: 823.660 Executing VM operation: Cleanup done
Event: 823.686 Executing VM operation: ParallelGCFailedAllocation
Event: 823.730 Executing VM operation: ParallelGCFailedAllocation done
Event: 824.731 Executing VM operation: Cleanup
Event: 824.923 Executing VM operation: Cleanup done
Event: 825.888 Executing VM operation: HandshakeAllThreads
Event: 825.889 Executing VM operation: HandshakeAllThreads done
Event: 826.888 Executing VM operation: Cleanup
Event: 826.888 Executing VM operation: Cleanup done
Event: 828.888 Executing VM operation: Cleanup
Event: 828.888 Executing VM operation: Cleanup done
Event: 829.039 Executing VM operation: ParallelGCFailedAllocation
Event: 829.048 Executing VM operation: ParallelGCFailedAllocation done
Event: 831.048 Executing VM operation: Cleanup
Event: 831.048 Executing VM operation: Cleanup done
Event: 834.050 Executing VM operation: Cleanup
Event: 834.050 Executing VM operation: Cleanup done
Event: 837.051 Executing VM operation: Cleanup
Event: 837.051 Executing VM operation: Cleanup done
Events (20 events):
Event: 825.966 Thread 0x000002446da974d0 flushing nmethod 0x000002440434b810
Event: 825.966 Thread 0x000002446da974d0 flushing nmethod 0x000002440437d690
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x00000244043bda10
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x00000244043f6910
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x00000244043f7790
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x00000244043fc810
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x0000024404425990
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x000002440442cf10
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x000002440442d990
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x0000024404449690
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x000002440445f190
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x0000024404476b90
Event: 825.967 Thread 0x000002446da974d0 flushing nmethod 0x000002440450bd10
Event: 825.968 Thread 0x000002446da974d0 flushing nmethod 0x000002440462fc10
Event: 825.968 Thread 0x000002446da974d0 flushing nmethod 0x00000244046b8290
Event: 825.968 Thread 0x000002446da974d0 flushing nmethod 0x00000244046e0910
Event: 826.895 Thread 0x000002441ed0a720 Thread added: 0x000002441ed0a720
Event: 827.748 Thread 0x000002441ed0a720 Thread exited: 0x000002441ed0a720
Event: 829.547 Thread 0x0000024421f341f0 Thread added: 0x0000024421f341f0
Event: 829.896 Thread 0x0000024421f341f0 Thread exited: 0x0000024421f341f0
Dynamic libraries:
0x00007ff705830000 - 0x00007ff70583a000 E:\ANDROID\jbr\bin\java.exe
0x00007ff8b2e50000 - 0x00007ff8b3048000 C:\Windows\SYSTEM32\ntdll.dll
0x00007ff8b2690000 - 0x00007ff8b274d000 C:\Windows\System32\KERNEL32.DLL
0x00007ff8b0bc0000 - 0x00007ff8b0eb6000 C:\Windows\System32\KERNELBASE.dll
0x00007ff8b0840000 - 0x00007ff8b0940000 C:\Windows\System32\ucrtbase.dll
0x00007ff8a2b10000 - 0x00007ff8a2b27000 E:\ANDROID\jbr\bin\jli.dll
0x00007ff88ff30000 - 0x00007ff88ff4b000 E:\ANDROID\jbr\bin\VCRUNTIME140.dll
0x00007ff8b18f0000 - 0x00007ff8b1a8e000 C:\Windows\System32\USER32.dll
0x00007ff8b0600000 - 0x00007ff8b0622000 C:\Windows\System32\win32u.dll
0x00007ff899960000 - 0x00007ff899bfa000 C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.3636_none_60b6a03d71f818d5\COMCTL32.dll
0x00007ff8b22f0000 - 0x00007ff8b238e000 C:\Windows\System32\msvcrt.dll
0x00007ff8b1a90000 - 0x00007ff8b1abc000 C:\Windows\System32\GDI32.dll
0x00007ff8b0720000 - 0x00007ff8b083a000 C:\Windows\System32\gdi32full.dll
0x00007ff8b0680000 - 0x00007ff8b071d000 C:\Windows\System32\msvcp_win.dll
0x00007ff8b25f0000 - 0x00007ff8b2620000 C:\Windows\System32\IMM32.DLL
0x00007ff891bf0000 - 0x00007ff891bfc000 E:\ANDROID\jbr\bin\vcruntime140_1.dll
0x00007ff865e50000 - 0x00007ff865edd000 E:\ANDROID\jbr\bin\msvcp140.dll
0x00007ff872fb0000 - 0x00007ff873c30000 E:\ANDROID\jbr\bin\server\jvm.dll
0x00007ff8b0ec0000 - 0x00007ff8b0f6f000 C:\Windows\System32\ADVAPI32.dll
0x00007ff8b1ae0000 - 0x00007ff8b1b7c000 C:\Windows\System32\sechost.dll
0x00007ff8b2460000 - 0x00007ff8b2586000 C:\Windows\System32\RPCRT4.dll
0x00007ff8ade40000 - 0x00007ff8ade4a000 C:\Windows\SYSTEM32\VERSION.dll
0x00007ff8ab5c0000 - 0x00007ff8ab5c9000 C:\Windows\SYSTEM32\WSOCK32.dll
0x00007ff8a8130000 - 0x00007ff8a8157000 C:\Windows\SYSTEM32\WINMM.dll
0x00007ff8b2620000 - 0x00007ff8b268b000 C:\Windows\System32\WS2_32.dll
0x00007ff8ae470000 - 0x00007ff8ae482000 C:\Windows\SYSTEM32\kernel.appcore.dll
0x00007ff8a8080000 - 0x00007ff8a808a000 E:\ANDROID\jbr\bin\jimage.dll
0x00007ff89a680000 - 0x00007ff89a864000 C:\Windows\SYSTEM32\DBGHELP.DLL
0x00007ff893c10000 - 0x00007ff893c44000 C:\Windows\SYSTEM32\dbgcore.DLL
0x00007ff8b0540000 - 0x00007ff8b05c2000 C:\Windows\System32\bcryptPrimitives.dll
0x00007ff8a2b30000 - 0x00007ff8a2b3e000 E:\ANDROID\jbr\bin\instrument.dll
0x00007ff8a2c90000 - 0x00007ff8a2cb5000 E:\ANDROID\jbr\bin\java.dll
0x00007ff8a5790000 - 0x00007ff8a57a8000 E:\ANDROID\jbr\bin\zip.dll
0x00007ff8b0f70000 - 0x00007ff8b16b5000 C:\Windows\System32\SHELL32.dll
0x00007ff8ae620000 - 0x00007ff8aedbb000 C:\Windows\SYSTEM32\windows.storage.dll
0x00007ff8b2870000 - 0x00007ff8b2bc4000 C:\Windows\System32\combase.dll
0x00007ff8afeb0000 - 0x00007ff8afedd000 C:\Windows\SYSTEM32\Wldp.dll
0x00007ff8b1840000 - 0x00007ff8b18ed000 C:\Windows\System32\SHCORE.dll
0x00007ff8b2c90000 - 0x00007ff8b2ce5000 C:\Windows\System32\shlwapi.dll
0x00007ff8b0470000 - 0x00007ff8b0495000 C:\Windows\SYSTEM32\profapi.dll
0x00007ff8a2c70000 - 0x00007ff8a2c89000 E:\ANDROID\jbr\bin\net.dll
0x00007ff8a8b30000 - 0x00007ff8a8c3a000 C:\Windows\SYSTEM32\WINHTTP.dll
0x00007ff8afc10000 - 0x00007ff8afc7a000 C:\Windows\system32\mswsock.dll
0x00007ff8a2c50000 - 0x00007ff8a2c66000 E:\ANDROID\jbr\bin\nio.dll
0x00007ff8a2bb0000 - 0x00007ff8a2bc0000 E:\ANDROID\jbr\bin\verify.dll
0x00007ff887270000 - 0x00007ff887297000 C:\Users\mrTwister\.gradle\native\68d5fa5c4cc2d200863cafc0d521ce42e7d3e7ee720ec0a83991735586a16f82\windows-amd64\native-platform.dll
0x00007ff865d00000 - 0x00007ff865e44000 C:\Users\mrTwister\.gradle\native\e376f236ea51e6404a007f0833ffe2c6e607c4080706a723a18a27aeea778392\windows-amd64\native-platform-file-events.dll
0x00007ff8a2b50000 - 0x00007ff8a2b59000 E:\ANDROID\jbr\bin\management.dll
0x00007ff8a2b40000 - 0x00007ff8a2b4b000 E:\ANDROID\jbr\bin\management_ext.dll
0x00007ff8b2750000 - 0x00007ff8b2758000 C:\Windows\System32\PSAPI.DLL
0x00007ff8afe10000 - 0x00007ff8afe28000 C:\Windows\SYSTEM32\CRYPTSP.dll
0x00007ff8af540000 - 0x00007ff8af574000 C:\Windows\system32\rsaenh.dll
0x00007ff8b05d0000 - 0x00007ff8b05f7000 C:\Windows\System32\bcrypt.dll
0x00007ff8b0430000 - 0x00007ff8b045e000 C:\Windows\SYSTEM32\USERENV.dll
0x00007ff8afe00000 - 0x00007ff8afe0c000 C:\Windows\SYSTEM32\CRYPTBASE.dll
0x00007ff8af900000 - 0x00007ff8af93b000 C:\Windows\SYSTEM32\IPHLPAPI.DLL
0x00007ff8b2c80000 - 0x00007ff8b2c88000 C:\Windows\System32\NSI.dll
0x00007ff8aa750000 - 0x00007ff8aa767000 C:\Windows\SYSTEM32\dhcpcsvc6.DLL
0x00007ff8aa730000 - 0x00007ff8aa74d000 C:\Windows\SYSTEM32\dhcpcsvc.DLL
0x00007ff8af940000 - 0x00007ff8afa0a000 C:\Windows\SYSTEM32\DNSAPI.dll
0x00007ff8a2ba0000 - 0x00007ff8a2ba7000 C:\Windows\system32\wshunix.dll
0x00007ff8905f0000 - 0x00007ff890607000 C:\Windows\system32\napinsp.dll
0x00007ff8905d0000 - 0x00007ff8905eb000 C:\Windows\system32\pnrpnsp.dll
0x00007ff890890000 - 0x00007ff8908a5000 C:\Windows\system32\wshbth.dll
0x00007ff8abd90000 - 0x00007ff8abdad000 C:\Windows\system32\NLAapi.dll
0x00007ff8905b0000 - 0x00007ff8905c2000 C:\Windows\System32\winrnr.dll
0x00007ff8a8590000 - 0x00007ff8a859a000 C:\Windows\System32\rasadhlp.dll
0x00007ff8a80b0000 - 0x00007ff8a8130000 C:\Windows\System32\fwpuclnt.dll
0x00007ff8af680000 - 0x00007ff8af6b3000 C:\Windows\SYSTEM32\ntmarta.dll
0x00007ff88efa0000 - 0x00007ff88f138000 E:\ANDROID\jbr\bin\awt.dll
0x00007ff8b2390000 - 0x00007ff8b245d000 C:\Windows\System32\OLEAUT32.dll
0x00007ff8ae310000 - 0x00007ff8ae33f000 C:\Windows\SYSTEM32\dwmapi.dll
0x00007ff8add60000 - 0x00007ff8addf0000 C:\Windows\SYSTEM32\apphelp.dll
0x00007ff8ae060000 - 0x00007ff8ae0fe000 C:\Windows\system32\uxtheme.dll
0x00007ff8b16c0000 - 0x00007ff8b17d4000 C:\Windows\System32\MSCTF.dll
0x00007ff8b2cf0000 - 0x00007ff8b2e1b000 C:\Windows\System32\ole32.dll
0x00007ff871760000 - 0x00007ff871767000 E:\ANDROID\jbr\bin\rmi.dll
dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;E:\ANDROID\jbr\bin;C:\Windows\SYSTEM32;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.3636_none_60b6a03d71f818d5;E:\ANDROID\jbr\bin\server;C:\Users\mrTwister\.gradle\native\68d5fa5c4cc2d200863cafc0d521ce42e7d3e7ee720ec0a83991735586a16f82\windows-amd64;C:\Users\mrTwister\.gradle\native\e376f236ea51e6404a007f0833ffe2c6e607c4080706a723a18a27aeea778392\windows-amd64;C:\Users\mrTwister\AppData\Local\Temp
VM Arguments:
jvm_args: -XX:+UseParallelGC --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED -Xmx6g -Dfile.encoding=UTF-8 -Duser.country=RU -Duser.language=ru -Duser.variant -javaagent:C:\Users\mrTwister\.gradle\wrapper\dists\gradle-8.2-bin\bbg7u40eoinfdyxsxr3z4i7ta\gradle-8.2\lib\agents\gradle-instrumentation-agent-8.2.jar
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.2
java_class_path (initial): C:\Users\mrTwister\.gradle\wrapper\dists\gradle-8.2-bin\bbg7u40eoinfdyxsxr3z4i7ta\gradle-8.2\lib\gradle-launcher-8.2.jar
Launcher Type: SUN_STANDARD
[Global flags]
intx CICompilerCount = 3 {product} {ergonomic}
size_t InitialHeapSize = 201326592 {product} {ergonomic}
size_t MaxHeapSize = 6442450944 {product} {command line}
size_t MaxNewSize = 2147483648 {product} {ergonomic}
size_t MinHeapDeltaBytes = 524288 {product} {ergonomic}
size_t MinHeapSize = 8388608 {product} {ergonomic}
size_t NewSize = 67108864 {product} {ergonomic}
uintx NonNMethodCodeHeapSize = 5832780 {pd product} {ergonomic}
uintx NonProfiledCodeHeapSize = 122912730 {pd product} {ergonomic}
size_t OldSize = 134217728 {product} {ergonomic}
uintx ProfiledCodeHeapSize = 122912730 {pd product} {ergonomic}
uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
bool SegmentedCodeCache = true {product} {ergonomic}
size_t SoftMaxHeapSize = 6442450944 {manageable} {ergonomic}
bool UseCompressedClassPointers = true {product lp64_product} {ergonomic}
bool UseCompressedOops = true {product lp64_product} {ergonomic}
bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic}
bool UseParallelGC = true {product} {command line}
Logging:
Log output configuration:
#0: stdout all=warning uptime,level,tags
#1: stderr all=off uptime,level,tags
Environment Variables:
PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Users\mrTwister\AppData\Local\Microsoft\WindowsApps;C:\Users\mrTwister\AppData\Local\Programs\Git\cmd
USERNAME=mrTwister
OS=Windows_NT
PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 60 Stepping 3, GenuineIntel
TMP=C:\Users\MRTWIS~1\AppData\Local\Temp
TEMP=C:\Users\MRTWIS~1\AppData\Local\Temp
JNI global refs:
JNI global refs: 97, weak refs: 4
JNI global refs memory usage: 1475, weak refs: 841
OOME stack traces (most recent first):
Classloader memory used:
Loader org.gradle.internal.classloader.VisitableURLClassLoader$InstrumentingVisitableURLClassLoader: 9272K
Loader java.net.URLClassLoader : 9137K
Loader org.gradle.internal.classloader.VisitableURLClassLoader : 5475K
Loader bootstrap : 4094K
Loader org.gradle.initialization.MixInLegacyTypesClassLoader : 1509K
Loader jdk.internal.loader.ClassLoaders$AppClassLoader : 1319K
Loader jdk.internal.reflect.DelegatingClassLoader : 332K
Loader jdk.internal.loader.ClassLoaders$PlatformClassLoader : 131K
Loader org.gradle.groovy.scripts.internal.DefaultScriptCompilationHandler$ScriptClassLoader: 100K
Loader jdk.internal.jrtfs.JrtFileSystemProvider$JrtFsLoader : 71980B
Loader org.gradle.internal.classloader.VisitableURLClassLoader : 20257B
Loader org.codehaus.groovy.runtime.callsite.CallSiteClassLoader : 2903B
Loader sun.reflect.misc.MethodUtil : 373B
Classes loaded by more than one classloader:
Class com.google.common.collect.PeekingIterator : loaded 8 times (x 68B)
Class com.google.common.collect.Sets$3 : loaded 8 times (x 137B)
Class com.google.common.collect.Multimap : loaded 8 times (x 68B)
Class com.google.common.collect.Sets$2 : loaded 8 times (x 137B)
Class com.google.common.collect.Sets$4 : loaded 8 times (x 137B)
Class com.google.common.collect.Sets$1 : loaded 8 times (x 137B)
Class com.google.common.collect.Iterators$MergingIterator : loaded 8 times (x 79B)
Class com.google.common.collect.RegularImmutableBiMap : loaded 8 times (x 146B)
Class kotlin.sequences.SequencesKt__SequenceBuilderKt : loaded 8 times (x 69B)
Class com.google.common.collect.Hashing : loaded 8 times (x 69B)
Class kotlin.text.StringsKt__StringNumberConversionsKt : loaded 8 times (x 69B)
Class com.google.common.collect.MapDifference : loaded 8 times (x 68B)
Class com.google.common.collect.ForwardingObject : loaded 8 times (x 70B)
Class com.google.common.collect.ImmutableList$Builder : loaded 8 times (x 75B)
Class com.google.common.collect.AbstractMapEntry : loaded 8 times (x 79B)
Class kotlin.collections.ArraysKt__ArraysJVMKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableCollection : loaded 8 times (x 123B)
Class kotlin.collections.CollectionsKt__MutableCollectionsKt : loaded 8 times (x 69B)
Class kotlin.jvm.internal.markers.KMappedMarker : loaded 8 times (x 68B)
Class com.google.common.collect.RegularImmutableMap$Values : loaded 8 times (x 167B)
Class com.google.common.collect.AbstractIterator : loaded 8 times (x 80B)
Class com.google.common.collect.ImmutableMultimap$2 : loaded 8 times (x 79B)
Class com.google.common.collect.ImmutableEnumMap : loaded 8 times (x 123B)
Class com.google.common.collect.ImmutableMultimap$1 : loaded 8 times (x 80B)
Class com.google.common.collect.Maps$ViewCachingAbstractMap : loaded 8 times (x 123B)
Class kotlin.collections.MapsKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt___StringsKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableMultimap$Values : loaded 8 times (x 124B)
Class com.google.common.collect.ImmutableList$ReverseImmutableList : loaded 8 times (x 168B)
Class kotlin.collections.CollectionsKt__MutableCollectionsJVMKt : loaded 8 times (x 69B)
Class kotlin.collections.EmptyList : loaded 8 times (x 134B)
Class com.google.common.collect.UnmodifiableIterator : loaded 8 times (x 78B)
Class com.google.common.collect.ImmutableMapEntry$NonTerminalImmutableMapEntry : loaded 8 times (x 83B)
Class com.google.common.collect.EmptyImmutableListMultimap : loaded 8 times (x 174B)
Class com.google.common.collect.ImmutableMultiset : loaded 8 times (x 161B)
Class kotlin.Pair : loaded 8 times (x 70B)
Class com.google.common.collect.ObjectArrays : loaded 8 times (x 69B)
Class com.google.common.collect.Sets : loaded 8 times (x 69B)
Class com.google.common.collect.Iterators$10 : loaded 8 times (x 79B)
Class com.google.common.collect.ImmutableList : loaded 8 times (x 166B)
Class kotlin.text.StringsKt__StringsJVMKt : loaded 8 times (x 69B)
Class kotlin.LazyKt__LazyKt : loaded 8 times (x 69B)
Class kotlin.collections.CollectionsKt__IterablesKt : loaded 8 times (x 69B)
Class kotlin.jvm.internal.Intrinsics : loaded 8 times (x 69B)
Class kotlin.collections.MapsKt__MapWithDefaultKt : loaded 8 times (x 69B)
Class [Lcom.google.common.collect.AbstractMapEntry; : loaded 8 times (x 67B)
Class com.google.common.base.Joiner$2 : loaded 8 times (x 77B)
Class com.google.common.base.Joiner$1 : loaded 8 times (x 78B)
Class kotlin.internal.ProgressionUtilKt : loaded 8 times (x 69B)
Class kotlin.LazyKt__LazyJVMKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt__IndentKt : loaded 8 times (x 69B)
Class com.google.common.collect.SingletonImmutableList : loaded 8 times (x 167B)
Class com.google.common.collect.ImmutableMap$MapViewOfValuesAsSingletonSets : loaded 8 times (x 123B)
Class kotlin.text.StringsKt___StringsJvmKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt__StringBuilderJVMKt : loaded 8 times (x 69B)
Class com.google.common.collect.Iterators$1 : loaded 8 times (x 79B)
Class com.google.common.collect.BaseImmutableMultimap : loaded 8 times (x 121B)
Class com.google.common.collect.Iterators$4 : loaded 8 times (x 80B)
Class com.google.common.collect.Iterators$5 : loaded 8 times (x 80B)
Class kotlin.ranges.OpenEndRange : loaded 8 times (x 68B)
Class com.google.common.base.Joiner : loaded 8 times (x 77B)
Class com.google.common.base.Preconditions : loaded 8 times (x 69B)
Class com.google.common.base.Function : loaded 8 times (x 68B)
Class com.google.common.collect.Iterators$9 : loaded 8 times (x 79B)
Class kotlin.text.StringsKt__RegexExtensionsKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableMapEntry : loaded 8 times (x 83B)
Class com.google.common.collect.CollectPreconditions : loaded 8 times (x 69B)
Class com.google.common.collect.RegularImmutableMap$KeySet : loaded 8 times (x 148B)
Class com.google.common.primitives.IntsMethodsForWeb : loaded 8 times (x 69B)
Class kotlin.sequences.SequencesKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableMultimap : loaded 8 times (x 145B)
Class kotlin.collections.EmptyIterator : loaded 8 times (x 87B)
Class kotlin.text.CharsKt__CharJVMKt : loaded 8 times (x 69B)
Class kotlin.TuplesKt : loaded 8 times (x 69B)
Class kotlin.ranges.IntProgression$Companion : loaded 8 times (x 69B)
Class com.google.common.collect.Maps : loaded 8 times (x 69B)
Class com.google.common.collect.SingletonImmutableBiMap : loaded 8 times (x 141B)
Class com.google.common.collect.RegularImmutableMap : loaded 8 times (x 119B)
Class kotlin.text.StringsKt__StringNumberConversionsJVMKt : loaded 8 times (x 69B)
Class com.google.common.collect.AbstractIndexedListIterator : loaded 8 times (x 94B)
Class com.google.common.collect.ImmutableMultimap$Builder : loaded 8 times (x 81B)
Class com.google.common.collect.ImmutableEnumSet : loaded 8 times (x 144B)
Class kotlin.collections.ArraysKt___ArraysKt : loaded 8 times (x 69B)
Class com.google.common.collect.UnmodifiableListIterator : loaded 8 times (x 93B)
Class com.google.common.collect.ImmutableCollection$Builder : loaded 8 times (x 74B)
Class com.google.common.collect.Maps$EntryTransformer : loaded 8 times (x 68B)
Class com.google.common.collect.ListMultimap : loaded 8 times (x 68B)
Class com.google.common.collect.SortedMapDifference : loaded 8 times (x 68B)
Class com.google.common.collect.ImmutableList$1 : loaded 8 times (x 95B)
Class com.google.common.collect.ImmutableMapEntrySet$RegularEntrySet : loaded 8 times (x 149B)
Class [Lcom.google.common.collect.ImmutableMapEntry; : loaded 8 times (x 67B)
Class com.google.common.collect.BiMap : loaded 8 times (x 68B)
Class com.google.common.collect.Lists : loaded 8 times (x 69B)
Class kotlin.sequences.Sequence : loaded 8 times (x 68B)
Class kotlin.collections.MapsKt__MapsJVMKt : loaded 8 times (x 69B)
Class com.google.common.collect.Platform : loaded 8 times (x 69B)
Class kotlin.Metadata : loaded 8 times (x 68B)
Class com.google.common.collect.Sets$SetView : loaded 8 times (x 136B)
Class com.google.common.collect.ImmutableMultimap$EntryCollection : loaded 8 times (x 125B)
Class com.google.common.collect.AbstractMultimap : loaded 8 times (x 121B)
Class com.google.common.collect.Maps$KeySet : loaded 8 times (x 135B)
Class kotlin.collections.CollectionsKt__IteratorsJVMKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableAsList : loaded 8 times (x 169B)
Class kotlin.annotation.Target : loaded 8 times (x 68B)
Class kotlin.sequences.SequencesKt__SequencesKt : loaded 8 times (x 69B)
Class kotlin.sequences.SequencesKt__SequencesJVMKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt__RegexExtensionsJVMKt : loaded 8 times (x 69B)
Class kotlin.SynchronizedLazyImpl : loaded 8 times (x 74B)
Class kotlin.LazyKt : loaded 8 times (x 69B)
Class com.google.common.collect.Maps$8 : loaded 8 times (x 80B)
Class kotlin.UninitializedPropertyAccessException : loaded 8 times (x 80B)
Class kotlin.NoWhenBranchMatchedException : loaded 8 times (x 80B)
Class [Lcom.google.common.collect.ImmutableEntry; : loaded 8 times (x 67B)
Class kotlin.text.StringsKt__StringBuilderKt : loaded 8 times (x 69B)
Class com.google.common.collect.Sets$ImprovedAbstractSet : loaded 8 times (x 133B)
Class kotlin.annotation.Retention : loaded 8 times (x 68B)
Class kotlin.text.StringsKt__StringsKt : loaded 8 times (x 69B)
Class kotlin.collections.CollectionsKt__CollectionsJVMKt : loaded 8 times (x 69B)
Class kotlin.sequences.SequencesKt___SequencesKt : loaded 8 times (x 69B)
Class kotlin.jvm.internal.Lambda : loaded 8 times (x 73B)
Class com.google.common.collect.TransformedIterator : loaded 8 times (x 78B)
Class kotlin.collections.MapsKt___MapsJvmKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableMultisetGwtSerializationDependencies : loaded 8 times (x 123B)
Class com.google.common.base.Predicate : loaded 8 times (x 68B)
Class com.google.common.collect.ImmutableListMultimap : loaded 8 times (x 174B)
Class kotlin.jvm.functions.Function0 : loaded 8 times (x 68B)
Class kotlin.jvm.functions.Function1 : loaded 8 times (x 68B)
Class kotlin.jvm.functions.Function2 : loaded 8 times (x 68B)
Class kotlin.ranges.RangesKt : loaded 8 times (x 69B)
Class kotlin.ranges.IntRange : loaded 8 times (x 91B)
Class kotlin.collections.MapsKt___MapsKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableMap$1 : loaded 8 times (x 79B)
Class com.google.common.collect.Lists$StringAsImmutableList : loaded 8 times (x 167B)
Class kotlin.collections.ArraysKt__ArraysKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableEntry : loaded 8 times (x 80B)
Class [Lcom.google.common.collect.AbstractIterator$State; : loaded 8 times (x 67B)
Class kotlin.collections.CollectionsKt__ReversedViewsKt : loaded 8 times (x 69B)
Class com.google.common.collect.AbstractIterator$1 : loaded 8 times (x 69B)
Class com.google.common.primitives.Ints : loaded 8 times (x 69B)
Class com.google.common.collect.RegularImmutableAsList : loaded 8 times (x 176B)
Class kotlin.text.CharsKt__CharKt : loaded 8 times (x 69B)
Class kotlin._Assertions : loaded 8 times (x 69B)
Class com.google.common.collect.AbstractIterator$State : loaded 8 times (x 77B)
Class kotlin.ranges.ClosedRange : loaded 8 times (x 68B)
Class kotlin.KotlinNullPointerException : loaded 8 times (x 81B)
Class kotlin.collections.CollectionsKt__CollectionsKt : loaded 8 times (x 69B)
Class com.google.common.collect.Maps$BiMapConverter : loaded 8 times (x 88B)
Class com.google.common.collect.ImmutableMapEntrySet : loaded 8 times (x 149B)
Class com.google.common.collect.ImmutableBiMapFauxverideShim : loaded 8 times (x 118B)
Class kotlin.text.CharsKt : loaded 8 times (x 69B)
Class com.google.common.collect.ImmutableSet$CachingAsList : loaded 8 times (x 145B)
Class kotlin.ranges.RangesKt___RangesKt : loaded 8 times (x 69B)
Class kotlin.text.StringsKt__AppendableKt : loaded 8 times (x 69B)
Class kotlin.collections.CollectionsKt___CollectionsKt : loaded 8 times (x 69B)
Class kotlin.Lazy : loaded 8 times (x 68B)