-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhs_err_pid3844.log
1303 lines (1250 loc) · 106 KB
/
hs_err_pid3844.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
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0x00007f64a6bc6623, pid=3844, tid=0x00007f64a449c700
#
# JRE version: OpenJDK Runtime Environment (8.0_112-b06) (build 1.8.0_112-release-b06)
# Java VM: OpenJDK 64-Bit Server VM (25.112-b06 mixed mode linux-amd64 compressed oops)
# Problematic frame:
# V [libjvm.so+0x8b8623] oopDesc* PSPromotionManager::copy_to_survivor_space<false>(oopDesc*)+0x2c3
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0x00007f64a0022800): GCTaskThread [stack: 0x00007f64a439c000,0x00007f64a449d000] [id=3850]
siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x0000000000000008
Registers:
RAX=0x0000000000000001, RBX=0x00000000f5d0e018, RCX=0x0000000000000003, RDX=0x00007f64a71b2c40
RSP=0x00007f64a449bcb0, RBP=0x00007f64a449bd10, RSI=0x00000000f5d0e018, RDI=0x0000000000000000
R8 =0x0000001400000000, R9 =0x00007f64a007c618, R10=0x00000000ffc15955, R11=0x00007f64a71dc860
R12=0x00000000ffc15954, R13=0x0000000000000001, R14=0x00007f64a007c580, R15=0x00007f64a71b2c50
RIP=0x00007f64a6bc6623, EFLAGS=0x0000000000010246, CSGSFS=0x002b000000000033, ERR=0x0000000000000004
TRAPNO=0x000000000000000e
Top of Stack: (sp=0x00007f64a449bcb0)
0x00007f64a449bcb0: 00007f64a449bd10 00007f64a68f08d1
0x00007f64a449bcc0: 00007f64a449bd10 00000000ffc15940
0x00007f64a449bcd0: 00000000ffc0f6d0 0000000000001000
0x00007f64a449bce0: 00007f64a449bd30 00007f64a007c580
0x00007f64a449bcf0: 00000000ffc15954 0000000000000001
0x00007f64a449bd00: 00007f64a007c618 00007f64a71b2c50
0x00007f64a449bd10: 00007f64a449bd80 00007f64a6bc5e28
0x00007f64a449bd20: 00007f64a449bd80 00007f64a007c5e8
0x00007f64a449bd30: 000088da000067e2 00000000ff1849c0
0x00007f64a449bd40: 000088db000067e2 00007f64a48e1b01
0x00007f64a449bd50: 0000000000000400 0000000000000002
0x00007f64a449bd60: 00007f64a449bdb0 00007f64a449bdc0
0x00007f64a449bd70: 0000000000000000 00007f64a007d1f0
0x00007f64a449bd80: 00007f64a449be00 00007f64a6bc9f0a
0x00007f64a449bd90: 00007f64a71b2c50 00000000ff1860f8
0x00007f64a449bda0: 00007f645037a070 00007f64a007c580
0x00007f64a449bdb0: 00007f6474d6c863 00007f64a6b1ebbb
0x00007f64a449bdc0: 00000000ff1860f9 00007f64a001e790
0x00007f64a449bdd0: 00007f64a449be00 0000000000000001
0x00007f64a449bde0: 00007f645037a070 00007f64a6d75de5
0x00007f64a449bdf0: 00007f64a0022800 00007f64a71d1678
0x00007f64a449be00: 00007f64a449bf10 00007f64a688f6c2
0x00007f64a449be10: 00000000000003d8 00007f64a0023168
0x00007f64a449be20: 00007f64a0022d90 00007f64a449bea0
0x00007f64a449be30: 00007f64a0022d40 00007f64a0022d80
0x00007f64a449be40: 00007f64a449be50 0000000000000000
0x00007f64a449be50: 0000000000000000 00007f64a0023900
0x00007f64a449be60: 00007f64a0022800 00007f64a0023170
0x00007f64a449be70: 00007f64a00231b0 00007f64a00231c0
0x00007f64a449be80: 00007f64a0023298 00000000000000d8
0x00007f64a449be90: 00007f64a00233d0 00007f64a0023d40
0x00007f64a449bea0: 00007f64a0022800 00007f64a0023170
Instructions: (pc=0x00007f64a6bc6623)
0x00007f64a6bc6603: e9 3d fe ff ff 0f 1f 84 00 00 00 00 00 48 8d 15
0x00007f64a6bc6613: 29 c6 5e 00 8b 7e 08 8b 4a 08 48 d3 e7 48 03 3a
0x00007f64a6bc6623: 8b 4f 08 83 f9 00 0f 8f 7d fd ff ff 0f 85 3b 02
0x00007f64a6bc6633: 00 00 0f 1f 00 48 8b 07 4c 89 45 b8 48 89 de ff
Register to memory mapping:
RAX=0x0000000000000001 is an unknown value
RBX=0x00000000f5d0e018 is an oop
[error occurred during error reporting (printing register info), id 0xb]
Stack: [0x00007f64a439c000,0x00007f64a449d000], sp=0x00007f64a449bcb0, free space=1023k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0x8b8623] oopDesc* PSPromotionManager::copy_to_survivor_space<false>(oopDesc*)+0x2c3
V [libjvm.so+0x8b7e28] PSPromotionManager::drain_stacks_depth(bool)+0x6d8
V [libjvm.so+0x8bbf0a] StealTask::do_it(GCTaskManager*, unsigned int)+0x18a
V [libjvm.so+0x5816c2] GCTaskThread::run()+0x162
V [libjvm.so+0x849c82] java_start(Thread*)+0xf2
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0x00007f641826c800 JavaThread "Cache update executor" [_thread_blocked, id=15145, stack(0x00007f63eedfa000,0x00007f63eeefb000)]
0x00007f641813c000 JavaThread "Stdin handler" [_thread_blocked, id=15144, stack(0x00007f63edce9000,0x00007f63eddea000)]
0x00007f64182bf800 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:37943 to /127.0.0.1:60358" [_thread_blocked, id=15143, stack(0x00007f63eebf8000,0x00007f63eecf9000)]
0x00007f6434008800 JavaThread "Daemon worker Thread 27" [_thread_blocked, id=15140, stack(0x00007f6468720000,0x00007f6468821000)]
0x00007f6434004000 JavaThread "Cancel handler" [_thread_blocked, id=15139, stack(0x00007f63efb78000,0x00007f63efc79000)]
0x00007f6434005800 JavaThread "Handler for socket connection from /127.0.0.1:37943 to /127.0.0.1:60358" [_thread_in_native, id=15138, stack(0x00007f642159c000,0x00007f642169d000)]
0x00007f6440036800 JavaThread "Daemon Thread 27" [_thread_blocked, id=15137, stack(0x00007f6468d24000,0x00007f6468e25000)]
0x00007f6404001800 JavaThread "pool-8-thread-3" [_thread_blocked, id=3970, stack(0x00007f63eeffc000,0x00007f63ef0fd000)]
0x00007f6408006800 JavaThread "pool-8-thread-4" [_thread_blocked, id=3969, stack(0x00007f63ef0fd000,0x00007f63ef1fe000)]
0x00007f6400002800 JavaThread "pool-8-thread-2" [_thread_blocked, id=3968, stack(0x00007f63ef1fe000,0x00007f63ef2ff000)]
0x00007f640c002800 JavaThread "pool-8-thread-1" [_thread_blocked, id=3967, stack(0x00007f63ef2ff000,0x00007f63ef400000)]
0x00007f642549c000 JavaThread "pool-2-thread-1" [_thread_blocked, id=3880, stack(0x00007f64230b8000,0x00007f64231b9000)]
0x00007f6425079800 JavaThread "File lock request listener" [_thread_in_native, id=3878, stack(0x00007f6423846000,0x00007f6423947000)]
0x00007f64a0dbb000 JavaThread "pool-1-thread-1" [_thread_blocked, id=3870, stack(0x00007f6468821000,0x00007f6468922000)]
0x00007f64a0d4c800 JavaThread "Incoming local TCP Connector on port 37943" [_thread_in_native, id=3866, stack(0x00007f646902c000,0x00007f646912d000)]
0x00007f64a00d1800 JavaThread "Service Thread" daemon [_thread_blocked, id=3864, stack(0x00007f646a813000,0x00007f646a914000)]
0x00007f64a00c6800 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=3863, stack(0x00007f646a914000,0x00007f646aa15000)]
0x00007f64a00c4800 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=3862, stack(0x00007f646aa15000,0x00007f646ab16000)]
0x00007f64a00c2800 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=3861, stack(0x00007f646ab16000,0x00007f646ac17000)]
0x00007f64a00bf800 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=3860, stack(0x00007f646ac17000,0x00007f646ad18000)]
0x00007f64a00be800 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=3859, stack(0x00007f646ad18000,0x00007f646ae19000)]
0x00007f64a008b800 JavaThread "Finalizer" daemon [_thread_blocked, id=3858, stack(0x00007f646b0f1000,0x00007f646b1f2000)]
0x00007f64a0087000 JavaThread "Reference Handler" daemon [_thread_blocked, id=3857, stack(0x00007f646b1f2000,0x00007f646b2f3000)]
0x00007f64a000a000 JavaThread "main" [_thread_blocked, id=3847, stack(0x00007f64a7d09000,0x00007f64a7e0a000)]
Other Threads:
0x00007f64a007f800 VMThread [stack: 0x00007f646b2f3000,0x00007f646b3f4000] [id=3856]
0x00007f64a00d4000 WatcherThread [stack: 0x00007f646a712000,0x00007f646a813000] [id=3865]
=>0x00007f64a0022800 (exited) GCTaskThread [stack: 0x00007f64a439c000,0x00007f64a449d000] [id=3850]
VM state:at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: ([mutex/lock_event])
[0x00007f64a0006300] Threads_lock - owner thread: 0x00007f64a007f800
[0x00007f64a0006800] Heap_lock - owner thread: 0x00007f6434008800
Heap:
PSYoungGen total 375808K, used 375687K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 228352K, 100% used [0x00000000e0000000,0x00000000edf00000,0x00000000edf00000)
from space 147456K, 99% used [0x00000000edf00000,0x00000000f6ee1ce0,0x00000000f6f00000)
to space 148480K, 99% used [0x00000000f6f00000,0x00000000fff27700,0x0000000100000000)
ParOldGen total 332800K, used 136716K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 41% used [0x00000000a0000000,0x00000000a8583120,0x00000000b4500000)
Metaspace used 119686K, capacity 126388K, committed 131712K, reserved 1161216K
class space used 13696K, capacity 14600K, committed 19840K, reserved 1048576K
Card table byte_map: [0x00007f64a489f000,0x00007f64a4ba0000] byte_map_base: 0x00007f64a439f000
Marking Bits: (ParMarkBitMap*) 0x00007f64a71dc340
Begin Bits: [0x00007f6479000000, 0x00007f647a800000)
End Bits: [0x00007f647a800000, 0x00007f647c000000)
Polling page: 0x00007f64a7e2f000
CodeCache: size=245760Kb used=91067Kb max_used=103096Kb free=154692Kb
bounds [0x00007f6491000000, 0x00007f6497560000, 0x00007f64a0000000]
total_blobs=24834 nmethods=24013 adapters=733
compilation: enabled
Compilation events (10 events):
Event: 15777.903 Thread 0x00007f64a00c6800 nmethod 49546 0x00007f649512f250 code [0x00007f649512f540, 0x00007f64951308c8]
Event: 15777.903 Thread 0x00007f64a00bf800 nmethod 49544 0x00007f64938026d0 code [0x00007f64938028c0, 0x00007f6493802db0]
Event: 15777.903 Thread 0x00007f64a00bf800 49545 ! 4 org.gradle.internal.service.DefaultServiceRegistry$FactoryService::bind (239 bytes)
Event: 15777.904 Thread 0x00007f64a00c4800 nmethod 49543 0x00007f649584bdd0 code [0x00007f649584c060, 0x00007f649584c9a0]
Event: 15777.906 Thread 0x00007f64a00c2800 nmethod 49541 0x00007f6493b61450 code [0x00007f6493b61600, 0x00007f6493b61e58]
Event: 15777.909 Thread 0x00007f64a00c4800 49547 4 org.gradle.internal.logging.slf4j.OutputEventListenerBackedLogger::info (19 bytes)
Event: 15777.910 Thread 0x00007f64a00c4800 nmethod 49547 0x00007f6493709750 code [0x00007f64937098a0, 0x00007f64937099d8]
Event: 15777.917 Thread 0x00007f64a00bf800 nmethod 49545 0x00007f6493797210 code [0x00007f6493797480, 0x00007f6493798348]
Event: 15777.920 Thread 0x00007f64a00c2800 49548 4 org.gradle.api.specs.Specs::intersect (33 bytes)
Event: 15777.930 Thread 0x00007f64a00c2800 nmethod 49548 0x00007f64935d3910 code [0x00007f64935d3b60, 0x00007f64935d4618]
GC Heap History (10 events):
Event: 15127.771 GC heap after
Heap after GC invocations=75 (full 6):
PSYoungGen total 419328K, used 84940K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 326144K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000f3e80000)
from space 93184K, 91% used [0x00000000f3e80000,0x00000000f9173030,0x00000000f9980000)
to space 104960K, 0% used [0x00000000f9980000,0x00000000f9980000,0x0000000100000000)
ParOldGen total 332800K, used 87666K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 26% used [0x00000000a0000000,0x00000000a559ca20,0x00000000b4500000)
Metaspace used 97415K, capacity 103732K, committed 123520K, reserved 1153024K
class space used 11440K, capacity 12282K, committed 19840K, reserved 1048576K
}
Event: 15228.184 GC heap before
{Heap before GC invocations=76 (full 6):
PSYoungGen total 419328K, used 411084K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 326144K, 100% used [0x00000000e0000000,0x00000000f3e80000,0x00000000f3e80000)
from space 93184K, 91% used [0x00000000f3e80000,0x00000000f9173030,0x00000000f9980000)
to space 104960K, 0% used [0x00000000f9980000,0x00000000f9980000,0x0000000100000000)
ParOldGen total 332800K, used 87666K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 26% used [0x00000000a0000000,0x00000000a559ca20,0x00000000b4500000)
Metaspace used 97815K, capacity 104192K, committed 123520K, reserved 1153024K
class space used 11478K, capacity 12324K, committed 19840K, reserved 1048576K
Event: 15228.208 GC heap after
Heap after GC invocations=76 (full 6):
PSYoungGen total 422912K, used 49171K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 317952K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000f3680000)
from space 104960K, 46% used [0x00000000f9980000,0x00000000fc984c38,0x0000000100000000)
to space 101376K, 0% used [0x00000000f3680000,0x00000000f3680000,0x00000000f9980000)
ParOldGen total 332800K, used 87674K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 26% used [0x00000000a0000000,0x00000000a559ea20,0x00000000b4500000)
Metaspace used 97815K, capacity 104192K, committed 123520K, reserved 1153024K
class space used 11478K, capacity 12324K, committed 19840K, reserved 1048576K
}
Event: 15229.784 GC heap before
{Heap before GC invocations=77 (full 6):
PSYoungGen total 422912K, used 367123K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 317952K, 100% used [0x00000000e0000000,0x00000000f3680000,0x00000000f3680000)
from space 104960K, 46% used [0x00000000f9980000,0x00000000fc984c38,0x0000000100000000)
to space 101376K, 0% used [0x00000000f3680000,0x00000000f3680000,0x00000000f9980000)
ParOldGen total 332800K, used 87674K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 26% used [0x00000000a0000000,0x00000000a559ea20,0x00000000b4500000)
Metaspace used 108682K, capacity 115136K, committed 123520K, reserved 1153024K
class space used 12579K, capacity 13454K, committed 19840K, reserved 1048576K
Event: 15229.830 GC heap after
Heap after GC invocations=77 (full 6):
PSYoungGen total 419328K, used 101359K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 317952K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000f3680000)
from space 101376K, 99% used [0x00000000f3680000,0x00000000f997bc68,0x00000000f9980000)
to space 104960K, 0% used [0x00000000f9980000,0x00000000f9980000,0x0000000100000000)
ParOldGen total 332800K, used 105438K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 31% used [0x00000000a0000000,0x00000000a66f7af8,0x00000000b4500000)
Metaspace used 108682K, capacity 115136K, committed 123520K, reserved 1153024K
class space used 12579K, capacity 13454K, committed 19840K, reserved 1048576K
}
Event: 15426.649 GC heap before
{Heap before GC invocations=78 (full 6):
PSYoungGen total 419328K, used 419311K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 317952K, 100% used [0x00000000e0000000,0x00000000f3680000,0x00000000f3680000)
from space 101376K, 99% used [0x00000000f3680000,0x00000000f997bc68,0x00000000f9980000)
to space 104960K, 0% used [0x00000000f9980000,0x00000000f9980000,0x0000000100000000)
ParOldGen total 332800K, used 105438K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 31% used [0x00000000a0000000,0x00000000a66f7af8,0x00000000b4500000)
Metaspace used 110324K, capacity 116816K, committed 123520K, reserved 1153024K
class space used 12806K, capacity 13694K, committed 19840K, reserved 1048576K
Event: 15426.715 GC heap after
Heap after GC invocations=78 (full 6):
PSYoungGen total 333312K, used 104947K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 228352K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000edf00000)
from space 104960K, 99% used [0x00000000f9980000,0x00000000ffffcde0,0x0000000100000000)
to space 147968K, 0% used [0x00000000edf00000,0x00000000edf00000,0x00000000f6f80000)
ParOldGen total 332800K, used 136708K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 41% used [0x00000000a0000000,0x00000000a8581120,0x00000000b4500000)
Metaspace used 110324K, capacity 116816K, committed 123520K, reserved 1153024K
class space used 12806K, capacity 13694K, committed 19840K, reserved 1048576K
}
Event: 15428.077 GC heap before
{Heap before GC invocations=79 (full 6):
PSYoungGen total 333312K, used 333299K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 228352K, 100% used [0x00000000e0000000,0x00000000edf00000,0x00000000edf00000)
from space 104960K, 99% used [0x00000000f9980000,0x00000000ffffcde0,0x0000000100000000)
to space 147968K, 0% used [0x00000000edf00000,0x00000000edf00000,0x00000000f6f80000)
ParOldGen total 332800K, used 136708K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 41% used [0x00000000a0000000,0x00000000a8581120,0x00000000b4500000)
Metaspace used 119622K, capacity 126172K, committed 131712K, reserved 1161216K
class space used 13688K, capacity 14592K, committed 19840K, reserved 1048576K
Event: 15428.135 GC heap after
Heap after GC invocations=79 (full 6):
PSYoungGen total 375808K, used 147335K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 228352K, 0% used [0x00000000e0000000,0x00000000e0000000,0x00000000edf00000)
from space 147456K, 99% used [0x00000000edf00000,0x00000000f6ee1ce0,0x00000000f6f00000)
to space 148480K, 0% used [0x00000000f6f00000,0x00000000f6f00000,0x0000000100000000)
ParOldGen total 332800K, used 136716K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 41% used [0x00000000a0000000,0x00000000a8583120,0x00000000b4500000)
Metaspace used 119622K, capacity 126172K, committed 131712K, reserved 1161216K
class space used 13688K, capacity 14592K, committed 19840K, reserved 1048576K
}
Event: 15777.963 GC heap before
{Heap before GC invocations=80 (full 6):
PSYoungGen total 375808K, used 375687K [0x00000000e0000000, 0x0000000100000000, 0x0000000100000000)
eden space 228352K, 100% used [0x00000000e0000000,0x00000000edf00000,0x00000000edf00000)
from space 147456K, 99% used [0x00000000edf00000,0x00000000f6ee1ce0,0x00000000f6f00000)
to space 148480K, 0% used [0x00000000f6f00000,0x00000000f6f00000,0x0000000100000000)
ParOldGen total 332800K, used 136716K [0x00000000a0000000, 0x00000000b4500000, 0x00000000e0000000)
object space 332800K, 41% used [0x00000000a0000000,0x00000000a8583120,0x00000000b4500000)
Metaspace used 119686K, capacity 126388K, committed 131712K, reserved 1161216K
class space used 13696K, capacity 14600K, committed 19840K, reserved 1048576K
Deoptimization events (10 events):
Event: 15427.505 Thread 0x00007f6434008800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f64965ca50c method=com.google.common.base.CharMatcher.indexIn(Ljava/lang/CharSequence;I)I @ 1
Event: 15427.505 Thread 0x00007f6434008800 Uncommon trap: reason=class_check action=maybe_recompile pc=0x00007f64965ca50c method=com.google.common.base.CharMatcher.indexIn(Ljava/lang/CharSequence;I)I @ 1
Event: 15427.519 Thread 0x00007f6434008800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f64966c2ba0 method=com.squareup.javapoet.CodeWriter.emitAndIndent(Ljava/lang/String;)Lcom/squareup/javapoet/CodeWriter; @ 206
Event: 15427.520 Thread 0x00007f6434008800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f64966c2ba0 method=com.squareup.javapoet.CodeWriter.emitAndIndent(Ljava/lang/String;)Lcom/squareup/javapoet/CodeWriter; @ 206
Event: 15427.520 Thread 0x00007f6434008800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f64966c2ba0 method=com.squareup.javapoet.CodeWriter.emitAndIndent(Ljava/lang/String;)Lcom/squareup/javapoet/CodeWriter; @ 206
Event: 15427.521 Thread 0x00007f6434008800 Uncommon trap: reason=bimorphic action=maybe_recompile pc=0x00007f64966c2ba0 method=com.squareup.javapoet.CodeWriter.emitAndIndent(Ljava/lang/String;)Lcom/squareup/javapoet/CodeWriter; @ 206
Event: 15427.557 Thread 0x00007f6434008800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f649541ac1c method=org.eclipse.jdt.internal.compiler.parser.Scanner.getNextToken0()I @ 976
Event: 15427.655 Thread 0x00007f6434008800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f649649c124 method=org.eclipse.jdt.internal.core.util.PublicScanner.pushLineSeparator()V @ 250
Event: 15427.690 Thread 0x00007f6434008800 Uncommon trap: reason=predicate action=maybe_recompile pc=0x00007f6497308978 method=org.eclipse.jdt.internal.compiler.parser.Scanner.scanIdentifierOrKeyword()I @ 33
Event: 15427.841 Thread 0x00007f6434008800 Uncommon trap: reason=unstable_if action=reinterpret pc=0x00007f64964a19bc method=com.squareup.javapoet.CodeWriter.emitAndIndent(Ljava/lang/String;)Lcom/squareup/javapoet/CodeWriter; @ 184
Internal exceptions (10 events):
Event: 15427.743 Thread 0x00007f6434008800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000e71b6808) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 605]
Event: 15427.744 Thread 0x00007f6434008800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000e71e6658) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 605]
Event: 15427.748 Thread 0x00007f6434008800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000e72839a8) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 605]
Event: 15427.749 Thread 0x00007f6434008800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0x00000000e72b3628) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 605]
Event: 15428.815 Thread 0x00007f6434008800 Exception <a 'sun/nio/fs/UnixException'> (0x00000000e8cc9a98) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/prims/jni.cpp, line 709]
Event: 15609.649 Thread 0x00007f642549c000 Exception <a 'sun/nio/fs/UnixException'> (0x00000000e9185d40) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/prims/jni.cpp, line 709]
Event: 15726.082 Thread 0x00007f642549c000 Exception <a 'sun/nio/fs/UnixException'> (0x00000000e927d4f8) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/prims/jni.cpp, line 709]
Event: 15777.722 Thread 0x00007f6434008800 Exception <a 'java/lang/ClassNotFoundException': asLocalRepo693_dp7z5bzqka512pwo3y1key4u2BeanInfo> (0x00000000e9721dd8) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210]
Event: 15777.722 Thread 0x00007f6434008800 Exception <a 'java/lang/ClassNotFoundException': asLocalRepo693_dp7z5bzqka512pwo3y1key4u2Customizer> (0x00000000e972cf78) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/classfile/systemDictionary.cpp, line 210]
Event: 15777.825 Thread 0x00007f6434008800 Exception <a 'sun/nio/fs/UnixException'> (0x00000000ebc655b8) thrown at [/ssd/Android/AOSP-openjdk/external/jetbrains/jdk/hotspot/src/share/vm/prims/jni.cpp, line 709]
Events (10 events):
Event: 15777.749 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f6495c7a590
Event: 15777.750 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f6495de4590
Event: 15777.750 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f6495de7d10
Event: 15777.751 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f649621bbd0
Event: 15777.752 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f6496595290
Event: 15777.752 Thread 0x00007f64a00c2800 flushing nmethod 0x00007f6496710f90
Event: 15777.753 Thread 0x00007f64a00bf800 flushing nmethod 0x00007f649695a450
Event: 15777.754 Thread 0x00007f64a00bf800 flushing nmethod 0x00007f6497102890
Event: 15777.901 Thread 0x00007f641826c800 Thread added: 0x00007f641826c800
Event: 15777.963 Executing VM operation: ParallelGCFailedAllocation
Dynamic libraries:
00400000-00401000 r-xp 00000000 08:08 336 /mnt/shared/android-studio/jre/bin/java
00600000-00601000 r--p 00000000 08:08 336 /mnt/shared/android-studio/jre/bin/java
00601000-00602000 rw-p 00001000 08:08 336 /mnt/shared/android-studio/jre/bin/java
01f33000-01f54000 rw-p 00000000 00:00 0 [heap]
a0000000-b4500000 rw-p 00000000 00:00 0
b4500000-e0000000 ---p 00000000 00:00 0
e0000000-100000000 rw-p 00000000 00:00 0
100000000-101360000 rw-p 00000000 00:00 0
101360000-140000000 ---p 00000000 00:00 0
7f6384000000-7f6384021000 rw-p 00000000 00:00 0
7f6384021000-7f6388000000 ---p 00000000 00:00 0
7f6388200000-7f6388400000 rw-p 00000000 00:00 0
7f6388400000-7f6388600000 rw-p 00000000 00:00 0
7f6388600000-7f6388800000 rw-p 00000000 00:00 0
7f6388800000-7f6388a00000 rw-p 00000000 00:00 0
7f6389200000-7f6389400000 rw-p 00000000 00:00 0
7f6389c00000-7f6389e00000 rw-p 00000000 00:00 0
7f638a600000-7f638a800000 rw-p 00000000 00:00 0
7f638a800000-7f638aa00000 rw-p 00000000 00:00 0
7f638b200000-7f638b400000 rw-p 00000000 00:00 0
7f638bc00000-7f638c000000 rw-p 00000000 00:00 0
7f638c000000-7f638c36d000 rw-p 00000000 00:00 0
7f638c36d000-7f6390000000 ---p 00000000 00:00 0
7f6390000000-7f6390108000 rw-p 00000000 00:00 0
7f6390108000-7f6394000000 ---p 00000000 00:00 0
7f6394000000-7f6394047000 rw-p 00000000 00:00 0
7f6394047000-7f6398000000 ---p 00000000 00:00 0
7f6398000000-7f6398c95000 rw-p 00000000 00:00 0
7f6398c95000-7f639c000000 ---p 00000000 00:00 0
7f639c000000-7f639c111000 rw-p 00000000 00:00 0
7f639c111000-7f63a0000000 ---p 00000000 00:00 0
7f63a0000000-7f63a0116000 rw-p 00000000 00:00 0
7f63a0116000-7f63a4000000 ---p 00000000 00:00 0
7f63a4000000-7f63a4046000 rw-p 00000000 00:00 0
7f63a4046000-7f63a8000000 ---p 00000000 00:00 0
7f63a8000000-7f63a8c2c000 rw-p 00000000 00:00 0
7f63a8c2c000-7f63ac000000 ---p 00000000 00:00 0
7f63ac000000-7f63ac346000 rw-p 00000000 00:00 0
7f63ac346000-7f63b0000000 ---p 00000000 00:00 0
7f63b0000000-7f63b0e7a000 rw-p 00000000 00:00 0
7f63b0e7a000-7f63b4000000 ---p 00000000 00:00 0
7f63b4000000-7f63b410f000 rw-p 00000000 00:00 0
7f63b410f000-7f63b8000000 ---p 00000000 00:00 0
7f63b8000000-7f63b8d0e000 rw-p 00000000 00:00 0
7f63b8d0e000-7f63bc000000 ---p 00000000 00:00 0
7f63bc000000-7f63bc27d000 rw-p 00000000 00:00 0
7f63bc27d000-7f63c0000000 ---p 00000000 00:00 0
7f63c0000000-7f63c1163000 rw-p 00000000 00:00 0
7f63c1163000-7f63c4000000 ---p 00000000 00:00 0
7f63c4000000-7f63c41db000 rw-p 00000000 00:00 0
7f63c41db000-7f63c8000000 ---p 00000000 00:00 0
7f63c8000000-7f63c8331000 rw-p 00000000 00:00 0
7f63c8331000-7f63cc000000 ---p 00000000 00:00 0
7f63cc000000-7f63cc455000 rw-p 00000000 00:00 0
7f63cc455000-7f63d0000000 ---p 00000000 00:00 0
7f63d0000000-7f63d0108000 rw-p 00000000 00:00 0
7f63d0108000-7f63d4000000 ---p 00000000 00:00 0
7f63d4000000-7f63d4ed7000 rw-p 00000000 00:00 0
7f63d4ed7000-7f63d8000000 ---p 00000000 00:00 0
7f63d8000000-7f63d810c000 rw-p 00000000 00:00 0
7f63d810c000-7f63dc000000 ---p 00000000 00:00 0
7f63dc000000-7f63dc08d000 rw-p 00000000 00:00 0
7f63dc08d000-7f63e0000000 ---p 00000000 00:00 0
7f63e0000000-7f63e0135000 rw-p 00000000 00:00 0
7f63e0135000-7f63e4000000 ---p 00000000 00:00 0
7f63e4000000-7f63e409d000 rw-p 00000000 00:00 0
7f63e409d000-7f63e8000000 ---p 00000000 00:00 0
7f63e8000000-7f63e811a000 rw-p 00000000 00:00 0
7f63e811a000-7f63ec000000 ---p 00000000 00:00 0
7f63ec5e2000-7f63ec722000 rw-p 00000000 00:00 0
7f63ec722000-7f63ec7e2000 ---p 00000000 00:00 0
7f63ec7e2000-7f63ecbe2000 rw-p 00000000 00:00 0
7f63ecbe2000-7f63ecfe2000 rw-p 00000000 00:00 0
7f63ecfe2000-7f63ed1e2000 rw-p 00000000 00:00 0
7f63ed1e2000-7f63ed1e5000 ---p 00000000 00:00 0
7f63ed1e5000-7f63ed2e3000 rw-p 00000000 00:00 0
7f63ed2e3000-7f63ed2e6000 ---p 00000000 00:00 0
7f63ed2e6000-7f63ed3e4000 rw-p 00000000 00:00 0
7f63ed3e4000-7f63ed3e7000 ---p 00000000 00:00 0
7f63ed3e7000-7f63ed4e5000 rw-p 00000000 00:00 0
7f63ed5e6000-7f63ed5e9000 ---p 00000000 00:00 0
7f63ed5e9000-7f63ed6e7000 rw-p 00000000 00:00 0
7f63ed7e8000-7f63ed9e8000 rw-p 00000000 00:00 0
7f63ed9e8000-7f63edbe8000 rw-p 00000000 00:00 0
7f63edce9000-7f63edcec000 ---p 00000000 00:00 0
7f63edcec000-7f63eddea000 rw-p 00000000 00:00 0
7f63eddec000-7f63eddef000 ---p 00000000 00:00 0
7f63eddef000-7f63ee0ed000 rw-p 00000000 00:00 0
7f63ee0ed000-7f63ee0f0000 ---p 00000000 00:00 0
7f63ee0f0000-7f63ee1ee000 rw-p 00000000 00:00 0
7f63ee2ef000-7f63ee2f2000 ---p 00000000 00:00 0
7f63ee2f2000-7f63ee3f0000 rw-p 00000000 00:00 0
7f63ee3f0000-7f63ee3f3000 ---p 00000000 00:00 0
7f63ee3f3000-7f63ee4f1000 rw-p 00000000 00:00 0
7f63ee4f1000-7f63ee4f4000 ---p 00000000 00:00 0
7f63ee4f4000-7f63ee5f2000 rw-p 00000000 00:00 0
7f63ee5f2000-7f63ee5f5000 ---p 00000000 00:00 0
7f63ee5f5000-7f63ee6f3000 rw-p 00000000 00:00 0
7f63ee6f5000-7f63ee8f5000 rw-p 00000000 00:00 0
7f63ee8f5000-7f63ee8f8000 ---p 00000000 00:00 0
7f63ee8f8000-7f63ee9f6000 rw-p 00000000 00:00 0
7f63ee9f6000-7f63ee9f9000 ---p 00000000 00:00 0
7f63ee9f9000-7f63eeaf7000 rw-p 00000000 00:00 0
7f63eeaf7000-7f63eeafa000 ---p 00000000 00:00 0
7f63eeafa000-7f63eebf8000 rw-p 00000000 00:00 0
7f63eebf8000-7f63eebfb000 ---p 00000000 00:00 0
7f63eebfb000-7f63eecf9000 rw-p 00000000 00:00 0
7f63eedfa000-7f63eedfd000 ---p 00000000 00:00 0
7f63eedfd000-7f63eeefb000 rw-p 00000000 00:00 0
7f63eeefb000-7f63eeefe000 ---p 00000000 00:00 0
7f63eeefe000-7f63eeffc000 rw-p 00000000 00:00 0
7f63eeffc000-7f63eefff000 ---p 00000000 00:00 0
7f63eefff000-7f63ef0fd000 rw-p 00000000 00:00 0
7f63ef0fd000-7f63ef100000 ---p 00000000 00:00 0
7f63ef100000-7f63ef1fe000 rw-p 00000000 00:00 0
7f63ef1fe000-7f63ef201000 ---p 00000000 00:00 0
7f63ef201000-7f63ef2ff000 rw-p 00000000 00:00 0
7f63ef2ff000-7f63ef302000 ---p 00000000 00:00 0
7f63ef302000-7f63ef600000 rw-p 00000000 00:00 0
7f63ef600000-7f63ef800000 rw-p 00000000 00:00 0
7f63ef875000-7f63ef878000 ---p 00000000 00:00 0
7f63ef878000-7f63ef976000 rw-p 00000000 00:00 0
7f63ef976000-7f63ef979000 ---p 00000000 00:00 0
7f63ef979000-7f63efa77000 rw-p 00000000 00:00 0
7f63efa77000-7f63efa7a000 ---p 00000000 00:00 0
7f63efa7a000-7f63efb78000 rw-p 00000000 00:00 0
7f63efb78000-7f63efb7b000 ---p 00000000 00:00 0
7f63efb7b000-7f63efc79000 rw-p 00000000 00:00 0
7f63efc79000-7f63efcaf000 r-xp 00000000 08:08 419 /mnt/shared/android-studio/jre/jre/lib/amd64/libsunec.so
7f63efcaf000-7f63efeae000 ---p 00036000 08:08 419 /mnt/shared/android-studio/jre/jre/lib/amd64/libsunec.so
7f63efeae000-7f63efeb3000 r--p 00035000 08:08 419 /mnt/shared/android-studio/jre/jre/lib/amd64/libsunec.so
7f63efeb3000-7f63efeb5000 rw-p 0003a000 08:08 419 /mnt/shared/android-studio/jre/jre/lib/amd64/libsunec.so
7f63efeb5000-7f63efec6000 rw-p 00000000 00:00 0
7f63efec6000-7f63efec9000 ---p 00000000 00:00 0
7f63efec9000-7f63efeff000 rw-p 00000000 00:00 0
7f63efeff000-7f63eff02000 ---p 00000000 00:00 0
7f63eff02000-7f63f0000000 rw-p 00000000 00:00 0
7f63f0000000-7f63f0108000 rw-p 00000000 00:00 0
7f63f0108000-7f63f4000000 ---p 00000000 00:00 0
7f63f4000000-7f63f4daa000 rw-p 00000000 00:00 0
7f63f4daa000-7f63f8000000 ---p 00000000 00:00 0
7f63f8000000-7f63f8118000 rw-p 00000000 00:00 0
7f63f8118000-7f63fc000000 ---p 00000000 00:00 0
7f63fc000000-7f63fc11c000 rw-p 00000000 00:00 0
7f63fc11c000-7f6400000000 ---p 00000000 00:00 0
7f6400000000-7f640012f000 rw-p 00000000 00:00 0
7f640012f000-7f6404000000 ---p 00000000 00:00 0
7f6404000000-7f6404dde000 rw-p 00000000 00:00 0
7f6404dde000-7f6408000000 ---p 00000000 00:00 0
7f6408000000-7f640814e000 rw-p 00000000 00:00 0
7f640814e000-7f640c000000 ---p 00000000 00:00 0
7f640c000000-7f640cc43000 rw-p 00000000 00:00 0
7f640cc43000-7f6410000000 ---p 00000000 00:00 0
7f6410000000-7f6410021000 rw-p 00000000 00:00 0
7f6410021000-7f6414000000 ---p 00000000 00:00 0
7f6414000000-7f6414021000 rw-p 00000000 00:00 0
7f6414021000-7f6418000000 ---p 00000000 00:00 0
7f6418000000-7f6418ec1000 rw-p 00000000 00:00 0
7f6418ec1000-7f641c000000 ---p 00000000 00:00 0
7f641c000000-7f641c10d000 rw-p 00000000 00:00 0
7f641c10d000-7f6420000000 ---p 00000000 00:00 0
7f6420003000-7f6420203000 rw-p 00000000 00:00 0
7f6420203000-7f6420403000 rw-p 00000000 00:00 0
7f6420403000-7f6420603000 rw-p 00000000 00:00 0
7f6420603000-7f6420803000 rw-p 00000000 00:00 0
7f642082c000-7f642082f000 ---p 00000000 00:00 0
7f642082f000-7f6420865000 rw-p 00000000 00:00 0
7f6420865000-7f6420868000 ---p 00000000 00:00 0
7f6420868000-7f642089e000 rw-p 00000000 00:00 0
7f64208a0000-7f6420aa0000 rw-p 00000000 00:00 0
7f6420aa0000-7f6420aa3000 ---p 00000000 00:00 0
7f6420aa3000-7f6420ba1000 rw-p 00000000 00:00 0
7f6420ca2000-7f6420ea2000 rw-p 00000000 00:00 0
7f6420ecf000-7f6420ed2000 ---p 00000000 00:00 0
7f6420ed2000-7f6420f08000 rw-p 00000000 00:00 0
7f6420f08000-7f6420f0b000 ---p 00000000 00:00 0
7f6420f0b000-7f6421141000 rw-p 00000000 00:00 0
7f642115a000-7f642115f000 r--s 0003b000 08:08 382 /mnt/shared/android-studio/jre/jre/lib/ext/sunjce_provider.jar
7f642115f000-7f6421160000 r--s 00008000 08:08 386 /mnt/shared/android-studio/jre/jre/lib/ext/sunec.jar
7f6421160000-7f6421163000 r--s 00015000 08:08 459 /mnt/shared/android-studio/jre/jre/lib/jce.jar
7f642119c000-7f642139c000 rw-p 00000000 00:00 0
7f642139c000-7f642159c000 rw-p 00000000 00:00 0
7f642159c000-7f642159f000 ---p 00000000 00:00 0
7f642159f000-7f642169d000 rw-p 00000000 00:00 0
7f642169d000-7f64216a0000 ---p 00000000 00:00 0
7f64216a0000-7f642179e000 rw-p 00000000 00:00 0
7f642179e000-7f64217a1000 ---p 00000000 00:00 0
7f64217a1000-7f642189f000 rw-p 00000000 00:00 0
7f642189f000-7f64218a2000 ---p 00000000 00:00 0
7f64218a2000-7f64219a0000 rw-p 00000000 00:00 0
7f64219a0000-7f64219a3000 ---p 00000000 00:00 0
7f64219a3000-7f6421aa1000 rw-p 00000000 00:00 0
7f6421aa1000-7f6421aa4000 ---p 00000000 00:00 0
7f6421aa4000-7f6421ba2000 rw-p 00000000 00:00 0
7f6421ba2000-7f6421ba5000 ---p 00000000 00:00 0
7f6421ba5000-7f6421ca3000 rw-p 00000000 00:00 0
7f6421ca3000-7f6421ca6000 ---p 00000000 00:00 0
7f6421ca6000-7f6421fa4000 rw-p 00000000 00:00 0
7f6421fa4000-7f6421fa7000 ---p 00000000 00:00 0
7f6421fa7000-7f64222a5000 rw-p 00000000 00:00 0
7f64222a5000-7f64224a5000 rw-p 00000000 00:00 0
7f64224a5000-7f64226a5000 rw-p 00000000 00:00 0
7f64226a5000-7f64228a5000 rw-p 00000000 00:00 0
7f64228a5000-7f64228b8000 r--s 00344000 08:08 359 /mnt/shared/android-studio/jre/jre/lib/resources.jar
7f64228b8000-7f6422ab8000 rw-p 00000000 00:00 0
7f6422ab8000-7f6422cb8000 rw-p 00000000 00:00 0
7f6422cb8000-7f6422eb8000 rw-p 00000000 00:00 0
7f6422eb8000-7f64230b8000 rw-p 00000000 00:00 0
7f64230b8000-7f64230bb000 ---p 00000000 00:00 0
7f64230bb000-7f64233b9000 rw-p 00000000 00:00 0
7f64233b9000-7f64233ba000 r--s 00001000 08:06 2509353 /home/sonu/.gradle/caches/jars-2/cmhx5eetujk7j30d3nllwxyrlnugzjw/annotations-25.3.3.jar
7f64233ba000-7f64233c2000 r--s 000a8000 08:06 6958 /home/sonu/.gradle/caches/jars-2/lp0h431tl0554nh1vx6zomcvteflkp/lombok-ast-0.2.3.jar
7f64233c2000-7f64233d6000 r--s 000b4000 08:06 6956 /home/sonu/.gradle/caches/jars-2/hgvw6szzawm3evod5l2d6iutfug31w0/uast-162.2228.14.jar
7f64233d6000-7f64233d8000 r--s 0000d000 08:06 6954 /home/sonu/.gradle/caches/jars-2/7pwz1bowgakb1eux9ezb56jlturgsyi/commons-codec-1.4.jar
7f64233d8000-7f64233da000 r--s 0000d000 08:06 6952 /home/sonu/.gradle/caches/jars-2/9dj1m0eyooi5qt13735vz8fpkl3cnfy/commons-logging-1.1.1.jar
7f64233da000-7f64233df000 r--s 00028000 08:06 6950 /home/sonu/.gradle/caches/jars-2/62lv0fe9b3xbqe57f6ljy5upwi7mf6k/httpcore-4.1.jar
7f64233df000-7f64233e3000 r--s 0002f000 08:06 6948 /home/sonu/.gradle/caches/jars-2/gsg5n52frsvw6sx0swqqe2hwijwdcf0/jimfs-1.1.jar
7f64233e3000-7f64233e4000 r--s 00004000 08:06 6946 /home/sonu/.gradle/caches/jars-2/lxs252id0979odjrerlctkb26c2vj95/annotations-12.0.jar
7f64233e4000-7f64233e5000 r--s 00004000 08:06 6944 /home/sonu/.gradle/caches/jars-2/9kn99dr0rulyl67sct1ephwcop56l61/asm-analysis-5.0.4.jar
7f64233e5000-7f64233e9000 r--s 00040000 08:06 2509351 /home/sonu/.gradle/caches/jars-2/ccvn7yglm4blceovs70fngoac1eyn4f/lint-api-25.3.3.jar
7f64233e9000-7f64233eb000 r--s 00005000 08:06 6938 /home/sonu/.gradle/caches/jars-2/i6hc1uuj8e9ck59slmzdyz78ydn8sr6/httpmime-4.1.jar
7f64233eb000-7f64233f3000 r--s 0004e000 08:06 6936 /home/sonu/.gradle/caches/jars-2/7503wa5irssz0xxahv1xb82p2dl7rr2/httpclient-4.1.1.jar
7f64233f3000-7f64233fa000 r--s 00053000 08:06 6934 /home/sonu/.gradle/caches/jars-2/jgkfvs4eqggj7qsyw1f5d3up57hanj1/commons-compress-1.8.1.jar
7f64233fa000-7f64233ff000 r--s 0002a000 08:06 6932 /home/sonu/.gradle/caches/jars-2/je8f027qcr1z1egw08byp1ybxbp9kko/gson-2.2.4.jar
7f64233ff000-7f6423404000 r--s 0002e000 08:06 2509349 /home/sonu/.gradle/caches/jars-2/s427p2wh0tfza0xa8qijgx107eeevyl/repository-25.3.3.jar
7f6423404000-7f6423406000 r--s 00006000 08:06 2509316 /home/sonu/.gradle/caches/jars-2/e2s952s6co8tps89l80r4riixwqo2oe/dvlib-25.3.3.jar
7f6423406000-7f642340b000 r--s 00058000 08:06 6924 /home/sonu/.gradle/caches/jars-2/st159835qgxm0l87oqrnhayxos4lc1n/asm-debug-all-5.0.1.jar
7f642340b000-7f642341b000 r--s 000d5000 08:06 6922 /home/sonu/.gradle/caches/jars-2/qzf32gp9kej4w4hlbabft6tplu74cj3/proguard-base-5.3.2.jar
7f642341b000-7f6423446000 r--s 001fc000 08:06 6912 /home/sonu/.gradle/caches/jars-2/nxjrjftly2xksl8o0wqgivu5netfu2x/guava-18.0.jar
7f6423446000-7f6423646000 rw-p 00000000 00:00 0
7f6423646000-7f6423846000 rw-p 00000000 00:00 0
7f6423846000-7f6423849000 ---p 00000000 00:00 0
7f6423849000-7f6423b47000 rw-p 00000000 00:00 0
7f6423b47000-7f6423b48000 r--s 0000a000 08:06 6940 /home/sonu/.gradle/caches/jars-2/nwyg9io65lv6jvmwit2wq82xnnxd7ia/kxml2-2.3.0.jar
7f6423b48000-7f6423b4a000 r--s 00013000 08:06 2509313 /home/sonu/.gradle/caches/jars-2/s02k517nvrh8cbp2c8dz4slqska6dj9/layoutlib-api-25.3.3.jar
7f6423b4a000-7f6423b4d000 r--s 00033000 08:06 6920 /home/sonu/.gradle/caches/jars-2/nz9sndmr8b4xbj4xulkaciy5kdbyfiz/juniversalchardet-1.0.3.jar
7f6423b4d000-7f6423b51000 r--s 0002a000 08:06 6918 /home/sonu/.gradle/caches/jars-2/krbpn9xjn1qymukyx8cc5l799ty1v3h/commons-io-2.4.jar
7f6423b51000-7f6423b68000 r--s 00154000 08:06 6916 /home/sonu/.gradle/caches/jars-2/sfeivjswzitn6n0fnjx3ueszz8gv8o1/antlr4-4.5.3.jar
7f6423b68000-7f6423b6a000 r--s 00002000 08:06 2509311 /home/sonu/.gradle/caches/jars-2/rh2ip1x2zziz26tr3qzudtz088pqsb2/baseLibrary-2.3.3.jar
7f6423b6a000-7f6423b7d000 r--s 00241000 08:06 6910 /home/sonu/.gradle/caches/jars-2/9yuekvg4qerfitq3xec0iyckuw3hwaq/ecj-4.6.1.jar
7f6423b7d000-7f6423b84000 r--s 000d9000 08:06 2509309 /home/sonu/.gradle/caches/jars-2/ak89aa8liqmr44u7r08njntn6oehe0z/lint-checks-25.3.3.jar
7f6423b84000-7f6423b86000 r--s 00006000 08:06 6906 /home/sonu/.gradle/caches/jars-2/6phgj9ki3jl3p5epzkqoo8pr6kur40b/asm-tree-5.0.4.jar
7f6423b86000-7f6423bb9000 r--s 00203000 08:06 6904 /home/sonu/.gradle/caches/jars-2/hj0bfvxu9cq7hkwmecvp0kg137or3hh/bcprov-jdk15on-1.48.jar
7f6423bb9000-7f6423bc7000 r--s 00081000 08:06 6902 /home/sonu/.gradle/caches/jars-2/4r7xli0tz94y0wfjrdyjxlxar3g1pb9/bcpkix-jdk15on-1.48.jar
7f6423bc7000-7f6423bc9000 r--s 00002000 08:06 6900 /home/sonu/.gradle/caches/jars-2/f32bh5uivuf69ecz2j8hl96ksnqdh7v/javawriter-2.5.0.jar
7f6423bc9000-7f6423bcb000 r--s 00004000 08:06 2509307 /home/sonu/.gradle/caches/jars-2/j6s1upogkwo00sygdsekzj4fx0i75uy/tracker-25.3.3.jar
7f6423bcb000-7f6423bcc000 r--s 00005000 08:06 2509305 /home/sonu/.gradle/caches/jars-2/4svya0t1s9wyo35ycd3atidsaoo6w7e/shared-25.3.3.jar
7f6423bcc000-7f6423bda000 r--s 00147000 08:06 2509303 /home/sonu/.gradle/caches/jars-2/qx6695c5ocd9swxv7wqtxor3plyb4b7/protos-25.3.3.jar
7f6423bda000-7f6423bdb000 r--s 00001000 08:06 6892 /home/sonu/.gradle/caches/jars-2/bqo69msswbvaagsh45hf1tq02v21sml/jill-api-0.10.0.jar
7f6423bdb000-7f6423bdd000 r--s 00003000 08:06 6890 /home/sonu/.gradle/caches/jars-2/7pldadygbci34ql8thws797g29k1uhh/jack-api-0.13.0.jar
7f6423bdd000-7f6423be3000 r--s 0004a000 08:06 2509301 /home/sonu/.gradle/caches/jars-2/euoqfzf5y1sibp9ul8mcz0wovj380eo/ddmlib-25.3.3.jar
7f6423be3000-7f6423be6000 r--s 00022000 08:06 2509299 /home/sonu/.gradle/caches/jars-2/a81bg2yxzmumashablwecaj0ksz6tmj/manifest-merger-25.3.3.jar
7f6423be6000-7f6423be9000 r--s 0001c000 08:06 2509294 /home/sonu/.gradle/caches/jars-2/l6cnyee1vojrkkbpp6qwgpf30shmrja/common-25.3.3.jar
7f6423be9000-7f6423bf2000 r--s 00089000 08:06 2509290 /home/sonu/.gradle/caches/jars-2/m0t6h8af70sdgxvkj522jy01i14mnb8/sdk-common-25.3.3.jar
7f6423bf2000-7f6423bfc000 r--s 00098000 08:06 2509288 /home/sonu/.gradle/caches/jars-2/28c9ykhc782k8jmlrnbnccai34hziki/sdklib-25.3.3.jar
7f6423bfc000-7f6423bfd000 r--s 00002000 08:06 2509283 /home/sonu/.gradle/caches/jars-2/4dod7a1p5hoai4v37pxbcg65bbahvg2/builder-test-api-2.3.3.jar
7f6423bfd000-7f6423c00000 r--s 00006000 08:06 2509281 /home/sonu/.gradle/caches/jars-2/omk02asobup8sgd6qxom3ej5bg94z2r/builder-model-2.3.3.jar
7f6423c00000-7f6423e00000 rw-p 00000000 00:00 0
7f6423e00000-7f6424000000 rw-p 00000000 00:00 0
7f6424000000-7f6425b55000 rw-p 00000000 00:00 0
7f6425b55000-7f6428000000 ---p 00000000 00:00 0
7f6428000000-7f642810a000 rw-p 00000000 00:00 0
7f642810a000-7f642c000000 ---p 00000000 00:00 0
7f642c000000-7f642c108000 rw-p 00000000 00:00 0
7f642c108000-7f6430000000 ---p 00000000 00:00 0
7f6430000000-7f6430021000 rw-p 00000000 00:00 0
7f6430021000-7f6434000000 ---p 00000000 00:00 0
7f6434000000-7f6434116000 rw-p 00000000 00:00 0
7f6434116000-7f6438000000 ---p 00000000 00:00 0
7f6438000000-7f6438e49000 rw-p 00000000 00:00 0
7f6438e49000-7f643c000000 ---p 00000000 00:00 0
7f643c000000-7f643c021000 rw-p 00000000 00:00 0
7f643c021000-7f6440000000 ---p 00000000 00:00 0
7f6440000000-7f6440071000 rw-p 00000000 00:00 0
7f6440071000-7f6444000000 ---p 00000000 00:00 0
7f6444000000-7f6445c56000 rw-p 00000000 00:00 0
7f6445c56000-7f6448000000 ---p 00000000 00:00 0
7f6448000000-7f6448021000 rw-p 00000000 00:00 0
7f6448021000-7f644c000000 ---p 00000000 00:00 0
7f644c000000-7f644dd93000 rw-p 00000000 00:00 0
7f644dd93000-7f6450000000 ---p 00000000 00:00 0
7f6450000000-7f645234b000 rw-p 00000000 00:00 0
7f645234b000-7f6454000000 ---p 00000000 00:00 0
7f6454000000-7f6454021000 rw-p 00000000 00:00 0
7f6454021000-7f6458000000 ---p 00000000 00:00 0
7f6458000000-7f645a2ee000 rw-p 00000000 00:00 0
7f645a2ee000-7f645c000000 ---p 00000000 00:00 0
7f645c000000-7f645c021000 rw-p 00000000 00:00 0
7f645c021000-7f6460000000 ---p 00000000 00:00 0
7f6460000000-7f6460021000 rw-p 00000000 00:00 0
7f6460021000-7f6464000000 ---p 00000000 00:00 0
7f6464000000-7f64640a3000 rw-p 00000000 00:00 0
7f64640a3000-7f6468000000 ---p 00000000 00:00 0
7f6468000000-7f646800f000 r--s 00130000 08:06 6874 /home/sonu/.gradle/caches/jars-2/cr6zkqpx14lor9zdtmo49qpc7y8r8p4/protobuf-java-3.0.0.jar
7f646800f000-7f6468011000 r--s 0000f000 08:06 6872 /home/sonu/.gradle/caches/jars-2/rvfyugrlu5tbpz51p98og0qsxamjq4k/jopt-simple-4.9.jar
7f6468011000-7f6468015000 r--s 0001f000 08:06 6870 /home/sonu/.gradle/caches/jars-2/nq3fzqkrrm37ob61z4iu5qdbh368uat/org.jacoco.report-0.7.5.201505241946.jar
7f6468015000-7f6468019000 r--s 0001d000 08:06 6868 /home/sonu/.gradle/caches/jars-2/3kxkmcckmk40ron92zhbm0qjo9l4bkl/org.jacoco.core-0.7.5.201505241946.jar
7f6468019000-7f646801b000 r--s 00002000 08:06 6866 /home/sonu/.gradle/caches/jars-2/m4m0pzb4gmaeh0in5g2xc4bxeuwt828/proguard-gradle-5.3.2.jar
7f646801b000-7f646801d000 r--s 00009000 08:06 6864 /home/sonu/.gradle/caches/jars-2/ajvcvdu66lc9e3tvvipxtuq48i9bbkc/asm-commons-5.0.4.jar
7f646801d000-7f646801f000 r--s 0000c000 08:06 6862 /home/sonu/.gradle/caches/jars-2/1laz1ygmxoc408r7nwqs1q8uk8r236d/asm-5.0.4.jar
7f646801f000-7f6468024000 r--s 0002c000 08:06 2509259 /home/sonu/.gradle/caches/jars-2/3mlasgi8oo9o7oa12526198jui9zmp2/compilerCommon-2.3.3.jar
7f6468024000-7f6468025000 r--s 00002000 08:06 2509158 /home/sonu/.gradle/caches/jars-2/73l309uzm0ila7rdaaxteq0ng4ayf2y/gradle-api-2.3.3.jar
7f6468025000-7f6468026000 r--s 00000000 08:06 6856 /home/sonu/.gradle/caches/jars-2/tlyajppf8woug00g686fx5mchf8iv3o/transform-api-2.0.0-deprecated-use-gradle-api.jar
7f6468026000-7f646802b000 r--s 0005e000 08:06 2509140 /home/sonu/.gradle/caches/jars-2/k2xtosjt0in0zj7mpwvctw6iznt93uh/lint-25.3.3.jar
7f646802b000-7f6468041000 r--s 00163000 08:06 2508901 /home/sonu/.gradle/caches/jars-2/nyg71b5n2lzymmwh5vbtmvjiby07k4g/builder-2.3.3.jar
7f6468041000-7f6468043000 r--s 00015000 08:06 529284 /home/sonu/.gradle/caches/modules-2/files-2.1/com.squareup/javapoet/1.8.0/e858dc62ef484048540d27d36f3ec2177a3fa9b1/javapoet-1.8.0.jar
7f6468043000-7f6468048000 r--s 0004c000 08:06 918061 /home/sonu/.gradle/caches/modules-2/files-2.1/com.github.javaparser/javaparser-core/2.4.0/b2232871f1db359ca98657c073b0515057fd347f/javaparser-core-2.4.0.jar
7f6468048000-7f6468067000 r--s 001ca000 08:06 2508876 /home/sonu/.gradle/caches/jars-2/5fwyvjq1ai8mdh1mluqxidj1wo7rls8/gradle-core-2.3.3.jar
7f6468067000-7f6468068000 r--s 00002000 08:06 918059 /home/sonu/.gradle/caches/modules-2/files-2.1/com.jakewharton/butterknife-gradle-plugin/8.5.1/619dc837d63b3189e8da455e7056e8e7c8e8d722/butterknife-gradle-plugin-8.5.1.jar
7f6468068000-7f6468069000 r--s 00004000 08:06 918057 /home/sonu/.gradle/caches/modules-2/files-2.1/com.neenbedankt.gradle.plugins/android-apt/1.8/d3c508f0ea2b2bb93c2816a83351090dd662eaac/android-apt-1.8.jar
7f6468069000-7f646806b000 r--s 0000d000 08:06 2508844 /home/sonu/.gradle/caches/jars-2/mel54vauze7hczg2p6nebauqz8s53sj/gradle-2.3.3.jar
7f646806b000-7f646806e000 ---p 00000000 00:00 0
7f646806e000-7f64680a4000 rw-p 00000000 00:00 0
7f64680a4000-7f64680a5000 r--p 00000000 00:00 0
7f64680a5000-7f64682a5000 rw-p 00000000 00:00 0
7f64682a5000-7f646831e000 r--s 010ed000 08:08 301 /mnt/shared/android-studio/jre/lib/tools.jar
7f646831e000-7f646851e000 rw-p 00000000 00:00 0
7f646851e000-7f6468521000 ---p 00000000 00:00 0
7f6468521000-7f646861f000 rw-p 00000000 00:00 0
7f646861f000-7f6468622000 ---p 00000000 00:00 0
7f6468622000-7f6468720000 rw-p 00000000 00:00 0
7f6468720000-7f6468723000 ---p 00000000 00:00 0
7f6468723000-7f6468821000 rw-p 00000000 00:00 0
7f6468821000-7f6468824000 ---p 00000000 00:00 0
7f6468824000-7f6468922000 rw-p 00000000 00:00 0
7f6468922000-7f6468925000 ---p 00000000 00:00 0
7f6468925000-7f6468c23000 rw-p 00000000 00:00 0
7f6468c23000-7f6468c26000 ---p 00000000 00:00 0
7f6468c26000-7f6468d24000 rw-p 00000000 00:00 0
7f6468d24000-7f6468d27000 ---p 00000000 00:00 0
7f6468d27000-7f6468e25000 rw-p 00000000 00:00 0
7f6468e25000-7f6468e2c000 r--s 00000000 08:05 2117555 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f6468e2c000-7f646902c000 rw-p 00000000 00:00 0
7f646902c000-7f646902f000 ---p 00000000 00:00 0
7f646902f000-7f646912d000 rw-p 00000000 00:00 0
7f646912d000-7f6469136000 r-xp 00000000 08:08 437 /mnt/shared/android-studio/jre/jre/lib/amd64/libmanagement.so
7f6469136000-7f6469335000 ---p 00009000 08:08 437 /mnt/shared/android-studio/jre/jre/lib/amd64/libmanagement.so
7f6469335000-7f6469336000 r--p 00008000 08:08 437 /mnt/shared/android-studio/jre/jre/lib/amd64/libmanagement.so
7f6469336000-7f6469337000 rw-p 00009000 08:08 437 /mnt/shared/android-studio/jre/jre/lib/amd64/libmanagement.so
7f6469337000-7f646933c000 r--s 00098000 08:08 411 /mnt/shared/android-studio/jre/jre/lib/jsse.jar
7f646933c000-7f646933e000 r--s 00007000 08:06 2495059 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-tooling-api-builders-3.3.jar
7f646933e000-7f6469341000 r--s 00009000 08:06 2495052 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-testing-native-3.3.jar
7f6469341000-7f6469347000 r--s 00033000 08:06 2495127 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/snakeyaml-1.6.jar
7f6469347000-7f6469349000 r--s 00006000 08:06 2495126 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jcommander-1.12.jar
7f6469349000-7f646934e000 r--s 00040000 08:06 2495125 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/bsh-2.0b4.jar
7f646934e000-7f6469350000 r--s 00009000 08:06 2495133 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/hamcrest-core-1.3.jar
7f6469350000-7f6469359000 r--s 00089000 08:06 2495084 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/testng-6.3.1.jar
7f6469359000-7f6469361000 r--s 00045000 08:06 2495083 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/junit-4.12.jar
7f6469361000-7f6469367000 r--s 0002e000 08:06 2495053 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-testing-jvm-3.3.jar
7f6469367000-7f646936b000 r--s 00016000 08:06 2495051 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-testing-base-3.3.jar
7f646936b000-7f6469372000 r--s 00038000 08:06 2495078 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/bcpg-jdk15on-1.51.jar
7f6469372000-7f6469374000 r--s 0000c000 08:06 2495030 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-signing-3.3.jar
7f6469374000-7f6469376000 r--s 00007000 08:06 2495029 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-scala-3.3.jar
7f6469376000-7f6469377000 r--s 00004000 08:06 2495057 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-resources-sftp-3.3.jar
7f6469377000-7f6469387000 r--s 00088000 08:06 2495094 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/joda-time-2.8.2.jar
7f6469387000-7f6469398000 r--s 0010d000 08:06 2495093 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jackson-databind-2.6.6.jar
7f6469398000-7f646939b000 r--s 00009000 08:06 2495092 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jackson-annotations-2.6.6.jar
7f646939b000-7f646939f000 r--s 0003c000 08:06 2495091 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jackson-core-2.6.6.jar
7f646939f000-7f64693ad000 r--s 00087000 08:06 2495090 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aws-java-sdk-core-1.11.6.jar
7f64693ad000-7f64693b4000 r--s 00057000 08:06 2495089 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aws-java-sdk-kms-1.11.6.jar
7f64693b4000-7f64693c1000 r--s 0008e000 08:06 2495088 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aws-java-sdk-s3-1.11.6.jar
7f64693c1000-7f64693c3000 r--s 00004000 08:06 2495058 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-resources-s3-3.3.jar
7f64693c3000-7f64693c5000 r--s 00005000 08:06 2495082 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jatl-0.2.2.jar
7f64693c5000-7f64693c7000 r--s 0000f000 08:06 2495035 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-reporting-3.3.jar
7f64693c7000-7f64693c9000 r--s 00002000 08:06 2495036 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-publish-3.3.jar
7f64693c9000-7f64693cb000 r--s 00009000 08:06 2495065 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/commons-cli-1.2.jar
7f64693cb000-7f64693d1000 r--s 00031000 08:06 2495021 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-plugins-3.3.jar
7f64693d1000-7f64693d3000 r--s 00009000 08:06 2495054 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-plugin-development-3.3.jar
7f64693d3000-7f64693d9000 r--s 0002b000 08:06 2495047 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-platform-play-3.3.jar
7f64693d9000-7f64693e7000 r--s 00055000 08:06 2495046 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-platform-native-3.3.jar
7f64693e7000-7f64693ec000 r--s 0001f000 08:06 2495041 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-platform-jvm-3.3.jar
7f64693ec000-7f64693f4000 r--s 00027000 08:06 2495040 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-platform-base-3.3.jar
7f64693f4000-7f646941c000 r--s 0021c000 08:06 2495073 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/biz.aQute.bndlib-3.2.0.jar
7f646941c000-7f646941e000 r--s 00003000 08:06 2495025 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-osgi-3.3.jar
7f646941e000-7f6469421000 r--s 0000c000 08:06 2495076 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/pmaven-groovy-0.8-20100325.jar
7f6469421000-7f6469422000 r--s 00004000 08:06 2495075 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/pmaven-common-0.8-20100325.jar
7f6469422000-7f6469428000 r--s 00023000 08:06 2495026 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-maven-3.3.jar
7f6469428000-7f646942b000 r--s 0000b000 08:06 2495045 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-language-scala-3.3.jar
7f646942b000-7f6469431000 r--s 0001a000 08:06 2495049 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-language-native-3.3.jar
7f6469431000-7f6469434000 r--s 00005000 08:06 2495042 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-language-jvm-3.3.jar
7f6469434000-7f646943a000 r--s 00027000 08:06 2495043 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-language-java-3.3.jar
7f646943a000-7f646943c000 r--s 0000a000 08:06 2495044 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-language-groovy-3.3.jar
7f646943c000-7f646943f000 r--s 0001e000 08:06 2495100 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jsp-api-2.1-6.1.14.jar
7f646943f000-7f6469462000 r--s 00344000 08:06 2495099 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/core-3.1.1.jar
7f6469462000-7f6469463000 r--s 00006000 08:06 2495098 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jetty-naming-6.1.26.jar
7f6469463000-7f6469464000 r--s 00002000 08:06 2495072 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/geronimo-annotation_1.0_spec-1.0.jar
7f6469464000-7f6469466000 r--s 00002000 08:06 2495071 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jetty-annotations-6.1.26.jar
7f6469466000-7f6469477000 r--s 000ea000 08:06 2495070 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jsp-2.1-6.1.14.jar
7f6469477000-7f6469479000 r--s 0000d000 08:06 2495069 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jetty-plus-6.1.26.jar
7f6469479000-7f646947b000 r--s 0001f000 08:06 2495068 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/servlet-api-2.5-20081211.jar
7f646947b000-7f646947f000 r--s 00028000 08:06 2495067 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jetty-util-6.1.26.jar
7f646947f000-7f6469486000 r--s 0007d000 08:06 2495066 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jetty-6.1.26.jar
7f6469486000-7f6469488000 r--s 0000a000 08:06 2495023 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-jetty-3.3.jar
7f6469488000-7f646948f000 r--s 00035000 08:06 2495081 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/simple-4.1.21.jar
7f646948f000-7f646949b000 r--s 00100000 08:06 2495079 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/rhino-1.7R3.jar
7f646949b000-7f646949f000 r--s 00012000 08:06 2495032 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-javascript-3.3.jar
7f646949f000-7f64694a1000 r--s 0000d000 08:06 2495038 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-jacoco-3.3.jar
7f64694a1000-7f64694a4000 r--s 0000e000 08:06 2495037 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-ivy-3.3.jar
7f64694a4000-7f64694a5000 r--s 00002000 08:06 2495048 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-ide-play-3.3.jar
7f64694a5000-7f64694a8000 r--s 00013000 08:06 2495050 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-ide-native-3.3.jar
7f64694a8000-7f64694b1000 r--s 00055000 08:06 2495027 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-ide-3.3.jar
7f64694b1000-7f64694b3000 r--s 00007000 08:06 2495031 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-ear-3.3.jar
7f64694b3000-7f64694b9000 r--s 00039000 08:06 2495034 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-diagnostics-3.3.jar
7f64694b9000-7f64694ba000 r--s 00009000 08:06 2495060 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-composite-builds-3.3.jar
7f64694ba000-7f64694be000 r--s 00023000 08:06 2495022 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-code-quality-3.3.jar
7f64694be000-7f64694c2000 r--s 00022000 08:06 2495039 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-build-init-3.3.jar
7f64694c2000-7f64694c8000 r--s 0008e000 08:06 2495033 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-build-comparison-3.3.jar
7f64694c8000-7f64694c9000 r--s 00001000 08:06 2495061 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-build-cache-http-3.3.jar
7f64694c9000-7f64694cb000 r--s 00008000 08:06 2495024 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-antlr-3.3.jar
7f64694cb000-7f64694cd000 r--s 00004000 08:06 2495028 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-announce-3.3.jar
7f64694cd000-7f64694e5000 r--s 00115000 08:06 2495130 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/xercesImpl-2.9.1.jar
7f64694e5000-7f64694ed000 r--s 00028000 08:06 2495131 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/xml-apis-1.3.04.jar
7f64694ed000-7f64694f3000 r--s 0005b000 08:06 2495129 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jcifs-1.3.17.jar
7f64694f3000-7f64694f9000 r--s 00033000 08:06 2495077 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/commons-codec-1.6.jar
7f64694f9000-7f6469500000 r--s 00049000 08:06 2495128 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/httpcore-4.4.4.jar
7f6469500000-7f6469503000 r--s 0001c000 08:06 2495086 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/nekohtml-1.9.14.jar
7f6469503000-7f6469510000 r--s 000a4000 08:06 2495085 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/httpclient-4.4.1.jar
7f6469510000-7f6469513000 r--s 0000a000 08:06 2495056 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-resources-http-3.3.jar
7f6469513000-7f6469517000 r--s 00015000 08:06 2495055 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-plugin-use-3.3.jar
7f6469517000-7f6469518000 r--s 00000000 08:06 2494967 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-installation-beacon-3.3.jar
7f6469518000-7f646951a000 r--s 00006000 08:06 2495124 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aether-connector-wagon-1.13.1.jar
7f646951a000-7f646951e000 r--s 0001c000 08:06 2495123 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aether-util-1.13.1.jar
7f646951e000-7f646951f000 r--s 00003000 08:06 2495122 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aether-spi-1.13.1.jar
7f646951f000-7f6469522000 r--s 0001d000 08:06 2495121 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aether-impl-1.13.1.jar
7f6469522000-7f6469525000 r--s 00013000 08:06 2495120 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/aether-api-1.13.1.jar
7f6469525000-7f6469526000 r--s 00007000 08:06 2495119 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/wagon-http-shared4-2.4.jar
7f6469526000-7f6469528000 r--s 0000b000 08:06 2495118 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/wagon-provider-api-2.4.jar
7f6469528000-7f6469529000 r--s 00002000 08:06 2495117 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/wagon-http-2.4.jar
7f6469529000-7f646952a000 r--s 00002000 08:06 2495116 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/wagon-file-2.4.jar
7f646952a000-7f646952c000 r--s 0000c000 08:06 2495115 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-aether-provider-3.0.4.jar
7f646952c000-7f646952e000 r--s 0000b000 08:06 2495114 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-plugin-api-3.0.4.jar
7f646952e000-7f6469530000 r--s 00006000 08:06 2495113 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-repository-metadata-3.0.4.jar
7f6469530000-7f6469532000 r--s 0000b000 08:06 2495112 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-artifact-3.0.4.jar
7f6469532000-7f6469534000 r--s 00026000 08:06 2495111 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-model-3.0.4.jar
7f6469534000-7f6469538000 r--s 00021000 08:06 2495110 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-model-builder-3.0.4.jar
7f6469538000-7f646953e000 r--s 0003f000 08:06 2495109 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-compat-3.0.4.jar
7f646953e000-7f6469540000 r--s 00002000 08:06 2495107 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-cipher-1.7.jar
7f6469540000-7f6469542000 r--s 0000a000 08:06 2495106 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-classworlds-2.4.jar
7f6469542000-7f6469549000 r--s 0002e000 08:06 2495105 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-container-default-1.5.5.jar
7f6469549000-7f646954b000 r--s 00000000 08:06 2495132 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-component-annotations-1.5.5.jar
7f646954b000-7f646954d000 r--s 0000d000 08:06 2495104 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-interpolation-1.14.jar
7f646954d000-7f6469551000 r--s 00033000 08:06 2495103 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-utils-2.0.6.jar
7f6469551000-7f6469554000 r--s 00008000 08:06 2495102 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-settings-builder-3.0.4.jar
7f6469554000-7f6469556000 r--s 0000a000 08:06 2495101 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-settings-3.0.4.jar
7f6469556000-7f646955b000 r--s 00040000 08:06 2495087 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/jsch-0.1.53.jar
7f646955b000-7f646959b000 r--s 00277000 08:06 2495097 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/bcprov-jdk15on-1.51.jar
7f646959b000-7f646959f000 r--s 0001d000 08:06 2495096 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/xbean-reflect-3.4.jar
7f646959f000-7f64695ab000 r--s 0007d000 08:06 2495074 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/maven-core-3.0.4.jar
7f64695ab000-7f64695b0000 r--s 00034000 08:06 2495080 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gson-2.7.jar
7f64695b0000-7f64695bf000 r--s 000d9000 08:06 2495095 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/ivy-2.2.0.jar
7f64695bf000-7f64695d5000 r-xp 00000000 08:05 1709207 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64695d5000-7f64697d4000 ---p 00016000 08:05 1709207 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64697d4000-7f64697d5000 rw-p 00015000 08:05 1709207 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f64697d5000-7f6469947000 r-xp 00000000 08:05 1584262 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f6469947000-7f6469b47000 ---p 00172000 08:05 1584262 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f6469b47000-7f6469b51000 r--p 00172000 08:05 1584262 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f6469b51000-7f6469b53000 rw-p 0017c000 08:05 1584262 /usr/lib/x86_64-linux-gnu/libstdc++.so.6.0.21
7f6469b53000-7f6469b57000 rw-p 00000000 00:00 0
7f6469b57000-7f6469b58000 r--s 00006000 08:06 2495108 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/plexus-sec-dispatcher-1.3.jar
7f6469b58000-7f6469b77000 r--s 000f6000 08:06 2495063 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-dependency-management-3.3.jar
7f6469b77000-7f6469b79000 r--s 00005000 08:06 2495062 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/plugins/gradle-workers-3.3.jar
7f6469b79000-7f6469b7e000 r-xp 00000000 08:06 2496143 /home/sonu/.gradle/native/23/linux-amd64/libnative-platform.so
7f6469b7e000-7f6469d7d000 ---p 00005000 08:06 2496143 /home/sonu/.gradle/native/23/linux-amd64/libnative-platform.so
7f6469d7d000-7f6469d7e000 rw-p 00004000 08:06 2496143 /home/sonu/.gradle/native/23/linux-amd64/libnative-platform.so
7f6469d7e000-7f6469d8f000 r-xp 00000000 08:08 425 /mnt/shared/android-studio/jre/jre/lib/amd64/libnio.so
7f6469d8f000-7f6469f8e000 ---p 00011000 08:08 425 /mnt/shared/android-studio/jre/jre/lib/amd64/libnio.so
7f6469f8e000-7f6469f8f000 r--p 00010000 08:08 425 /mnt/shared/android-studio/jre/jre/lib/amd64/libnio.so
7f6469f8f000-7f6469f90000 rw-p 00011000 08:08 425 /mnt/shared/android-studio/jre/jre/lib/amd64/libnio.so
7f6469f90000-7f646a291000 rw-p 00000000 00:00 0
7f646a291000-7f646a2a8000 r-xp 00000000 08:08 423 /mnt/shared/android-studio/jre/jre/lib/amd64/libnet.so
7f646a2a8000-7f646a4a7000 ---p 00017000 08:08 423 /mnt/shared/android-studio/jre/jre/lib/amd64/libnet.so
7f646a4a7000-7f646a4a8000 r--p 00016000 08:08 423 /mnt/shared/android-studio/jre/jre/lib/amd64/libnet.so
7f646a4a8000-7f646a4a9000 rw-p 00017000 08:08 423 /mnt/shared/android-studio/jre/jre/lib/amd64/libnet.so
7f646a4a9000-7f646a4aa000 r--s 00006000 08:06 2494966 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-wrapper-3.3.jar
7f646a4aa000-7f646a4b7000 r--s 00041000 08:06 2494973 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-tooling-api-3.3.jar
7f646a4b7000-7f646a4b9000 r--s 00002000 08:06 2494993 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-open-api-3.3.jar
7f646a4b9000-7f646a4bf000 r--s 00032000 08:06 2494995 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/jaxen-1.1.jar
7f646a4bf000-7f646a4c4000 r--s 00048000 08:06 2494994 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/dom4j-1.6.1.jar
7f646a4c4000-7f646a4cf000 r--s 00059000 08:06 2494972 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-ui-3.3.jar
7f646a4cf000-7f646a4d8000 r--s 0008c000 08:06 2494964 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/kotlin-stdlib-1.1-M02.jar
7f646a4d8000-7f646a50c000 r--s 00256000 08:06 2494962 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/kotlin-reflect-1.1-M02.jar
7f646a50c000-7f646a6a2000 r--s 0157e000 08:06 2494961 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/kotlin-compiler-embeddable-1.1-M02.jar
7f646a6a2000-7f646a712000 r--s 00641000 08:06 2494980 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/groovy-all-2.4.7.jar
7f646a712000-7f646a713000 ---p 00000000 00:00 0
7f646a713000-7f646a813000 rw-p 00000000 00:00 0
7f646a813000-7f646a816000 ---p 00000000 00:00 0
7f646a816000-7f646a914000 rw-p 00000000 00:00 0
7f646a914000-7f646a917000 ---p 00000000 00:00 0
7f646a917000-7f646aa15000 rw-p 00000000 00:00 0
7f646aa15000-7f646aa18000 ---p 00000000 00:00 0
7f646aa18000-7f646ab16000 rw-p 00000000 00:00 0
7f646ab16000-7f646ab19000 ---p 00000000 00:00 0
7f646ab19000-7f646ac17000 rw-p 00000000 00:00 0
7f646ac17000-7f646ac1a000 ---p 00000000 00:00 0
7f646ac1a000-7f646ad18000 rw-p 00000000 00:00 0
7f646ad18000-7f646ad1b000 ---p 00000000 00:00 0
7f646ad1b000-7f646ae19000 rw-p 00000000 00:00 0
7f646ae19000-7f646b0f1000 r--p 00000000 08:05 1615299 /usr/lib/locale/locale-archive
7f646b0f1000-7f646b0f4000 ---p 00000000 00:00 0
7f646b0f4000-7f646b1f2000 rw-p 00000000 00:00 0
7f646b1f2000-7f646b1f5000 ---p 00000000 00:00 0
7f646b1f5000-7f646b2f3000 rw-p 00000000 00:00 0
7f646b2f3000-7f646b2f4000 ---p 00000000 00:00 0
7f646b2f4000-7f646c000000 rw-p 00000000 00:00 0
7f646c000000-7f646c021000 rw-p 00000000 00:00 0
7f646c021000-7f6470000000 ---p 00000000 00:00 0
7f6470000000-7f6470024000 rw-p 00000000 00:00 0
7f6470024000-7f6474000000 ---p 00000000 00:00 0
7f6474000000-7f6474021000 rw-p 00000000 00:00 0
7f6474021000-7f6478000000 ---p 00000000 00:00 0
7f6478000000-7f6478006000 r--s 0002a000 08:06 2494963 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/kotlin-runtime-1.1-M02.jar
7f6478006000-7f647800e000 r--s 0004e000 08:06 2494960 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-script-kotlin-0.5.1.jar
7f647800e000-7f6478011000 r--s 0000b000 08:06 2494991 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-resources-3.3.jar
7f6478011000-7f6478013000 r--s 00003000 08:06 2495000 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/jcl-over-slf4j-1.7.10.jar
7f6478013000-7f6478014000 r--s 00005000 08:06 2494999 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/log4j-over-slf4j-1.7.10.jar
7f6478014000-7f6478016000 r--s 00000000 08:06 2494998 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/jul-to-slf4j-1.7.10.jar
7f6478016000-7f647801b000 r--s 0001e000 08:06 2494975 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-logging-3.3.jar
7f647801b000-7f647801d000 r--s 00007000 08:06 2495019 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/objenesis-1.2.jar
7f647801d000-7f647801f000 r--s 00000000 08:06 2495018 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/minlog-1.2.jar
7f647801f000-7f6478021000 r--s 0000f000 08:06 2495017 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/reflectasm-1.07-shaded.jar
7f6478021000-7f6478025000 r--s 00026000 08:06 2495002 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/kryo-2.20.jar
7f6478025000-7f647802b000 r--s 00027000 08:06 2494990 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-messaging-3.3.jar
7f647802b000-7f647802c000 r--s 00001000 08:06 2495016 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-i386-ncurses6-0.12.jar
7f647802c000-7f647802d000 r--s 00001000 08:06 2495015 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-i386-ncurses5-0.12.jar
7f647802d000-7f647802e000 r--s 00001000 08:06 2495014 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-amd64-ncurses6-0.12.jar
7f647802e000-7f647802f000 r--s 00001000 08:06 2495013 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-amd64-ncurses5-0.12.jar
7f647802f000-7f6478030000 r--s 0000b000 08:06 2495012 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-windows-i386-0.12.jar
7f6478030000-7f6478032000 r--s 0000b000 08:06 2495011 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-windows-amd64-0.12.jar
7f6478032000-7f6478034000 r--s 00002000 08:06 2495010 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-osx-i386-0.12.jar
7f6478034000-7f6478035000 r--s 00002000 08:06 2495009 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-osx-amd64-0.12.jar
7f6478035000-7f6478036000 r--s 00002000 08:06 2495008 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-i386-0.12.jar
7f6478036000-7f6478037000 r--s 00002000 08:06 2495007 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-linux-amd64-0.12.jar
7f6478037000-7f6478038000 r--s 00003000 08:06 2495006 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-freebsd-i386-libstdcpp-0.12.jar
7f6478038000-7f647803a000 r--s 00003000 08:06 2495004 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-freebsd-amd64-libstdcpp-0.12.jar
7f647803a000-7f647803d000 r--s 00023000 08:06 2494997 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/jansi-1.14.jar
7f647803d000-7f647804c000 r--s 0007f000 08:06 2494981 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-model-core-3.3.jar
7f647804c000-7f6478074000 r--s 001cf000 08:06 2494977 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/guava-jdk5-17.0.jar
7f6478074000-7f6478093000 r--s 001d1000 08:06 2494984 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/ant-1.9.6.jar
7f6478093000-7f64780d0000 r--s 001f8000 08:06 2494970 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-core-3.3.jar
7f64780d0000-7f647c000000 rw-p 00000000 00:00 0
7f647c000000-7f647c021000 rw-p 00000000 00:00 0
7f647c021000-7f6480000000 ---p 00000000 00:00 0
7f6480000000-7f6480289000 rw-p 00000000 00:00 0
7f6480289000-7f6484000000 ---p 00000000 00:00 0
7f6484000000-7f6484022000 rw-p 00000000 00:00 0
7f6484022000-7f6488000000 ---p 00000000 00:00 0
7f6488000000-7f6488028000 rw-p 00000000 00:00 0
7f6488028000-7f648c000000 ---p 00000000 00:00 0
7f648c000000-7f648c021000 rw-p 00000000 00:00 0
7f648c021000-7f6490000000 ---p 00000000 00:00 0
7f6490000000-7f6490001000 r--s 00004000 08:06 2495005 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-freebsd-i386-libcpp-0.12.jar
7f6490001000-7f6490005000 r--s 00011000 08:06 2494996 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-0.12.jar
7f6490005000-7f6490008000 r--s 0000a000 08:06 2494974 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-native-3.3.jar
7f6490008000-7f649000a000 r--s 00005000 08:06 2494971 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-cli-3.3.jar
7f649000a000-7f649000c000 r--s 00007000 08:06 2494982 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-model-groovy-3.3.jar
7f649000c000-7f649000e000 r--s 00006000 08:06 2494989 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-base-services-groovy-3.3.jar
7f649000e000-7f649001b000 r--s 00083000 08:06 2494985 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/commons-collections-3.2.2.jar
7f649001b000-7f649012f000 rw-p 00000000 00:00 0
7f649012f000-7f64902fe000 r--s 03c1b000 08:08 393 /mnt/shared/android-studio/jre/jre/lib/rt.jar
7f64902fe000-7f6490dfe000 rw-p 00000000 00:00 0
7f6490dfe000-7f6490dff000 ---p 00000000 00:00 0
7f6490dff000-7f6490eff000 rw-p 00000000 00:00 0
7f6490eff000-7f6490f00000 ---p 00000000 00:00 0
7f6490f00000-7f6491000000 rw-p 00000000 00:00 0
7f6491000000-7f6497560000 rwxp 00000000 00:00 0
7f6497560000-7f64a0000000 ---p 00000000 00:00 0
7f64a0000000-7f64a0dc0000 rw-p 00000000 00:00 0
7f64a0dc0000-7f64a4000000 ---p 00000000 00:00 0
7f64a4000000-7f64a4001000 r--s 00004000 08:06 2495003 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/native-platform-freebsd-amd64-libcpp-0.12.jar
7f64a4001000-7f64a4002000 r--s 00002000 08:06 2494992 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-docs-3.3.jar
7f64a4002000-7f64a4099000 rw-p 00000000 00:00 0
7f64a4099000-7f64a409a000 ---p 00000000 00:00 0
7f64a409a000-7f64a419a000 rw-p 00000000 00:00 0
7f64a419a000-7f64a419b000 ---p 00000000 00:00 0
7f64a419b000-7f64a429b000 rw-p 00000000 00:00 0
7f64a429b000-7f64a429c000 ---p 00000000 00:00 0
7f64a429c000-7f64a439c000 rw-p 00000000 00:00 0
7f64a439c000-7f64a439d000 ---p 00000000 00:00 0
7f64a439d000-7f64a449d000 rw-p 00000000 00:00 0
7f64a449d000-7f64a449e000 ---p 00000000 00:00 0
7f64a449e000-7f64a459e000 rw-p 00000000 00:00 0
7f64a459e000-7f64a459f000 ---p 00000000 00:00 0
7f64a459f000-7f64a4742000 rw-p 00000000 00:00 0
7f64a4742000-7f64a489f000 ---p 00000000 00:00 0
7f64a489f000-7f64a4942000 rw-p 00000000 00:00 0
7f64a4942000-7f64a4a9f000 ---p 00000000 00:00 0
7f64a4a9f000-7f64a4b9f000 rw-p 00000000 00:00 0
7f64a4b9f000-7f64a4d36000 rw-p 00000000 00:00 0
7f64a4d36000-7f64a4f60000 ---p 00000000 00:00 0
7f64a4f60000-7f64a4f7a000 r-xp 00000000 08:08 420 /mnt/shared/android-studio/jre/jre/lib/amd64/libzip.so
7f64a4f7a000-7f64a517a000 ---p 0001a000 08:08 420 /mnt/shared/android-studio/jre/jre/lib/amd64/libzip.so
7f64a517a000-7f64a517b000 r--p 0001a000 08:08 420 /mnt/shared/android-studio/jre/jre/lib/amd64/libzip.so
7f64a517b000-7f64a517c000 rw-p 0001b000 08:08 420 /mnt/shared/android-studio/jre/jre/lib/amd64/libzip.so
7f64a517c000-7f64a5187000 r-xp 00000000 08:05 1709149 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f64a5187000-7f64a5386000 ---p 0000b000 08:05 1709149 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f64a5386000-7f64a5387000 r--p 0000a000 08:05 1709149 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f64a5387000-7f64a5388000 rw-p 0000b000 08:05 1709149 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f64a5388000-7f64a538e000 rw-p 00000000 00:00 0
7f64a538e000-7f64a5399000 r-xp 00000000 08:05 1709176 /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f64a5399000-7f64a5598000 ---p 0000b000 08:05 1709176 /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f64a5598000-7f64a5599000 r--p 0000a000 08:05 1709176 /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f64a5599000-7f64a559a000 rw-p 0000b000 08:05 1709176 /lib/x86_64-linux-gnu/libnss_nis-2.23.so
7f64a559a000-7f64a55b0000 r-xp 00000000 08:05 1709143 /lib/x86_64-linux-gnu/libnsl-2.23.so
7f64a55b0000-7f64a57af000 ---p 00016000 08:05 1709143 /lib/x86_64-linux-gnu/libnsl-2.23.so
7f64a57af000-7f64a57b0000 r--p 00015000 08:05 1709143 /lib/x86_64-linux-gnu/libnsl-2.23.so
7f64a57b0000-7f64a57b1000 rw-p 00016000 08:05 1709143 /lib/x86_64-linux-gnu/libnsl-2.23.so
7f64a57b1000-7f64a57b3000 rw-p 00000000 00:00 0
7f64a57b3000-7f64a57bb000 r-xp 00000000 08:05 1709247 /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f64a57bb000-7f64a59ba000 ---p 00008000 08:05 1709247 /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f64a59ba000-7f64a59bb000 r--p 00007000 08:05 1709247 /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f64a59bb000-7f64a59bc000 rw-p 00008000 08:05 1709247 /lib/x86_64-linux-gnu/libnss_compat-2.23.so
7f64a59bc000-7f64a59e9000 r-xp 00000000 08:08 430 /mnt/shared/android-studio/jre/jre/lib/amd64/libjava.so
7f64a59e9000-7f64a5be8000 ---p 0002d000 08:08 430 /mnt/shared/android-studio/jre/jre/lib/amd64/libjava.so
7f64a5be8000-7f64a5be9000 r--p 0002c000 08:08 430 /mnt/shared/android-studio/jre/jre/lib/amd64/libjava.so
7f64a5be9000-7f64a5beb000 rw-p 0002d000 08:08 430 /mnt/shared/android-studio/jre/jre/lib/amd64/libjava.so
7f64a5beb000-7f64a5bfb000 r-xp 00000000 08:08 446 /mnt/shared/android-studio/jre/jre/lib/amd64/libverify.so
7f64a5bfb000-7f64a5dfa000 ---p 00010000 08:08 446 /mnt/shared/android-studio/jre/jre/lib/amd64/libverify.so
7f64a5dfa000-7f64a5dfc000 r--p 0000f000 08:08 446 /mnt/shared/android-studio/jre/jre/lib/amd64/libverify.so
7f64a5dfc000-7f64a5dfd000 rw-p 00011000 08:08 446 /mnt/shared/android-studio/jre/jre/lib/amd64/libverify.so
7f64a5dfd000-7f64a5e04000 r-xp 00000000 08:05 1709194 /lib/x86_64-linux-gnu/librt-2.23.so
7f64a5e04000-7f64a6003000 ---p 00007000 08:05 1709194 /lib/x86_64-linux-gnu/librt-2.23.so
7f64a6003000-7f64a6004000 r--p 00006000 08:05 1709194 /lib/x86_64-linux-gnu/librt-2.23.so
7f64a6004000-7f64a6005000 rw-p 00007000 08:05 1709194 /lib/x86_64-linux-gnu/librt-2.23.so
7f64a6005000-7f64a610d000 r-xp 00000000 08:05 1709270 /lib/x86_64-linux-gnu/libm-2.23.so
7f64a610d000-7f64a630c000 ---p 00108000 08:05 1709270 /lib/x86_64-linux-gnu/libm-2.23.so
7f64a630c000-7f64a630d000 r--p 00107000 08:05 1709270 /lib/x86_64-linux-gnu/libm-2.23.so
7f64a630d000-7f64a630e000 rw-p 00108000 08:05 1709270 /lib/x86_64-linux-gnu/libm-2.23.so
7f64a630e000-7f64a6eff000 r-xp 00000000 08:08 450 /mnt/shared/android-studio/jre/jre/lib/amd64/server/libjvm.so
7f64a6eff000-7f64a70ff000 ---p 00bf1000 08:08 450 /mnt/shared/android-studio/jre/jre/lib/amd64/server/libjvm.so
7f64a70ff000-7f64a719e000 r--p 00bf1000 08:08 450 /mnt/shared/android-studio/jre/jre/lib/amd64/server/libjvm.so
7f64a719e000-7f64a71c7000 rw-p 00c90000 08:08 450 /mnt/shared/android-studio/jre/jre/lib/amd64/server/libjvm.so
7f64a71c7000-7f64a720b000 rw-p 00000000 00:00 0
7f64a720b000-7f64a7223000 r-xp 00000000 08:05 1709175 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f64a7223000-7f64a7422000 ---p 00018000 08:05 1709175 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f64a7422000-7f64a7423000 r--p 00017000 08:05 1709175 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f64a7423000-7f64a7424000 rw-p 00018000 08:05 1709175 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f64a7424000-7f64a7428000 rw-p 00000000 00:00 0
7f64a7428000-7f64a742b000 r-xp 00000000 08:05 1709246 /lib/x86_64-linux-gnu/libdl-2.23.so
7f64a742b000-7f64a762a000 ---p 00003000 08:05 1709246 /lib/x86_64-linux-gnu/libdl-2.23.so
7f64a762a000-7f64a762b000 r--p 00002000 08:05 1709246 /lib/x86_64-linux-gnu/libdl-2.23.so
7f64a762b000-7f64a762c000 rw-p 00003000 08:05 1709246 /lib/x86_64-linux-gnu/libdl-2.23.so
7f64a762c000-7f64a77ec000 r-xp 00000000 08:05 1709296 /lib/x86_64-linux-gnu/libc-2.23.so
7f64a77ec000-7f64a79ec000 ---p 001c0000 08:05 1709296 /lib/x86_64-linux-gnu/libc-2.23.so
7f64a79ec000-7f64a79f0000 r--p 001c0000 08:05 1709296 /lib/x86_64-linux-gnu/libc-2.23.so
7f64a79f0000-7f64a79f2000 rw-p 001c4000 08:05 1709296 /lib/x86_64-linux-gnu/libc-2.23.so
7f64a79f2000-7f64a79f6000 rw-p 00000000 00:00 0
7f64a79f6000-7f64a7a0c000 r-xp 00000000 08:08 310 /mnt/shared/android-studio/jre/lib/amd64/jli/libjli.so
7f64a7a0c000-7f64a7c0b000 ---p 00016000 08:08 310 /mnt/shared/android-studio/jre/lib/amd64/jli/libjli.so
7f64a7c0b000-7f64a7c0c000 r--p 00015000 08:08 310 /mnt/shared/android-studio/jre/lib/amd64/jli/libjli.so
7f64a7c0c000-7f64a7c0d000 rw-p 00016000 08:08 310 /mnt/shared/android-studio/jre/lib/amd64/jli/libjli.so
7f64a7c0d000-7f64a7c33000 r-xp 00000000 08:05 1709144 /lib/x86_64-linux-gnu/ld-2.23.so
7f64a7c33000-7f64a7c34000 r--s 00000000 08:06 2494988 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/javax.inject-1.jar
7f64a7c34000-7f64a7c35000 r--s 00000000 08:06 2494987 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/jcip-annotations-1.0.jar
7f64a7c35000-7f64a7c39000 r--s 00027000 08:06 2494986 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/commons-io-2.2.jar
7f64a7c39000-7f64a7c3e000 r--s 00038000 08:06 2494983 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/asm-all-5.1.jar
7f64a7c3e000-7f64a7c3f000 r--s 00001000 08:06 2494979 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-process-services-3.3.jar
7f64a7c3f000-7f64a7c41000 r--s 00000000 08:06 2494969 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-jvm-services-3.3.jar
7f64a7c41000-7f64a7c42000 r--s 00000000 08:06 2495134 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-version-info-3.3.jar
7f64a7c42000-7f64a7c47000 r--s 00041000 08:06 2494978 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/commons-lang-2.6.jar
7f64a7c47000-7f64a7d09000 rw-p 00000000 00:00 0
7f64a7d09000-7f64a7d0c000 ---p 00000000 00:00 0
7f64a7d0c000-7f64a7e0e000 rw-p 00000000 00:00 0
7f64a7e0e000-7f64a7e0f000 r--s 00007000 08:06 2494976 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/slf4j-api-1.7.10.jar
7f64a7e0f000-7f64a7e10000 r--s 00004000 08:06 2495001 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/ant-launcher-1.9.6.jar
7f64a7e10000-7f64a7e19000 r--s 00042000 08:06 2494968 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-base-services-3.3.jar
7f64a7e19000-7f64a7e26000 r--s 0005c000 08:06 2494965 /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-launcher-3.3.jar
7f64a7e26000-7f64a7e2e000 rw-s 00000000 08:05 2519613 /tmp/hsperfdata_sonu/3844
7f64a7e2e000-7f64a7e2f000 rw-p 00000000 00:00 0
7f64a7e2f000-7f64a7e30000 ---p 00000000 00:00 0
7f64a7e30000-7f64a7e32000 rw-p 00000000 00:00 0
7f64a7e32000-7f64a7e33000 r--p 00025000 08:05 1709144 /lib/x86_64-linux-gnu/ld-2.23.so
7f64a7e33000-7f64a7e34000 rw-p 00026000 08:05 1709144 /lib/x86_64-linux-gnu/ld-2.23.so
7f64a7e34000-7f64a7e35000 rw-p 00000000 00:00 0
7ffc22b3f000-7ffc22b60000 rw-p 00000000 00:00 0 [stack]
7ffc22bae000-7ffc22bb0000 r--p 00000000 00:00 0 [vvar]
7ffc22bb0000-7ffc22bb2000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]
VM Arguments:
jvm_args: -Xmx1536m -Dfile.encoding=UTF-8 -Duser.country=IN -Duser.language=en -Duser.variant
java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 3.3
java_class_path (initial): /home/sonu/.gradle/wrapper/dists/gradle-3.3-all/55gk2rcmfc6p2dg9u9ohc3hw9/gradle-3.3/lib/gradle-launcher-3.3.jar
Launcher Type: SUN_STANDARD
Environment Variables:
JAVA_HOME=/usr/lib/jvm/java-8-oracle
PATH=/home/sonu/bin:/home/sonu/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/usr/lib/jvm/java-8-oracle/bin:/usr/lib/jvm/java-8-oracle/db/bin:/usr/lib/jvm/java-8-oracle/jre/bin
LD_LIBRARY_PATH=/mnt/shared/android-studio/bin:
SHELL=/usr/bin/fish
DISPLAY=:0
Signal Handlers:
SIGSEGV: [libjvm.so+0x9e5150], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0x9e5150], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO