-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_files.txt
6352 lines (6352 loc) · 321 KB
/
all_files.txt
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
209759033 product/priv-app/Velvet/Velvet.apk
114652026 system/system/apex/com.android.vndk.current.apex
107497308 system/system/priv-app/LiveStickers/LiveStickers.apk
97717830 system/system/priv-app/OneDrive_Samsung_v3/OneDrive_Samsung_v3.apk
92574760 product/priv-app/GmsCore/GmsCore.apk
86460301 system/system/app/HoneyBoard/HoneyBoard.apk
84753844 product/app/Maps/Maps.apk
84099393 system/system/apex/com.android.art.release.apex
83678840 system/system/priv-app/SamsungCoreServices/SamsungCoreServices.apk
83592879 system/system/priv-app/AREmoji/AREmoji.apk
83474334 system/system/priv-app/SecSettings/SecSettings.apk
79843640 system/system/priv-app/YourPhone_P1_5/YourPhone_P1_5.apk
78428782 product/app/WebViewGoogle/WebViewGoogle.apk
74319356 product/app/YouTube/YouTube.apk
71106560 recovery.img
63831698 system/system/priv-app/Bixby/Bixby.apk
62588493 product/app/TrichromeLibrary/TrichromeLibrary.apk
62172255 product/app/Gmail2/Gmail2.apk
61865984 boot.img
61682646 system/system/framework/framework-res.apk
56172267 system/system/priv-app/DualOutFocusViewer_R/DualOutFocusViewer_R.apk
56046920 system/system/framework/oat/arm64/services.odex
53183886 system/system/priv-app/SamsungMessages_12/SamsungMessages_12.apk
51058305 system/system/system_ext/priv-app/SystemUI/SystemUI.apk
44704009 system/system/app/ARDrawing/ARDrawing.apk
44624005 system/system/priv-app/wallpaper-res/wallpaper-res.apk
44233723 system/system/priv-app/SamsungCamera/SamsungCamera.apk
43033900 system/system/priv-app/GalaxyApps_OPEN/GalaxyApps_OPEN.apk
40486828 system/system/framework/framework.jar
39954022 system/system/priv-app/GameHome/GameHome.apk
39759476 system/system/app/VisionIntelligence3.7/VisionIntelligence3.7.apk
39230784 system/system/priv-app/Upday/Upday.apk
39143784 vendor/lib64/egl/libGLES_mali.so
38939607 system/system/priv-app/SamsungCloudClient/SamsungCloudClient.apk
38379010 product/priv-app/Phonesky/Phonesky.apk
37699114 system/system/priv-app/SamsungPass/SamsungPass.apk
37676219 system/system/priv-app/Routines/Routines.apk
36242055 system/system/app/Cameralyzer/Cameralyzer.apk
35519417 bootRE/boot.elf
35479045 system/system/priv-app/SamsungExperienceService/SamsungExperienceService.apk
35461177 system/system/app/LiveTranscribe/LiveTranscribe.apk
35285509 system/system/priv-app/StickerFaceARAvatar/StickerFaceARAvatar.apk
34969411 system/system/app/BixbyWakeup/BixbyWakeup.apk
34770831 product/app/GoogleTTS/GoogleTTS.apk
33722742 system/system/priv-app/PhotoEditor_Mid/PhotoEditor_Mid.apk
33223394 system/system/priv-app/TalkbackSE/TalkbackSE.apk
31694904 vendor/lib64/libsnap_compute.so
31549504 bootimg/00_kernel
31431629 system/system/app/ClockPackage/ClockPackage.apk
31050278 system/system/priv-app/TelephonyUI/TelephonyUI.apk
31022212 system/system/app/SamsungCalendar/SamsungCalendar.apk
30765068 recovery/kernel
30765068 boot/kernel
30316480 bootimg/01_dtbdump_samsung,armv8.dtb
29518376 system/system/app/ARZone/ARZone.apk
28888944 system/system/lib64/libFacialAttributeDetection.arcsoft.so
28826654 vendor/etc/singletake/aifilter/filter.polarr.db
28785568 system/system/lib/libFacialAttributeDetection.arcsoft.so
28235176 vendor/lib/egl/libGLES_mali.so
28201000 system/system/priv-app/Crane/Crane.apk
28048942 system/system/priv-app/BixbyVisionFramework3.5/BixbyVisionFramework3.5.apk
27879928 system/system/priv-app/SamsungGallery2018/SamsungGallery2018.apk
27820935 system/system/priv-app/SamsungAccount/SamsungAccount.apk
27712799 system/system/priv-app/SamsungContacts/SamsungContacts.apk
27611143 system/system/framework/services.jar
27067591 system/system/app/Weather_SEP12.0/Weather_SEP12.0.apk
26939864 system/system/priv-app/BixbyService/BixbyService.apk
25992249 system/system/priv-app/SamsungInCallUI/SamsungInCallUI.apk
25920030 vendor/saiv/image_understanding/db/slens_classifier/slens_classifier_cnn.raw
25410356 system/system/apex/com.android.i18n.apex
24867449 system/system/priv-app/SamsungBilling/SamsungBilling.apk
24776440 system/system/fonts/NotoSerifCJK-Regular.ttc
24481658 system/system/priv-app/AODService_v60/AODService_v60.apk
24270607 vendor/etc/saiv/image_understanding/db/aic_classifier/aic_classifier_cnn.raw
24047521 product/priv-app/DevicePersonalizationServices/DevicePersonalizationServices.apk
23812827 system/system/priv-app/Accessibility/Accessibility.apk
23588084 system/system/priv-app/SamsungDialer/SamsungDialer.apk
23502686 product/app/Chrome/Chrome.apk
22468043 system/system/priv-app/AutoDoodle/AutoDoodle.apk
21761510 system/system/priv-app/SingleTakeService/SingleTakeService.apk
21651216 system/system/priv-app/SmartThingsKit/SmartThingsKit.apk
20769040 system/system/priv-app/DynamicLockscreen/DynamicLockscreen.apk
20666239 system/system/app/HoneyMigrator/HoneyMigrator.apk
20398870 system/system/app/SmartReminder/SmartReminder.apk
20332200 system/system/fonts/NotoSansCJK-Regular.ttc
20213177 system/system/priv-app/TouchWizHome_2017/TouchWizHome_2017.apk
19874098 system/system/apex/com.google.android.media.swcodec.apex
19708850 system/system/priv-app/SecMyFiles2020/SecMyFiles2020.apk
19640392 system/system/saiv/best_composition_db/SmartCrop.polarr.db
19291557 system/system/hidden/SmartTutor/SmartTutor.apk
19082758 vendor/saiv/image_understanding/db/aig_classifier/aig_classifier_cnn.tf
19039709 system/system/app/StickerCenter/StickerCenter.apk
19025008 system/system/lib64/libLLVM_android.so
18252025 system/system/priv-app/MateAgent/MateAgent.apk
17398881 system/system/priv-app/SecureFolder/SecureFolder.apk
17235384 system/system/lib64/libface_landmark.arcsoft.so
17164536 system/system/lib/libface_landmark.arcsoft.so
17041640 system/system/lib64/libFacialStickerEngine.arcsoft.so
17008656 system/system/app/SmartCapture/SmartCapture.apk
16826156 system/system/fonts/SamsungColorEmoji.ttf
16782894 system/system/app/MinusOnePage/MinusOnePage.apk
16593384 system/system/fonts/SECCJK-Regular.ttc
16277924 system/system/priv-app/ContainerAgent3/ContainerAgent3.apk
16215637 system/system/priv-app/Fmm/Fmm.apk
16132349 system/system/priv-app/IGNITE/IGNITE.apk
16114970 system/system/app/VideoEditorLite_Dream_N/VideoEditorLite_Dream_N.apk
16097547 vendor/saiv/image_understanding/db/srr_interaction/srr_interaction_cnn.tf
15827002 system/system/app/IceCone/IceCone.apk
15741881 vendor/etc/singletake/bestmoment/scoreV2.polarr.db
15697956 system/system/priv-app/RubinVersion28/RubinVersion28.apk
14643574 system/system/app/SamsungTTS/SamsungTTS.apk
14621668 system/system/saiv/best_composition_db/ObjDet.polarr.db
14173011 system/system/priv-app/ThemeStore/ThemeStore.apk
14042328 vendor/lib64/libbeautyshot.arcsoft.so
13918856 vendor/lib/libbeautyshot.arcsoft.so
13739716 system/system/priv-app/Telecom/Telecom.apk
13683843 system/system/recovery-from-boot.p
13585469 vendor/saiv/image_understanding/db/slens_detector/slens_detector_cnn.raw
13565559 recovery/ramdisk.packed
13535855 system/system/priv-app/Fast/Fast.apk
13468616 system/system/priv-app/SVoiceIME/SVoiceIME.apk
13365404 system/system/priv-app/GameTools_Dream/GameTools_Dream.apk
13317936 system/system/app/MdecService/MdecService.apk
13150352 system/system/framework/arm64/boot-framework.oat
13121896 system/system/lib/libMultiFrameProcessing10.camera.samsung.so
13119904 system/system/lib64/libbeautyshot.arcsoft.so
13102904 system/system/lib64/libMultiFrameProcessing10.camera.samsung.so
13047936 system/system/lib/libbeautyshot.arcsoft.so
13024009 system/system/app/Privacy/Privacy.apk
13022368 product/usr/srec/en-US/pumpkin.mmap
12785354 system/system/priv-app/BiometricSetting/BiometricSetting.apk
12159418 system/system/priv-app/SecAppSeparation/SecAppSeparation.apk
12019336 system/system/priv-app/PeopleStripe/PeopleStripe.apk
11978584 vendor/lib64/libdualcam_refocus_image.so
11886134 system/system/app/HiyaService/HiyaService.apk
11786376 system/system/app/LinkSharing_v11/LinkSharing_v11.apk
11437119 system/system/priv-app/ManagedProvisioning/ManagedProvisioning.apk
11404453 system/system/priv-app/SmartManager_v5/SmartManager_v5.apk
11299778 product/priv-app/GmsCore/m/independent/AndroidPlatformServices.apk
11247188 vendor/lib/libdualcam_refocus_image.so
11209489 system/system/priv-app/Quickboard/Quickboard.apk
11178374 system/system/priv-app/SamsungVideoPlayer/SamsungVideoPlayer.apk
11022292 system/system/priv-app/AURA/AURA.apk
10975232 vendor/lib64/libOpenCv.camera.samsung.so
10975232 system/system/lib64/libOpenCv.camera.samsung.so
10904609 system/system/app/DictDiotekForSec/DictDiotekForSec.apk
10902996 system/system/framework/arm/boot-framework.oat
10825454 system/system/priv-app/Finder/Finder.apk
10477749 product/priv-app/Turbo/Turbo.apk
10423468 system/system/priv-app/DigitalWellbeing/DigitalWellbeing.apk
10401568 system/system/lib64/libveengine.arcsoft.so
10382191 system/system/app/SmartMirroring/SmartMirroring.apk
10333927 system/system/priv-app/Tips/Tips.apk
10224940 system/system/lib/libveengine.arcsoft.so
10142888 system/system/app/DAAgent/DAAgent.apk
10124889 system/system/priv-app/imsservice/imsservice.apk
10080415 system/system/priv-app/EasySetup/EasySetup.apk
10062017 system/system/app/WifiGuider/WifiGuider.apk
10061496 system/system/fonts/NotoColorEmoji.ttf
9762880 system/system/lib64/libhwui.so
9637532 vendor/etc/snap_gpu_kernel_64.bin
9634547 system/system/priv-app/AuthFramework/AuthFramework.apk
9510775 system/system/priv-app/GameOptimizingService/GameOptimizingService.apk
9432601 system/system/app/RcsSettings/RcsSettings.apk
9325995 system/system/priv-app/OMCAgent5/OMCAgent5.apk
9144319 system/system/priv-app/ShareLive/ShareLive.apk
9057756 system/system/priv-app/NetworkDiagnostic/NetworkDiagnostic.apk
8949167 system/system/apex/com.google.android.permission.apex
8871928 system/system/priv-app/CocktailBarService_v3.2/CocktailBarService_v3.2.apk
8855998 system/system/priv-app/Hearingdro_R/Hearingdro_R.apk
8842186 system/system/app/MdxKitService/MdxKitService.apk
8829024 system/system/priv-app/Telecom/oat/arm64/Telecom.odex
8750637 system/system/app/BGMProvider/BGMProvider.apk
8732630 system/system/priv-app/FotaAgent/FotaAgent.apk
8718502 system/system/app/Traceur/Traceur.apk
8700795 system/system/system_ext/priv-app/EmergencyInfo/EmergencyInfo.apk
8517896 system/system/lib64/libsec-ims.so
8388608 dtbo.img
8341053 system/system/tts/lang_SMT/smt_ru_RU_f00.am
8328294 system/system/app/MotionPhotoViewer/MotionPhotoViewer.apk
8245141 vendor/tee/00000000-0000-0000-0000-5345435f4652
8239778 system/system/app/SoundPicker_R/SoundPicker_R.apk
8218169 system/system/priv-app/IpsGeofence/IpsGeofence.apk
8205559 system/system/system_ext/priv-app/StorageManager/StorageManager.apk
8089902 system/system/apex/com.google.android.adbd.apex
8034536 dtbo/04_dtbdump_samsung,_A51_EUR_OPEN_REV02.dtb
8017348 system/system/lib/libhwui.so
8006692 vendor/lib/libOpenCv.camera.samsung.so
8006692 system/system/lib/libOpenCv.camera.samsung.so
7753728 system/system/framework/arm64/boot-framework.art
7743360 system/system/lib64/libSmartScan.camera.samsung.so
7686084 system/system/app/StoryEditor_Dream_N/StoryEditor_Dream_N.apk
7503872 system/system/framework/arm/boot-framework.art
7385758 system/system/app/FactoryCameraFB/FactoryCameraFB.apk
7368231 system/system/app/AllShareAware/AllShareAware.apk
7362373 system/system/priv-app/DeviceKeystring/DeviceKeystring.apk
7355395 system/system/priv-app/DeviceTest/DeviceTest.apk
7275748 system/system/cameradata/SRIB_HumanInsSeg_FP16_V101.snf
7203022 system/system/priv-app/SmartManager_v6_DeviceSecurity/SmartManager_v6_DeviceSecurity.apk
7195697 system/system/app/EmergencyModeService/EmergencyModeService.apk
7138732 system/system/apex/com.google.android.cellbroadcast.apex
7096139 system/system/tts/lang_SMT/smt_en_GB_f00.am
7077311 system/system/priv-app/AppsEdgePanel_v3.2/AppsEdgePanel_v3.2.apk
6939344 system/system/lib64/libbluetooth.so
6887560 system/system/app/AllshareFileShare/AllshareFileShare.apk
6857467 system/system/tts/lang_SMT/smt_en_US_f00.am
6838397 system/system/app/UniversalMDMClient/UniversalMDMClient.apk
6764132 system/system/cameradata/myfilter/MyFilterModel.tflite
6717263 system/system/tts/lang_SMT/smt_es_MX_f00.am
6641249 system/system/priv-app/TeleService/TeleService.apk
6617338 system/system/tts/lang_SMT/smt_it_IT_f00.am
6603853 system/system/system_ext/priv-app/SetupWizard/SetupWizard.apk
6531899 system/system/app/UnifiedWFC/UnifiedWFC.apk
6517430 system/system/priv-app/SecSetupWizard_Global/SecSetupWizard_Global.apk
6469109 system/system/system_ext/priv-app/GoogleServicesFramework/GoogleServicesFramework.apk
6448202 system/system/priv-app/SamsungContactsProvider/SamsungContactsProvider.apk
6388403 system/system/priv-app/ImsLogger/ImsLogger.apk
6258270 system/system/tts/lang_SMT/smt_ru_RU.lng
6163890 system/system/app/ClipboardEdge/ClipboardEdge.apk
6148682 system/system/priv-app/SmartCallProvider/SmartCallProvider.apk
6125504 system/system/lib64/libFace_Landmark_Engine.camera.samsung.so
6004786 system/system/priv-app/SamsungSmartSuggestions/SamsungSmartSuggestions.apk
5954301 system/system/priv-app/UltraDataSaving_O/UltraDataSaving_O.apk
5934080 system/system/saiv/face/ed/model_3_parts_front_38pt.dat
5918762 system/system/app/AllshareMediaShare/AllshareMediaShare.apk
5915841 system/system/apex/com.android.runtime.apex
5887832 system/system/lib64/libPortraitDistortionCorrection.arcsoft.so
5850965 product/priv-app/ConfigUpdater/ConfigUpdater.apk
5838889 system/system/priv-app/HybridRadio/HybridRadio.apk
5825645 system/system/tts/lang_SMT/smt_fr_FR.lng
5806687 system/system/app/MDMApp/MDMApp.apk
5760476 system/system/lib/libFace_Landmark_Engine.camera.samsung.so
5684396 product/priv-app/GoogleRestore/GoogleRestore.apk
5683016 vendor/bin/hw/gpsd
5648277 system/system/saiv/smartcropping_2.0/db/smartcrop_saliency_train
5644624 system/system/apex/com.google.android.neuralnetworks.apex
5643358 system/system/tts/lang_SMT/smt_es_ES_f00.am
5633389 vendor/tee/00000000-0000-0000-0000-46494e474552
5618601 vendor/etc/saiv/image_understanding/db/aic_detector/aic_detector_cnn.raw
5515300 system/system/apex/com.android.wifi.apex
5409629 system/system/priv-app/DressRoom/DressRoom.apk
5384143 system/system/app/CocktailQuickTool/CocktailQuickTool.apk
5320288 system/system/lib/libSmartScan.camera.samsung.so
5290428 system/system/app/Bluetooth/Bluetooth.apk
5280054 system/system/apex/com.google.android.media.apex
5203280 system/system/lib/libPortraitDistortionCorrection.arcsoft.so
5178718 system/system/priv-app/DocumentsUIGoogle/DocumentsUIGoogle.apk
5092254 system/system/hidden/INTERNAL_SDCARD/Samsung/Music/Over_the_Horizon.mp3
5017988 system/system/priv-app/HwModuleTest/HwModuleTest.apk
5013893 system/system/apex/com.google.android.conscrypt.apex
4987544 system/system/lib64/libpdfium.so
4931006 system/system/priv-app/SamsungPositioning/SamsungPositioning.apk
4917055 system/system/tts/lang_SMT/smt_es_MX.lng
4898134 system/system/framework/telephony-common.jar
4888125 system/system/app/SetupWizardLegalProvider/SetupWizardLegalProvider.apk
4885000 system/system/bin/init
4884984 recovery/ramdisk/system/bin/init
4850376 system/system/lib64/libhigh_dynamic_range.arcsoft.so
4836778 system/system/priv-app/KnoxGuard/KnoxGuard.apk
4817004 system/system/lib/libhigh_dynamic_range.arcsoft.so
4805056 product/usr/srec/en-US/lstm_model.uint8.data
4765328 system/system/priv-app/SmartTouchCall/SmartTouchCall.apk
4724028 system/system/lib/libpdfium.so
4714998 system/system/priv-app/SecCarrierProvider/SecCarrierProvider.apk
4620886 system/system/priv-app/SoundAlive_80/SoundAlive_80.apk
4584999 system/system/priv-app/TADownloader/TADownloader.apk
4577828 product/usr/srec/en-US/rescoring.fst.compact
4540532 system/system/lib/libsmart_cropping.camera.samsung.so
4511769 system/system/priv-app/GpuWatchApp/GpuWatchApp.apk
4457999 system/system/app/EasterEgg/EasterEgg.apk
4444256 vendor/firmware/fimc_is_lib.bin
4391866 system/system/app/EmergencyLauncher/EmergencyLauncher.apk
4374934 system/system/priv-app/SPPPushClient/SPPPushClient.apk
4361784 system/system/framework/oat/arm64/semwifi-service.odex
4287980 system/system/priv-app/CallBGProvider/CallBGProvider.apk
4268521 system/system/apex/com.google.android.extservices.apex
4263748 system/system/app/NfcNci/NfcNci.apk
4261131 system/system/tts/lang_SMT/smt_en_US.lng
4234336 system/system/lib64/libsmart_cropping.camera.samsung.so
4088295 system/system/apex/com.google.android.mediaprovider.apex
4077212 vendor/etc/singletake/aifilter/scene.polarr.db
4045796 system/system/saiv/face/fr/MobileFace.bin
4021281 system/system/tts/lang_SMT/smt_pt_BR_f00.am
3988492 vendor/saiv/image_understanding/db/aig_detector/aig_detector_cnn.tflite
3970193 system/system/tts/lang_SMT/smt_en_GB.lng
3954997 system/system/app/ESEServiceAgent/ESEServiceAgent.apk
3932401 system/system/priv-app/SecSettingsIntelligence/SecSettingsIntelligence.apk
3905969 system/system/app/VideoTrimmer/VideoTrimmer.apk
3887080 vendor/lib64/libsnaplite_native.so
3886183 system/system/tts/lang_SMT/smt_de_DE.lng
3876675 system/system/app/SmartSwitchAgent/SmartSwitchAgent.apk
3833797 system/system/tts/lang_SMT/smt_de_DE_f00.am
3831368 vendor/lib64/libsec-ril.so
3830816 vendor/lib64/libsec-ril-dsds.so
3736450 system/system/priv-app/MultiSoundSetting/MultiSoundSetting.apk
3695223 system/system/priv-app/SendHelpMessage/SendHelpMessage.apk
3667325 system/system/app/SecurityLogAgent/SecurityLogAgent.apk
3667120 product/usr/srec/en-US/dnn
3655448 vendor/lib64/libhigh_dynamic_range_bokeh.so
3645040 product/usr/srec/en-US/CLG.prewalk.fst
3622176 vendor/lib/libhigh_dynamic_range_bokeh.so
3620824 system/system/lib64/libSDKRecognitionText.spensdk.samsung.so
3594072 system/system/lib64/libImageTagger.camera.samsung.so
3529616 system/system/etc/textclassifier/actions_suggestions.en.model
3529075 system/system/app/FBAppManager_NS/FBAppManager_NS.apk
3511448 system/system/lib/libImageTagger.camera.samsung.so
3511292 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_mixed.dat
3467954 system/system/priv-app/LinkToWindowsService/LinkToWindowsService.apk
3462984 system/system/lib64/liblow_light_hdr.arcsoft.so
3413621 system/system/app/SamsungPassAutofill_v1/SamsungPassAutofill_v1.apk
3404399 system/system/tts/lang_SMT/smt_fr_FR_f00.am
3376456 system/system/priv-app/SecSoundPicker/SecSoundPicker.apk
3365560 system/system/lib64/libMyFilter.camera.samsung.so
3326536 product/usr/srec/en-US/g2p_fst
3303878 system/system/priv-app/HdmApk/HdmApk.apk
3287464 vendor/etc/saiv/fd/fast_face_detect_model_full_angle_16_CHAR.dat
3254981 system/system/priv-app/TaskEdgePanel_v3.2/TaskEdgePanel_v3.2.apk
3242665 product/priv-app/AndroidAutoStub/AndroidAutoStub.apk
3220224 system/system/lib64/libRectify.camera.samsung.so
3204655 system/system/priv-app/GooglePackageInstaller/GooglePackageInstaller.apk
3199449 vendor/etc/recovery-resource.dat
3176187 system/system/priv-app/CMHProvider/CMHProvider.apk
3163456 system/system/lib/liblow_light_hdr.arcsoft.so
3148484 vendor/firmware/setfile_imx616.bin
3143908 system/system/tts/lang_SMT/smt_pt_BR.lng
3118840 vendor/lib64/libcodec2_soft_eac3dec.so
3062700 system/system/priv-app/knoxanalyticsagent/knoxanalyticsagent.apk
3021275 system/system/tts/lang_SMT/smt_it_IT.lng
2978480 vendor/lib64/libvideobeauty.arcsoft.so
2975509 system/system/app/MAPSAgent/MAPSAgent.apk
2955496 vendor/bin/hw/wpa_supplicant
2952168 vendor/lib64/libsnap_vndk.so
2941168 vendor/lib/libvideobeauty.arcsoft.so
2940088 vendor/lib/libcodec2_soft_eac3dec.so
2897796 vendor/lib/libstagefright_soft_ddpdec.so
2849928 system/system/lib64/libimagecodec.quram.so
2786287 system/system/priv-app/SetupIndiaServicesTnC/SetupIndiaServicesTnC.apk
2775776 vendor/lib64/libHMT.so
2771656 vendor/lib/libHMT.so
2771464 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_trad.dat
2762676 product/app/GoogleCalendarSyncAdapter/GoogleCalendarSyncAdapter.apk
2760132 system/system/priv-app/LiveWallpapersPicker/LiveWallpapersPicker.apk
2741428 vendor/bin/slsi_wlan_udi_log_decode
2702348 vendor/firmware/setfile_imx582.bin
2677308 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_chn_simp.dat
2617936 system/system/bin/iorap.cmd.compiler
2609508 system/system/apex/com.google.android.resolv.apex
2608356 system/system/lib/libSDKRecognitionText.spensdk.samsung.so
2608172 system/system/priv-app/Attribution/Attribution.apk
2584472 vendor/lib64/libcodec2_soft_ac4dec.so
2565800 system/system/lib/libimagecodec.quram.so
2560442 system/system/framework/knoxsdk.jar
2531328 system/system/framework/oat/arm64/services.art
2500898 system/system/priv-app/MCFDeviceSync/MCFDeviceSync.apk
2475328 vendor/lib64/soundfx/libswdap.so
2473432 system/system/priv-app/SystemUpdate/SystemUpdate.apk
2471176 system/system/lib64/libswdap_legacy.so
2465304 vendor/lib64/libexynoscamera3.so
2456592 system/system/lib64/libaplayer.so
2451598 system/system/app/FactoryAirCommandManager/FactoryAirCommandManager.apk
2448300 vendor/lib/libcodec2_soft_ac4dec.so
2419744 vendor/lib64/libarcsoft_super_night_raw.so
2412592 system/system/lib64/libtensorflowLite.myfilter.camera.samsung.so
2399888 system/system/lib64/libsurfaceflinger.so
2385140 system/system/lib/libVDLowLight.visidon.so
2359296 vendor/firmware/CC_DRAM_CODE_FLASH.bin
2357532 vendor/lib/libhandgesture.arcsoft.so
2343236 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_jpn.dat
2338256 vendor/lib64/libhandgesture.arcsoft.so
2337108 system/system/lib/libRectify.camera.samsung.so
2323554 system/system/priv-app/NSDSWebApp/NSDSWebApp.apk
2303744 vendor/lib/soundfx/libswdap.so
2298672 system/system/lib/libswdap_legacy.so
2295816 vendor/lib/libstagefright_soft_ac4dec.so
2251728 system/system/lib64/libprotobuf-cpp-full.so
2251688 vendor/lib64/libprotobuf-cpp-full-3.9.1.so
2236654 system/system/priv-app/LogWriter/LogWriter.apk
2224164 system/system/priv-app/SamsungMagnifier3/SamsungMagnifier3.apk
2222657 system/system/priv-app/AppLock/AppLock.apk
2222120 system/system/lib64/libImageScreener.camera.samsung.so
2221043 system/system/app/Stk/Stk.apk
2220354 system/system/framework/ext.jar
2209544 system/system/lib/libMyFilter.camera.samsung.so
2209496 system/system/lib64/libVDLowLight.visidon.so
2183565 system/system/app/Stk2/Stk2.apk
2177456 vendor/firmware/calliope_dram.bin
2166976 vendor/firmware/fimc_is_rta.bin
2144172 vendor/lib/libarcsoft_super_night_raw.so
2133530 system/system/priv-app/BlueLightFilter/BlueLightFilter.apk
2130662 product/priv-app/CarrierWifi/CarrierWifi.apk
2114872 vendor/lib/libwvhidl.so
2097159 system/system/priv-app/KnoxCore/KnoxCore.apk
2095160 system/system/lib64/libevs_float.so
2091925 system/system/framework/semwifi-service.jar
2085168 system/system/lib64/libsthmbc.so
2064649 vendor/etc/singletake/bestmoment/facedetV3.polarr.db
2035712 vendor/saiv/image_understanding/db/smartscan_verifier/document_verifier_cnn_light.caffemodel
2020608 system/system/lib64/libclang_rt.asan-aarch64-android.so
2010880 vendor/lib/mediadrm/libwvdrmengine.so
1989856 system/system/lib64/libstagefright.so
1968968 system/system/lib64/libSceneDetector_v1.camera.samsung.so
1918904 vendor/lib/libsnap_vndk.so
1904435 vendor/etc/singletake/bestmoment/facedetV2.polarr.db
1895229 system/system/priv-app/CMFAFramework/CMFAFramework.apk
1885144 system/system/lib/libclang_rt.asan-arm-android.so
1876680 system/system/lib64/libtflite_v113_jni.so
1855870 system/system/apex/com.google.android.os.statsd.apex
1849432 system/system/lib/libSceneDetector_v1.camera.samsung.so
1844260 vendor/lib/libexynoscamera3.so
1839812 vendor/lib/libvpx.so
1839664 system/system/lib/libsthmbc.so
1838996 system/system/lib/libvpx.so
1835952 vendor/etc/wifi/mx140.bin
1788840 system/system/lib64/libtensorflowLite.camera.samsung.so
1787926 system/system/priv-app/DiagMonAgent/DiagMonAgent.apk
1786744 system/system/lib64/libandroid_runtime.so
1771265 system/system/priv-app/SecTelephonyProvider/SecTelephonyProvider.apk
1741768 system/system/priv-app/StoryService/StoryService.apk
1741364 system/system/priv-app/TaPackAuthFw/TaPackAuthFw.apk
1739824 boot/ramdisk/init
1732411 system/system/priv-app/NSFusedLocation_v5.3/NSFusedLocation_v5.3.apk
1727720 system/system/lib64/libQREngine_common.camera.samsung.so
1727620 system/system/priv-app/FaceService/FaceService.apk
1722293 system/system/app/SLocation/SLocation.apk
1705504 system/system/lib/libsurfaceflinger.so
1649116 system/system/lib/libcameraservice.so
1646552 system/system/priv-app/DeviceQualityAgent/DeviceQualityAgent.apk
1641443 system/system/priv-app/SDMConfig/SDMConfig.apk
1636448 system/system/lib/libtensorflowLite.myfilter.camera.samsung.so
1627064 system/system/lib64/libvpx.so
1625863 system/system/media/audio/ringtones/Flight.ogg
1624028 vendor/lib/libprotobuf-cpp-full-3.9.1.so
1623988 system/system/lib/libprotobuf-cpp-full.so
1618195 system/system/app/SecHTMLViewer/SecHTMLViewer.apk
1607352 system/system/priv-app/SamsungMultiConnectivity/SamsungMultiConnectivity.apk
1579717 system/system/etc/selinux/plat_sepolicy.cil
1570440 system/system/lib64/libImageSequenceStabilizer.camera.samsung.so
1568616 system/system/lib64/libmOCR.camera.samsung.so
1563507 system/system/priv-app/FBServices/FBServices.apk
1533702 system/system/priv-app/MediaProviderLegacy/MediaProviderLegacy.apk
1521920 system/system/lib64/libsqlite.so
1500220 vendor/firmware/setfile_hi1336.bin
1494152 recovery/ramdisk/system/bin/adbd
1481322 product/app/GoogleContactsSyncAdapter/GoogleContactsSyncAdapter.apk
1472573 vendor/etc/selinux/vendor_sepolicy.cil
1468877 system/system/priv-app/SamsungDeviceHealthManagerService/SamsungDeviceHealthManagerService.apk
1462952 system/system/lib64/libvesframework.videoeditor.samsung.so
1460458 system/system/priv-app/CIDManager/CIDManager.apk
1452928 system/system/bin/bootstrap/linker64
1452928 recovery/ramdisk/system/bin/linker64
1452263 system/system/app/SimMobilityKit/SimMobilityKit.apk
1451968 system/system/lib64/libFeature.polarr.so
1449538 system/system/priv-app/ClipboardSaveService/ClipboardSaveService.apk
1431772 system/system/fonts/SECCJK-Regular-Extra.ttf
1411200 vendor/etc/saiv/ld/regress_matrix_short_35pt.dat
1393912 system/system/priv-app/MtpService/MtpService.apk
1382320 system/system/lib64/extractors/libsecmpeg2extractor.so
1376757 system/system/app/SamsungOne/SamsungOne.apk
1364303 system/system/app/NfwLocationPrivacy/NfwLocationPrivacy.apk
1338856 system/system/lib64/libvesgraphicframework.videoeditor.samsung.so
1336640 system/system/app/Foundation/Foundation.apk
1331390 product/usr/srec/en-US/lexicon.U.fst
1326028 system/system/app/PhotoTable/PhotoTable.apk
1321810 system/system/priv-app/ThemeCenter/ThemeCenter.apk
1306504 system/system/lib64/android.hardware.wifi.supplicant@1.0.so
1301192 system/system/lib64/android.hardware.radio@1.0.so
1290496 vendor/lib/lib_SoundAlive_play_plus_ver400.so
1290496 system/system/lib/lib_SoundAlive_play_plus_ver400.so
1287880 system/system/bin/vold
1287480 system/system/lib64/libaudioflinger.so
1280549 system/system/priv-app/CameraLightSensor/CameraLightSensor.apk
1280296 system/system/lib64/bootstrap/libc.so
1280296 recovery/ramdisk/system/lib64/libc.so
1274441 system/system/priv-app/SettingsBixby/SettingsBixby.apk
1271320 system/system/lib64/libxml2.so
1263220 system/system/lib/libandroid_runtime.so
1262248 vendor/lib64/libsavsvc.so
1262224 system/system/lib64/libsavsvc.so
1249788 system/system/lib/libsavsvc.so
1249728 vendor/lib/libsavsvc.so
1243440 system/system/lib/libQREngine_common.camera.samsung.so
1242224 system/system/lib64/libchrome.so
1238104 system/system/fonts/SamsungKorean-Light.ttf
1235644 system/system/fonts/SamsungKorean-Bold.ttf
1235344 system/system/lib64/android.hardware.audio.effect@2.0.so
1227248 system/system/lib64/android.hardware.audio.effect@4.0.so
1227088 system/system/lib64/android.hardware.audio.effect@6.0.so
1227080 system/system/lib64/android.hardware.audio.effect@5.0.so
1224056 system/system/lib64/libsmat.so
1222584 system/system/lib64/libTracking.polarr.so
1221480 system/system/lib64/libswdht_legacy.so
1218664 system/system/lib64/libHpr_RecFace_dl_v1.0.camera.samsung.so
1218276 system/system/fonts/SamsungKorean-Regular.ttf
1215971 system/system/etc/apns-conf.xml
1206268 system/system/app/SafetyInformation/SafetyInformation.apk
1201248 system/system/bin/iorapd
1190140 system/system/etc/epdg_apns_conf.xml
1186376 system/system/media/audio/ringtones/Sparkle.ogg
1178440 system/system/lib64/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
1169376 system/system/bin/simpleperf
1161647 system/system/priv-app/KnoxPushManager/KnoxPushManager.apk
1156640 system/system/lib64/libblas.so
1156477 system/system/media/audio/ringtones/Glassy_Bell.ogg
1155192 system/system/lib64/libbcinfo.so
1154412 system/system/lib/libswdht_legacy.so
1152288 system/system/lib64/libaudiopolicymanagerdefault.so
1148156 system/system/lib/libsmat.so
1144608 recovery/ramdisk/system/lib64/libcrypto.so
1142812 system/system/lib/libaplayer.so
1136552 system/system/lib64/libcrypto.so
1135932 system/system/media/audio/ringtones/Over_the_Horizon.ogg
1134953 system/system/media/audio/ringtones/Interstellar.ogg
1124700 system/system/lib64/libclcore_g.bc
1112648 system/system/lib/libstagefright.so
1103670 system/system/priv-app/SVCAgent/SVCAgent.apk
1086784 system/system/lib/bootstrap/libc.so
1084936 system/system/lib/libsqlite.so
1077160 system/system/lib64/libclcore_debug_g.bc
1072136 system/system/lib64/libperfetto.so
1069468 system/system/bin/bootstrap/linker
1067372 system/system/lib/libclcore_g.bc
1065451 system/system/apex/com.google.android.tethering.apex
1064792 system/system/app/PrintSpooler/PrintSpooler.apk
1063056 system/system/lib64/libgui.so
1059436 system/system/app/sveservice/sveservice.apk
1058456 vendor/lib64/libLocalTM_capture_core.camera.samsung.so
1054136 system/system/bin/netd
1048256 system/system/lib64/service.incremental.so
1047930 recovery/ramdisk/sepolicy
1045898 system/system/priv-app/KLMSAgent/KLMSAgent.apk
1042608 vendor/bin/hw/hostapd
1039860 system/system/lib/libmOCR.camera.samsung.so
1035472 system/system/lib64/libnfc_nci_jni.so
1034824 system/system/lib64/android.hardware.wifi@1.0.so
1026886 system/system/priv-app/IPService/IPService.apk
1021200 system/system/lib64/libclang_rt.ubsan_standalone-aarch64-android.so
1020184 system/system/bin/linkerconfig
1019856 system/system/lib/libtensorflowLite.camera.samsung.so
1019600 system/system/priv-app/EpdgService/EpdgService.apk
1017236 product/usr/srec/en-US/g2p.data
1016598 vendor/nfd/nfd_v3_fd.raw
1013824 system/system/lib64/libEventFinder.camera.samsung.so
1012696 vendor/lib64/lib_SoundAlive_play_plus_ver400.so
1012696 system/system/lib64/lib_SoundAlive_play_plus_ver400.so
1009264 system/system/lib64/libandroid_servers.so
1001232 system/system/lib64/libdmcSmartDP.so
1000852 system/system/lib/libFeature.polarr.so
996540 system/system/media/audio/ringtones/Haze.ogg
985728 vendor/bin/snap_utility_64
977233 odm/etc/selinux/precompiled_sepolicy
971456 system/system/bin/mdnsd
969104 system/system/lib64/libnfc-nci.so
968152 system/system/lib/libImageScreener.camera.samsung.so
966067 system/system/apex/com.google.android.tzdata2.apex
960300 vendor/lib/libLocalTM_capture_core.camera.samsung.so
951936 system/system/lib64/libsomxaacd.so
948501 recovery/ramdisk/res/images/wipe_data_sdcard_warning_text.png
942280 system/system/lib64/android.hardware.gnss@1.0.so
941408 system/system/lib/libclcore_debug_g.bc
939220 system/system/lib/android.hardware.wifi.supplicant@1.0.so
931896 system/system/lib64/libEventDetector.camera.samsung.so
928768 system/system/lib/libmediaplayerservice.so
927722 system/system/saiv/face/mvfd/fast_face_detect_model_full_angle_16_CHAR_frontal_use_model_17.dat
922768 system/system/lib64/libsrib_humanaware_engine.camera.samsung.so
922724 system/system/lib/libsrib_humanaware_engine.camera.samsung.so
917232 system/system/media/audio/ringtones/Flying_Balloon.ogg
913656 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_dutch.dat
913528 system/system/bin/tcpdump
906476 system/system/lib/libdmcSmartDP.so
902168 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_german.dat
902004 system/system/lib/libchrome.so
896972 system/system/saiv/textrecognition/mocr/ocr_db/ocr_engine_kor_hangul.dat
893813 system/system/app/KidsHome_Installer/KidsHome_Installer.apk
893712 system/system/lib64/libstrongswan.so
891812 system/system/lib/android.hardware.audio.effect@2.0.so
890344 vendor/lib64/libwebrtc_audio_preprocessing.so
888952 system/system/lib/android.hardware.audio.effect@6.0.so
888944 system/system/lib/android.hardware.audio.effect@4.0.so
888616 system/system/lib/android.hardware.audio.effect@5.0.so
884164 system/system/lib/libxml2.so
882191 system/system/priv-app/OmaCP/OmaCP.apk
881171 vendor/etc/selinux/plat_pub_versioned.cil
880216 product/usr/srec/en-US/wordlist.syms
880094 vendor/etc/wifi/mx140/debug/common/log-strings.bin
873992 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle.apk
873752 system/system/lib64/libSamsungAPVoiceEngine.so
869624 vendor/lib/libdualcam_refocus_video.so
869068 system/system/lib/libbcinfo.so
865664 system/system/priv-app/SKMSAgent/SKMSAgent.apk
862514 system/system/app/GearManagerStub/GearManagerStub.apk
854720 system/system/lib/libblas.so
851723 system/system/media/audio/ringtones/Pick_It_Up.ogg
850888 system/system/lib64/libaudioclient.so
848216 system/system/lib64/libFrucSSMLib.so
846344 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_finnish.dat
839874 system/system/tts/lang_SMT/smt_es_ES.lng
835524 system/system/lib/libcrypto.so
831960 system/system/lib64/liberis_strongswan.so
828604 system/system/lib/libImageSequenceStabilizer.camera.samsung.so
824740 system/system/lib/libTracking.polarr.so
823936 vendor/lib64/libvdis_core.so
818938 system/system/framework/voip-common.jar
802044 system/system/cameradata/preloadfilters/Sel/com.samsung.android.provider.filterprovider.pale_jaehan.sel
801816 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_estonian.dat
800484 vendor/etc/wifi/mx140_t/debug/hardware/moredump/moredump.bin
800484 vendor/etc/wifi/mx140/debug/hardware/moredump/moredump.bin
800484 vendor/bin/moredump.bin
793962 system/system/framework/semcontextservice.jar
792264 system/system/bin/wlandutservice
790428 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_french.dat
787781 system/system/tts/lang_SMT/smt_it_IT_f00.dt
787428 vendor/lib/libwebrtc_audio_preprocessing.so
786432 system/system/lib64/libcharon.so
785896 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_lithuanian.dat
783952 system/system/priv-app/MobileWips/MobileWips.apk
783892 system/system/lib/libHpr_RecFace_dl_v1.0.camera.samsung.so
782176 system/system/lib64/libdng_sdk.so
780742 system/system/priv-app/SecDownloadProvider/SecDownloadProvider.apk
780392 system/system/lib64/libsamsung_videoengine_9_0.so
779798 boot/ramdisk.packed
778520 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese.dat
769909 system/system/media/audio/ringtones/Dreamscape.ogg
766936 system/system/lib/libSamsungPkcs11Wrapper.secsmartcard.samsung.so
762800 vendor/lib/libvdis_core.so
756472 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_turkish.dat
756448 system/system/lib/libandroid_servers.so
755080 system/system/lib/libgui.so
754648 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_bulgarian.dat
754160 system/system/lib/libperfetto.so
751168 system/system/bin/ld.mc
746972 system/system/lib/service.incremental.so
745504 system/system/lib64/libharfbuzz_ng.so
744312 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_basque.dat
741980 system/system/lib/libsomxaacd.so
738352 system/system/lib/libharfbuzz_ng.so
736720 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_hungarian.dat
733760 system/system/lib64/libsec_skpm.so
733628 system/system/lib/android.hardware.wifi@1.0.so
732016 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_swedish.dat
731952 system/system/tts/lang_SMT/smt_ru_RU_f00.dt
729376 system/system/lib/libremotedisplay_wfd.so
728280 system/system/lib64/android.hardware.audio@6.0.so
724528 system/system/lib64/libmedia.so
723264 system/system/lib64/libDocRectifyWrapper.camera.samsung.so
715928 system/system/lib64/android.hardware.wifi.supplicant@1.2.so
714428 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_italian.dat
710816 system/system/lib64/libc++.so
710816 recovery/ramdisk/system/lib64/libc++.so
709316 system/system/cameradata/SRIB_HumanSegLite_INT8_V004.snf
709192 system/system/fonts/NotoSansSymbols-Regular-Subsetted.ttf
706597 system/system/priv-app/SamsungCalendarProvider/SamsungCalendarProvider.apk
704918 system/system/framework/org.apache.http.legacy.jar
702556 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_czech.dat
702035 system/system/etc/NOTICE.xml.gz
699760 system/system/lib64/liberis_charon.so
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_tdown1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_right1.dat
699118 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_left1.dat
698880 system/system/saiv/face/ed/model_1_pose_front_13pt.dat
697760 system/system/etc/textclassifier/textclassifier.fr.model
697584 system/system/etc/textclassifier/textclassifier.it.model
697568 system/system/etc/textclassifier/textclassifier.es.model
697564 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_spanish.dat
695008 recovery/ramdisk/system/lib64/libhidlbase.so
694752 system/system/lib64/libhidlbase.so
694640 vendor/lib64/hw/android.hardware.gnss@2.1-impl.so
693824 system/system/etc/textclassifier/textclassifier.ru.model
693632 system/system/etc/textclassifier/textclassifier.nl.model
693552 system/system/etc/textclassifier/textclassifier.pt.model
693520 system/system/etc/textclassifier/textclassifier.tr.model
693520 system/system/etc/textclassifier/textclassifier.pl.model
690736 system/system/lib/libagifencoder.quram.so
687504 system/system/etc/textclassifier/textclassifier.ar.model
687216 system/system/etc/textclassifier/textclassifier.ko.model
686576 system/system/lib64/libbinder.so
681200 vendor/firmware/mfc_fw.bin
680840 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_polish.dat
680804 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_korean.dat
679288 system/system/lib64/libmediarelayengine.so
674938 system/system/system_ext/priv-app/GoogleFeedback/GoogleFeedback.apk
673344 system/system/lib/android.hardware.gnss@1.0.so
671718 system/system/saiv/face/mvfd/fast_face_detect_model_full_Front_16_CHAR_frontal1.dat
671156 system/system/apex/com.google.android.ipsec.apex
670304 system/system/lib64/libsfplugin_ccodec.so
669796 vendor/lib/libFrucSSMLib.so
669784 system/system/lib/libFrucSSMLib.so
669168 system/system/bin/logd
666592 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_russian.dat
663616 vendor/lib64/libwsmd_functions.so
661096 vendor/lib64/libril.so
658896 system/system/lib64/libagifencoder.quram.so
657720 system/system/lib64/libSimpleDocRectify.camera.samsung.so
655184 system/system/lib64/libsmsd.so
654992 system/system/lib64/android.hardware.audio@5.0.so
650568 system/system/lib64/android.hardware.audio@4.0.so
649593 system/system/tts/lang_SMT/smt_en_GB_f00.dt
649223 system/system/app/ANTPlusPlugins/ANTPlusPlugins.apk
648037 system/system/tts/lang_SMT/smt_es_MX_f00.dt
642664 system/system/lib64/android.hardware.gnss@2.0.so
642356 vendor/lib/libstagefright_soft_aacdec.so
641872 system/system/lib/libsmsd.so
639104 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_portuguese.dat
637944 system/system/cameradata/myfilter/GrainTemplateImage
637710 system/system/framework/imsmanager.jar
633872 system/system/bin/dumpstate
627168 system/system/etc/textclassifier/textclassifier.zh.model
624176 vendor/lib64/libcodec2_vndk.so
624160 system/system/lib64/libcodec2_vndk.so
624096 system/system/bin/perfetto
623527 system/system/tts/lang_SMT/smt_en_US_f00.dt
623244 system/system/framework/vsimmanager.jar
623016 system/system/bin/apexd
622852 vendor/firmware/CP_AUDIO_SLSI_SWA.bin
622852 vendor/firmware/CP_AUDIO_SLSI_SEA.bin
621024 system/system/etc/textclassifier/textclassifier.th.model
616464 recovery/ramdisk/system/bin/recovery
615872 system/system/lib/libEventFinder.camera.samsung.so
615632 system/system/app/CertInstaller/CertInstaller.apk
612064 system/system/bin/keystore
610616 system/system/priv-app/SettingsProvider/oat/arm64/SettingsProvider.odex
610304 system/system/framework/arm64/boot-telephony-common.art
606800 system/system/lib64/android.hardware.audio@2.0.so
606712 system/system/lib64/libft2.so
605848 system/system/lib64/libfs_mgr_binder.so
604160 system/system/lib64/libaudiopolicyenginedefault.so
602333 vendor/bin/add.pb
596028 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_slovak.dat
595344 system/system/lib64/libFacePreProcessing.camera.samsung.so
590892 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_indonesian.dat
589824 system/system/framework/arm/boot-telephony-common.art
588616 system/system/lib64/libaudioprocessing.so
588448 system/system/lib64/libstagefright_httplive_sec.so
586828 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_ukrainian.dat
586288 system/system/lib64/libAudioTranscoder.so
584316 system/system/lib/libft2.so
583776 system/system/lib64/libsensorservice.so
582212 system/system/lib/libQmageDecoder.so
579008 system/system/lib/libEventDetector.camera.samsung.so
577408 system/system/etc/textclassifier/textclassifier.en.model
576492 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_latvian.dat
573616 system/system/lib64/libvintf.so
573340 system/system/lib/libdng_sdk.so
571144 system/system/lib64/libmedia_jni.so
566192 system/system/lib64/libQmageDecoder.so
561672 vendor/lib64/libsavscmn.so
561672 system/system/lib64/libsavscmn.so
560976 system/system/bin/iorap.cmd.maintenance
558992 vendor/lib64/libexynosdisplay.so
557236 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_serbian_lat.dat
555192 system/system/bin/ss_conn_daemon2
553896 vendor/etc/wifi/mx140_t/debug/hardware/moredump/peri_registers.xml
553896 vendor/etc/wifi/mx140/debug/hardware/moredump/peri_registers.xml
553609 product/priv-app/GooglePartnerSetup/GooglePartnerSetup.apk
551576 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_croatian.dat
549228 system/system/lib/libaudioflinger.so
547880 system/system/etc/textclassifier/textclassifier.de.model
546944 product/usr/srec/en-US/offensive_word_normalizer.mfar
544580 vendor/lib/libsavscmn.so
544540 system/system/lib/libsavscmn.so
544504 system/system/lib64/libcamera_client.so
543774 system/system/framework/am.jar
541240 vendor/lib64/vendor.samsung.hardware.radio@2.0.so
539501 recovery/ramdisk/res/images/wipe_data_confirmation_text.png
538840 system/system/lib64/libpredeflicker_native.so
538544 system/system/etc/textclassifier/textclassifier.ja.model
534636 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_slovenian.dat
532680 system/system/lib/libsec_skpm.so
532448 system/system/etc/preloaded-classes
530988 system/system/priv-app/CSC/CSC.apk
528675 system/system/tts/lang_SMT/smt_pt_BR_f00.dt
528080 vendor/etc/saiv/gae/PmAgeModel.bin
527904 vendor/lib64/vendor.samsung.hardware.wifi.supplicant@3.0.so
524848 system/system/lib/android.hardware.wifi.supplicant@1.2.so
522620 system/system/lib/android.hardware.audio@6.0.so
521872 system/system/lib64/android.hardware.media.c2@1.0.so
520244 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_japanese.dat
520192 vendor/etc/wifi/mx140_t/debug/wlan/hydra_config.sdb
520192 vendor/etc/wifi/mx140/debug/wlan/hydra_config.sdb
520128 system/system/lib64/libsecimaging.camera.samsung.so
509948 system/system/usr/share/zoneinfo/tzdata
506648 system/system/lib64/libRSCpuRef.so
505436 system/system/fonts/NotoSansEgyptianHieroglyphs-Regular.ttf
505112 system/system/media/audio/ringtones/Finding_Galaxy.ogg
504800 vendor/lib64/libcodec2_sec_wmadec.so
504504 recovery/ramdisk/system/lib64/libfs_mgr.so
504480 system/system/lib64/libfs_mgr.so
503016 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_serbian_cyr.dat
501248 system/system/saiv/face/ed/model_1_pose_right_11pt.dat
501248 system/system/saiv/face/ed/model_1_pose_left_11pt.dat
500822 system/system/priv-app/SecMediaProvider/SecMediaProvider.apk
500380 system/system/fonts/NotoSansCuneiform-Regular.ttf
500212 product/usr/srec/en-US/portable_lstm
497364 system/system/lib/libhidlbase.so
496421 vendor/etc/wifi/mx140/debug/wlan/symbols.dbg
495973 system/system/priv-app/NetworkStackGoogle/NetworkStackGoogle-arm64_v8a.apk
494016 system/system/lib/libc++.so
493244 vendor/lib/libcodec2_sec_wmadec.so
492312 system/system/lib64/android.hardware.gnss@2.1.so
489448 vendor/bin/toybox_vendor
489288 system/system/bin/toybox
489288 recovery/ramdisk/system/bin/toybox
487829 vendor/etc/wifi/mx140_t/debug/wlan/symbols.dbg
487480 system/system/bin/iptables
487368 system/system/lib64/libprotobuf-cpp-lite.so
487368 recovery/ramdisk/system/lib64/libprotobuf-cpp-lite.so
487352 vendor/lib64/libprotobuf-cpp-lite-3.9.1.so
486872 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_macedonian.dat
486828 vendor/etc/wifi/mx140_t/debug/wlan/mib_out.xml
486828 vendor/etc/wifi/mx140/debug/wlan/mib_out.xml
485762 system/system/media/audio/ui/Media_preview_Over_the_horizon.ogg
482848 system/system/lib64/netd_aidl_interface-V4-cpp.so
479768 system/system/lib64/android.hardware.wifi.supplicant@1.1.so
477852 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese_S.dat
477652 system/system/lib/libaudioclient.so
475172 recovery/dtbo.img
474649 system/system/tts/lang_SMT/smt_es_ES_f00.dt
472152 system/system/lib/libbinder.so
472048 vendor/lib64/libsavsac.so
472040 system/system/lib64/libsavsac.so
468750 system/system/media/audio/ringtones/Starburst.ogg
468244 system/system/lib/android.hardware.audio@5.0.so
467500 system/system/lib/libsavsac.so
467496 vendor/lib/libsavsac.so
466712 system/system/lib/android.hardware.gnss@2.0.so
464768 system/system/lib/android.hardware.audio@4.0.so
464040 system/system/priv-app/BuiltInPrintService/BuiltInPrintService.apk
462072 system/system/app/EasyOneHand3/EasyOneHand3.apk
462021 product/usr/srec/en-US/config.pumpkin
461568 system/system/lib64/libomafldrm.so
461456 system/system/lib64/libunwindstack.so
459592 system/system/lib64/libcups.so
459046 vendor/etc/wifi/mx140_t.bin
457728 vendor/etc/wifi/hydra_config.sdb
457352 system/system/lib64/libandroidfw.so
456640 system/system/lib64/libYuv.polarr.so
455092 vendor/firmware/setfile_gc5035_macro.bin
453984 vendor/lib/libril.so
453764 system/system/app/DRParser/DRParser.apk
452808 recovery/ramdisk/system/lib64/libunwindstack.so
450560 system/system/lib64/libsmplayer_fullseg.so
449520 vendor/lib64/libbauthserver.so
447692 system/system/lib/libcodec2_vndk.so
447640 vendor/lib/libcodec2_vndk.so
446756 vendor/lib/libstagefright_soft_aacenc.so
446364 system/system/fonts/SECTibetan-Regular.ttf
443088 vendor/bin/hw/android.hardware.wifi@1.0-service
442424 system/system/lib/libsensorservice.so
442368 system/system/framework/arm64/boot-knoxsdk.art
442184 vendor/bin/cbd
440957 system/system/priv-app/EnhancedAttestationAgent/EnhancedAttestationAgent.apk
439396 system/system/priv-app/MediaLearningPlatform/MediaLearningPlatform.apk
437944 vendor/lib64/vendor.samsung.hardware.radio@2.1.so
437556 vendor/lib/libstagefright_soft_hevcdec.so
436184 system/system/lib/android.hardware.audio@2.0.so
435992 system/system/bin/heapprofd
434864 product/usr/srec/en-US/embedded_normalizer.mfar
434631 system/system/apex/com.google.android.sdkext.apex
432208 system/system/lib64/extractors/libsecmp4extractor.so
430328 system/system/lib/libsfplugin_ccodec.so
430080 system/system/framework/arm/boot-knoxsdk.art
429512 system/system/lib/libaudioprocessing.so
428302 system/system/framework/service-jobscheduler.jar
426184 vendor/lib64/libFaceService.so
422554 system/system/tts/lang_SMT/smt_de_DE_f00.dt
422472 system/system/bin/installd
420253 system/system/app/CaptivePortalLoginGoogle/CaptivePortalLoginGoogle.apk
418824 system/system/lib/libmedia_jni.so
417257 system/system/priv-app/SmartEpdgTestApp/SmartEpdgTestApp.apk
416544 recovery/ramdisk/system/lib64/librecovery_ui.so
415132 system/system/media/crypt_bootsamsungloop.qmg
413680 vendor/lib/libexynosdisplay.so
412731 system/system/priv-app/serviceModeApp_FB/serviceModeApp_FB.apk
411986 system/system/priv-app/Tag/Tag.apk
411730 product/usr/srec/en-US/c_fst
411459 system/system/tts/lang_SMT/smt_fr_FR_f00.dt
409681 system/system/app/SmartTethering/SmartTethering.apk
407880 system/system/bin/ip
406144 vendor/lib64/libeis_core.so
405285 system/system/app/AutomationTest_FB/AutomationTest_FB.apk
404972 system/system/lib/libvintf.so
404964 system/system/lib/libmedia.so
403648 system/system/bin/iorap.inode2filename
402692 system/system/fonts/SECTibetan-Bold.ttf
401894 system/system/priv-app/SettingsProvider/SettingsProvider.apk
401764 system/system/fonts/NotoSansTibetan-Regular.ttf
401344 system/system/lib64/libhwcutil.so
400056 system/system/lib64/android.hardware.media.omx@1.0.so
399018 system/system/framework/rcsopenapi.jar
398936 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_maltese.dat
398332 system/system/lib/libRSCpuRef.so
397657 system/system/app/BBCAgent/BBCAgent.apk
395920 system/system/bin/wificond
395208 system/system/media/audio/ringtones/Shimmer.ogg
395120 vendor/lib64/libofi_wrapper.so
394204 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_chinese_T.dat
391408 system/system/priv-app/Shell/Shell.apk
389936 system/system/etc/ipm/auf.tflite
389504 vendor/lib64/libhyper.so
388736 system/system/bin/traced_perf
387602 product/usr/srec/en-US/semantics.pumpkin
386800 system/system/lib64/libcurl2.so
385936 vendor/lib/vendor.samsung.hardware.radio@2.0.so
382444 system/system/lib/libDocRectifyWrapper.camera.samsung.so
381316 system/system/media/shutdown.qmg
381296 system/system/lib64/libmediametricsservice.so
375872 system/system/lib64/libsonivox.so
375230 system/system/priv-app/FBInstaller_NS/FBInstaller_NS.apk
373120 system/system/fonts/NotoSansTibetan-Bold.ttf
372952 system/system/lib64/libmtp_samsung.so
372928 system/system/lib/android.hardware.media.c2@1.0.so
372592 system/system/etc/textclassifier/lang_id.model
372520 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_norwegian.dat
371048 vendor/lib64/hw/vendor.samsung.hardware.gnss@2.0-impl.so
370816 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_english.dat
370368 system/system/lib64/libMattingCore.camera.samsung.so
370220 system/system/lib/libsecimaging.camera.samsung.so
369872 vendor/lib64/libhypermotion_core.so
369064 system/system/saiv/textrecognition/mocr/ocr_db/knowledge_danish.dat
368648 system/system/lib64/android.hardware.drm@1.2.so
366758 system/system/framework/uiautomator.jar
362792 system/system/lib64/android.hardware.drm@1.0.so
362696 system/system/bin/gsid
362417 system/system/app/EasymodeContactsWidget81/EasymodeContactsWidget81.apk
362232 vendor/lib64/libsnaace.so
362232 system/system/lib64/libsnaace.so
360056 system/system/lib/android.hardware.gnss@2.1.so
360056 system/system/cameradata/myfilter/myfilter_sample_04.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_03.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_02.bmp
360056 system/system/cameradata/myfilter/myfilter_sample_01.bmp
359992 system/system/lib64/extractors/libsecmidiextractor.so
358428 system/system/lib/libFacePreProcessing.camera.samsung.so
358016 system/system/lib64/libmaet.so
357792 system/system/lib64/libfmradio_jni.so
355850 system/system/app/FilterProvider/FilterProvider.apk
355736 vendor/lib/libprotobuf-cpp-lite-3.9.1.so
355736 system/system/lib/libprotobuf-cpp-lite.so
355668 system/system/system_ext/priv-app/CarrierConfig/CarrierConfig.apk
354104 system/system/lib64/libext2fs.so
354104 recovery/ramdisk/system/lib64/libext2fs.so
353076 system/system/lib64/libclcore_debug.bc
352864 system/system/lib/android.hardware.wifi.supplicant@1.1.so
352510 system/system/priv-app/ANTRadioService/ANTRadioService.apk
351312 system/system/lib/libsnaace.so
351308 vendor/lib/libsnaace.so
349672 system/system/lib/libSimpleDocRectify.camera.samsung.so
349272 system/system/lib64/libinputflinger.so
349072 system/system/lib64/libEGL.so
348242 system/system/media/audio/ringtones/Bubble.ogg
347332 system/system/fonts/RobotoCondensed-LightItalic.ttf
347052 system/system/fonts/Roboto-LightItalic.ttf
347012 system/system/fonts/Roboto-BoldItalic.ttf
346728 system/system/lib64/libFFTEm.so
346112 vendor/etc/saiv/ld/regress_matrix_short_13pt.dat
345896 system/system/lib64/libBestComposition.polarr.so
345840 system/system/fonts/Roboto-MediumItalic.ttf
345788 system/system/fonts/Roboto-BlackItalic.ttf
345452 system/system/fonts/RobotoCondensed-BoldItalic.ttf
344820 system/system/fonts/RobotoCondensed-MediumItalic.ttf
344588 system/system/fonts/Roboto-ThinItalic.ttf
344024 system/system/fonts/RobotoCondensed-Italic.ttf
343276 system/system/fonts/Roboto-Italic.ttf
343272 system/system/lib64/libssl.so
343144 system/system/framework/oat/arm64/org.apache.http.legacy.odex
342897 vendor/tee/00000000-0000-0000-0000-4b45594d5354
342072 system/system/lib64/libkeymaster_portable.so
342064 vendor/lib64/libkeymaster_portable.so
341886 system/system/app/SimAppDialog/SimAppDialog.apk
341788 vendor/lib/libpredeflicker_native.so
341788 system/system/lib/libpredeflicker_native.so
339980 vendor/lib/libeis_core.so
338672 system/system/lib64/libinputreader.so
338356 system/system/lib/libunwindstack.so
338268 vendor/lib/libopus.so
336472 system/system/lib64/libbluetooth_jni.so
335028 system/system/lib/libandroidfw.so
334278 system/system/apex/com.android.apex.cts.shim.apex
334120 system/system/lib/libomafldrm.so
333936 system/system/lib64/libclcore_neon.bc
333020 system/system/priv-app/InputDevices/InputDevices.apk
332896 system/system/lib64/libpcap.so
332708 system/system/lib/libGpuWatch.so
331464 vendor/lib/libbauthserver.so
330480 system/system/lib64/libSDSensorWrapper.camera.samsung.so
330432 system/system/lib64/libclcore.bc
330220 system/system/lib/libsonivox.so
329704 system/system/lib64/libsecimaging_pdk.camera.samsung.so
329584 vendor/lib64/libsnap_compute_wrapper.so
326532 vendor/apex/com.samsung.android.camera.unihal.signed.apex
325728 vendor/lib/libstagefright_soft_avcdec.so
325400 system/system/lib64/libPortraitSolution.camera.samsung.so
324848 system/system/lib/libMattingCore.camera.samsung.so
324640 system/system/lib64/libpcre2.so
324640 recovery/ramdisk/system/lib64/libpcre2.so
324512 system/system/lib64/android.hardware.graphics.composer@2.4.so
323452 system/system/lib/libclcore_debug.bc
322924 system/system/fonts/Roboto-Thin.ttf
322264 system/system/lib64/libGpuWatch.so
322188 vendor/firmware/kernel_bin_inception.bin
322044 system/system/fonts/Roboto-Bold.ttf